body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #000;
  color: #fff;
  border-radius: 6px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
}

.logo span {
  color: #7FFF00;
}

nav.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-toggle {
  display: none;
}

/* Mobile nav */
@media (max-width: 768px) {
  nav.nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  nav.nav.open {
    display: block;
  }
  nav.nav a {
    display: block;
    margin: 0.5rem 0;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
  }
}

.hero {
  padding: 4rem 1rem;
  background: #fff;
}
.hero-modern { position: relative; overflow: hidden; background: radial-gradient(1600px 800px at 70% -60%, #e9fff6, transparent 60%), #ffffff; }
.hero-modern .hero-bg { position: absolute; inset: 0; background: radial-gradient(900px 600px at 0% 0%, rgba(0, 252, 168, 0.15), transparent 70%); pointer-events: none; }
.hero .primary-cta { padding: 0.9rem 1.4rem; border-radius: 999px; border: none; background: linear-gradient(135deg, #7FFF00, #5ED400); color: #000; font-weight: 800; box-shadow: 0 10px 24px rgba(127, 255, 0, 0.3); cursor: pointer; }
.hero-badges { display: flex; gap: .75rem; margin-top: .75rem; color: #555; flex-wrap: wrap; }
.hero-badges span { background: #f6fffb; border: 1px solid #e6fff7; padding: .35rem .6rem; border-radius: 999px; font-size: .9rem; }

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
  color: #555;
}

.text-content button {
  background-color: black;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.image-content {
  flex: 1;
  text-align: center;
  min-width: 250px;
}

.image-content img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.08));
}

#search-form select {
  padding: 0.5rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}


.search-section {
  text-align: center;
  margin: 2rem auto;
}

.search-section input {
  width: 60%;
  padding: 0.75rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.search-section button {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  background-color: #111;
  color: white;
  border: none;
  cursor: pointer;
}
#search-result {
  column-count: 4;
  column-gap: 1rem;
  padding: 2rem;
  min-height: 70vh;
}

#search-result:empty {
  display: none;
}

#search-result a {
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
  break-inside: avoid;
}
#search-result a:hover {
  text-decoration: none;
}

#search-result img {
  width: 100%;
  display: block;
  border: #111 solid 1px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

#search-result img:hover {
  transform: scale(1.02);
}




.fade-overlay {
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
  margin-top: -60px;
  z-index: 1;
  pointer-events: none;
  position: relative;
}

body.dark-mode .fade-overlay {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
}

.show-more-container {
  text-align: center;
  margin-top: -20px;
  padding-top: 2rem;
  position: relative;
  z-index: 2;
}



.feature-section {
  margin: 4rem auto;
  padding: 2rem 1rem;
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.feature-image img {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.06));
}

.feature-text {
  flex: 1;
  min-width: 300px;
}

.feature-text .tag {
  display: inline-block;
  background: #eee;
  color: #7a4de8;
  padding: 0.3rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.feature-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-text p {
  color: #555;
  margin-bottom: 1rem;
}

.feature-text ul {
  list-style: none;
  padding: 0;
}

.feature-text ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature-text ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #eafaf4;
  color: #18a957;
  font-weight: 800;
}

