:root {
  --ink: #0e2d26;
  --forest: #174d42;
  --deep: #1f6f5f;
  --teal: #2fa084;
  --mint: #6fcf97;
  --mint-soft: #d6f1df;
  --cream: #f4f0e8;
  --paper: #fbf8f2;
  --bone: #eeeae0;
  --white: #fff;
  --muted: #6e7a75;
  --saffron: #e08a3c;
  --line: rgba(14, 45, 38, .12);
  --display: "DM Sans", sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(14, 45, 38, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.10'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
em { font-family: var(--serif); font-weight: 600; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 200; top: 10px; left: 10px; padding: 10px 14px;
  background: var(--white); border-radius: 8px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  min-height: 66px;
  padding: 0 12px 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 100px;
  background: rgba(251,248,242,.82);
  box-shadow: 0 10px 40px rgba(14,45,38,.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { background: rgba(251,248,242,.94); box-shadow: 0 14px 50px rgba(14,45,38,.14); }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 22px; letter-spacing: -.8px; width: max-content; }
.brand small { font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-left: -2px; }
.brand-dot { color: var(--teal); }
.brand-mark { position: relative; width: 25px; height: 25px; display: inline-block; transform: rotate(45deg); }
.brand-mark i { position: absolute; width: 11px; height: 11px; border-radius: 3px 7px 3px 7px; background: var(--teal); }
.brand-mark i:nth-child(1) { top: 0; left: 0; }
.brand-mark i:nth-child(2) { top: 0; right: 0; background: var(--deep); transform: rotate(90deg); }
.brand-mark i:nth-child(3) { bottom: 0; left: 0; background: var(--mint); transform: rotate(90deg); }
.brand-mark i:nth-child(4) { bottom: 0; right: 0; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 600; color: #405b54; }
.site-nav a { position: relative; padding: 22px 0; }
.site-nav a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 15px; background: var(--teal); transition: right .25s ease; }
.site-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; }
.menu-toggle { display: none; border: 0; background: none; padding: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; }
.button-small { min-height: 42px; padding: 0 18px; color: var(--white); background: var(--ink); font-size: 12px; }
.button-primary { color: var(--white); background: var(--ink); box-shadow: 0 12px 30px rgba(14,45,38,.18); }
.button-primary:hover { background: var(--deep); box-shadow: 0 15px 36px rgba(14,45,38,.22); }

.hero {
  position: relative;
  min-height: 920px;
  padding: 155px max(5vw, 40px) 85px;
  display: grid;
  grid-template-columns: minmax(480px, .9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 4vw;
  background:
    radial-gradient(circle at 73% 44%, rgba(111,207,151,.18), transparent 26%),
    radial-gradient(circle at 9% 12%, rgba(224,138,60,.08), transparent 22%),
    var(--paper);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-rangoli { position: absolute; width: 350px; height: 350px; left: -160px; bottom: -80px; opacity: .045; }
.rangoli {
  background:
    linear-gradient(45deg, transparent 42%, currentColor 42% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, currentColor 42% 58%, transparent 58%);
  color: var(--teal);
  border: 28px solid currentColor;
  border-radius: 36% 64% 36% 64%;
  transform: rotate(22.5deg);
}
.hero-copy { position: relative; z-index: 2; max-width: 680px; margin-left: auto; }
.eyebrow { margin: 0 0 20px; color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 24px; height: 1px; margin-right: 10px; vertical-align: middle; background: currentColor; }
.hero h1 { margin: 0; max-width: 650px; font-size: clamp(60px, 6.2vw, 102px); line-height: .91; letter-spacing: -6px; font-weight: 600; }
.hero h1 em { display: block; color: var(--teal); letter-spacing: -4px; }
.hero-lede { max-width: 620px; margin: 30px 0 0; color: #4f625e; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 32px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.play-icon { display: grid; place-items: center; width: 38px; height: 38px; color: var(--deep); background: var(--mint-soft); border-radius: 50%; font-size: 10px; padding-left: 2px; }
.hero-proof { display: flex; margin-top: 52px; }
.hero-proof div { display: grid; gap: 2px; padding: 0 28px; border-left: 1px solid var(--line); }
.hero-proof div:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong { font-size: 24px; letter-spacing: -1px; }
.hero-proof span { color: var(--muted); font-size: 11px; }

.hero-product { position: relative; z-index: 3; min-height: 680px; display: grid; place-items: center; }
.phone-shell {
  position: relative;
  width: 342px;
  height: 690px;
  padding: 11px;
  background: #081c17;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 52px;
  box-shadow: 0 45px 100px rgba(14,45,38,.3), inset 0 0 0 2px rgba(255,255,255,.08);
  transform: rotate(3deg);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.hero-product:hover .phone-shell { transform: rotate(1deg) translateY(-5px); }
.phone-top { position: absolute; z-index: 5; top: 15px; left: 28px; right: 27px; display: flex; justify-content: space-between; align-items: center; color: var(--white); font-size: 9px; }
.phone-top i { width: 78px; height: 22px; margin-top: -2px; border-radius: 20px; background: #050e0c; }
.phone-top b { font-weight: 500; letter-spacing: 1px; }
.phone-screen { position: relative; height: 100%; overflow: hidden; border-radius: 42px; background: var(--paper); }
.phone-panel { position: absolute; inset: 0; padding: 48px 17px 24px; opacity: 0; visibility: hidden; transform: translateX(30px); transition: opacity .45s ease, transform .45s ease, visibility .45s; }
.phone-panel.is-active { opacity: 1; visibility: visible; transform: translateX(0); }
.phone-home { position: absolute; z-index: 6; left: 50%; bottom: 17px; width: 100px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.8); transform: translateX(-50%); }
.app-top { min-height: 26px; display: flex; justify-content: space-between; align-items: center; font-size: 10px; }
.mini-brand { font-weight: 700; font-size: 15px; letter-spacing: -.5px; }
.mini-brand > span:last-child { color: var(--teal); }
.mini-mark { color: var(--teal); font-size: 18px; margin-right: 4px; }
.avatar { display: grid; place-items: center; width: 27px; height: 27px; color: var(--white); background: var(--deep); border-radius: 50%; font-size: 8px; font-weight: 700; }
.app-kicker { margin-top: 25px; color: var(--mint); font-size: 8px; font-weight: 700; letter-spacing: 1.8px; }
.phone-panel h2 { margin: 8px 0 0; font-size: 27px; line-height: 1.02; letter-spacing: -1.3px; }
.phone-panel h2 em { color: var(--teal); }
.prompt-box { margin-top: 17px; padding: 14px; color: var(--white); background: var(--ink); border-radius: 18px; }
.prompt-box small { color: rgba(255,255,255,.45); font-size: 8px; }
.prompt-box p { margin: 8px 0 16px; font-size: 11px; line-height: 1.45; }
.prompt-box div { display: flex; align-items: center; gap: 5px; }
.prompt-box div span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: rgba(255,255,255,.7); font-size: 7px; }
.prompt-box button { display: grid; place-items: center; width: 27px; height: 27px; margin-left: auto; border: 0; border-radius: 50%; color: var(--ink); background: var(--mint); }
.app-section-head { display: flex; justify-content: space-between; align-items: baseline; margin: 20px 1px 10px; }
.app-section-head b { font-size: 12px; }
.app-section-head span { color: var(--muted); font-size: 7px; }
.template-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.template-card { position: relative; min-height: 118px; padding: 12px; overflow: hidden; border-radius: 16px; display: flex; flex-direction: column; align-items: flex-start; }
.template-card span { opacity: .6; font-size: 6px; font-weight: 700; letter-spacing: 1px; }
.template-card b { margin-top: auto; font-size: 10px; }
.template-card small { margin-top: 2px; opacity: .65; font-size: 6px; }
.template-card i { position: absolute; right: 9px; top: 9px; font-style: normal; opacity: .45; }
.template-card.dark { color: var(--white); background: var(--deep); }
.template-card.mint { background: var(--mint-soft); }
.template-card.cream { background: var(--bone); }
.template-card.teal { color: var(--white); background: var(--teal); }
.inverse { color: var(--white); }
.phone-panel[data-panel="generate"] { background: var(--ink); color: var(--white); }
.reel-preview { position: relative; height: 275px; margin-top: 13px; overflow: hidden; border-radius: 20px; background: linear-gradient(145deg, #c86b34, #efa663 45%, #184f43 46%); }
.reel-glow { position: absolute; width: 220px; height: 220px; left: -50px; top: -30px; border-radius: 50%; background: rgba(255,225,155,.55); filter: blur(15px); }
.preview-pill { position: absolute; top: 12px; right: 12px; padding: 5px 8px; color: var(--ink); background: var(--mint); border-radius: 8px; font-size: 6px; font-weight: 700; }
.saree-shape { position: absolute; right: 38px; bottom: 0; width: 120px; height: 215px; border-radius: 70px 70px 0 0; background: #f6d29c; transform: rotate(8deg); box-shadow: inset -25px 0 rgba(150,42,37,.45); }
.saree-shape i { position: absolute; inset: 0; border: 1px solid rgba(150,42,37,.18); border-radius: inherit; transform: scale(.82); }
.saree-shape i:nth-child(2) { transform: scale(.62); }
.saree-shape i:nth-child(3) { transform: scale(.42); }
.reel-caption { position: absolute; left: 17px; bottom: 24px; color: var(--white); font-size: 17px; line-height: 1.05; font-weight: 700; letter-spacing: -.5px; }
.reel-caption em { color: var(--mint); }
.reel-preview button { position: absolute; z-index: 2; left: 50%; top: 50%; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--white); background: rgba(14,45,38,.42); backdrop-filter: blur(8px); transform: translate(-50%,-50%); }
.timeline { display: flex; gap: 5px; margin: 12px 0 14px; }
.timeline span { height: 35px; flex: 1; border-radius: 7px; background: var(--deep); }
.timeline span:nth-child(2) { background: var(--saffron); }
.timeline span:nth-child(3) { outline: 2px solid var(--mint); }
.timeline span:nth-child(4) { background: #823e32; }
.setting-list { background: rgba(255,255,255,.06); border-radius: 15px; padding: 4px 12px; }
.setting-list div { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 8px; }
.setting-list div:last-child { border-bottom: 0; }
.setting-list span { color: rgba(255,255,255,.45); }
.setting-list b { font-weight: 600; }
.app-action { width: 100%; height: 38px; margin-top: 12px; border: 0; border-radius: 12px; background: var(--mint); color: var(--ink); font-size: 9px; font-weight: 700; }
.app-action span { float: right; margin-right: 9px; }
.calendar-title { margin-top: 26px; }
.calendar-title small { color: var(--saffron); font-size: 7px; font-weight: 700; letter-spacing: 1.5px; }
.calendar-title h2 { font-size: 29px; }
.week-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-top: 18px; }
.week-strip > span { min-height: 66px; padding: 8px 3px; text-align: center; border: 1px solid var(--line); border-radius: 12px; font-size: 12px; font-weight: 700; }
.week-strip small { display: block; color: var(--muted); font-size: 6px; margin-bottom: 4px; }
.week-strip i { display: inline-block; width: 3px; height: 3px; margin: 7px 1px 0; border-radius: 50%; background: var(--teal); }
.week-strip .active { color: var(--white); background: var(--ink); }
.week-strip .active small { color: rgba(255,255,255,.5); }
.week-strip .active i { background: var(--mint); }
.schedule-head { display: flex; justify-content: space-between; align-items: baseline; margin: 22px 2px 8px; }
.schedule-head b { font-size: 13px; }
.schedule-head span { color: var(--muted); font-size: 7px; }
.schedule-list article { display: grid; grid-template-columns: 36px 30px 1fr; gap: 8px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.schedule-list time { font-size: 8px; font-weight: 700; }
.channel { display: grid; place-items: center; width: 28px; height: 28px; color: var(--white); border-radius: 9px; font-size: 7px; font-style: normal; font-weight: 700; }
.channel.ig { background: #9a4b75; }.channel.wa { background: var(--teal); }.channel.fb { background: #3c67a1; }
.schedule-list span { display: grid; }
.schedule-list b { font-size: 8px; }
.schedule-list small { color: var(--muted); font-size: 6px; margin-top: 2px; }
.publish-ready { display: flex; gap: 10px; align-items: center; margin-top: 16px; padding: 12px; border-radius: 15px; background: var(--mint-soft); }
.publish-ready > span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 9px; }
.publish-ready p { margin: 0; display: grid; }
.publish-ready b { font-size: 9px; }.publish-ready small { color: var(--muted); font-size: 6px; margin-top: 2px; }
.orbit { position: absolute; border: 1px solid rgba(47,160,132,.2); border-radius: 50%; }
.orbit-one { width: 590px; height: 590px; animation: orbitPulse 5s ease-in-out infinite; }
.orbit-two { width: 720px; height: 720px; opacity: .45; animation: orbitPulse 5s 1s ease-in-out infinite; }
.floating-note { position: absolute; z-index: 5; display: flex; gap: 10px; align-items: center; padding: 11px 14px; border: 1px solid rgba(255,255,255,.8); border-radius: 14px; background: rgba(255,255,255,.78); box-shadow: 0 15px 35px rgba(14,45,38,.12); backdrop-filter: blur(15px); animation: float 4s ease-in-out infinite; }
.floating-note span:last-child { display: grid; }
.floating-note b { font-size: 10px; }.floating-note small { color: var(--muted); font-size: 7px; margin-top: 2px; }
.note-icon { display: grid; place-items: center; width: 28px; height: 28px; color: var(--white); background: var(--saffron); border-radius: 9px; }
.signal-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px var(--mint-soft); }
.note-one { top: 130px; left: 1%; }.note-two { right: 0; bottom: 130px; animation-delay: -2s; }
.product-tabs { position: absolute; z-index: 6; right: 2%; bottom: 30px; display: flex; flex-direction: column; gap: 8px; }
.product-tabs button { min-width: 104px; padding: 10px 13px; text-align: left; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); background: rgba(251,248,242,.8); font-size: 9px; font-weight: 600; cursor: pointer; backdrop-filter: blur(10px); transition: all .25s ease; }
.product-tabs button span { margin-right: 10px; font-size: 7px; opacity: .7; }
.product-tabs button.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); transform: translateX(-6px); }

.trust-strip { min-height: 64px; padding: 18px 4vw; display: flex; justify-content: center; align-items: center; gap: 28px; color: rgba(255,255,255,.72); background: var(--ink); font-size: 9px; font-weight: 700; letter-spacing: 1.6px; }
.trust-strip i { color: var(--mint); font-style: normal; }
.section { padding: 130px max(6vw, 40px); }
.section-intro { max-width: 750px; margin: 0 auto 90px; text-align: center; }
.section-intro h2, .studio-heading h2, .language-copy h2, .distribution-copy h2, .cta-copy h2 { margin: 0; font-size: clamp(44px, 5.3vw, 78px); line-height: .98; letter-spacing: -4px; }
.section-intro h2 em, .studio-heading h2 em, .language-copy h2 em, .distribution-copy h2 em, .cta-copy h2 em { color: var(--teal); }
.section-intro > p:last-child { max-width: 610px; margin: 26px auto 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.story { background: var(--paper); }
.story-grid { max-width: 1180px; margin: 0 auto; display: grid; gap: 130px; }
.story-step { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 8vw; }
.story-step.reverse .step-visual { order: 2; }
.step-visual { position: relative; min-height: 430px; overflow: hidden; border-radius: 40px; }
.listen-visual { display: flex; flex-direction: column; justify-content: center; align-items: center; color: var(--white); background: var(--ink); }
.listen-visual::before { content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgba(111,207,151,.14); border-radius: 50%; box-shadow: 0 0 0 60px rgba(111,207,151,.04), 0 0 0 120px rgba(111,207,151,.025); }
.sound-wave { position: relative; z-index: 1; height: 70px; display: flex; align-items: center; gap: 7px; }
.sound-wave i { width: 5px; height: 18px; border-radius: 6px; background: var(--mint); animation: wave 1.2s ease-in-out infinite; }
.sound-wave i:nth-child(2), .sound-wave i:nth-child(6) { height: 38px; animation-delay: -.2s; }
.sound-wave i:nth-child(3), .sound-wave i:nth-child(5) { height: 58px; animation-delay: -.4s; }
.sound-wave i:nth-child(4) { height: 70px; animation-delay: -.6s; }
.listen-visual p { position: relative; z-index: 1; margin: 25px 0; text-align: center; font-size: 25px; line-height: 1.35; }
.language-chip { position: relative; z-index: 1; padding: 9px 13px; color: var(--mint); border: 1px solid rgba(111,207,151,.35); border-radius: 100px; font-size: 9px; font-weight: 700; letter-spacing: .8px; }
.learn-visual { background: var(--mint-soft); }
.learn-visual::after { content: ""; position: absolute; width: 260px; height: 260px; right: -60px; top: -50px; border: 22px solid rgba(47,160,132,.09); transform: rotate(45deg); }
.brand-card { position: absolute; z-index: 1; width: 250px; height: 285px; left: 50%; top: 50%; padding: 35px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: var(--ink); border-radius: 26px; box-shadow: 0 28px 55px rgba(14,45,38,.22); transform: translate(-52%,-54%) rotate(-5deg); }
.brand-card-mark { position: absolute; width: 80px; height: 80px; top: 35px; left: 35px; border-width: 9px; color: var(--saffron); }
.brand-card b { font-size: 28px; line-height: .85; letter-spacing: -1px; }
.brand-card small { color: rgba(255,255,255,.5); margin-top: 12px; font-size: 8px; letter-spacing: 1px; }
.palette { position: absolute; z-index: 3; right: 44px; bottom: 45px; padding: 8px; display: flex; border-radius: 100px; background: var(--white); box-shadow: 0 10px 30px rgba(14,45,38,.14); }
.palette i { width: 28px; height: 28px; margin-left: -4px; border: 2px solid var(--white); border-radius: 50%; background: var(--ink); }
.palette i:nth-child(2) { background: var(--saffron); }.palette i:nth-child(3) { background: #c8a65b; }.palette i:nth-child(4) { background: #9f2d2d; }
.voice-pill { position: absolute; z-index: 3; top: 50px; right: 35px; padding: 10px 15px; color: var(--ink); background: var(--white); border-radius: 100px; box-shadow: 0 10px 25px rgba(14,45,38,.1); font-size: 10px; font-weight: 700; transform: rotate(4deg); }
.voice-pill.second { top: 95px; right: 8px; color: var(--white); background: var(--teal); transform: rotate(8deg); }
.publish-visual { background: var(--bone); }
.content-stack { position: absolute; width: 245px; height: 145px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 23px; box-shadow: 0 24px 45px rgba(14,45,38,.16); }
.content-stack span { font-size: 7px; font-weight: 700; letter-spacing: 1.2px; opacity: .6; }
.content-stack b { margin-top: 5px; font-size: 18px; }.content-stack small { margin-top: 3px; opacity: .6; font-size: 8px; }
.card-one { z-index: 3; left: 50%; top: 50%; color: var(--white); background: var(--deep); transform: translate(-50%,-50%) rotate(-1deg); }
.card-two { z-index: 2; left: 38px; top: 68px; background: var(--mint-soft); transform: rotate(-9deg); }
.card-three { z-index: 1; right: 33px; bottom: 52px; color: var(--white); background: var(--saffron); transform: rotate(9deg); }
.ready-badge { position: absolute; z-index: 5; right: 28px; top: 28px; padding: 9px 12px; color: var(--white); background: var(--ink); border-radius: 100px; font-size: 8px; font-weight: 700; }
.step-copy > span { color: var(--saffron); font-size: 10px; font-weight: 700; letter-spacing: 2px; }
.step-copy h3 { margin: 16px 0; font-size: clamp(38px, 4vw, 58px); line-height: .98; letter-spacing: -2.8px; }
.step-copy h3 em { color: var(--teal); }
.step-copy p { max-width: 470px; color: var(--muted); font-size: 16px; line-height: 1.75; }

.studio { color: var(--white); background: var(--ink); }
.studio-heading { max-width: 1180px; margin: 0 auto 70px; display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; }
.studio-heading h2 em { color: var(--mint); }
.studio-heading > p { max-width: 430px; margin: 0 0 5px auto; color: rgba(255,255,255,.56); line-height: 1.75; }
.eyebrow.light { color: var(--mint); }
.format-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; perspective: 1000px; }
.format-card { min-height: 610px; padding: 28px; display: flex; flex-direction: column; border-radius: 34px; overflow: hidden; transform-style: preserve-3d; transition: transform .2s ease, box-shadow .3s ease; }
.format-card:hover { box-shadow: 0 30px 70px rgba(0,0,0,.22); }
.format-reel { color: var(--white); background: var(--deep); }
.format-product { color: var(--ink); background: var(--mint-soft); }
.format-presenter { color: var(--ink); background: var(--cream); }
.format-campaign { color: var(--white); background: var(--saffron); }
.format-meta { display: flex; justify-content: space-between; align-items: center; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; }
.format-meta span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; letter-spacing: 0; }
.format-art { position: relative; flex: 1; margin: 20px -28px 10px; min-height: 300px; overflow: hidden; transform: translateZ(22px); }
.format-copy { position: relative; z-index: 2; transform: translateZ(15px); }
.format-copy h3 { margin: 0; font-size: 32px; letter-spacing: -1.5px; }
.format-copy p { max-width: 420px; min-height: 48px; margin: 10px 0 20px; opacity: .68; font-size: 13px; line-height: 1.6; }
.arrow-link { font-size: 11px; font-weight: 700; }
.reel-art { background: linear-gradient(135deg, #1c6153 0 49%, #e08a3c 49% 70%, #d6f1df 70%); }
.sun { position: absolute; width: 230px; height: 230px; top: 28px; left: 50%; border-radius: 50%; background: #f2c37c; transform: translateX(-50%); }
.fashion-figure { position: absolute; width: 125px; height: 260px; left: 50%; bottom: -15px; border-radius: 70px 70px 10px 10px; background: #9b3d38; box-shadow: inset -30px 0 rgba(255,255,255,.16); transform: translateX(-50%) rotate(4deg); }
.reel-art b { position: absolute; right: 30px; bottom: 22px; padding: 8px 10px; color: var(--ink); background: var(--mint); border-radius: 8px; font-size: 9px; letter-spacing: 1px; }
.product-art { background: radial-gradient(circle at 50% 38%, rgba(255,255,255,.95), rgba(255,255,255,.15) 45%, transparent 46%); }
.product-plinth { position: absolute; width: 300px; height: 75px; left: 50%; bottom: 42px; border-radius: 50%; background: var(--white); box-shadow: 0 25px 45px rgba(14,45,38,.13); transform: translateX(-50%); }
.product-box { position: absolute; left: 50%; bottom: 73px; width: 145px; height: 175px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 15px 15px 30px 30px; box-shadow: 0 25px 50px rgba(14,45,38,.25); transform: translateX(-50%) rotate(-4deg); font-family: var(--serif); font-size: 70px; }
.spark { position: absolute; color: var(--saffron); font-size: 34px; }.spark.one { top: 50px; left: 80px; }.spark.two { right: 80px; bottom: 75px; font-size: 22px; }
.presenter-art { background: radial-gradient(circle at 50% 40%, var(--mint-soft), transparent 36%); }
.presenter-head { position: absolute; width: 120px; height: 135px; left: 50%; top: 35px; border-radius: 55% 55% 48% 48%; background: #9a6047; transform: translateX(-50%); box-shadow: inset 0 28px #29221d; }
.presenter-body { position: absolute; width: 240px; height: 160px; left: 50%; bottom: -10px; border-radius: 120px 120px 20px 20px; background: var(--teal); transform: translateX(-50%); }
.presenter-art span { position: absolute; left: 40px; top: 70px; padding: 10px 15px; color: var(--white); background: var(--ink); border-radius: 16px 16px 3px 16px; font-size: 19px; font-weight: 700; }
.presenter-art i { position: absolute; right: 47px; width: 5px; border-radius: 5px; background: var(--saffron); bottom: 100px; height: 30px; }
.presenter-art i:nth-of-type(2) { right: 60px; height: 50px; bottom: 90px; }.presenter-art i:nth-of-type(3) { right: 73px; height: 22px; bottom: 104px; }
.campaign-art { background: linear-gradient(45deg, transparent 47%, rgba(255,255,255,.08) 47% 53%, transparent 53%); background-size: 60px 60px; }
.post { position: absolute; width: 180px; height: 220px; padding: 25px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 24px; box-shadow: 0 25px 50px rgba(103,46,11,.22); font-size: 20px; font-weight: 700; line-height: .95; }
.post b { font-size: 48px; }
.post-a { z-index: 3; left: 50%; top: 45px; color: var(--white); background: var(--ink); transform: translateX(-50%) rotate(-2deg); }
.post-b { left: 55px; top: 75px; color: var(--ink); background: var(--mint-soft); transform: rotate(-10deg); }
.post-c { right: 55px; top: 72px; color: var(--ink); background: var(--cream); transform: rotate(10deg); }

.languages { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: center; min-height: 760px; background: var(--paper); }
.language-orbit { position: relative; aspect-ratio: 1; max-width: 630px; border: 1px solid rgba(47,160,132,.15); border-radius: 50%; }
.language-orbit::before, .language-orbit::after { content: ""; position: absolute; inset: 15%; border: 1px solid rgba(47,160,132,.14); border-radius: 50%; }
.language-orbit::after { inset: 31%; background: var(--mint-soft); border: 0; }
.center-mark { position: absolute; z-index: 2; inset: 38%; display: grid; place-items: center; border-radius: 50%; background: var(--ink); box-shadow: 0 24px 60px rgba(14,45,38,.24); }
.brand-mark.large { width: 58px; height: 58px; }
.brand-mark.large i { width: 26px; height: 26px; border-radius: 6px 14px 6px 14px; }
.orbit-copy { position: absolute; z-index: 4; padding: 14px 18px; border: 1px solid rgba(14,45,38,.06); border-radius: 18px; background: var(--white); box-shadow: 0 15px 40px rgba(14,45,38,.09); font-size: 17px; line-height: 1.05; }
.orbit-copy b { color: var(--teal); font-size: 23px; }
.copy-hi { top: 7%; left: 38%; }.copy-ta { right: -1%; top: 43%; }.copy-bn { bottom: 5%; left: 39%; }.copy-mr { left: -1%; top: 43%; }
.language-copy { max-width: 620px; }
.language-copy > p:not(.eyebrow) { max-width: 560px; margin: 28px 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.language-list { display: flex; flex-wrap: wrap; gap: 8px; }
.language-list span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 100px; background: var(--white); font-size: 11px; font-weight: 600; }
.language-list span:last-child { color: var(--white); background: var(--ink); }

.distribution { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; align-items: center; background: var(--cream); }
.distribution-copy { max-width: 560px; }
.distribution-copy > p:not(.eyebrow) { margin: 26px 0; color: var(--muted); line-height: 1.75; }
.distribution-copy ul { padding: 0; margin: 30px 0 0; list-style: none; }
.distribution-copy li { margin: 14px 0; color: #405b54; font-size: 13px; font-weight: 600; }
.distribution-copy li span { display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 10px; color: var(--white); background: var(--teal); border-radius: 50%; font-size: 9px; }
.calendar-board { padding: 28px; border: 1px solid rgba(255,255,255,.8); border-radius: 35px; background: rgba(255,255,255,.66); box-shadow: var(--shadow); backdrop-filter: blur(15px); }
.calendar-board-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.calendar-board-head small { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: 1.5px; }
.calendar-board-head h3 { margin: 5px 0 0; font-size: 28px; letter-spacing: -1.2px; }
.calendar-board-head > span { padding: 8px 12px; color: var(--deep); background: var(--mint-soft); border-radius: 100px; font-size: 9px; font-weight: 700; }
.calendar-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.day-column { min-height: 345px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.55); }
.day-column.active { background: var(--white); box-shadow: 0 14px 35px rgba(14,45,38,.08); }
.day-column > b { display: flex; justify-content: space-between; align-items: center; padding: 2px 3px 11px; color: var(--muted); font-size: 8px; letter-spacing: 1px; }
.day-column > b i { display: grid; place-items: center; width: 25px; height: 25px; color: var(--ink); background: var(--bone); border-radius: 50%; font-style: normal; letter-spacing: 0; }
.active > b i { color: var(--white); background: var(--ink); }
.slot { min-height: 106px; margin-top: 10px; padding: 12px; display: flex; flex-direction: column; border-radius: 13px; }
.slot span { opacity: .65; font-size: 6px; font-weight: 700; letter-spacing: .6px; }
.slot strong { margin-top: auto; font-size: 9px; line-height: 1.25; }.slot small { opacity: .6; margin-top: 3px; font-size: 6px; }
.slot.green { color: var(--white); background: var(--deep); }.slot.orange { background: #f3d0aa; }.slot.dark { color: var(--white); background: var(--ink); }.slot.mint { background: var(--mint-soft); }.slot.cream { background: var(--bone); }
.channel-row { display: flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--muted); font-size: 8px; }
.channel-row > span { margin-right: 5px; font-weight: 600; }
.channel-row b { display: grid; place-items: center; width: 24px; height: 24px; color: var(--white); border-radius: 8px; font-size: 7px; }
.channel-row .ig { background: #9a4b75; }.channel-row .wa { background: var(--teal); }.channel-row .fb { background: #3c67a1; }.channel-row .yt { background: #c65347; }
.channel-row small { margin-left: auto; color: var(--teal); }

.vision { position: relative; min-height: 720px; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; text-align: center; color: var(--white); background: var(--deep); }
.vision::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(111,207,151,.16), transparent 48%); }
.vision-sun { position: absolute; width: 440px; height: 440px; left: 50%; top: 50%; color: rgba(111,207,151,.12); border-width: 45px; transform: translate(-50%,-50%) rotate(22.5deg); }
.vision blockquote { position: relative; z-index: 1; max-width: 1050px; margin: 10px auto 30px; font-size: clamp(42px, 5.7vw, 82px); line-height: .98; letter-spacing: -4px; font-weight: 600; }
.vision blockquote em { color: var(--mint); }
.vision-copy { position: relative; z-index: 1; max-width: 670px; margin: 0 auto; color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.8; }
.vision-signoff { position: relative; z-index: 1; display: flex; align-items: center; gap: 13px; margin-top: 45px; text-align: left; }
.vision-signoff span:last-child { display: grid; }
.vision-signoff b { font-size: 11px; }.vision-signoff small { margin-top: 3px; color: rgba(255,255,255,.5); font-size: 8px; }

.early-access { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; background: var(--mint-soft); }
.cta-copy { max-width: 650px; }
.cta-copy h2 { font-size: clamp(44px, 5vw, 74px); }
.cta-copy p:last-child { max-width: 520px; color: #49655e; line-height: 1.7; }
.waitlist-form { padding: 32px; border-radius: 28px; background: rgba(255,255,255,.72); box-shadow: 0 25px 60px rgba(14,45,38,.08); }
.waitlist-form label { display: block; margin: 0 0 10px 5px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.form-row { display: flex; gap: 8px; padding: 7px; background: var(--white); border: 1px solid var(--line); border-radius: 100px; }
.form-row input { min-width: 0; flex: 1; padding: 0 16px; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 14px; }
.form-row input::placeholder { color: #91a19d; }
.waitlist-form > small { display: block; margin: 12px 5px 0; color: var(--muted); font-size: 9px; }
.form-status { min-height: 18px; margin: 10px 5px 0; color: #9f2d2d; font-size: 11px; font-weight: 600; }
.form-status.success { color: var(--deep); }

.site-footer { min-height: 120px; padding: 30px max(6vw, 40px); display: grid; grid-template-columns: 1fr auto auto auto; gap: 50px; align-items: center; color: rgba(255,255,255,.54); background: var(--ink); font-size: 10px; }
.footer-brand { color: var(--white); }
.site-footer > div { display: flex; gap: 24px; }
.site-footer a:hover { color: var(--mint); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes orbitPulse { 0%,100% { transform: scale(.98); opacity: .45; } 50% { transform: scale(1.02); opacity: .8; } }
@keyframes wave { 0%,100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }

@media (max-width: 1100px) {
  .site-nav { gap: 18px; }
  .hero { min-height: auto; padding-top: 145px; grid-template-columns: 1fr 480px; }
  .hero h1 { font-size: 68px; letter-spacing: -4px; }
  .hero-product { transform: scale(.88); margin: -35px -40px; }
  .note-one { left: -4%; }.note-two { right: -6%; }
  .story-step { gap: 5vw; }
  .format-card { min-height: 570px; }
  .languages { gap: 5vw; }
  .distribution { grid-template-columns: 1fr; }
  .distribution-copy { max-width: 700px; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; top: 10px; width: calc(100% - 20px); min-height: 58px; padding-right: 8px; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; gap: 5px; z-index: 2; }
  .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 68px; left: 0; right: 0; padding: 18px; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 24px; background: rgba(251,248,242,.98); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all .25s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 13px; }
  .hero { padding: 125px 25px 70px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin: 0 auto; }
  .hero h1 { max-width: 680px; margin: 0 auto; font-size: clamp(54px, 12vw, 82px); line-height: .94; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-product { min-height: 730px; margin: -10px 0 -20px; transform: none; }
  .note-one { left: 4%; }.note-two { right: 4%; }
  .product-tabs { right: 5%; }
  .trust-strip { flex-wrap: wrap; gap: 14px 22px; padding: 20px; }
  .section { padding: 95px 28px; }
  .story-grid { gap: 90px; }
  .story-step { grid-template-columns: 1fr; gap: 35px; }
  .story-step.reverse .step-visual { order: 0; }
  .step-copy { max-width: 620px; }
  .studio-heading { grid-template-columns: 1fr; gap: 25px; }
  .studio-heading > p { margin-left: 0; }
  .format-grid { grid-template-columns: 1fr; }
  .format-card { min-height: 600px; }
  .languages { grid-template-columns: 1fr; }
  .language-orbit { width: 100%; margin: 0 auto; }
  .language-copy { max-width: 700px; }
  .early-access { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 25px; }
  .site-footer > div, .site-footer > small { justify-self: end; }
}

@media (max-width: 560px) {
  .site-header .brand small { display: none; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 52px; letter-spacing: -3.6px; }
  .hero h1 em { letter-spacing: -2.5px; }
  .hero-lede { font-size: 15px; line-height: 1.6; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .hero-proof { margin-top: 38px; }
  .hero-proof div { padding: 0 14px; }
  .hero-proof strong { font-size: 20px; }
  .hero-proof span { max-width: 75px; font-size: 8px; }
  .hero-product { min-height: 650px; margin-top: 15px; transform: scale(.82); transform-origin: center top; margin-bottom: -110px; }
  .phone-shell { width: 336px; }
  .floating-note { display: none; }
  .product-tabs { right: -4%; }
  .trust-strip i { display: none; }
  .trust-strip { justify-content: flex-start; font-size: 7px; }
  .section { padding: 78px 20px; }
  .section-intro { margin-bottom: 60px; }
  .section-intro h2, .studio-heading h2, .language-copy h2, .distribution-copy h2, .cta-copy h2 { font-size: 43px; letter-spacing: -2.5px; }
  .step-visual { min-height: 340px; border-radius: 28px; }
  .listen-visual p { font-size: 20px; }
  .brand-card { width: 210px; height: 240px; }
  .palette { right: 17px; bottom: 25px; }
  .voice-pill { right: 14px; }
  .content-stack { width: 205px; height: 125px; }
  .card-two { left: 18px; top: 55px; }.card-three { right: 15px; bottom: 42px; }
  .step-copy h3 { font-size: 40px; }
  .step-copy p { font-size: 14px; }
  .studio { padding-left: 14px; padding-right: 14px; }
  .studio-heading { padding: 0 7px; }
  .format-card { min-height: 535px; padding: 22px; border-radius: 27px; }
  .format-art { margin-left: -22px; margin-right: -22px; min-height: 270px; }
  .format-copy h3 { font-size: 27px; }
  .post { width: 150px; height: 190px; }
  .post-b { left: 25px; }.post-c { right: 25px; }
  .language-orbit { transform: scale(.98); }
  .orbit-copy { padding: 9px 11px; font-size: 12px; border-radius: 12px; }
  .orbit-copy b { font-size: 16px; }
  .calendar-board { padding: 17px; overflow: hidden; }
  .calendar-columns { width: 680px; grid-template-columns: repeat(4, 155px); overflow: hidden; }
  .day-column { min-height: 300px; }
  .calendar-board::after { content: "Swipe calendar →"; display: block; margin-top: 12px; color: var(--muted); font-size: 8px; text-align: right; }
  .channel-row small { display: none; }
  .vision blockquote { font-size: 43px; letter-spacing: -2.5px; }
  .vision-copy { font-size: 13px; }
  .form-row { flex-direction: column; border-radius: 22px; background: transparent; border: 0; padding: 0; }
  .form-row input { height: 54px; padding: 0 18px; border: 1px solid var(--line); border-radius: 100px; background: var(--white); }
  .waitlist-form { padding: 22px; }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer > div, .site-footer > small { justify-self: start; }
}

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