:root {
  --canvas: #f5f3f0;
  --ink: #2e2e33;
  --muted: rgba(46, 46, 51, 0.62);
  --faint: rgba(46, 46, 51, 0.38);
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-border: rgba(255, 255, 255, 0.72);
  --hairline: rgba(46, 46, 51, 0.1);
  --coral: #ff7f50;
  --fuchsia: #ff1493;
  --violet: #ee82ee;
  --sky: #87ceee;
  --turquoise: #40e0d0;
  --lavender: #e4d9ee;
  --gradient: linear-gradient(135deg, #ff7f50 0%, #ff1493 28%, #ee82ee 52%, #87ceee 78%, #40e0d0 100%);
  --shadow-sm: 0 10px 30px rgba(46, 46, 51, 0.08);
  --shadow-md: 0 22px 60px rgba(46, 46, 51, 0.13);
  --shadow-phone: 0 45px 100px rgba(46, 46, 51, 0.25), 0 12px 30px rgba(46, 46, 51, 0.17);
  --radius-card: 32px;
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: rgba(255, 20, 147, 0.18); }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.shell { margin-inline: auto; width: var(--shell); }
.section-pad { padding: 138px 0; }

.skip-link {
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  color: white;
  left: 20px;
  padding: 12px 18px;
  position: fixed;
  top: -60px;
  transition: top .2s ease;
  z-index: 1000;
}
.skip-link:focus { top: 0; }

.site-header {
  left: 0;
  padding: 15px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
  z-index: 100;
}

.site-header.scrolled {
  backdrop-filter: blur(22px);
  background: rgba(245, 243, 240, .82);
  border-bottom: 1px solid var(--hairline);
  padding: 10px 0;
}

.nav-wrap {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-inline: auto;
  width: var(--shell);
}

.brand { display: block; width: 122px; }
.brand img { height: 38px; object-fit: contain; object-position: left center; width: 122px; }

.main-nav { align-items: center; display: flex; gap: 34px; }
.main-nav a { color: rgba(46,46,51,.72); font-size: 13px; font-weight: 500; text-decoration: none; transition: color .2s ease; }
.main-nav a:hover { color: var(--fuchsia); }

.nav-actions { align-items: center; display: flex; gap: 12px; justify-self: end; }
.language-link {
  align-items: center;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  letter-spacing: .08em;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  width: 42px;
}
.language-link:hover { background: rgba(255,255,255,.65); border-color: rgba(255,20,147,.35); color: var(--fuchsia); }

.nav-cta {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: white;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  justify-self: end;
  padding: 10px 16px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { box-shadow: 0 9px 24px rgba(46,46,51,.18); transform: translateY(-2px); }
.nav-cta svg, .button svg { fill: none; height: 17px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; width: 17px; }

.hero {
  background:
    radial-gradient(circle at 5% 0%, rgba(228,217,238,.8), transparent 30%),
    radial-gradient(circle at 95% 20%, rgba(135,206,238,.17), transparent 31%),
    var(--canvas);
  min-height: 940px;
  overflow: hidden;
  padding: 148px 0 70px;
  position: relative;
}

.hero-grid { align-items: center; display: grid; gap: 30px; grid-template-columns: .94fr 1.06fr; min-height: 710px; position: relative; z-index: 2; }
.hero-copy, .product-copy, .contact-copy, .contact-form { min-width: 0; }

.kicker, .section-number {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.kicker { align-items: center; display: flex; gap: 10px; margin-bottom: 23px; }
.kicker > span { background: var(--gradient); border-radius: 50%; height: 8px; width: 8px; }

.hero h1 {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(60px, 6.2vw, 94px);
  letter-spacing: -.045em;
  line-height: .95;
  margin: 0;
  max-width: 670px;
}
.gradient-text {
  -webkit-background-clip: text;
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: -.12em;
  padding-bottom: .12em;
}
.hero-lead { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 30px 0 0; max-width: 570px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.button {
  align-items: center;
  border: 0;
  border-radius: 18px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 13px;
  justify-content: center;
  padding: 15px 22px;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--gradient); box-shadow: 0 14px 30px rgba(255,20,147,.18); color: white; }
.button-primary:hover { box-shadow: 0 20px 38px rgba(255,20,147,.26); }
.button-quiet { background: rgba(255,255,255,.52); border: 1px solid var(--surface-border); box-shadow: var(--shadow-sm); }
.button-quiet span { color: var(--fuchsia); }
.button-large { border-radius: 20px; font-size: 15px; padding: 18px 26px; }

.hero-proof { align-items: center; color: var(--muted); display: flex; font-size: 10px; font-weight: 500; gap: 11px; margin-top: 27px; }
.hero-proof i { background: var(--gradient); border-radius: 50%; display: block; height: 4px; width: 4px; }

.hero-glow { border-radius: 50%; filter: blur(30px); opacity: .38; position: absolute; }
.glow-coral { background: radial-gradient(circle, rgba(255,127,80,.48), rgba(238,130,238,.2) 48%, transparent 72%); height: 440px; left: -260px; top: 230px; width: 440px; }
.glow-blue { background: radial-gradient(circle, rgba(64,224,208,.42), rgba(135,206,238,.22) 52%, transparent 73%); height: 520px; right: -250px; top: 120px; width: 520px; }

.hero-visual { height: 730px; position: relative; transform-style: preserve-3d; }
.orbit { border: 1px solid rgba(46,46,51,.11); border-radius: 50%; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%) rotate(-17deg); }
.orbit-one { height: 610px; width: 610px; }
.orbit-two { height: 470px; transform: translate(-50%,-50%) rotate(29deg); width: 680px; }

.phone-float { margin: 0; position: absolute; transition: transform .18s ease-out; z-index: 3; }
.phone-center { left: 50%; top: 12px; transform: translateX(-50%); z-index: 4; }
.phone-left { left: 0; top: 148px; transform: rotate(-11deg); }
.phone-right { right: -4px; top: 164px; transform: rotate(11deg); }

.iphone {
  background: linear-gradient(145deg, #111114, #2f3034 60%, #0e0e10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 52px;
  box-shadow: var(--shadow-phone);
  padding: 8px;
  position: relative;
}
.iphone::before { background: #242529; border-radius: 2px 0 0 2px; content: ""; height: 66px; left: -4px; position: absolute; top: 132px; width: 4px; }
.iphone::after { background: #242529; border-radius: 0 2px 2px 0; content: ""; height: 88px; position: absolute; right: -4px; top: 154px; width: 4px; }
.iphone img { aspect-ratio: 390 / 844; border-radius: 44px; height: auto; object-fit: cover; width: 100%; }
.iphone-main { width: 292px; }
.iphone-side { border-radius: 44px; padding: 7px; width: 226px; }
.iphone-side img { border-radius: 37px; }
.dynamic-island { background: #070708; border-radius: 999px; height: 22px; left: 50%; position: absolute; top: 17px; transform: translateX(-50%); width: 76px; z-index: 4; }
.iphone-side .dynamic-island { height: 18px; top: 14px; width: 61px; }

.floating-note { align-items: center; backdrop-filter: blur(18px); background: rgba(255,255,255,.83); border: 1px solid rgba(255,255,255,.9); border-radius: 18px; box-shadow: var(--shadow-md); display: flex; gap: 10px; padding: 11px 14px; position: absolute; transition: transform .18s ease-out; z-index: 8; }
.floating-note b, .floating-note small { display: block; }
.floating-note b { font-family: "Quicksand"; font-size: 11px; }
.floating-note small { color: var(--muted); font-size: 8px; margin-top: 1px; }
.note-weather { right: 1px; top: 83px; }
.note-ready { bottom: 90px; left: 17px; }
.note-icon, .note-check { align-items: center; border-radius: 50%; display: flex; height: 31px; justify-content: center; width: 31px; }
.note-icon { background: rgba(255,185,64,.16); color: #e69b18; font-size: 17px; }
.note-check { background: var(--gradient); color: white; font-size: 12px; }

.scroll-cue { align-items: center; bottom: 24px; color: var(--faint); display: flex; font-size: 8px; font-weight: 600; gap: 9px; left: 50%; letter-spacing: .19em; position: absolute; transform: translateX(-50%); }
.scroll-cue span { border: 1px solid var(--faint); border-radius: 999px; height: 27px; position: relative; width: 16px; }
.scroll-cue span::after { animation: scrollDot 1.8s ease-in-out infinite; background: var(--fuchsia); border-radius: 50%; content: ""; height: 3px; left: 5px; position: absolute; top: 5px; width: 3px; }

.capability-strip { background: var(--ink); color: white; overflow: hidden; padding: 18px 0; }
.strip-track { align-items: center; animation: marquee 32s linear infinite; display: flex; gap: 28px; min-width: max-content; padding-left: 28px; }
.strip-track span { font-family: "Quicksand"; font-size: 15px; font-weight: 600; white-space: nowrap; }
.strip-track b { color: var(--violet); font-size: 12px; }

.hero-lead strong { color: var(--ink); font-weight: 600; }

.belief-grid { align-items: center; display: grid; gap: 90px; grid-template-columns: .83fr 1.17fr; }
.belief-copy h2, .section-heading h2, .final-cta h2 {
  font-family: "Quicksand";
  font-size: clamp(48px, 5.2vw, 74px);
  letter-spacing: -.04em;
  line-height: 1;
  margin: 18px 0 24px;
}
.belief-copy > p { color: var(--muted); font-size: 16px; line-height: 1.8; max-width: 510px; }
.belief-quote { border-top: 1px solid var(--hairline); display: grid; gap: 12px; grid-template-columns: auto 1fr; margin-top: 38px; padding-top: 26px; }
.belief-quote > span { -webkit-background-clip: text; background: var(--gradient); background-clip: text; color: transparent; font-family: "Quicksand"; font-size: 52px; font-weight: 700; line-height: .8; }
.belief-quote p { font-family: "Quicksand"; font-size: 17px; font-weight: 600; line-height: 1.5; margin: 0; }

.editorial-collage { height: 680px; position: relative; }
.photo { border: 7px solid white; box-shadow: var(--shadow-md); overflow: hidden; position: absolute; }
.photo img { height: 100%; object-fit: cover; width: 100%; }
.photo-main { border-radius: 180px 180px 32px 32px; height: 610px; left: 40px; top: 0; transform: rotate(-3deg); width: 390px; }
.photo-secondary { border-radius: 32px 32px 150px 150px; bottom: 0; height: 390px; right: 0; transform: rotate(6deg); width: 285px; }
.collage-card { align-items: center; backdrop-filter: blur(20px); background: rgba(255,255,255,.84); border: 1px solid white; border-radius: 24px; bottom: 65px; box-shadow: var(--shadow-md); display: flex; gap: 12px; left: 0; padding: 14px 17px; position: absolute; z-index: 4; }
.collage-card img { height: 48px; width: 48px; }
.collage-card p { color: var(--muted); font-size: 10px; line-height: 1.45; }
.collage-card b { color: var(--ink); font-family: "Quicksand"; font-size: 12px; }
.collage-pill { background: rgba(255,255,255,.86); border: 1px solid white; border-radius: 999px; box-shadow: var(--shadow-sm); font-size: 9px; font-weight: 600; padding: 7px 12px; position: absolute; z-index: 4; }
.pill-one { right: 20px; top: 52px; }
.pill-two { left: 20px; top: 170px; }

.how-section { background: rgba(228,217,238,.33); }
.section-heading.centered { margin: 0 auto 62px; max-width: 820px; text-align: center; }
.section-heading.centered p { margin-inline: auto; }
.section-heading > p, .split-heading > p { color: var(--muted); font-size: 15px; line-height: 1.75; max-width: 600px; }

.steps-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.step-card { background: rgba(255,255,255,.65); border: 1px solid var(--surface-border); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-height: 510px; overflow: hidden; padding: 27px; position: relative; }
.step-top { align-items: center; display: flex; justify-content: space-between; }
.step-top > span { color: var(--faint); font-family: "Quicksand"; font-size: 13px; font-weight: 700; }
.step-icon { align-items: center; background: var(--gradient); border-radius: 15px; color: white; display: flex; font-size: 18px; height: 43px; justify-content: center; position: relative; width: 43px; }
.scan-icon::before, .scan-icon::after, .scan-icon i::before, .scan-icon i::after { border-color: white; border-style: solid; content: ""; height: 7px; position: absolute; width: 7px; }
.scan-icon::before { border-width: 2px 0 0 2px; left: 11px; top: 11px; }
.scan-icon::after { border-width: 2px 2px 0 0; right: 11px; top: 11px; }
.scan-icon i::before { border-width: 0 0 2px 2px; bottom: 11px; left: 11px; }
.scan-icon i::after { border-width: 0 2px 2px 0; bottom: 11px; right: 11px; }
.step-card h3, .product-copy h3, .bento-card h3 { font-family: "Quicksand"; letter-spacing: -.025em; }
.step-card h3 { font-size: 27px; margin: 28px 0 10px; }
.step-card > p { color: var(--muted); font-size: 13px; line-height: 1.7; margin: 0; }
.scan-visual, .occasion-visual, .progress-visual { flex: 1; margin-top: 25px; min-height: 225px; position: relative; }
.scan-photo { border: 4px solid white; border-radius: 21px; height: 220px; left: 0; overflow: hidden; position: absolute; top: 0; transform: rotate(-4deg); width: 145px; }
.scan-photo img { height: 100%; object-fit: cover; width: 100%; }
.scan-line { animation: scan 2.5s ease-in-out infinite; background: linear-gradient(90deg, transparent, var(--fuchsia), transparent); height: 2px; left: 5px; position: absolute; top: 35px; width: 140px; z-index: 3; }
.scan-garments { background: rgba(255,255,255,.82); border: 1px solid white; border-radius: 22px; bottom: 0; box-shadow: var(--shadow-sm); display: grid; gap: 3px; grid-template-columns: repeat(3,1fr); padding: 9px; position: absolute; right: -8px; transform: rotate(4deg); width: 210px; }
.scan-garments img { height: 72px; object-fit: contain; width: 100%; }
.occasion-visual { align-content: center; display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; padding: 18px 4px; }
.occasion-visual span { background: white; border: 1px solid var(--surface-border); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: 11px; padding: 9px 13px; transform: rotate(-2deg); }
.occasion-visual span:nth-child(2n) { transform: rotate(3deg); }
.occasion-visual span.active { background: var(--gradient); border: 0; color: white; font-weight: 600; padding: 10px 14px; transform: scale(1.08) rotate(-1deg); }
.mini-look { align-items: center; display: flex; height: 150px; justify-content: center; position: relative; }
.mini-look img { filter: drop-shadow(0 12px 10px rgba(46,46,51,.12)); height: 110px; margin: 0 -15px; object-fit: contain; width: 110px; }
.mini-look img:nth-child(2) { height: 130px; transform: translateY(24px); }
.used-chip { align-items: center; background: white; border: 1px solid var(--surface-border); border-radius: 20px; bottom: 6px; box-shadow: var(--shadow-sm); display: flex; gap: 10px; left: 50%; padding: 10px 14px; position: absolute; transform: translateX(-50%); width: 240px; }
.used-chip > i { align-items: center; background: #e8f8f1; border-radius: 50%; color: #16a66d; display: flex; font-style: normal; height: 32px; justify-content: center; width: 32px; }
.used-chip b, .used-chip small { display: block; }
.used-chip b { font-family: "Quicksand"; font-size: 11px; }
.used-chip small { color: var(--muted); font-size: 8px; margin-top: 1px; }

.product-section { overflow: hidden; }
.split-heading { align-items: end; display: grid; gap: 80px; grid-template-columns: 1fr .7fr; margin-bottom: 55px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { margin: 0 0 6px; }
.product-row { align-items: center; display: grid; gap: 110px; grid-template-columns: 1.05fr .95fr; min-height: 840px; }
.product-row-reverse .product-visual { order: 2; }
.product-row-reverse .product-copy { order: 1; }
.product-visual { height: 760px; position: relative; }
.feature-blob { border-radius: 50%; filter: blur(1px); height: 580px; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%); width: 580px; }
.blob-pink { background: radial-gradient(circle at 40% 40%, rgba(255,127,80,.24), rgba(238,130,238,.19) 55%, transparent 71%); }
.blob-blue { background: radial-gradient(circle at 55% 40%, rgba(64,224,208,.2), rgba(135,206,238,.24) 55%, transparent 72%); }
.blob-violet { background: radial-gradient(circle at 44% 42%, rgba(238,130,238,.24), rgba(228,217,238,.5) 55%, transparent 72%); }
.iphone-feature { left: 50%; position: absolute; top: 50%; width: 332px; z-index: 3; }
.phone-tilt-left { transform: translate(-50%,-50%) rotate(-6deg); }
.phone-tilt-right { transform: translate(-50%,-50%) rotate(5deg); }
.phone-tilt-left-sm { transform: translate(-50%,-50%) rotate(-4deg); }
.phone-tilt-right-sm { transform: translate(-50%,-50%) rotate(4deg); }
.iphone-feature img { border-radius: 45px; }
.feature-callout { align-items: center; backdrop-filter: blur(20px); background: rgba(255,255,255,.87); border: 1px solid white; border-radius: 20px; box-shadow: var(--shadow-md); display: flex; gap: 11px; padding: 12px 15px; position: absolute; z-index: 5; }
.feature-callout > span { align-items: center; background: var(--gradient); border-radius: 13px; color: white; display: flex; font-family: "Quicksand"; font-size: 13px; font-weight: 700; height: 38px; justify-content: center; min-width: 38px; }
.feature-callout b, .feature-callout small { display: block; }
.feature-callout b { font-family: "Quicksand"; font-size: 12px; }
.feature-callout small { color: var(--muted); font-size: 8px; margin-top: 2px; }
.callout-scan { left: 5px; top: 120px; }
.callout-weather { right: 3px; top: 124px; }
.callout-calendar { bottom: 140px; left: 0; }
.callout-context { bottom: 145px; right: 0; }
.callout-lookbook { bottom: 132px; left: 0; }
.loose-garment { filter: drop-shadow(0 18px 15px rgba(46,46,51,.15)); object-fit: contain; position: absolute; z-index: 4; }
.loose-jacket { bottom: 108px; height: 150px; left: 4px; transform: rotate(-13deg); width: 150px; }
.loose-shoe { height: 110px; right: 10px; top: 78px; transform: rotate(16deg); width: 110px; }
.product-copy { max-width: 490px; }
.feature-tag { color: var(--fuchsia); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.product-copy h3 { font-size: clamp(42px,4.4vw,64px); line-height: 1.02; margin: 17px 0 22px; }
.product-copy > p { color: var(--muted); font-size: 15px; line-height: 1.8; margin: 0; }
.feature-list { border-top: 1px solid var(--hairline); list-style: none; margin: 33px 0 0; padding: 22px 0 0; }
.feature-list li { align-items: center; display: flex; font-size: 12px; gap: 10px; margin: 12px 0; }
.feature-list i { align-items: center; background: var(--gradient); border-radius: 50%; color: white; display: flex; flex: none; font-size: 8px; font-style: normal; height: 19px; justify-content: center; width: 19px; }

.ecosystem-section { background: var(--ink); color: white; overflow: hidden; }
.light-heading .section-number, .light-heading p { color: rgba(255,255,255,.56); }
.bento-grid { display: grid; gap: 18px; grid-template-columns: repeat(12, 1fr); }
.bento-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-card); min-height: 330px; overflow: hidden; padding: 29px; position: relative; }
.bento-card::before { background: radial-gradient(circle, rgba(238,130,238,.16), transparent 68%); content: ""; height: 280px; position: absolute; right: -120px; top: -120px; width: 280px; }
.bento-wide { align-items: center; display: grid; gap: 30px; grid-column: span 7; grid-template-columns: .8fr 1.2fr; }
.bento-calendar { grid-column: span 5; }
.bento-advisors { grid-column: span 5; }
.bento-stats { align-items: center; display: grid; gap: 15px; grid-column: span 7; grid-template-columns: 1fr auto; }
.bento-icon { align-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.13); border-radius: 15px; display: flex; height: 44px; justify-content: center; margin-bottom: 26px; width: 44px; }
.bento-card h3 { font-size: 29px; margin: 0 0 10px; }
.bento-card p { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; margin: 0; }
.weather-stack { display: flex; height: 220px; justify-content: center; position: relative; }
.weather-stack > div { background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; display: flex; flex-direction: column; height: 205px; justify-content: space-between; padding: 20px 16px; position: absolute; top: 6px; width: 126px; }
.weather-stack > div:nth-child(1) { left: 0; transform: rotate(-8deg); }
.weather-stack > div:nth-child(2) { left: 50%; transform: translateX(-50%) translateY(-8px); z-index: 3; }
.weather-stack > div:nth-child(3) { right: 0; transform: rotate(8deg); }
.weather-stack span, .weather-stack small { color: rgba(255,255,255,.52); font-size: 8px; }
.weather-stack b { font-family: "Quicksand"; font-size: 38px; }
.mini-calendar { display: grid; gap: 8px; grid-template-columns: repeat(7, 1fr); margin-top: 43px; }
.mini-calendar span { align-items: center; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; color: rgba(255,255,255,.62); display: flex; font-family: "Quicksand"; font-size: 12px; height: 48px; justify-content: center; position: relative; }
.mini-calendar .today { background: var(--gradient); border: 0; color: white; }
.mini-calendar .marked::after { background: var(--fuchsia); border-radius: 50%; bottom: 5px; content: ""; height: 4px; position: absolute; width: 4px; }
.advisor-avatars { display: flex; margin-bottom: 17px; }
.advisor-avatars img { border: 3px solid var(--ink); border-radius: 50%; height: 54px; margin-right: -12px; object-fit: cover; width: 54px; }
.advisor-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 25px; }
.advisor-tags span { border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.74); font-size: 8px; padding: 6px 9px; }
.stat-ring { align-items: center; background: conic-gradient(var(--fuchsia) 0 36%, var(--violet) 36% 60%, var(--sky) 60% 78%, rgba(255,255,255,.08) 78%); border-radius: 50%; display: flex; height: 210px; justify-content: center; position: relative; width: 210px; }
.stat-ring::after { background: var(--ink); border-radius: 50%; content: ""; height: 166px; position: absolute; width: 166px; }
.stat-ring span { position: relative; text-align: center; z-index: 2; }
.stat-ring b { display: block; font-family: "Quicksand"; font-size: 46px; line-height: 1; }
.stat-ring small { color: rgba(255,255,255,.52); display: block; font-size: 8px; line-height: 1.4; margin-top: 7px; text-transform: uppercase; }

.contact-section {
  background:
    radial-gradient(circle at 8% 25%, rgba(238,130,238,.18), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(64,224,208,.16), transparent 30%),
    #ece8e3;
  overflow: hidden;
}
.contact-shell { align-items: center; display: grid; gap: 100px; grid-template-columns: .86fr 1.14fr; }
.contact-copy h2 { font-size: clamp(48px,5.6vw,76px); line-height: 1.01; margin: 18px 0 22px; }
.contact-copy > p { color: var(--muted); font-size: 14px; line-height: 1.75; margin: 0 0 30px; max-width: 480px; }
.contact-email {
  align-items: center;
  display: inline-flex;
  gap: 13px;
  text-decoration: none;
}
.contact-email > span:first-child {
  align-items: center;
  background: var(--gradient);
  border-radius: 16px;
  color: white;
  display: flex;
  font-size: 15px;
  height: 48px;
  justify-content: center;
  width: 48px;
}
.contact-email small, .contact-email b { display: block; }
.contact-email small { color: var(--muted); font-size: 9px; margin-bottom: 2px; text-transform: uppercase; }
.contact-email b { font-family: "Quicksand", sans-serif; font-size: 15px; }
.contact-form {
  backdrop-filter: blur(22px);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 34px;
  box-shadow: var(--shadow-md);
  padding: 34px;
}
.contact-form label { color: var(--ink); display: block; font-size: 10px; font-weight: 600; letter-spacing: .04em; }
.form-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.contact-form input, .contact-form textarea {
  background: rgba(245,243,240,.7);
  border: 1px solid rgba(46,46,51,.1);
  border-radius: 16px;
  color: var(--ink);
  display: block;
  font-size: 12px;
  margin: 8px 0 18px;
  outline: none;
  padding: 14px 15px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.contact-form textarea { min-height: 145px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { background: white; border-color: rgba(255,20,147,.42); box-shadow: 0 0 0 4px rgba(255,20,147,.08); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--faint); }
.form-submit { border: 0; cursor: pointer; }
.form-note { color: var(--faint); font-size: 8px; line-height: 1.5; margin: 12px 0 0; }

.final-cta { background: var(--canvas); overflow: hidden; padding: 150px 0; position: relative; text-align: center; }
.final-shell { align-items: center; display: flex; flex-direction: column; position: relative; z-index: 2; }
.cta-icon { height: 90px; margin-bottom: 27px; width: 90px; }
.final-cta h2 { font-size: clamp(54px,7vw,92px); max-width: 900px; }
.final-cta p { color: var(--muted); font-size: 16px; line-height: 1.75; margin: 0 auto 32px; max-width: 690px; }
.plan-note { color: var(--muted); font-size: 9px; margin-top: 14px; }
.cta-orb { border-radius: 50%; filter: blur(25px); position: absolute; }
.orb-coral { background: rgba(255,127,80,.28); height: 380px; left: -180px; top: 30px; width: 380px; }
.orb-cyan { background: rgba(64,224,208,.22); bottom: -200px; height: 480px; right: -160px; width: 480px; }

.site-footer { border-top: 1px solid var(--hairline); padding: 45px 0; }
.footer-wrap { align-items: end; display: grid; gap: 30px; grid-template-columns: 1fr auto; }
.footer-brand img { height: 34px; object-fit: contain; object-position: left; width: 110px; }
.footer-brand p { color: var(--muted); font-size: 9px; margin: 7px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: flex-end; max-width: 720px; }
.footer-links a { color: var(--muted); font-size: 10px; text-decoration: none; }
.footer-links a:hover { color: var(--fuchsia); }
.copyright { color: var(--faint); font-size: 8px; grid-column: 1 / -1; margin: 6px 0 0; }

/* Legal pages */
.legal-body { background: #f7f5f2; }
.legal-header { background: rgba(247,245,242,.92); }
.legal-main { padding: 150px 0 110px; }
.legal-hero { border-bottom: 1px solid var(--hairline); padding-bottom: 68px; }
.legal-hero .section-number { display: block; margin-bottom: 18px; }
.legal-hero h1 { font-family: "Quicksand", sans-serif; font-size: clamp(52px,7vw,92px); letter-spacing: -.045em; line-height: .98; margin: 0 0 20px; }
.legal-hero p { color: var(--muted); font-size: 15px; line-height: 1.75; margin: 0; max-width: 700px; }
.legal-updated { color: var(--faint); display: block; font-size: 9px; margin-top: 22px; text-transform: uppercase; }
.legal-layout { align-items: start; display: grid; gap: 86px; grid-template-columns: 240px minmax(0,760px); justify-content: center; padding-top: 70px; }
.legal-toc { position: sticky; top: 110px; }
.legal-toc b { display: block; font-size: 9px; letter-spacing: .16em; margin-bottom: 15px; text-transform: uppercase; }
.legal-toc a { color: var(--muted); display: block; font-size: 11px; line-height: 1.45; padding: 7px 0; text-decoration: none; }
.legal-toc a:hover { color: var(--fuchsia); }
.legal-content { min-width: 0; }
.legal-section { border-bottom: 1px solid var(--hairline); padding: 0 0 42px; margin-bottom: 42px; scroll-margin-top: 110px; }
.legal-section:last-child { border: 0; }
.legal-section h2 { font-family: "Quicksand", sans-serif; font-size: 32px; letter-spacing: -.025em; margin: 0 0 18px; }
.legal-section h3 { font-family: "Quicksand", sans-serif; font-size: 18px; margin: 26px 0 10px; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 13px; line-height: 1.85; }
.legal-section p { margin: 0 0 14px; }
.legal-section ul { margin: 14px 0; padding-left: 22px; }
.legal-section li { margin: 8px 0; padding-left: 4px; }
.legal-section strong { color: var(--ink); }
.legal-contact-card { background: white; border: 1px solid var(--surface-border); border-radius: 24px; box-shadow: var(--shadow-sm); margin-top: 22px; padding: 22px; }
.legal-contact-card a { color: var(--fuchsia); font-weight: 600; overflow-wrap: anywhere; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.legal-actions .button { font-size: 10px; padding: 12px 17px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes scrollDot { 0%,100% { opacity: .3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(11px); } }
@keyframes scan { 0%,100% { opacity: .2; transform: translateY(0); } 50% { opacity: 1; transform: translateY(150px); } }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 960px); }
  .hero { min-height: 850px; padding-top: 130px; }
  .hero-grid { gap: 0; grid-template-columns: .9fr 1.1fr; min-height: 650px; }
  .hero h1 { font-size: 67px; }
  .hero-visual { height: 650px; transform: scale(.9); transform-origin: center; }
  .belief-grid { gap: 45px; }
  .editorial-collage { transform: scale(.88); transform-origin: center; }
  .product-row { gap: 45px; }
  .product-visual { transform: scale(.9); }
  .contact-shell { gap: 55px; }
  .bento-wide { grid-column: span 12; }
  .bento-calendar { grid-column: span 5; }
  .bento-advisors { grid-column: span 7; }
  .bento-stats { grid-column: span 12; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); --radius-card: 25px; }
  .section-pad { padding: 92px 0; }
  .main-nav { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .nav-cta { font-size: 0; padding: 11px; }
  .nav-cta svg { height: 19px; width: 19px; }
  .hero { min-height: 1190px; padding-top: 112px; }
  .hero-grid { display: block; min-height: auto; }
  .hero-copy { text-align: center; }
  .kicker, .hero-actions, .hero-proof { justify-content: center; }
  .hero h1 { font-size: clamp(54px, 14vw, 77px); margin-inline: auto; }
  .hero-lead { font-size: 15px; margin-inline: auto; }
  .hero-visual { height: 620px; margin: 44px auto 0; max-width: 660px; transform: scale(.91); transform-origin: top center; }
  .phone-left { left: 0; }
  .phone-right { right: 0; }
  .belief-grid { display: flex; flex-direction: column; }
  .belief-copy { text-align: center; }
  .belief-copy > p { margin-inline: auto; }
  .belief-quote { text-align: left; }
  .editorial-collage { margin: -30px auto; transform: scale(.9); width: 620px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 460px; }
  .scan-visual, .occasion-visual, .progress-visual { min-height: 200px; }
  .split-heading { display: block; text-align: center; }
  .split-heading > p { margin: 24px auto 0; }
  .product-row, .product-row-reverse { display: flex; flex-direction: column; gap: 0; min-height: auto; padding: 65px 0; }
  .product-row-reverse .product-visual, .product-row-reverse .product-copy { order: initial; }
  .product-visual { flex: none; height: 680px; transform: scale(.9); transform-origin: center; width: 100%; }
  .product-copy { max-width: 610px; text-align: center; width: 100%; }
  .feature-list { display: inline-block; text-align: left; }
  .contact-shell { grid-template-columns: 1fr; }
  .contact-copy { margin-inline: auto; max-width: 620px; text-align: center; width: 100%; }
  .contact-copy > p { margin-inline: auto; }
  .contact-form { margin-inline: auto; max-width: 680px; width: 100%; }
  .bento-calendar, .bento-advisors { grid-column: span 12; }
  .footer-wrap { align-items: start; grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; max-width: 100%; }
  .legal-layout { gap: 48px; grid-template-columns: 190px minmax(0,1fr); }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }
  .site-header { padding-top: 10px; }
  .brand, .brand img { width: 103px; }
  .hero { min-height: 970px; padding-top: 105px; }
  .hero h1 { font-size: clamp(42px, 13vw, 54px); max-width: 100%; }
  .hero-lead { font-size: 13px; line-height: 1.65; max-width: 100%; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-proof { font-size: 8px; }
  .hero-visual { height: 455px; margin-top: 48px; transform: scale(.69); width: 570px; left: 50%; margin-left: -285px; }
  .iphone-main { width: 280px; }
  .iphone-side { width: 206px; }
  .phone-left { left: 5px; top: 138px; }
  .phone-right { right: 5px; top: 146px; }
  .floating-note { display: none; }
  .scroll-cue { bottom: 20px; }
  .belief-copy h2, .section-heading h2, .final-cta h2 { font-size: 44px; }
  .belief-copy > p, .section-heading > p { font-size: 13px; }
  .editorial-collage { height: 530px; margin: -50px auto; transform: scale(.69); transform-origin: top center; width: 620px; }
  .how-section { overflow: hidden; }
  .step-card { min-height: 500px; padding: 23px; }
  .split-heading { margin-bottom: 20px; }
  .product-visual { height: 610px; transform: scale(.77); width: 125%; }
  .iphone-feature { width: 315px; }
  .callout-scan, .callout-calendar { left: 64px; }
  .callout-weather, .callout-context { right: 64px; }
  .callout-lookbook { left: 64px; }
  .product-copy { padding: 0 8px; }
  .product-copy h3 { font-size: 42px; }
  .product-copy > p { font-size: 13px; }
  .feature-list li { align-items: flex-start; }
  .bento-card { min-height: 300px; padding: 24px; }
  .bento-wide, .bento-stats { display: block; }
  .weather-stack { margin-top: 35px; }
  .stat-ring { height: 170px; margin: 28px auto 0; width: 170px; }
  .stat-ring::after { height: 134px; width: 134px; }
  .final-cta { padding: 105px 0; }
  .final-cta p { font-size: 13px; }
  .footer-links { flex-wrap: wrap; }
  .contact-section { padding: 92px 0; }
  .contact-copy h2 { font-size: 44px; }
  .contact-copy h2, .final-cta h2, .product-copy h3 { overflow-wrap: anywhere; }
  .contact-form { border-radius: 26px; padding: 23px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-email b { font-size: 13px; }
  .legal-main { padding: 120px 0 75px; }
  .legal-hero { padding-bottom: 44px; }
  .legal-hero h1 { font-size: 50px; }
  .legal-layout { display: block; padding-top: 48px; }
  .legal-toc { background: rgba(255,255,255,.6); border: 1px solid var(--surface-border); border-radius: 20px; margin-bottom: 48px; padding: 18px; position: static; }
  .legal-toc a { display: inline-block; margin-right: 14px; }
  .legal-section h2 { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
