:root {
  --bg: #FFFBF6;
  --bg-soft: #FFF3E8;
  --ink: #241F1A;
  --ink-soft: #5B5347;
  --muted: #948A7A;
  --line: #F0E4D4;
  --card: #FFFFFF;
  --tan: #D9B58C;
  --coral: #FF7A59;
  --coral-deep: #F0563A;
  --gold: #F0B542;
  --mint: #4FBF9A;
  --lavender: #9B85E0;
  --sky: #4FA3D9;
  --grad-warm: linear-gradient(120deg, #FF9A6C, #F0563A);
  --grad-cool: linear-gradient(120deg, #9B85E0, #4FA3D9);
  --grad-mint: linear-gradient(120deg, #6FD9B0, #4FBF9A);
  --grad-gold: linear-gradient(120deg, #FFD37A, #F0B542);
  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 24px 60px -24px rgba(240, 86, 58, 0.22);
  --shadow-sm: 0 10px 30px -14px rgba(36, 31, 26, 0.14);
  --sans: "Bricolage Grotesque", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

h1, h2, h3, h4 { font-family: var(--sans); font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; }
h2 { font-size: clamp(2rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.25rem; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-size: 0.82rem; font-weight: 700; color: var(--coral-deep);
  margin-bottom: 18px;
}
.badge .emoji { font-size: 1rem; }

.section-head { max-width: 620px; margin: 0 auto 54px; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 14px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: 100px; font-weight: 700; font-size: 0.98rem;
  cursor: pointer; border: none; transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  white-space: nowrap; font-family: var(--sans);
}
.btn-primary { background: var(--grad-warm); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); }
.btn-ghost { background: var(--card); color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 251, 246, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -20px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 1.3rem; font-weight: 800; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--coral-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line); background: transparent;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: all 0.25s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; width: 18px; }
.nav-toggle span::after { position: absolute; top: 6px; width: 18px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }
.mobile-panel { display: none; flex-direction: column; gap: 4px; padding: 10px 24px 26px; border-top: 1px solid var(--line); }
.mobile-panel a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-panel .btn { margin-top: 14px; }
.nav.mobile-open .mobile-panel { display: flex; }

/* Hero */
.hero { padding: 60px 0 30px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); margin-bottom: 20px; }
.hero h1 .grad { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 500px; margin-bottom: 30px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--sans); font-size: 1.5rem; font-weight: 800; }
.hero-stats div span { font-size: 0.84rem; color: var(--muted); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.color-wheel {
  position: absolute;
  top: 50%; left: 50%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    #FFD9A8, #FF9E7D, #8FD3C0, #C9B8E8, #A9C7DD, #E3B8C6,
    #C08A52, #8C6A44, #B24B36, #2B2823, #3E6B8C, #B0203A, #FFD9A8);
  opacity: 0.9;
  transform: translate(-50%, -50%);
  animation: spin 60s linear infinite;
  z-index: 0;
}
.color-wheel::before {
  content: ""; position: absolute; inset: 14%; border-radius: 50%; background: var(--bg);
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.mascot-ring {
  position: relative;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--grad-warm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  z-index: 1;
}
.mascot-ring img {
  width: 78%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}
.sticker {
  position: absolute; background: var(--card); border-radius: 20px;
  box-shadow: var(--shadow-sm); padding: 12px 16px;
  font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.sticker .dot { width: 10px; height: 10px; border-radius: 50%; }
.sticker.s1 { top: 0; left: -8%; }
.sticker.s2 { bottom: 6%; right: -12%; }
.sticker.s3 { top: 40%; right: -18%; }
.sticker small { display: block; color: var(--muted); font-weight: 500; font-size: 0.72rem; }

/* Seasons */
.seasons { padding: 30px 0 10px; }
.seasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.season-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px; text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.season-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.season-item-active { border-color: var(--coral-deep); box-shadow: 0 0 0 2px rgba(240,86,58,0.15); }
.season-swatches { display: flex; gap: 5px; justify-content: center; margin-bottom: 12px; }
.season-swatches span { width: 22px; height: 22px; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.season-item strong { display: block; font-size: 1.02rem; margin-bottom: 2px; }
.season-item > span { font-size: 0.78rem; color: var(--muted); }
.seasons-note { text-align: center; font-size: 0.86rem; color: var(--muted); margin-top: 18px; }

/* Trust strip */
.trust { padding: 40px 0; }
.trust-inner {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 34px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; box-shadow: var(--shadow-sm);
}
.trust-inner p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
.trust-marks { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.trust-marks span { font-weight: 800; font-size: 1rem; color: var(--ink-soft); }

/* Steps */
.steps { padding: 90px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card {
  background: var(--card); border-radius: var(--radius); padding: 30px 24px;
  border: 1px solid var(--line); position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.step-icon {
  width: 56px; height: 56px; border-radius: 18px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.step-icon svg { width: 26px; height: 26px; }
.step-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* Features */
.features { padding: 40px 0 90px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--card); border-radius: var(--radius); padding: 30px 24px; border: 1px solid var(--line); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.feature-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 18px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.feature-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* Try-on */
.tryon { padding: 90px 0; }
.tryon-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.tryon-mock { background: var(--card); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.tryon-mock-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.tryon-canvas {
  aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; position: relative;
  background-color: var(--grad-cool); background-size: cover; background-position: top center;
  display: flex; align-items: center; justify-content: center;
}
.tryon-badge {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; font-weight: 600;
}
.tryon-badge b { color: var(--coral-deep); }
.tryon-thumbs { display: flex; gap: 10px; margin-top: 16px; }
.tryon-thumbs i { flex: 1; aspect-ratio: 1; border-radius: 12px; display: block; }
.tryon-copy h2 { margin-bottom: 16px; }
.tryon-copy p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 26px; max-width: 480px; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; }
.check-list li .ic {
  width: 26px; height: 26px; border-radius: 50%; background: var(--grad-mint); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.72rem; flex-shrink: 0; margin-top: 2px;
}

/* Capsule */
.capsule { padding: 40px 0 90px; }
.capsule-card {
  background: var(--grad-warm); border-radius: 32px; padding: 54px; color: #fff;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; overflow: hidden; position: relative;
}
.capsule-copy .badge { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); color: #fff; }
.capsule-copy h2 { color: #fff; margin-bottom: 16px; }
.capsule-copy p { color: rgba(255,255,255,0.85); margin-bottom: 26px; max-width: 440px; }
.capsule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.capsule-item {
  border-radius: 18px; aspect-ratio: 3/4; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 10px; box-shadow: 0 14px 30px -14px rgba(0,0,0,0.3);
  background-color: #fff; background-size: cover; background-position: center;
}
.capsule-item span { background: rgba(0,0,0,0.4); color: #fff; font-size: 0.68rem; padding: 4px 8px; border-radius: 8px; font-weight: 700; }

/* Testimonials */
.testi { padding: 90px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 0.95rem; }
.testi-person div strong { display: block; font-size: 0.92rem; }
.testi-person div span { font-size: 0.8rem; color: var(--muted); }

/* Pricing */
.pricing { padding: 90px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { background: var(--card); border-radius: var(--radius); padding: 32px 26px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.price-card.featured { background: var(--grad-warm); color: #fff; border: none; transform: scale(1.03); box-shadow: var(--shadow); }
.price-card.featured .price-desc, .price-card.featured .price-features li { color: rgba(255,255,255,0.85); }
.price-card.featured .price-features .ic { background: rgba(255,255,255,0.2); color: #fff; }
.price-badge {
  align-self: flex-start; background: var(--ink); color: #fff; font-size: 0.7rem; font-weight: 800;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em;
}
.price-card.featured .price-badge { background: rgba(255,255,255,0.22); }
.price-name { font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; }
.price-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.price-amount { font-size: 2.4rem; font-weight: 800; margin-bottom: 4px; }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card.featured .price-amount span { color: rgba(255,255,255,0.8); }
.price-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin: 24px 0 28px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--ink-soft); }
.price-features .ic {
  width: 22px; height: 22px; border-radius: 50%; background: var(--bg-soft); color: var(--coral-deep);
  display: flex; align-items: center; justify-content: center; font-size: 0.64rem; flex-shrink: 0;
}

/* FAQ */
.faq { padding: 90px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; background: none; border: none; text-align: left;
  font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink);
}
.faq-q .plus {
  width: 30px; height: 30px; border-radius: 50%; background: var(--bg-soft); color: var(--coral-deep);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--grad-warm); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 24px; color: var(--ink-soft); font-size: 0.94rem; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 24px 22px; }

/* Final CTA */
.cta-final { padding: 40px 0 100px; }
.cta-box { background: var(--grad-cool); border-radius: 32px; padding: 70px 40px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-box h2 { color: #fff; margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.88); font-size: 1.08rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-box .btn-ghost { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-box .btn-dark { background: #fff; color: var(--ink); }

/* Footer */
footer { background: var(--ink); color: #C9C2B4; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-brand img { width: 38px; height: 38px; object-fit: contain; background: #fff; border-radius: 10px; padding: 3px; }
.footer-col p { font-size: 0.9rem; max-width: 260px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 0.8rem; color: #8B8578; flex-wrap: wrap; gap: 12px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 10px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tryon-grid { grid-template-columns: 1fr; }
  .tryon-copy { order: 2; }
  .capsule-card { grid-template-columns: 1fr; padding: 40px 26px; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .steps-grid, .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { gap: 22px; }
  .capsule-card { padding: 30px 20px; }
  .capsule-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .mascot-ring { width: 260px; height: 260px; }
  .color-wheel { width: 300px; height: 300px; }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Accessibility */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2.5px solid var(--coral-deep);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .color-wheel { animation: none; }
}
