:root {
  --ink: #252036;
  --muted: #6f6a7b;
  --line: #e8e2f0;
  --purple: #6c4fe0;
  --purple-deep: #4d35b5;
  --purple-soft: #f1ebff;
  --paper: #fffdfb;
  --night: #0d0913;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Spline Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.eyebrow, .kicker, .showcase-tag, .step-grid article > span, .hover-hint { font-family: 'Inter', system-ui, sans-serif; }

button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(68, 49, 92, .09);
  background: rgba(255, 253, 251, .9);
  backdrop-filter: blur(18px);
}
@media (max-width: 1040px) {
  .site-header { transition: transform .28s ease; }
  .site-header.header-hidden { transform: translateY(-100%); }
}
.nav-shell {
  width: min(1160px, calc(100% - 48px));
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .16em;
  white-space: nowrap;
  font-family: 'Outfit', system-ui, sans-serif;
}
.brand-logo { width: 39px; height: 27px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 34px; color: #514b5c; font-size: 14px; font-weight: 600; }
nav a { transition: color .2s ease; }
nav a:hover { color: var(--purple); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 28px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #7358eb, #5638c8);
  color: white;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(97, 69, 201, .23);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(97,69,201,.3); }
.button.small { min-height: 42px; padding: 0 20px; border-radius: 12px; font-size: 12px; }

.section-grid {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: calc((1160px - 100vw)/2);
  right: calc((1160px - 100vw)/2);
  inset-block: 0;
  background:
    radial-gradient(circle at 82% 27%, rgba(176, 127, 255, .19), transparent 30%),
    radial-gradient(circle at 65% 69%, rgba(121, 210, 207, .1), transparent 25%),
    #fbf9ff;
}
.grid-glow { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.hero-copy { padding: 84px 18px 70px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid #ddd4e9;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #635a7f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: #62d9c4; box-shadow: 0 0 0 4px rgba(98,217,196,.12); }
h1 {
  max-width: 600px;
  margin: 25px 0 24px;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(56px, 4.6vw, 70px);
  line-height: .98;
  font-weight: 700;
  letter-spacing: -.045em;
}
h1 em { display: block; font-style: normal; color: var(--purple); }
.hero-copy > p { max-width: 590px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-break { display: block; margin-top: 7px; }
.hero-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 28px; }
.app-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 14px;
  background: #211a38;
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.app-button small { display: block; color: #c6bfd9; font-size: 8px; line-height: 1; font-weight: 500; }
.app-button span { white-space: nowrap; }
.apple { font-size: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 27px; color: #6f6a7b; font-size: 11px; font-weight: 600; }
.hero-proof span::first-letter { color: #5acbb2; }
.hero-visual { height: 650px; position: relative; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(.2px); }
.orb-one { width: 380px; height: 380px; right: 18px; top: 80px; background: linear-gradient(145deg, rgba(191,133,255,.28), rgba(239,180,255,.1)); }
.orb-two { width: 160px; height: 160px; left: 56px; bottom: 58px; background: linear-gradient(145deg, rgba(101,214,197,.18), rgba(106,82,219,.18)); }
.phone {
  border: 8px solid #120d1a;
  border-radius: 34px;
  background: #0d0913;
  box-shadow: 0 28px 60px rgba(34,20,58,.24);
  overflow: hidden;
  position: relative;
}
.phone-speaker { position: absolute; z-index: 3; width: 35%; height: 14px; border-radius: 999px; left: 32.5%; top: 7px; background: #0b0810; }
.phone img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-phone { position: absolute; width: 282px; height: 600px; top: 72px; }
.hero-phone.back { left: 58px; transform: rotate(-7deg); opacity: .95; }
.hero-phone.front { right: 24px; top: 57px; transform: rotate(6deg); }
.hero-phone img { object-position: top; }
.float-note {
  position: absolute;
  z-index: 8;
  min-width: 255px;
  display: grid;
  grid-template-columns: 35px 1fr;
  padding: 13px 16px;
  border: 1px solid rgba(88,61,145,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 40px rgba(52, 34, 91, .16);
  backdrop-filter: blur(10px);
}
.float-note > span { grid-row: 1 / 3; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; background: #eee8ff; }
.float-note small { color: #6f6a7b; font-size: 10px; }
.float-note strong { font-size: 13px; font-weight: 600; }
.note-one { top: 164px; left: 3px; }
.note-two { right: 0; bottom: 61px; }

.explore, .steps, .showcase, .why, .faq {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}
.section-heading { max-width: 820px; }
.section-heading.centered { margin: auto; text-align: center; }
.section-heading.compact { max-width: 700px; }
.kicker { margin: 0 0 14px; color: #735ad9; font-size: 11px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.section-heading h2, .why-intro h2, .voice-copy h2, .download-cta h2 {
  margin: 0;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.section-heading > p:last-child { margin: 20px auto 0; max-width: 760px; color: var(--muted); font-size: 16px; line-height: 1.75; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; perspective: 1500px; }
.conversation-card {
  width: 100%;
  height: 550px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  perspective: 1400px;
  text-align: left;
}
.hover-hint { display: none; margin: 17px auto 0; color: #735ad9; font-size: 12px; font-weight: 600; letter-spacing: .03em; }
.card-inner { display: block; position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .62s cubic-bezier(.2,.75,.2,1); }
.conversation-card.is-flipped .card-inner { transform: rotateY(180deg); }
/* Flip-on-hover (and the hint that asks for it) only where a real
   pointer can hover; touch devices tap, handled by .is-flipped. */
@media (hover: hover) and (pointer: fine) {
  .hover-hint { display: block; }
  .conversation-card:hover .card-inner { transform: rotateY(180deg); }
}
.card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(100,77,145,.12);
  border-radius: 26px;
  background: #fff;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform .6s cubic-bezier(.2,.75,.2,1), opacity .35s ease;
  box-shadow: 0 14px 40px rgba(55,35,86,.07);
}
.card-front { padding: 24px 24px 20px; }
.card-topline { display: flex; align-items: center; justify-content: space-between; min-height: 42px; }
.card-badge { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,255,255,.72); border: 1px solid rgba(94,67,155,.08); font-size: 19px; }
.card-turn { color: currentColor; opacity: .78; font-size: 22px; font-weight: 600; }
.avatar-frame { flex: 0 0 auto; width: 210px; height: 210px; margin: 12px auto 10px; overflow: hidden; border-radius: 50%; background: #eee7ff; box-shadow: 0 0 0 1px rgba(255,255,255,.85); }
.avatar-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .45s ease; }
.conversation-card:hover .avatar-frame img { transform: scale(1.025); }
.card-title { min-height: 62px; margin-top: 18px; font-family: 'Noto Serif', Georgia, serif; font-size: 30px; line-height: 1.02; font-weight: 700; letter-spacing: -.03em; }
.card-copy { min-height: 82px; margin-top: 12px; color: #706b78; font-size: 13px; line-height: 1.55; }
.card-hint { min-height: 48px; display: flex; align-items: center; justify-content: center; margin-top: auto; padding: 0 14px; border: 1px solid currentColor; border-radius: 14px; background: rgba(255,255,255,.48); color: inherit; font-size: 12px; font-weight: 600; }
.card-hint b { margin-left: 5px; font-size: 14px; font-weight: 600; }
.card-back .card-hint { min-height: 56px; margin-top: auto; background: rgba(255,255,255,.58); font-size: 13px; }
.card-back { display: flex; transform: rotateY(180deg); padding: 29px 27px 24px; background: linear-gradient(145deg, #fff, #f7f3ff); }
.back-category { color: currentColor; font-family: 'Inter', system-ui, sans-serif; font-size: 13px; font-weight: 600; }
.back-label { max-width: 250px; margin-top: 12px; font-family: 'Noto Serif', Georgia, serif; color: #282039; font-size: 34px; line-height: 1.05; font-weight: 700; }
.people-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 31px; }
.person { display: flex; align-items: center; gap: 13px; min-height: 76px; padding: 11px 12px; border: 1px solid rgba(94,67,155,.12); border-radius: 15px; background: rgba(255,255,255,.88); font-size: 13px; line-height: 1.2; font-weight: 600; }
.person-icon { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; border-radius: 12px; object-fit: cover; background: linear-gradient(145deg, #e9e1ff, #fbe7f6); font-size: 20px; }
.accent-pink { color: #b0347c; background: radial-gradient(circle at 88% 7%, #f7d9e9 0 18%, transparent 37%), #fff; }
.accent-violet { color: #6f50d5; background: radial-gradient(circle at 88% 7%, #e6dcff 0 18%, transparent 37%), #fff; }
.accent-mint { color: #257a65; background: radial-gradient(circle at 88% 7%, #d8f5ec 0 18%, transparent 37%), #fff; }
.accent-blue { color: #4f6fbd; background: radial-gradient(circle at 88% 7%, #dce6fb 0 18%, transparent 37%), #fff; }
.accent-cyan { color: #256f83; background: radial-gradient(circle at 88% 7%, #d9f2f8 0 18%, transparent 37%), #fff; }
.accent-orange { color: #8f5527; background: radial-gradient(circle at 88% 7%, #ffead9 0 18%, transparent 37%), #fff; }
.card-front .card-title { color: var(--ink); }
.card-front .card-copy { color: #706b78; }
.guide-row {
  margin: 32px auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid #dfd5f2;
  border-radius: 18px;
  background: #f8f5ff;
  cursor: default;
}
.guide-icon { width: 48px; height: 48px; display: grid; place-items: center; padding: 7px; border-radius: 14px; background: linear-gradient(145deg,#8666ee,#cf62ca); font-size: 22px; }
.guide-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.guide-row div:nth-child(2) { display: flex; flex-direction: column; gap: 4px; }
.guide-row strong { font-size: 15px; font-weight: 600; }
.guide-row span { color: #716a7c; font-size: 13px; }
.guide-row .guide-prompt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.guide-row .guide-prompt:hover { color: var(--purple-deep); }
.guide-prompt b { font-size: 15px; font-weight: 600; }
.text-link { width: max-content; display: block; margin: 28px auto 0; color: var(--purple); font-size: 14px; font-weight: 600; }

.steps {
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.steps::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 260px;
  left: 50%;
  top: 210px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(116, 82, 230, .1);
  filter: blur(70px);
  pointer-events: none;
}
.step-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.step-grid::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 66px;
  height: 2px;
  background: linear-gradient(90deg, #7657e8, #8a63ef, #d061a4);
  opacity: .28;
}
.step-grid article {
  min-height: 330px;
  position: relative;
  padding: 34px;
  border: 1px solid #ded5ef;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(54, 36, 91, .1);
  overflow: hidden;
}
.step-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, #6f50de, #9671ee);
}
.step-grid article:nth-child(2)::before { background: linear-gradient(90deg, #7357e6, #b05bd3); }
.step-grid article:nth-child(3)::before { background: linear-gradient(90deg, #a44dd1, #e1669d); }
.step-grid article > span:not(.step-meta) { position: absolute; right: 29px; top: 29px; color: #6d52cf; font-size: 13px; font-weight: 600; letter-spacing: .14em; }
.step-grid article > .step-meta {
  position: relative;
  display: inline-flex;
  margin-top: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f3effc;
  color: #6548c6;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
}
.step-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #f0ebff;
  color: #6548d0;
  font-size: 28px;
}
.step-icon svg, .benefit-grid article > span svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step-grid article:nth-child(2) .step-icon { background: #efe9ff; color: #8051d0; }
.step-grid article:nth-child(3) .step-icon { background: #fff0f6; color: #c14d8e; }
.step-grid h3 { position: relative; z-index: 1; margin: 31px 0 11px; color: #29213a; font-size: 23px; line-height: 1.15; }
.step-grid p { position: relative; z-index: 1; margin: 0; color: #645c70; font-size: 15px; line-height: 1.7; }

.showcase { padding-top: 35px; }
.showcase-intro { max-width: 760px; margin: 20px auto 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.showcase-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.showcase-card {
  height: 590px;
  position: relative;
  border: 1px solid #e0d8ed;
  border-radius: 29px;
  padding: 32px 29px 0;
  overflow: hidden;
  color: var(--ink);
  box-shadow: 0 22px 52px rgba(54, 35, 116, .12);
  isolation: isolate;
}
.showcase-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 310px;
  height: 310px;
  right: -100px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  filter: blur(3px);
}
.showcase-card.premium { background: linear-gradient(145deg, #f3edff, #e7dcff); }
.showcase-card.language-card { background: linear-gradient(145deg, #eef5ff, #dde9ff); }
.showcase-card.continuity { background: linear-gradient(145deg, #fff0f5, #f8e5ff); }
.showcase-card > div { position: relative; z-index: 3; }
.showcase-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(92,62,154,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: #6849ca;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.showcase-card h3 { margin: 17px 0 10px; font-family: 'Noto Serif', Georgia, serif; color: #282039; font-size: 32px; line-height: 1.02; }
.showcase-card p { margin: 0; color: #665e72; font-size: 13px; line-height: 1.58; }
.showcase-card .phone { position: absolute; z-index: 2; width: 238px; height: 485px; left: 50%; transform: translateX(-50%); bottom: -128px; border-width: 7px; border-radius: 31px; box-shadow: 0 25px 58px rgba(40,25,65,.28); }
.showcase-card .phone img { object-position: top; }
.showcase-callout {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 74px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 13px;
  background: rgba(255,255,255,.95);
  color: #302044;
  box-shadow: 0 13px 30px rgba(31, 18, 62, .2);
  font-size: 12px;
  font-weight: 600;
}

.voice-section {
  width: min(1160px, calc(100% - 48px));
  min-height: 740px;
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 52px 64px;
  border: 1px solid #e3daf2;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #f7f3ff, #fff 64%);
  box-shadow: 0 24px 60px rgba(67, 45, 111, .1);
  color: var(--ink);
}
.voice-copy { padding: 70px; }
.voice-copy h2 { font-size: clamp(48px,5vw,72px); }
.voice-copy > p:not(.kicker) { max-width: 470px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.voice-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.voice-pills span { padding: 10px 14px; border: 1px solid #ded5ec; border-radius: 999px; background: #fff; color: #4e465b; font-size: 12px; }
.voice-demo {
  position: relative;
  width: min(100%, 292px);
  aspect-ratio: 828/1792;
  justify-self: center;
  overflow: hidden;
  border: 8px solid #18121f;
  border-radius: 43px;
  background: #0d0913;
  box-shadow: 0 30px 70px rgba(39,25,54,.24);
}
.voice-demo::after {
  content: "";
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 39%;
  width: 44%;
  aspect-ratio: 1;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190,121,255,.2), rgba(119,83,229,.08) 55%, transparent 72%);
  filter: blur(7px);
  animation: breathe 3.2s ease-in-out infinite;
  pointer-events: none;
}
.voice-demo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; animation: voiceSwap 7s infinite; }
.voice-demo img:first-child { opacity: 1; animation-delay: 0s; }
.voice-demo img:last-child { animation-delay: 3.5s; }
@keyframes voiceSwap { 0%,43% { opacity: 1; } 50%,93% { opacity: 0; } 100% { opacity: 1; } }
@keyframes breathe {
  0%,100% { transform: translate(-50%,-50%) scale(.88); opacity: .45; }
  50% { transform: translate(-50%,-50%) scale(1.16); opacity: 1; }
}

.why {
  display: block;
  margin-bottom: 105px;
  padding: 76px;
  border: 1px solid #e3d9f3;
  border-radius: 34px;
  background: linear-gradient(150deg, #faf8ff, #f4effc);
}
.why-intro { max-width: 850px; margin: 0 auto 42px; text-align: center; }
.why-intro h2 { max-width: none; color: #251b3a; font-size: clamp(42px,4vw,58px); }
.why-intro > p:last-child { max-width: 740px; margin: 18px auto 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.why-insight {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin: 0 0 24px;
  padding: 38px 42px;
  border-radius: 27px;
  background: linear-gradient(135deg, #2a1c45, #5b3890);
  color: #fff;
}
.why-insight strong { font-family: 'Noto Serif', Georgia, serif; font-size: 32px; line-height: 1.12; }
.why-insight p { margin: 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-grid article {
  min-height: 225px;
  padding: 29px;
  border: 1px solid rgba(91, 67, 143, .13);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(56, 35, 91, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-grid article:hover { transform: translateY(-3px); box-shadow: 0 19px 42px rgba(56,35,91,.11); }
.benefit-grid article > span {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.8);
  box-shadow: inset 0 0 0 1px rgba(82,60,129,.08);
  color: #6245c8;
  font-size: 23px;
}
.benefit-grid h3 { margin: 24px 0 9px; color: #291f3c; font-size: 19px; line-height: 1.2; }
.benefit-grid p { margin: 0; color: #665e72; font-size: 13.5px; line-height: 1.68; }
.benefit-violet { background: linear-gradient(150deg, #fff, #f1ebff) !important; border-color: transparent !important; border-top: 4px solid #7554d9 !important; }
.benefit-coral { background: linear-gradient(150deg, #fff, #fff0f2) !important; border-top: 4px solid #df6f8b !important; }
.benefit-blue { background: linear-gradient(150deg, #fff, #edf3ff) !important; border-top: 4px solid #5e78d7 !important; }
.benefit-mint { background: linear-gradient(150deg, #fff, #eaf9f4) !important; border-top: 4px solid #45aa91 !important; }
.benefit-amber { background: linear-gradient(150deg, #fff, #fff6df) !important; border-top: 4px solid #d79a42 !important; }
.benefit-plum { background: linear-gradient(150deg, #fff, #f5ebff) !important; border-top: 4px solid #9560d2 !important; }

.faq { padding-top: 70px; }
.faq-list { max-width: 1000px; margin: 45px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-toggle { width: 100%; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 29px 8px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item.open .faq-toggle { padding-bottom: 0; }
.faq-answer { padding: 0 8px 29px; }
.faq-list strong { font-size: 20px; font-weight: 600; }
.faq-list p { max-width: 730px; margin: 12px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.faq-list b { color: var(--purple); font-size: 24px; font-weight: 400; }

.download-cta {
  width: min(1160px, calc(100% - 48px));
  min-height: 500px;
  margin: 0 auto 100px;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  padding: 60px 70px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(140deg,#21183b,#392762 58%,#5a3483);
  color: white;
  text-align: left;
}
.download-copy { position: relative; z-index: 3; }
.download-copy .button { width: max-content; }
.download-cta .brand { justify-content: flex-start; margin-bottom: 28px; font-size: 12px; }
.download-cta h2 { position: relative; z-index: 2; font-size: clamp(42px,4.3vw,62px); }
.download-cta > p { position: relative; z-index: 2; margin: 14px 0 25px; color: #e8e0f7; }
.cta-phone {
  position: relative;
  z-index: 2;
  width: 240px;
  height: 500px;
  justify-self: center;
  transform: rotate(7deg);
  border: 8px solid #0d0913;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 55px rgba(0,0,0,.35);
}
.cta-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.button.white { position: relative; z-index: 2; background: white; color: #5d40c5; box-shadow: none; }
.cta-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,.09); }
.cta-orb.one { width: 330px; height: 330px; left: -85px; bottom: -125px; }
.cta-orb.two { width: 220px; height: 220px; right: 32px; top: -92px; }

footer { background: #110c19; color: white; }
.footer-main { width: min(1160px, calc(100% - 48px)); margin: auto; padding: 70px 0 55px; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 45px; }
.footer-main .brand { font-size: 15px; }
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-main p { max-width: 300px; color: #9e95aa; font-size: 13px; line-height: 1.6; }
.footer-main strong { margin-bottom: 7px; font-weight: 600; color: #cfc7d8; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-main a:not(.brand) { color: #98909f; font-size: 13px; transition: color .2s ease; }
.footer-main a:hover { color: white; }
.footer-bottom { width: min(1160px, calc(100% - 48px)); margin: auto; padding: 20px 0 28px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); color: #9f97ad; font-size: 11px; }

@media (max-width: 1040px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 59px; }
  .hero-phone { width: 240px; height: 520px; }
  .float-note { transform: scale(.9); }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .conversation-card { height: 550px; }
  .people-list { gap: 10px; }
  .person { padding: 10px; }
  .person-icon { width: 39px; height: 39px; flex-basis: 39px; }
  .step-grid::before { display: none; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-card:last-child { grid-column: 1/-1; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-shell, .section-grid, .explore, .steps, .showcase, .voice-section, .why, .faq, .download-cta, .footer-main, .footer-bottom { width: min(100% - 32px, 620px); }
  .nav-shell { height: 66px; }
  .brand { gap: 8px; font-size: 13px; }
  .button.small { min-height: 38px; padding: 0 13px; font-size: 10px; }
  .hero { min-height: auto; display: flex; flex-direction: column; }
  .hero::before { left: -16px; right: -16px; }
  .hero-copy { padding: 72px 0 24px; text-align: center; }
  .eyebrow { font-size: 9px; }
  h1 { max-width: 530px; margin: 22px auto; font-size: clamp(47px,13vw,64px); }
  .hero-copy > p { margin-left: auto; margin-right: auto; font-size: 15px; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .hero-proof { justify-content: center; gap: 10px 17px; }
  .hero-visual { width: 100%; height: 585px; }
  .hero-phone { width: 230px; height: 490px; top: 65px; }
  .hero-phone.back { left: 2%; }
  .hero-phone.front { right: 2%; top: 52px; }
  .note-one { left: 0; top: 145px; }
  .note-two { right: 0; bottom: 24px; }
  .float-note { min-width: 210px; transform: scale(.82); }
  .explore, .steps, .showcase, .faq { padding: 82px 0; }
  .section-heading h2, .why-intro h2, .download-cta h2 { font-size: 42px; }
  .section-heading > p:last-child { font-size: 14px; }
  .card-grid, .step-grid, .showcase-grid, .benefit-grid { grid-template-columns: 1fr; }
  .conversation-card { height: 600px; }
  .people-list { gap: 10px; }
  .person { min-height: 72px; }
  .showcase-intro { font-size: 14px; }
  .showcase-card:last-child { grid-column: auto; }
  .guide-row { grid-template-columns: auto 1fr; }
  .guide-row .guide-prompt { grid-column: 2; white-space: normal; }
  .voice-section { min-height: auto; grid-template-columns: 1fr; padding: 44px 22px 50px; }
  .voice-copy { padding: 54px 34px 20px; text-align: center; }
  .voice-copy > p:not(.kicker) { margin-left: auto; margin-right: auto; }
  .voice-pills { justify-content: center; }
  .why { padding: 52px 22px; }
  .why-insight { grid-template-columns: 1fr; gap: 17px; padding: 32px 26px; text-align: center; }
  .why-insight strong { font-size: 27px; }
  .faq-list strong { font-size: 16px; }
  .faq-list p { font-size: 14px; }
  .download-cta { grid-template-columns: 1fr; padding: 52px 28px 0; text-align: center; }
  .download-copy .brand { justify-content: center; }
  .download-copy .button { margin: auto; }
  .cta-phone { margin-top: 35px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 500px) {
  .header-actions .button { display: none; }
  h1 { font-size: 47px; }
  .hero-copy { padding-top: 58px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .button, .app-button { width: min(100%,310px); }
  .hero-visual { height: 525px; }
  .hero-phone { width: 205px; height: 440px; }
  .float-note { transform: scale(.72); }
  .note-one { left: -26px; }
  .note-two { right: -24px; }
  .avatar-frame { width: 210px; height: 210px; }
  .guide-row { padding: 18px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}



/* ─── Site integration additions ──────────────────────────────
   Everything above is the ported design sheet. Everything below
   covers markup this site adds on top of it: the bilingual
   switcher, the consent button, the split i18n leaf spans and
   the inline Apple mark. */

/* Language switcher — quiet pill in the header. The build turns
   the buttons into <a> links, so both selectors stay in sync. */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid #e2daee;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
}
.lang-switcher .lang-btn {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: #5f5970;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.lang-switcher .lang-btn:hover { color: var(--purple); }
.lang-switcher .lang-btn.active {
  background: var(--purple-soft);
  color: var(--purple-deep);
}

/* Mobile disclosure menu — the header's nav links collapse below
   1040px, so the hamburger and its panel take over from there.
   js/app.js toggles the .open class and aria-expanded. */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #e2daee;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: #514b5c;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.menu-toggle svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.menu-toggle:hover { color: var(--purple); border-color: #d3c6ec; }
.menu-toggle[aria-expanded="true"] {
  background: var(--purple-soft);
  border-color: transparent;
  color: var(--purple-deep);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: min(1160px, calc(100% - 48px));
  margin: auto;
  padding: 10px 0 22px;
  border-top: 1px solid rgba(68, 49, 92, .09);
  animation: mobileMenuIn .22s ease both;
}
.mobile-menu.open { display: flex; }
@media (min-width: 1041px) { .mobile-menu.open { display: none; } }
.mobile-menu a:not(.button) {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  color: #514b5c;
  font-size: 15px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}
.mobile-menu a:not(.button):hover { background: var(--purple-soft); color: var(--purple-deep); }
.mobile-menu .mobile-menu-cta {
  min-height: 48px;
  margin-top: 10px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 1040px) {
  .menu-toggle { display: inline-flex; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 760px) { .mobile-menu { width: min(100% - 32px, 620px); } }

/* Cookie preferences (consent.js reopens the banner from this). */
.cookie-prefs {
  padding: 0;
  border: 0;
  background: none;
  color: #9f97ad;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .2s ease;
}
.cookie-prefs:hover { color: #cfc7d8; }

/* Visible keyboard focus for every interactive element. */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 6px;
}
.conversation-card:focus-visible { outline-offset: 5px; }

/* i18n leaf spans: text that carries data-tr/data-en has to sit on
   an element with no element children, so a few strings are wrapped.
   These rules keep the wrappers visually inert. */
.eyebrow .eyebrow-text {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.guide-row .guide-prompt span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* Inline Apple mark on the App Store button (no external assets). */
.app-button .apple, .app-button .play { display: inline-flex; align-items: center; }
.app-button .apple svg, .app-button .play svg { display: block; width: 17px; height: 17px; fill: currentColor; }

/* Footer operator / address lines. */
.footer-main .footer-org { margin: 0; color: #9f97ad; font-size: 12px; line-height: 1.6; }

@media (max-width: 760px) {
  .lang-switcher .lang-btn { padding: 0 9px; }
}