/* Redesigned features layout */
.feature-modern { text-align: center; }
.feature-modern .feature-head p { max-width: 720px; margin: .5rem auto 2rem; }
.feature-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.feature-tile { background: #fff; border: 1px solid #eef2f4; border-radius: 16px; padding: 1.25rem; box-shadow: 0 8px 18px rgba(0,0,0,0.04); transition: transform .2s ease, box-shadow .2s ease; }
.feature-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,0.07); }
.feature-tile .icon { width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(127, 255, 0, 0.08); color: #7FFF00; margin-bottom: .75rem; }


/* How it works */
.how-it-works {
  margin: 2rem auto 4rem;
}
.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.step {
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  transition: transform .15s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.06); }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Curated collections */
.curated-collections {
  margin: 0 auto 4rem;
}
.trusted .eyebrow { text-transform: uppercase; letter-spacing: .08em; color: #666; font-size: .85rem; margin-bottom: .5rem; }
.trusted .logo-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: .75rem; color: #999; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin: 2rem auto 4rem; }
.stat { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 1rem; text-align: center; }
.stat h3 { margin: 0; font-size: 2rem; }
.stat p { margin: .25rem 0 0; color: #777; }

.testimonials h2 { margin-bottom: 1rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.testimonial-grid blockquote { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 1rem; margin: 0; }
.testimonial-grid footer { margin-top: .5rem; color: #666; }

.faq h2 { margin-bottom: 1rem; }
.faq details { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: .75rem 1rem; margin-bottom: .5rem; }
.faq summary { cursor: pointer; font-weight: 600; }

.cta-banner { background: linear-gradient(135deg, #7FFF00, #5ED400); color: #000; padding: 2rem 0; margin: 3rem 0 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cta-btn { background: #fff; color: #0a0a0a; border-radius: 999px; padding: .7rem 1.2rem; font-weight: 800; text-decoration: none; }
@media (max-width: 700px) { .cta-inner { flex-direction: column; text-align: center; } }
.curated-collections h2 { margin-bottom: 1rem; }
.tag-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f2f2f2;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}
.tag:hover { background: #e8e8e8; }

/* Responsive column count */
@media (max-width: 1200px) {
  #search-result {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  #search-result {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  #search-result {
    column-count: 1;
  }
}





/* Hide elements initially */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}


.reveal {
  transition: all 0.7s ease-in-out;
}


#design-gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#design-gallery img:hover {
  transform: scale(1.03);
}

/* Page transition container (Swup) */
.transition-fade {
  transition: opacity .25s ease, transform .25s ease;
}
.transition-fade.is-leaving {
  opacity: 0.4;
  transform: translateY(4px);
}
.transition-fade.is-entering {
  opacity: 1;
  transform: translateY(0);
}

/* Section open/close animations (applied globally) */
.section-anim {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.section-anim.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Dynamic accent styling for sections */
.section-anim:nth-of-type(odd) { --section-accent: #7FFF00; }
.section-anim:nth-of-type(even) { --section-accent: #7FFF00; }
.section-anim h2 { color: var(--text); }
.section-anim .tag { color: var(--section-accent); background-color: color-mix(in oklab, var(--section-accent) 12%, white); }
.section-anim .icon { color: var(--section-accent); background: color-mix(in oklab, var(--section-accent) 12%, white); }

/* ===== New Design System (Reference Applied) ===== */
/* Base Styles */
:root {
  --primary: #7FFF00;
  --primary-dark: #5ED400;
  --text: #1e293b;
  --text-light: #64748b;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 0.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
  color: var(--text); 
  line-height: 1.5; 
  background:
    radial-gradient(1000px 600px at 10% -20%, rgba(79,70,229,0.06), transparent 60%),
    radial-gradient(900px 500px at 110% 0%, rgba(0,212,180,0.06), transparent 60%),
    var(--white);
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

/* Typography */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { margin-bottom: 1.25rem; color: var(--text-light); }

.tag { display: inline-block; font-size: 0.875rem; font-weight: 600; color: var(--primary); background-color: rgba(127, 255, 0, 0.1); padding: 0.375rem 0.75rem; border-radius: var(--radius); margin-bottom: 1rem; }
.eyebrow { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 1rem; text-align: center; }

/* Buttons */
button, .cta-btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: var(--radius); transition: all 0.2s ease; cursor: pointer; border: none; }
.primary-cta { background-color: var(--primary); color: var(--white); box-shadow: var(--shadow); }
.primary-cta:hover { background-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cta-btn { background-color: var(--white); color: var(--primary); border: 1px solid var(--primary); }
.cta-btn:hover { background-color: var(--primary); color: var(--white); }

/* Hero Section */
.hero { position: relative; padding: 6rem 0; overflow: hidden; }
.hero-modern { background-color: var(--light-bg); position: relative; }
.hero-bg { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
  background:
    radial-gradient(600px 300px at 20% 15%, rgba(79,70,229,0.12), transparent 60%),
    radial-gradient(700px 380px at 85% 10%, rgba(0,212,180,0.12), transparent 60%),
    linear-gradient(180deg, rgba(248,250,252,0.9), rgba(248,250,252,0.9));
  z-index: 0; 
}
.hero-modern::before, .hero-modern::after {
  content: ""; position: absolute; filter: blur(40px); opacity: .45; pointer-events: none;
}
.hero-modern::before { width: 240px; height: 240px; border-radius: 50%; background: #e6fdf7; left: -60px; top: 20px; }
.hero-modern::after  { width: 260px; height: 260px; border-radius: 50%; background: #eef0ff; right: -80px; top: 60px; }
.hero-content { position: relative; z-index: 1; display: flex; align-items: center; gap: 3rem; }
.text-content { flex: 1; }
.image-content { flex: 1; display: flex; justify-content: center; }
.hero-badges { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-badges span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--text-light); }

/* Feature Section */
.feature-section { padding: 5rem 0; }
.feature-content { display: flex; align-items: center; gap: 4rem; }
.feature-image { flex: 1; }
.feature-text { flex: 1; }
.feature-text ul { list-style: none; margin-top: 1.5rem; }
.feature-text li { margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }

/* How it works */
.how-it-works { padding: 5rem 0; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.step { background-color: var(--light-bg); padding: 2rem; border-radius: var(--radius); }
.step-num { width: 3rem; height: 3rem; background-color: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 1rem; }

/* Curated Collections */
.curated-collections { padding: 5rem 0; text-align: center; }
.tag-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-top: 2rem; }
.tag-grid .tag { padding: 1rem; background-color: var(--light-bg); transition: all 0.2s ease; }
.tag-grid .tag:hover { background-color: var(--primary); color: var(--white); }

/* Trusted Section */
.trusted { padding: 4rem 0; text-align: center; }
.logo-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-top: 1.5rem; }
.logo-row span { font-weight: 600; color: var(--text-light); opacity: 0.8; }

/* Stats Section */
.stats { padding: 4rem 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; text-align: center; }
.stat h3 { font-size: 2.5rem; color: var(--primary); }

/* Testimonials */
.testimonials { padding: 5rem 0; text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
blockquote { background-color: var(--light-bg); padding: 2rem; border-radius: var(--radius); text-align: left; }
blockquote p { font-style: italic; margin-bottom: 1rem; }
blockquote footer { font-weight: 600; color: var(--text-light); }

/* FAQ */
.faq { padding: 5rem 0; }
.faq h2 { text-align: center; }
.faq-list { max-width: 800px; margin: 3rem auto 0; }
details { margin-bottom: 1rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
summary { font-weight: 600; cursor: pointer; padding: 0.5rem 0; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary:after { content: "+"; float: right; transition: transform 0.2s ease; }
details[open] summary:after { transform: rotate(45deg); }
details p { padding-top: 1rem; }

/* CTA Banner */
.cta-banner { background-color: var(--primary); color: var(--white); padding: 4rem 0; margin: 5rem 0; text-align: center; }
.cta-inner h2 { color: var(--white); }
.cta-btn { margin-top: 2rem; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content, .feature-content { flex-direction: column; }
  .text-content, .image-content, .feature-text, .feature-image { width: 100%; text-align: center; }
  .hero-badges { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
}

/* Animation */
[data-aos] { transition: opacity 0.5s ease, transform 0.5s ease; }
[data-aos="fade-up"] { transform: translateY(20px); opacity: 0; }
[data-aos="fade-up"].aos-animate { transform: translateY(0); opacity: 1; }
[data-aos="zoom-in"] { transform: scale(0.9); opacity: 0; }
[data-aos="zoom-in"].aos-animate { transform: scale(1); opacity: 1; }
