@font-face {
  font-family: "Kalice";
  src:
    url("fonts/Kalice-Regular.woff2") format("woff2"),
    url("fonts/Kalice-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kalice";
  src:
    url("fonts/Kalice-Italic.woff2") format("woff2"),
    url("fonts/Kalice-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Unica 77";
  src:
    url("fonts/Unica77LLWeb-Regular.woff2") format("woff2"),
    url("fonts/Unica77LLWeb-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unica 77";
  src:
    url("fonts/Unica77LLWeb-Medium.woff2") format("woff2"),
    url("fonts/Unica77LLWeb-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-sans: "Unica 77", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Kalice", Georgia, serif;
  --white: #ffffff;
  --black: #243044;
  --blue-ink: #243044;
  --ink: #243044;
  --muted: #5c6474;
  --muted-soft: #8890a0;
  --line: #d0d0d8;
  --ai-bg: #f3f4f8;
  --ai-soft: #dce8f8;
  --ai-pink: #fcecd8;
  --mint: #dce8f8;
  --turquoise: #4ea0f0;
  --turquoise-dark: #243044;
  --go-black: #243044;
  --go-panel: #ffffff;
  --go-turquoise: #4ea0f0;
  --story-bg: #f3f4f8;
  --soft-blue: #f3f4f8;
  --warm-soft: #fff8e8;
  --radius: 1.2rem;
  --shadow: 0 2.4rem 7rem rgba(36, 48, 68, 0.08);
  --shadow-hover: 0 2.8rem 7rem rgba(36, 48, 68, 0.14);
  --texture-light: none;
  --texture-warm: none;
  --texture-go: none;
  --section-h2-size: clamp(2.45rem, 2.6vw, 3.8rem);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ai-bg);
  background-image: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

body :where(p, a, li, dt, dd, blockquote, label, small, span, strong, em, button, input, textarea, select) {
  font-family: var(--font-sans);
}

body :where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-serif);
  font-weight: 400;
}

body :where(h1, h2, h3, h4, h5, h6) :where(span, strong, em) {
  font-family: inherit;
  font-weight: inherit;
}

main :where(p, li, dd, blockquote) strong {
  color: var(--turquoise);
  font-weight: 500;
}

body.theme-go {
  background: var(--ai-bg);
  background-image: none;
  color: var(--go-black);
}

body.theme-story {
  background: var(--ai-bg);
  background-image: none;
  color: var(--ink);
}

body.theme-contact,
body.theme-legal {
  background: var(--ai-bg);
  background-image: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto minmax(28rem, 1fr);
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 1.2rem max(4.8rem, calc((100vw - 152rem) / 2 + 4.8rem));
  border-bottom: 1px solid var(--line);
  background: var(--white);
  backdrop-filter: blur(18px);
}

.theme-go .site-header {
  background: var(--white);
  color: var(--go-black);
}

.theme-story .site-header {
  background: var(--white);
}

.theme-contact .site-header,
.theme-legal .site-header {
  background: var(--white);
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  opacity: 0.96;
}

.brand img {
  display: block;
  width: 7.2rem;
  height: auto;
}

.language-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-dropdown select {
  min-height: 3.4rem;
  border: 1px solid var(--line);
  border-radius: 999rem;
  padding: 0.7rem 3rem 0.7rem 1.2rem;
  appearance: none;
  background: var(--white);
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}

.language-dropdown::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-0.2rem) rotate(45deg);
  pointer-events: none;
}

.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;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a,
.text-link {
  border-radius: 1.2rem;
  padding: 0.8rem 1.2rem;
  color: var(--muted);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.text-link:hover {
  background: var(--ai-soft);
  color: var(--blue-ink);
}

.theme-go .site-nav a:hover,
.theme-go .site-nav a.active,
.theme-go .text-link:hover {
  background: var(--ai-soft);
  color: var(--go-black);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.header-actions .language-dropdown {
  margin-right: 0.2rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.6rem;
  border: 1px solid transparent;
  border-radius: 1.2rem;
  padding: 0.9rem 1.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue-ink);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-ink);
}

.button-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue-ink);
}

.button-soft {
  background: var(--ai-soft);
  color: var(--blue-ink);
}

.button-deep {
  background: var(--blue-ink);
  color: var(--white);
}

.button-deep:hover {
  background: var(--blue-ink);
}

.button-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--turquoise-dark);
}

.button-light:hover {
  background: var(--mint);
  color: var(--ink);
}

.theme-go .button-primary {
  background: var(--blue-ink);
  color: var(--white);
}

.theme-go .button-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--go-black);
}

.menu-toggle {
  display: none;
}

main {
  width: 100%;
}

.hero,
.section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-right: max(4.8rem, calc((100vw - 149.6rem) / 2 + 4.8rem));
  padding-left: max(4.8rem, calc((100vw - 149.6rem) / 2 + 4.8rem));
}

.contact-wrap,
.legal-wrap {
  width: 100%;
  max-width: 149.6rem;
  margin: 0 auto;
  padding-right: 4.8rem;
  padding-left: 4.8rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(32rem, 0.68fr);
  align-items: center;
  gap: 7rem;
  min-height: min(80rem, calc(100vh - 6.1rem));
  padding-top: 8.4rem;
  padding-bottom: 6.8rem;
}

.hero-ai {
  background: transparent;
}

.hero-go {
  grid-template-columns: minmax(50rem, 0.75fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 5.6rem;
  background: transparent;
  color: var(--go-black);
}

.hero-go-media {
  display: grid;
  grid-template-columns: 1fr;
  align-self: stretch;
  justify-items: center;
  justify-content: center;
  align-items: stretch;
  gap: 2.2rem;
  min-width: 0;
}

.hero-story,
.hero-contact {
  grid-template-columns: minmax(0, 76.6rem);
  justify-content: center;
  text-align: center;
}

.hero-story {
  background: transparent;
}

.theme-story .hero-story {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.theme-story .hero-story .hero-copy {
  margin: 0 auto;
}

.hero-contact {
  min-height: min(52rem, 58vh);
  background: transparent;
}

.theme-contact .hero-contact {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.theme-contact .hero-contact .hero-copy {
  margin: 0 auto;
}

.theme-contact .hero-contact .hero-lead {
  margin-right: auto;
  margin-left: auto;
}

.origins-hero {
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
  justify-items: start;
  align-items: start;
  gap: clamp(6.4rem, 7vw, 9.6rem);
  min-height: auto;
  padding-top: clamp(10rem, 10vw, 15.2rem);
  padding-right: max(4.8rem, calc((100vw - 112rem) / 2));
  padding-bottom: clamp(8.4rem, 8vw, 12rem);
  padding-left: max(4.8rem, calc((100vw - 112rem) / 2));
  text-align: left;
}

.origins-copy {
  width: 100%;
  max-width: 76rem;
}

.origins-copy h1 {
  max-width: 68rem;
}

.origins-copy p {
  max-width: 66rem;
  margin: 3rem 0 0;
  color: var(--muted);
  font-size: clamp(1.6rem, 1.25vw, 1.85rem);
  line-height: 1.6;
}

.origins-principles {
  width: min(100%, 78rem);
  display: grid;
  gap: 2.8rem;
  align-content: start;
}

.origins-principles > p {
  max-width: 62rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.6rem, 1.25vw, 1.85rem);
  line-height: 1.5;
}

.origins-principles article {
  max-width: 72rem;
  border: 0;
  border-top: 1px solid rgba(36, 48, 68, 0.12);
  border-radius: 0;
  padding: 3rem 0 0;
  background: transparent;
  box-shadow: none;
}

.origins-principles h2,
.origins-columns h2 {
  margin: 0 0 1.2rem;
  font-size: var(--section-h2-size);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}

.origins-principles p,
.origins-columns p,
.origins-stats p {
  margin: 0;
  color: var(--muted);
}

.origins-system {
  display: grid;
  gap: 7.2rem;
}

.origins-columns {
  width: min(100%, 106rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.origins-columns article {
  display: grid;
  grid-template-columns: minmax(18rem, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(3.2rem, 5vw, 6rem);
  max-width: none;
  padding: clamp(3.6rem, 5vw, 5.6rem) 0;
  border-top: 1px solid rgba(36, 48, 68, 0.12);
}

.origins-columns article:last-child {
  border-bottom: 1px solid rgba(36, 48, 68, 0.12);
}

.origins-columns p {
  max-width: 60rem;
  font-size: clamp(1.55rem, 1.15vw, 1.8rem);
  line-height: 1.58;
}

.origins-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.origins-stats article {
  min-height: 18rem;
  border: 1px solid rgba(36, 48, 68, 0.1);
  border-radius: var(--radius);
  padding: 2.6rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1.4rem 4rem rgba(36, 48, 68, 0.05);
}

.origins-stats strong {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--ink);
  font-size: clamp(3.2rem, 3.2vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.impact-section {
  display: grid;
  gap: 4.8rem;
  padding-top: 9rem;
  padding-bottom: 10rem;
}

.impact-intro {
  margin-bottom: 0;
}

.impact-intro h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  font-size: var(--section-h2-size);
  line-height: 1.04;
}

.impact-intro p:not(.section-kicker) {
  max-width: 68rem;
  margin-right: auto;
  margin-left: auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 118rem;
  margin-right: auto;
  margin-left: auto;
}

.impact-grid article {
  display: grid;
  align-content: start;
  min-height: 20rem;
  border: 1px solid rgba(36, 48, 68, 0.1);
  border-radius: 2.8rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1.8rem 4.8rem rgba(36, 48, 68, 0.07);
}

.impact-grid .card-icon {
  margin-bottom: 0;
}

.impact-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.95rem;
  font-weight: 400;
  line-height: 1.16;
}

.impact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.46rem;
  line-height: 1.48;
}

.impact-cta {
  display: grid;
  justify-items: center;
  gap: 2rem;
  width: min(76rem, 100%);
  margin: 1rem auto 0;
  border-radius: 3rem;
  padding: 4.8rem clamp(2.8rem, 5vw, 7rem);
  background: var(--blue-ink);
  color: var(--white);
  text-align: center;
  box-shadow: 0 2.6rem 7rem rgba(36, 48, 68, 0.18);
}

.impact-cta h2 {
  max-width: 64rem;
  margin: 0;
  color: inherit;
  font-size: var(--section-h2-size);
  line-height: 1.08;
}

.impact-cta p {
  max-width: 58rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.5rem;
  line-height: 1.55;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 77rem;
}

.trust-line {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 2.4rem;
  border: 1px solid var(--line);
  border-radius: 999rem;
  padding: 0.9rem 1.4rem;
  color: var(--blue-ink);
  background: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
}

.theme-go .trust-line {
  border-color: var(--line);
  background: var(--ai-soft);
  color: var(--go-black);
}

.hero h1,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(3.05rem, 3.2vw, 4.45rem);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: 0;
}

.section h2 {
  margin: 0;
  font-size: var(--section-h2-size);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 62rem;
  margin: 2.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.68rem, 1.28vw, 1.95rem);
}

.hero-lead-extra {
  margin-top: 1.1rem;
}

.theme-go .hero-lead {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 3.4rem;
}

.hero-actions .button {
  min-height: 4rem;
  padding: 1rem 1.7rem;
  font-size: 1.38rem;
}

.hero-insight {
  display: grid;
  gap: 1.6rem;
  margin-top: 4.6rem;
}

.hero-insight h2 {
  margin: 0;
  color: var(--go-black);
  font-size: var(--section-h2-size);
  font-weight: 400;
  line-height: 1.04;
}

.hero-insight-grid {
  display: grid;
  gap: 1.3rem;
}

.hero-insight-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1.4rem;
  row-gap: 0.9rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 2.2rem;
  padding: 2.2rem 2.4rem;
  background: var(--white);
  box-shadow: 0 1.6rem 4rem rgba(36, 48, 68, 0.055);
}

.hero-insight-grid h3 {
  margin: 0;
  color: var(--go-black);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.15;
  align-self: center;
}

.hero-insight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.42rem;
  line-height: 1.45;
}

.theme-go .hero-actions {
  margin-top: 2.8rem;
}

.hero-insight-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: start;
}

.video-shell,
.product-visual,
.media-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-phone-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(58rem, 100%);
  min-height: clamp(52rem, 41vw, 61rem);
  justify-self: center;
  place-items: center;
}

.hero-phone-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(66rem, 140%);
  aspect-ratio: 1.55;
  top: 48%;
  left: 63%;
  border: 1px solid var(--line);
  border-radius: 2.8rem;
  background: url("whatsapp-desktop-chat.png") center / cover no-repeat;
  box-shadow: 0 3rem 8rem rgba(36, 48, 68, 0.12);
  filter: blur(3.5px) saturate(0.92);
  opacity: 0.78;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-phone-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: min(56rem, 118%);
  aspect-ratio: 1.52;
  top: 50%;
  left: 50%;
  border-radius: 2.6rem;
  background: rgba(255, 255, 255, 0.06);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-phone-stage .video-shell {
  z-index: 2;
}

.video-shell {
  justify-self: center;
  width: min(25.8rem, 100%);
  aspect-ratio: 1 / 2.1;
  border: 0.65rem solid var(--blue-ink);
  border-radius: 3.4rem;
  background: var(--blue-ink);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 2.6rem 5.5rem rgba(36, 48, 68, 0.16);
}

.video-shell video,
.video-shell .hero-chat-static {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  background: var(--ai-bg);
}

.video-shell .hero-chat-static {
  height: 100%;
  display: block;
}

.video-shell.has-static .video-placeholder {
  display: none;
}

.phone-status {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
  border-top-left-radius: 2.8rem;
  border-top-right-radius: 2.8rem;
  padding: 0.6rem 2rem 0 1.95rem;
  background: #ffffff;
  color: var(--blue-ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.phone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cellular-icon {
  display: inline-block;
  width: 1.1rem;
  height: 0.78rem;
  background:
    linear-gradient(var(--blue-ink) 0 0) 0 100% / 0.18rem 0.28rem no-repeat,
    linear-gradient(var(--blue-ink) 0 0) 0.3rem 100% / 0.18rem 0.42rem no-repeat,
    linear-gradient(var(--blue-ink) 0 0) 0.6rem 100% / 0.18rem 0.58rem no-repeat,
    linear-gradient(var(--blue-ink) 0 0) 0.9rem 100% / 0.18rem 0.72rem no-repeat;
}

.wifi-icon {
  position: relative;
  display: inline-block;
  width: 1.05rem;
  height: 0.78rem;
  background: radial-gradient(circle at 50% 88%, var(--blue-ink) 0 0.18rem, transparent 0.19rem);
}

.wifi-icon::before,
.wifi-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  border: 0.16rem solid var(--blue-ink);
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  transform: translateX(-50%);
}

.wifi-icon::before {
  top: 0.06rem;
  width: 1rem;
  height: 0.5rem;
  border-radius: 1rem 1rem 0 0;
}

.wifi-icon::after {
  top: 0.31rem;
  width: 0.48rem;
  height: 0.28rem;
  border-radius: 0.6rem 0.6rem 0 0;
}

.battery-icon {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 0.66rem;
  border: 0.14rem solid var(--blue-ink);
  border-radius: 0.22rem;
}

.battery-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.28rem;
  width: 0.16rem;
  height: 0.34rem;
  border-radius: 0 0.12rem 0.12rem 0;
  background: var(--blue-ink);
  transform: translateY(-50%);
}

.battery-icon::after {
  content: "";
  position: absolute;
  inset: 0.12rem;
  border-radius: 0.08rem;
  background: var(--blue-ink);
}

.video-shell.has-static .phone-status {
  display: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 1.8rem;
  padding: 3.2rem;
  background: var(--ai-bg);
}

.video-placeholder > p {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.3rem;
  text-align: center;
}

.phone-frame {
  width: min(28rem, 82%);
  min-height: 46rem;
  border: 1px solid rgba(36, 48, 68, 0.16);
  border-radius: 3.6rem;
  padding: 2rem;
  background: var(--ai-bg);
  box-shadow: inset 0 0 0 0.8rem #ffffff;
}

.chat-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 3.4rem;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 500;
}

.avatar-dot {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--turquoise);
}

.message {
  width: fit-content;
  max-width: 92%;
  margin-bottom: 1.4rem;
  border-radius: 1.8rem;
  padding: 1.2rem 1.4rem;
  font-size: 1.3rem;
  line-height: 1.35;
}

.message-in {
  background: #ffffff;
  color: var(--ink);
}

.message-out {
  margin-left: auto;
  background: var(--turquoise);
  color: var(--white);
}

.product-visual {
  margin: 0;
  display: grid;
  place-items: center;
}

.product-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.lunna-go-visual {
  position: relative;
  align-self: start;
  justify-self: center;
  place-items: start center;
  width: min(50rem, 100%);
  height: 100%;
  min-height: auto;
  max-height: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.lunna-go-visual-backdrop {
  position: absolute;
  z-index: 0;
  inset: clamp(4.6rem, 4vw, 5.8rem) -5.6rem clamp(0.6rem, 1vw, 1.4rem) -1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3.2rem;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 3rem 8rem rgba(36, 48, 68, 0.1);
  pointer-events: none;
}

.lunna-go-visual-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: blur(3.6px) saturate(1.02) contrast(1.01);
  opacity: 0.72;
  transform: scale(1);
}

.lunna-go-visual-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.lunna-go-visual .lunna-go-terminal {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: none;
  height: 115.4%;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 2.6rem 5.5rem rgba(36, 48, 68, 0.16));
  transform: translateY(-7.333%);
}

.partner-marquee {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 5.6rem 0 6.4rem;
  overflow: hidden;
  background: transparent;
}

.partner-marquee p {
  margin: 0 0 3.2rem;
  color: var(--muted);
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
}

.partner-viewport {
  width: min(152rem, calc(100% - 6.4rem));
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partnerMarquee 30s linear infinite;
}

.partner-logo-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(5.6rem, 7vw, 11rem);
  padding-right: clamp(5.6rem, 7vw, 11rem);
}

.partner-logo-group img {
  display: block;
  width: auto;
  max-width: 18rem;
  max-height: 5.8rem;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.72;
}

@keyframes partnerMarquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
  }
}

.section {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.section-soft {
  background: transparent;
}

.theme-go .section-soft {
  background: transparent;
  color: var(--go-black);
}

.section-white {
  background: transparent;
  padding-bottom: 3.8rem;
}

.theme-go .section-white {
  background: transparent;
  color: var(--go-black);
}

.theme-ai .section-white {
  padding-top: 6.6rem;
}

.section-intro {
  display: grid;
  gap: 2.2rem;
  margin-bottom: 6.8rem;
}

.section-intro.narrow {
  max-width: 78rem;
}

.section-intro.center {
  max-width: 76rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro p,
.split-section > div > p,
.privacy-band p,
.cta-section p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.6rem;
}

.theme-go .section-soft .section-intro p,
.theme-go .metric-grid p,
.theme-go .feature-list p,
.theme-go .steps p {
  color: rgba(36, 48, 68, 0.66);
}

.feature-list,
.metric-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  border: 0;
  background: transparent;
}

.feature-list article,
.metric-grid article,
.story-card {
  min-height: auto;
  border: 1px solid rgba(36, 48, 68, 0.1);
  border-radius: 2.8rem;
  padding: 2.6rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1.8rem 4.8rem rgba(36, 48, 68, 0.07);
}

.theme-ai .feature-list article {
  background: rgba(255, 255, 255, 0.9);
}

.theme-ai .feature-list article:nth-child(1),
.theme-ai .feature-list article:nth-child(2) {
  border-color: var(--line);
}

.theme-ai .feature-list article:nth-child(3) {
  border-color: var(--line);
}

.theme-ai .feature-list article:nth-child(4) {
  border-color: var(--line);
}

.theme-go .metric-grid {
  border-color: transparent;
  background: transparent;
}

.theme-go .metric-grid article {
  background: var(--white);
}

.card-icon {
  display: inline-grid;
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--ai-soft);
  color: var(--turquoise);
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.64);
}

.card-icon::before {
  content: "";
  width: 2.35rem;
  height: 2.35rem;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.card-icon.small {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0;
  border-radius: 1.1rem;
  font-size: 1.7rem;
  box-shadow: none;
}

.card-icon.small::before {
  width: 1.85rem;
  height: 1.85rem;
}

.icon-gear {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v3M12 19v3M4.93 4.93l2.12 2.12M16.95 16.95l2.12 2.12M2 12h3M19 12h3M4.93 19.07l2.12-2.12M16.95 7.05l2.12-2.12'/%3E%3C/svg%3E");
}

.icon-compass {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m15.5 8.5-2.2 5-5 2.2 2.2-5 5-2.2Z'/%3E%3C/svg%3E");
}

.icon-speed {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14a8 8 0 0 1 16 0'/%3E%3Cpath d='M12 14l4-4'/%3E%3Cpath d='M6.5 18h11'/%3E%3C/svg%3E");
}

.icon-lock {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='10' width='14' height='10' rx='2'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0v3M12 14v2'/%3E%3C/svg%3E");
}

.icon-doc {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l4 4v14H7z'/%3E%3Cpath d='M14 3v5h5M10 12h6M10 16h4'/%3E%3C/svg%3E");
}

.icon-customize {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h10M18 7h2M4 17h2M10 17h10'/%3E%3Ccircle cx='16' cy='7' r='2'/%3E%3Ccircle cx='8' cy='17' r='2'/%3E%3C/svg%3E");
}

.icon-voice {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='3' width='6' height='11' rx='3'/%3E%3Cpath d='M5 11a7 7 0 0 0 14 0M12 18v3M8 21h8'/%3E%3C/svg%3E");
}

.icon-cloud {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 18a4 4 0 1 1 1-7.86A6 6 0 0 1 19 13a3 3 0 0 1-1 5H7Z'/%3E%3C/svg%3E");
}

.icon-target {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v3M12 19v3M2 12h3M19 12h3'/%3E%3C/svg%3E");
}

.icon-people {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-8 0v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M2 21v-2a4 4 0 0 1 3-3.87'/%3E%3C/svg%3E");
}

.icon-health {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 1 0-7.8 7.8l1 1L12 21l7.8-7.6 1-1a5.5 5.5 0 0 0 0-7.8Z'/%3E%3Cpath d='M12 9v6M9 12h6'/%3E%3C/svg%3E");
}

.icon-shield {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
}

.icon-chart {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5M4 19h16'/%3E%3Cpath d='M8 16v-4M12 16V8M16 16v-6M20 16v-2'/%3E%3C/svg%3E");
}

.icon-compass,
.icon-shield {
  background: var(--ai-soft);
  color: var(--turquoise);
}

.icon-lock,
.icon-target,
.icon-chart {
  background: var(--ai-soft);
  color: var(--turquoise);
}

.feature-list h3,
.metric-grid h3,
.story-card h3,
.steps h3,
.contact-card h2,
.legal-content h2 {
  margin: 0 0 1.8rem;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.feature-list p,
.metric-grid p,
.story-card p,
.steps p,
.legal-content p,
.legal-content li {
  margin: 0;
  color: var(--muted);
}

.feature-list article,
.metric-grid article,
.hero-insight-grid article,
.impact-grid article,
.why-grid article,
.moment-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1.5rem;
  row-gap: 1rem;
  align-items: start;
}

.feature-list article > .card-icon,
.metric-grid article > .card-icon,
.hero-insight-grid article > .card-icon,
.impact-grid article > .card-icon,
.why-grid article > .card-icon,
.moment-card > .moment-avatar {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.feature-list article > h3,
.metric-grid article > h3,
.hero-insight-grid article > h3,
.impact-grid article > h3,
.why-grid article > h3,
.moment-card > h3 {
  grid-column: 2;
  margin: 0;
  align-self: center;
}

.feature-list article > p,
.metric-grid article > p,
.hero-insight-grid article > p,
.impact-grid article > p,
.why-grid article > p,
.moment-card > p {
  grid-column: 2;
}

.section-kicker {
  margin: 0;
  color: var(--blue-ink);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.title-highlight {
  color: var(--turquoise);
  font-family: var(--font-serif);
  font-style: italic;
}

.section-title-break .title-highlight {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.moments-section {
  border-top: 1px solid rgba(36, 48, 68, 0.08);
  padding-top: 11.6rem;
}

.moments-section > .section-intro:not(.advantage-copy) {
  max-width: 94rem;
  margin-bottom: 7.6rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.moments-section > .section-intro:not(.advantage-copy) h2 {
  max-width: 96rem;
  margin-right: auto;
  margin-left: auto;
  font-size: var(--section-h2-size);
}

.moment-profile-grid,
.why-grid,
.testimonial-row {
  min-width: 0;
}

.moment-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  max-width: 132rem;
  margin-right: auto;
  margin-left: auto;
}

.moment-card,
.why-grid article,
.testimonial-row article {
  border: 1px solid rgba(36, 48, 68, 0.09);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1.8rem 4.8rem rgba(36, 48, 68, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.moment-card {
  min-height: 25rem;
  border-radius: 2.8rem;
  padding: 2.6rem;
}

.moment-avatar {
  position: relative;
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--ai-soft);
  color: var(--turquoise);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.64);
  place-items: center;
}

.moment-avatar::before,
.moment-avatar::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.moment-avatar::before {
  inset: 1.05rem;
  width: auto;
  height: auto;
  -webkit-mask: var(--avatar-icon) center / contain no-repeat;
  mask: var(--avatar-icon) center / contain no-repeat;
}

.moment-avatar::after {
  display: none;
}

.avatar-stress {
  --avatar-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-8 0v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3Cpath d='M19 8v3M21 9.5h-4'/%3E%3C/svg%3E");
}

.avatar-thoughts {
  --avatar-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 6h13'/%3E%3Cpath d='M8 12h13'/%3E%3Cpath d='M8 18h13'/%3E%3Cpath d='M3 6h.01'/%3E%3Cpath d='M3 12h.01'/%3E%3Cpath d='M3 18h.01'/%3E%3C/svg%3E");
  background: var(--ai-soft);
}

.avatar-sleep {
  --avatar-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 14.5A8.5 8.5 0 0 1 9.5 3a7 7 0 1 0 11.5 11.5Z'/%3E%3Cpath d='M7 15h7M7 18h4'/%3E%3C/svg%3E");
}

.avatar-body {
  --avatar-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 1 0-7.8 7.8l1 1L12 21l7.8-7.6 1-1a5.5 5.5 0 0 0 0-7.8Z'/%3E%3Cpath d='M12 9v6M9 12h6'/%3E%3C/svg%3E");
  background: rgba(36, 48, 68, 0.08);
}

.moment-card h3 {
  align-self: start;
  margin: 0.7rem 0 0;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.15;
}

.moment-card p,
.why-grid p,
.testimonial-row p,
.privacy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.55rem;
  line-height: 1.48;
}

.advantage-copy {
  margin-top: 7.2rem;
  margin-bottom: 0;
}

.testimonials-section {
  padding-top: 8rem;
}

.theme-ai .testimonials-section {
  padding-bottom: 8.8rem;
}

.testimonials-section .section-intro {
  margin-bottom: 3.8rem;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.testimonial-row article {
  display: grid;
  align-content: space-between;
  min-height: 24rem;
  border-radius: 2.8rem;
  padding: 3rem;
}

.testimonial-row p {
  font-size: 1.62rem;
  font-style: italic;
}

.testimonial-author {
  display: block;
  margin-top: 2rem;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 500;
}

.testimonial-row img {
  width: auto;
  max-width: 14rem;
  max-height: 5rem;
  margin-top: 3rem;
  object-fit: contain;
  filter: grayscale(1) contrast(1.06);
  opacity: 0.74;
}

.why-intro {
  margin-top: 1rem;
  margin-bottom: 3.8rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.why-grid article {
  border-radius: 2.8rem;
  padding: 3rem;
}

.why-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.15;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(28rem, 0.7fr) minmax(0, 1fr);
  gap: 5.4rem;
  align-items: center;
}

.ai-flow-section {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 3.6rem;
}

.split-section > div,
.section-intro,
.steps,
.privacy-band,
.contact-form,
.feature-list,
.metric-grid,
.story-grid {
  min-width: 0;
}

.split-section > div:first-child {
  position: static;
  top: auto;
  justify-self: center;
  max-width: 47rem;
  text-align: center;
}

.steps {
  display: grid;
  gap: 1.6rem;
}

.ai-flow-section .steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.ai-flow-content {
  display: grid;
  gap: 3rem;
  min-width: 0;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 2.2rem;
  padding: 2.6rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1.6rem 4rem rgba(36, 48, 68, 0.06);
}

.ai-flow-section .steps article {
  display: grid;
  align-content: start;
  min-height: 19rem;
  padding: 2.8rem;
}

.theme-go .steps article {
  border-color: rgba(36, 48, 68, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.steps span {
  display: block;
  margin-bottom: 2.6rem;
  color: var(--turquoise-dark);
  font-size: 1.3rem;
  font-weight: 500;
}

.theme-go .steps span {
  color: var(--go-turquoise);
}

.personalization-panel {
  display: grid;
  gap: 3rem;
  border: 1px solid var(--line);
  border-radius: 2.8rem;
  padding: clamp(3.2rem, 3.6vw, 4.8rem);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.6rem 4rem rgba(36, 48, 68, 0.06);
}

.personalization-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 2vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.personalization-list {
  display: grid;
  gap: 2.7rem;
}

.personalization-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 2rem;
  align-items: start;
  margin: 0;
}

.personalization-list article > div {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.personalization-list h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.74rem, 1.3vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.personalization-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1.42rem;
  line-height: 1.45;
}

.meta-template-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) minmax(0, 0.82fr);
  gap: 2rem;
  align-items: stretch;
}

.meta-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1.2rem;
  min-height: 17.2rem;
  overflow: hidden;
  border: 1px solid rgba(36, 48, 68, 0.08);
  border-radius: 2.2rem;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1.4rem 3.8rem rgba(36, 48, 68, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.meta-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3.4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(252, 236, 216, 0.9);
  pointer-events: none;
}

.meta-pill {
  position: relative;
  z-index: 1;
  width: max-content;
  border-radius: 999rem;
  padding: 0.55rem 1rem;
  background: var(--ai-soft);
  color: var(--blue-ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.meta-card p,
.meta-card h4,
.meta-card ul {
  position: relative;
  z-index: 1;
  margin: 0;
}

.meta-card p {
  color: rgba(36, 48, 68, 0.76);
  font-size: 1.42rem;
  line-height: 1.42;
}

.meta-card h4 {
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.25;
}

.meta-survey-card ul {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.meta-survey-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  color: rgba(36, 48, 68, 0.72);
  font-size: 1.22rem;
  line-height: 1.25;
}

.meta-survey-card li::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  border: 1px solid rgba(36, 48, 68, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.meta-insight-card {
  background: rgba(255, 255, 255, 0.9);
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 6rem;
  align-items: center;
  border: 1px solid rgba(36, 48, 68, 0.08);
  border-radius: 2.8rem;
  padding: 4.4rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 2rem 5.4rem rgba(36, 48, 68, 0.07);
}

.privacy-copy {
  display: grid;
  gap: 1.2rem;
}

.theme-go .privacy-band {
  border: 1px solid rgba(36, 48, 68, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--go-black);
}

.theme-go .privacy-band p {
  color: rgba(36, 48, 68, 0.68);
}

.certification-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.2rem;
  margin-top: 3.2rem;
  border-top: 1px solid rgba(36, 48, 68, 0.1);
  padding-top: 3.2rem;
}

.certification-row p {
  max-width: 50rem;
  margin: 0;
  align-self: center;
  color: rgba(36, 48, 68, 0.66);
}

.certification-row div {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.certification-row img {
  width: 6.4rem;
  height: 6.4rem;
  object-fit: contain;
}

.certification-row-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-self: start;
  align-items: center;
  width: min(100%, 43rem);
  gap: 1.6rem;
  margin-top: 0;
  border: 1px solid rgba(36, 48, 68, 0.12);
  border-radius: 2.2rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1.4rem 3.8rem rgba(36, 48, 68, 0.07);
}

.certification-row-hero p {
  max-width: none;
  font-size: 1.28rem;
  line-height: 1.35;
}

.certification-row-hero div {
  gap: 1rem;
}

.certification-row-hero img {
  width: 5.2rem;
  height: 5.2rem;
}

.certification-row-insight {
  display: grid;
  align-self: start;
  align-content: start;
  justify-items: start;
  gap: 1.05rem;
  min-height: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 2.2rem;
  padding: 1.9rem 2.1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1.8rem 4.8rem rgba(36, 48, 68, 0.055);
}

.certification-kicker {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}

.certification-row-insight p {
  max-width: 27rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1.45;
}

.certification-row-insight div {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.1rem;
}

.certification-row-insight img {
  width: 5.4rem;
  height: 5.4rem;
  object-fit: contain;
}

.certification-row-inline {
  display: grid;
  grid-template-columns: minmax(0, 30rem) auto;
  align-items: center;
  justify-content: start;
  width: fit-content;
  max-width: 100%;
  gap: 0.55rem 1.35rem;
  margin: 2.3rem 0 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.certification-row-inline .certification-kicker {
  grid-column: 1;
  font-size: 1.5rem;
}

.certification-row-inline p {
  grid-column: 1;
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.35;
}

.certification-row-inline div {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.certification-row-inline img {
  width: 5.2rem;
  height: 5.2rem;
  object-fit: contain;
}

.certification-row-inline + .hero-insight {
  margin-top: 3rem;
}

.visual-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: center;
  background: transparent;
}

.whatsapp-visual,
.report-visual {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.whatsapp-visual img {
  max-height: 68rem;
  object-fit: contain;
}

.report-visual img {
  max-height: 50rem;
  object-fit: contain;
}

.flow-with-media {
  grid-template-columns: minmax(34rem, 0.95fr) minmax(0, 1fr);
  align-items: center;
}

.flow-with-media > div:first-child {
  width: 100%;
  max-width: 62rem;
}

.split-section.ai-flow-section > .ai-flow-copy {
  display: grid;
  justify-self: start;
  max-width: 62rem;
  gap: 1.6rem;
  align-content: start;
  text-align: left;
}

.split-section.ai-flow-section > .ai-flow-copy h2 {
  font-size: var(--section-h2-size);
}

.flow-media:not(.media-strip) {
  display: grid;
  grid-template-columns: minmax(11rem, 0.42fr) minmax(20rem, 0.58fr);
  gap: 1.8rem;
  align-items: center;
  margin-top: 3.4rem;
}

.flow-media:not(.media-strip) .product-visual {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.flow-media:not(.media-strip) .whatsapp-visual img {
  max-height: 36rem;
  object-fit: contain;
  filter: drop-shadow(0 1.8rem 3.6rem rgba(36, 48, 68, 0.13));
}

.flow-media:not(.media-strip) .report-visual img {
  width: 100%;
  max-height: 25rem;
  object-fit: contain;
  filter: drop-shadow(0 1.8rem 3.6rem rgba(36, 48, 68, 0.1));
}

.insight-dashboard {
  display: grid;
  gap: 1rem;
  align-content: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 48, 68, 0.08);
  border-radius: 2.2rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 1.8rem 4.8rem rgba(36, 48, 68, 0.07);
}

.insight-dashboard img {
  width: 100%;
  min-height: 15rem;
  object-fit: cover;
  object-position: left top;
  border-radius: 1.4rem;
}

.insight-dashboard figcaption {
  color: rgba(36, 48, 68, 0.62);
  font-size: 1.16rem;
  line-height: 1.35;
}

.aggregate-insight-stack {
  position: relative;
  display: block;
  min-height: clamp(25rem, 24vw, 33rem);
  overflow: visible;
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.aggregate-insight-stack::before {
  content: "";
  position: absolute;
  inset: 5rem 1.2rem 1.6rem 4.2rem;
  border: 1px solid var(--line);
  border-radius: 2.8rem;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 2.8rem 7rem rgba(36, 48, 68, 0.06);
  pointer-events: none;
}

.aggregate-insight-stack img {
  min-height: 0;
  border-radius: inherit;
}

.aggregate-visual-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 2.4rem 5.6rem rgba(36, 48, 68, 0.075);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.aggregate-visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 1.2rem;
}

.aggregate-main {
  z-index: 1;
  top: 1rem;
  right: 5.8rem;
  left: 1.2rem;
  height: 59%;
  opacity: 0.78;
}

.aggregate-secondary {
  z-index: 3;
  right: 0.4rem;
  bottom: 0.4rem;
  width: 73%;
  height: 54%;
  opacity: 0.96;
}

.aggregate-tertiary {
  z-index: 2;
  bottom: 2.6rem;
  left: 0;
  width: 41%;
  height: 36%;
  opacity: 0.72;
}

.aggregate-single-panel {
  display: grid;
  min-height: clamp(23rem, 22vw, 31rem);
  place-items: center;
}

.aggregate-single-panel::before {
  inset: 3.2rem 0.8rem 1.4rem 2.8rem;
  border-radius: 2.8rem;
  background: rgba(255, 255, 255, 0.64);
}

.aggregate-single-panel .aggregate-focus {
  position: relative;
  z-index: 2;
  width: min(100%, 34rem);
  height: clamp(18rem, 18vw, 25rem);
  padding: 1.1rem;
  opacity: 0.96;
}

.aggregate-single-panel .aggregate-focus img {
  object-fit: contain;
  filter: saturate(0.96);
}

.aggregate-insight-duo {
  display: grid;
  gap: 1.4rem;
  align-content: start;
  min-height: 0;
  margin: 0;
  overflow: visible;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.aggregate-insight-duo .aggregate-visual-card {
  position: static;
  display: grid;
  min-height: clamp(13.4rem, 10vw, 16rem);
  border-color: rgba(36, 48, 68, 0.1);
  border-radius: 2.2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 2rem 5rem rgba(36, 48, 68, 0.035);
  backdrop-filter: blur(10px);
  place-items: center;
}

.aggregate-insight-duo .aggregate-visual-card img {
  width: 100%;
  height: clamp(11.6rem, 8.8vw, 14rem);
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.96);
  opacity: 0.82;
}

.result-showcase {
  position: relative;
  min-height: clamp(36rem, 34vw, 46rem);
  margin-top: 3.4rem;
}

.result-showcase figure {
  position: absolute;
  display: grid;
  gap: 1rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 2.4rem;
  padding: 1.2rem;
  background: var(--white);
  box-shadow: 0 2.2rem 5rem rgba(36, 48, 68, 0.1);
}

.result-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.result-showcase figcaption {
  color: var(--muted);
  font-size: 1.22rem;
  font-weight: 500;
  text-align: center;
}

.showcase-phone {
  z-index: 3;
  top: 3rem;
  left: 0;
  width: min(30%, 17rem);
}

.showcase-dashboard {
  z-index: 1;
  top: 1.8rem;
  right: 0;
  width: 78%;
}

.showcase-report {
  z-index: 2;
  right: 4%;
  bottom: 0;
  width: 48%;
}

.result-showcase-equal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  min-height: auto;
  margin-top: 3rem;
}

.result-showcase-equal figure,
.result-showcase-equal .showcase-dashboard,
.result-showcase-equal .showcase-report {
  position: relative;
  inset: auto;
  display: grid;
  width: auto;
  min-height: clamp(24rem, 26vw, 32rem);
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: var(--white);
}

.result-showcase-equal img {
  width: 100%;
  height: clamp(21rem, 23vw, 29rem);
  object-fit: contain;
  filter: drop-shadow(0 1.6rem 3rem rgba(36, 48, 68, 0.12));
}

.result-showcase-equal figure:nth-child(1) img {
  width: auto;
  max-width: 100%;
  height: clamp(22rem, 24vw, 30rem);
}

.result-showcase-equal figure:nth-child(2) img {
  height: clamp(18rem, 21vw, 26rem);
  object-fit: contain;
  object-position: left top;
  border-radius: 1.4rem;
}

.result-showcase-equal figure:nth-child(3) img {
  height: clamp(22rem, 24vw, 30rem);
}

.result-showcase-hipp {
  padding: 0.6rem;
}

.result-showcase-hipp figure {
  border-color: var(--line);
  border-radius: 2.6rem;
  padding: 1.4rem;
  background: var(--white);
  box-shadow: 0 2.8rem 7rem rgba(36, 48, 68, 0.075);
}

.result-showcase-hipp figure:nth-child(2) {
  transform: translateY(1.2rem);
}

.result-showcase-hipp figure:nth-child(3) {
  transform: translateY(2.4rem);
}

.result-showcase-hipp img {
  opacity: 0.96;
  filter: drop-shadow(0 2rem 3.8rem rgba(36, 48, 68, 0.1));
}

.process-hipp-panels {
  display: block;
  width: min(100%, 55rem);
  min-height: clamp(35rem, 33vw, 44rem);
  margin-right: auto;
  margin-left: auto;
  margin-top: 3rem;
  padding: 0;
  perspective: 110rem;
}

.process-hipp-panels figure {
  position: absolute;
  top: clamp(1.8rem, 2vw, 2.6rem);
  left: 50%;
  z-index: 2;
  width: min(47%, 22.8rem);
  min-height: clamp(27rem, 26vw, 34rem);
  overflow: hidden;
  border-color: var(--line);
  border-radius: 2.2rem;
  padding: 1.4rem;
  background: var(--white);
  box-shadow: 0 2.6rem 6.4rem rgba(36, 48, 68, 0.07);
  transform-origin: 50% 75%;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.process-hipp-panels figure:nth-child(1) {
  z-index: 3;
  transform: translateX(-106%) rotateY(3deg) rotateZ(-2deg) scale(0.98);
}

.process-hipp-panels figure:nth-child(2) {
  z-index: 2;
  opacity: 0.86;
  width: min(59%, 29rem);
  min-height: clamp(30.5rem, 28vw, 37rem);
  transform: translateX(-42%) translateY(0.8rem) scale(1);
}

.process-hipp-panels figure:nth-child(3) {
  z-index: 1;
  opacity: 0.8;
  width: min(59%, 29rem);
  min-height: clamp(30.5rem, 28vw, 37rem);
  transform: translateX(8%) translateY(2rem) rotateY(-3deg) rotateZ(2deg) scale(0.98);
}

.process-hipp-panels figure::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  background: rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.process-hipp-panels img,
.process-hipp-panels figure:nth-child(1) img,
.process-hipp-panels figure:nth-child(2) img,
.process-hipp-panels figure:nth-child(3) img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: clamp(24rem, 23vw, 31rem);
  object-fit: contain;
  object-position: center;
  opacity: 0.94;
  filter: drop-shadow(0 1.8rem 3rem rgba(36, 48, 68, 0.095));
  pointer-events: none;
}

.process-hipp-panels figure:nth-child(1) img {
  width: auto;
  max-width: 76%;
}

.process-hipp-panels figure:nth-child(2) img {
  max-width: 112%;
}

.process-hipp-panels figure:nth-child(3) img {
  max-width: 104%;
}

.process-hipp-panels figure:hover,
.process-hipp-panels figure:focus-visible {
  z-index: 8;
  opacity: 1;
  border-color: var(--turquoise);
  box-shadow: 0 3rem 7rem rgba(36, 48, 68, 0.14);
  outline: none;
}

.process-hipp-panels figure:nth-child(1):hover,
.process-hipp-panels figure:nth-child(1):focus-visible {
  transform: translateX(-106%) translateY(-1rem) rotateY(1deg) rotateZ(-1.2deg) scale(1.06);
}

.process-hipp-panels figure:nth-child(2):hover,
.process-hipp-panels figure:nth-child(2):focus-visible {
  transform: translateX(-42%) translateY(-0.8rem) scale(1.06);
}

.process-hipp-panels figure:nth-child(3):hover,
.process-hipp-panels figure:nth-child(3):focus-visible {
  transform: translateX(8%) translateY(-0.8rem) rotateY(-1deg) rotateZ(1.2deg) scale(1.06);
}

.media-strip {
  display: flex;
  gap: 1.6rem;
  width: 100%;
  max-width: 62rem;
  margin-top: 3.4rem;
  padding: 1.2rem 1.2rem 1.6rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--turquoise) var(--white);
  border: 1px solid rgba(36, 48, 68, 0.08);
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 2rem 5.4rem rgba(36, 48, 68, 0.07);
}

.media-slide {
  display: grid;
  flex: 0 0 min(78%, 32rem);
  gap: 1.2rem;
  align-content: start;
  scroll-snap-align: start;
  margin: 0;
  padding: 1.4rem;
  border: 1px solid rgba(36, 48, 68, 0.08);
  border-radius: 2.2rem;
  background: #ffffff;
}

.media-slide img {
  display: block;
  width: 100%;
  height: clamp(22rem, 26vw, 33rem);
  object-fit: contain;
  filter: drop-shadow(0 1.2rem 2.6rem rgba(36, 48, 68, 0.1));
}

.media-slide.phone-slide {
  flex-basis: min(58%, 24rem);
  justify-items: center;
}

.media-slide.phone-slide img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(28rem, 30vw, 35rem);
}

.media-slide.dashboard-slide,
.media-slide.report-slide {
  flex-basis: min(88%, 42rem);
}

.media-slide figcaption {
  color: rgba(36, 48, 68, 0.72);
  font-size: 1.28rem;
  font-weight: 500;
  text-align: center;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 3.2rem;
  background: transparent;
}

.cta-section.demo-highlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: min(calc(100% - 9.6rem), 140rem);
  max-width: 140rem;
  min-height: 16rem;
  margin: 0 auto 2.8rem;
  gap: 6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2.8rem;
  padding: 4rem 4.4rem;
  background: var(--white);
  box-shadow: 0 1.8rem 4.8rem rgba(36, 48, 68, 0.08);
}

.cta-section.demo-highlight::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid var(--ai-soft);
  border-radius: 2.1rem;
  pointer-events: none;
}

.cta-section.demo-highlight > div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1;
  justify-self: start;
  max-width: none;
  gap: 1.1rem;
  padding-top: 0;
  text-align: left;
}

.cta-section.demo-highlight h2 {
  font-size: var(--section-h2-size);
  font-weight: 400;
  line-height: 1.02;
  white-space: nowrap;
}

.cta-section.demo-highlight p {
  max-width: 52rem;
  margin-right: 0;
  margin-left: 0;
  font-size: 1.48rem;
}

.cta-section.demo-highlight .button {
  position: relative;
  z-index: 1;
  grid-column: 2;
  justify-self: end;
  min-width: 15rem;
  min-height: 4.4rem;
  box-shadow: 0 1.2rem 2.8rem rgba(36, 48, 68, 0.14);
}

.section-white + .cta-section {
  padding-top: 4rem;
}

.theme-ai .section-white + .cta-section.demo-highlight {
  margin-top: 7.4rem;
}

.theme-ai .cta-section.demo-highlight {
  background: transparent;
  box-shadow: none;
}

.theme-go .cta-section {
  border-top: 0;
  background: transparent;
  color: var(--go-black);
}

.theme-go .cta-section p {
  color: var(--muted);
}

.media-placeholder {
  min-height: 36rem;
  display: grid;
  place-items: center;
  background: var(--white);
}

.media-placeholder p {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.3rem;
  text-align: center;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(24rem, 0.45fr) minmax(0, 1fr);
  gap: 6rem;
  align-items: start;
  max-width: 118rem;
  padding-top: 6rem;
  padding-bottom: 12rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3.4rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1.4rem 4rem rgba(36, 48, 68, 0.05);
}

.feature-list article,
.metric-grid article,
.story-card,
.steps article,
.privacy-band,
.contact-card,
.origins-principles article,
.origins-stats article,
.impact-grid article,
.moment-card,
.hero-insight-grid article,
.personalization-panel,
.result-showcase figure,
.why-grid article,
.testimonial-row article {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 1.6rem;
  bottom: 6.4rem;
  display: grid;
  gap: 1rem;
  width: min(56rem, calc(100vw - 3.2rem));
  border: 1px solid rgba(36, 48, 68, 0.12);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2.4rem 7rem rgba(36, 48, 68, 0.14);
}

.cookie-banner p {
  margin: 0;
  color: rgba(36, 48, 68, 0.72);
  font-size: 1.25rem;
  line-height: 1.35;
}

.cookie-banner p a {
  color: var(--turquoise-dark);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.cookie-actions .button {
  min-height: 3.2rem;
  padding: 0.7rem 1.2rem;
  font-size: 1.2rem;
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(36, 48, 68, 0.32);
  backdrop-filter: blur(8px);
}

.cookie-modal {
  position: relative;
  display: grid;
  gap: 1.6rem;
  width: min(68rem, 100%);
  border: 1px solid rgba(36, 48, 68, 0.12);
  border-radius: var(--radius);
  padding: 2.6rem;
  background: var(--white);
  box-shadow: 0 2.4rem 7rem rgba(36, 48, 68, 0.2);
}

.cookie-modal h2,
.cookie-modal h3 {
  margin: 0;
  font-weight: 500;
  line-height: 1.15;
}

.cookie-modal h2 {
  font-size: 2.8rem;
}

.cookie-modal h3 {
  font-size: 1.7rem;
}

.cookie-modal p {
  margin: 0.8rem 0 0;
  color: rgba(36, 48, 68, 0.68);
  font-size: 1.4rem;
}

.cookie-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(36, 48, 68, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.cookie-setting-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: rgba(243, 244, 248, 0.44);
}

.cookie-setting-row strong {
  color: var(--turquoise-dark);
  font-size: 1.3rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 500;
}

.cookie-toggle input {
  width: 2rem;
  height: 2rem;
  accent-color: var(--turquoise);
}

.cookie-preferences-button {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 75;
  min-height: 3.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  background: rgba(36, 48, 68, 0.92);
  color: var(--white);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 1.4rem 3.8rem rgba(36, 48, 68, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.cookie-preferences-button:hover {
  transform: translateY(-1px);
  background: var(--ink);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.field-full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(36, 48, 68, 0.68);
  font-size: 1.3rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 48, 68, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--turquoise);
}

.contact-form textarea {
  min-height: 15rem;
  resize: vertical;
}

.contact-form button[disabled] {
  opacity: 0.72;
  cursor: progress;
}

.form-status {
  margin: 0;
  border: 1px solid rgba(36, 48, 68, 0.12);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.45;
}

.form-status[hidden] {
  display: none;
}

.form-status[data-status="success"] {
  border-color: rgba(78, 160, 240, 0.34);
  background: rgba(78, 160, 240, 0.12);
  color: var(--blue-ink);
}

.form-status[data-status="error"] {
  border-color: var(--line);
  background: var(--warm-soft);
  color: var(--blue-ink);
}

.checkbox-field {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--ink);
  font-size: 1.4rem;
}

.checkbox-field input {
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.2rem;
}

.legal-hero {
  background: var(--ai-bg);
  border-bottom: 1px solid var(--line);
}

.legal-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
  gap: 8rem;
  padding-top: 8rem;
  padding-bottom: 12rem;
}

.legal-index {
  position: sticky;
  top: 10.8rem;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  background: rgba(255, 255, 255, 0.72);
}

.legal-index p {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.3rem;
}

.legal-index a {
  display: block;
  padding: 0.8rem 0;
  color: rgba(36, 48, 68, 0.72);
  font-size: 1.4rem;
}

.legal-content {
  display: grid;
  gap: 3.6rem;
}

.legal-content section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 3.6rem;
}

.legal-original {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 5.6rem;
  background: rgba(255, 255, 255, 0.76);
}

.legal-original h1 {
  margin: 0 0 3.6rem;
  color: var(--blue-ink);
  font-size: clamp(2.8rem, 2.8vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.legal-original h2,
.legal-original h3,
.legal-original h4 {
  margin: 3.6rem 0 1.4rem;
  color: var(--blue-ink);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.legal-original p {
  margin: 0 0 1.4rem;
  color: rgba(36, 48, 68, 0.72);
}

.legal-original ul,
.legal-original ol {
  margin: 1.4rem 0 2rem;
  padding-left: 2.2rem;
}

.legal-original li {
  margin-bottom: 0.8rem;
  color: rgba(36, 48, 68, 0.72);
}

.legal-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  color: rgba(36, 48, 68, 0.72);
  font-size: 1.4rem;
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  font-weight: 500;
}

.legal-original a {
  color: var(--turquoise-dark);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.legal-original strong,
.legal-original b {
  color: var(--ink);
  font-weight: 500;
}

.legal-content p + p,
.legal-content p + ul,
.legal-content ul + p {
  margin-top: 1.4rem;
}

.legal-content ul {
  margin: 1.4rem 0 0;
  padding-left: 2rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(24rem, 1.3fr) repeat(3, minmax(14rem, 0.7fr));
  gap: clamp(3.2rem, 5vw, 8rem);
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-top: 6.8rem;
  padding-right: max(4.8rem, calc((100vw - 149.6rem) / 2 + 4.8rem));
  padding-bottom: 5rem;
  padding-left: max(4.8rem, calc((100vw - 149.6rem) / 2 + 4.8rem));
  border-top: 1px solid var(--line);
  background: transparent;
}

.theme-ai .site-footer {
  padding-top: 4.8rem;
}

.theme-go .site-footer {
  background: transparent;
  color: var(--go-black);
}

.theme-story .site-footer {
  background: transparent;
}

.site-footer img {
  display: block;
  width: 11.2rem;
  height: auto;
  margin-bottom: 3rem;
}

.theme-go .site-footer img {
  filter: none;
}

.site-footer p,
.site-footer address {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.theme-go .site-footer p,
.theme-go .site-footer address {
  color: rgba(36, 48, 68, 0.64);
}

.footer-brand {
  display: grid;
  min-height: 22rem;
  align-content: start;
}

.footer-copyright {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 0.8rem;
  font-size: 1.25rem;
  text-align: center;
}

.site-footer .footer-column {
  display: grid;
  gap: 1.45rem;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 1.2rem;
  color: rgba(36, 48, 68, 0.38);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.2;
}

.theme-go .footer-column h2 {
  color: rgba(36, 48, 68, 0.42);
}

.site-footer a,
.footer-contact p {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  color: rgba(36, 48, 68, 0.72);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.45;
}

.theme-go .site-footer a {
  color: rgba(36, 48, 68, 0.72);
}

.footer-label {
  min-width: 4.8rem;
  color: rgba(36, 48, 68, 0.42);
  font-size: 1.2rem;
  font-weight: 500;
}

.site-footer .footer-tagline {
  margin-top: 4rem;
  color: rgba(36, 48, 68, 0.62);
  font-style: italic;
  justify-self: start;
  text-align: left;
}

@media (hover: hover) and (pointer: fine) {
  .feature-list article:hover,
  .metric-grid article:hover,
  .story-card:hover,
  .steps article:hover,
  .privacy-band:hover,
  .contact-card:hover,
  .origins-principles article:hover,
  .origins-stats article:hover,
  .impact-grid article:hover,
  .moment-card:hover,
  .hero-insight-grid article:hover,
  .personalization-panel:hover,
  .meta-card:hover,
  .aggregate-visual-card:hover,
  .result-showcase figure:hover,
  .why-grid article:hover,
  .testimonial-row article:hover {
    transform: translateY(-0.5rem);
    border-color: var(--turquoise);
    box-shadow: var(--shadow-hover);
  }

  .origins-principles article:hover {
    transform: none;
    border-color: var(--turquoise);
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-list article,
  .metric-grid article,
  .story-card,
  .steps article,
  .privacy-band,
  .contact-card,
  .origins-principles article,
  .origins-stats article,
  .impact-grid article,
  .moment-card,
  .hero-insight-grid article,
  .personalization-panel,
  .meta-card,
  .aggregate-visual-card,
  .result-showcase figure,
  .why-grid article,
  .testimonial-row article,
  .button,
  .cookie-preferences-button {
    transition: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --section-h2-size: clamp(2.25rem, 3.8vw, 2.9rem);
  }

  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    min-height: 6.6rem;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    display: flex;
  }

  .site-header.nav-open {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding-top: 1.8rem;
  }

  .site-header.nav-open .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .menu-toggle {
    position: fixed;
    top: 1.2rem;
    right: 1.6rem;
    z-index: 60;
    display: grid;
    justify-self: end;
    gap: 0.6rem;
    width: 4.2rem;
    height: 4.2rem;
    border: 1px solid rgba(36, 48, 68, 0.18);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 1rem 3rem rgba(36, 48, 68, 0.08);
    place-content: center;
  }

  .menu-toggle span {
    width: 1.7rem;
    height: 2px;
    border-radius: 999rem;
    background: var(--ink);
  }

  .hero,
  .hero-go,
  .origins-hero,
  .origins-columns,
  .split-section,
  .flow-with-media,
  .privacy-band,
  .contact-wrap,
  .legal-wrap,
  .visual-pair {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-go {
    gap: 4.8rem;
    min-height: auto;
    padding-top: 7.2rem;
  }

  .hero-phone-stage {
    width: min(54rem, 100%);
    min-height: 52rem;
  }

  .hero-go .hero-copy {
    order: 1;
  }

  .hero-go .hero-go-media {
    grid-template-columns: 1fr;
    justify-items: center;
    order: 2;
  }

  .hero-go .product-visual {
    order: 2;
  }

  .origins-hero {
    gap: 5.6rem;
    padding-right: 3.2rem;
    padding-left: 3.2rem;
  }

  .hero h1,
  .legal-hero h1 {
    font-size: clamp(2.85rem, 4.9vw, 4rem);
  }

  .section h2 {
    font-size: var(--section-h2-size);
  }

  .hero-insight-body {
    grid-template-columns: 1fr;
  }

  .ai-flow-section .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .meta-template-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section > div:first-child,
  .flow-with-media > div:first-child,
  .legal-index {
    position: static;
    max-width: 62rem;
  }

  .feature-list,
  .metric-grid,
  .story-grid,
  .origins-stats,
  .impact-grid,
  .moment-profile-grid,
  .why-grid,
  .testimonial-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-section.demo-highlight {
    width: calc(100% - 9.6rem);
    max-width: 140rem;
    grid-template-columns: 1fr;
    padding: 4rem;
  }

  .cta-section.demo-highlight > div,
  .cta-section.demo-highlight .button {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }

  .cta-section.demo-highlight .button {
    margin-top: 0.8rem;
  }

.theme-ai .section-white + .cta-section.demo-highlight {
  margin-top: 4.2rem;
}

.theme-ai .cta-section.demo-highlight {
  background: transparent;
  box-shadow: none;
}

  .footer-brand {
    min-height: auto;
  }

  .site-footer .footer-tagline {
    margin-top: 2.6rem;
    padding-top: 0;
    justify-self: start;
    text-align: left;
  }

  .footer-copyright {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  :root {
    --section-h2-size: clamp(2rem, 5.1vw, 2.4rem);
  }

  .site-header {
    padding: 1.2rem 1.6rem;
  }

  .menu-toggle {
    right: 1.6rem;
    left: auto;
  }

  .brand img {
    width: 7.2rem;
  }

  .brand-group {
    max-width: calc(100vw - 8.4rem);
    gap: 0.8rem;
  }

  .language-dropdown select {
    max-width: 7.2rem;
    min-height: 3.2rem;
    padding: 0.6rem 2.8rem 0.6rem 1rem;
    font-size: 1.1rem;
  }

  .hero,
  .section,
  .partner-marquee,
  .contact-wrap,
  .legal-wrap,
  .site-footer {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .partner-marquee {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .partner-marquee p {
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
  }

  .partner-logo-group {
    gap: 4.8rem;
    padding-right: 4.8rem;
  }

  .partner-logo-group img {
    max-width: 13.8rem;
    max-height: 4.8rem;
  }

  .partner-viewport {
    width: 100%;
  }

  .impact-section {
    padding-top: 6rem;
    padding-bottom: 6.8rem;
  }

  .impact-intro {
    margin-bottom: 3.2rem;
  }

  .impact-cta {
    border-radius: 2.4rem;
    padding: 3.6rem 2.2rem;
  }

  .cookie-banner {
    top: auto;
    left: 1.6rem;
    right: 1.6rem;
    bottom: 6.4rem;
    grid-template-columns: 1fr;
    width: calc(100vw - 3.2rem);
  }

  .cookie-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cookie-modal {
    padding: 2rem;
  }

  .cookie-setting-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero {
    padding-top: 5.6rem;
    padding-bottom: 6.4rem;
  }

  .section {
    padding-top: 7.2rem;
    padding-bottom: 7.2rem;
  }

  .origins-hero {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .origins-principles article,
  .origins-stats article {
    padding: 2.2rem;
  }

  .origins-principles article {
    padding: 2.6rem 0 0;
  }

  .origins-columns article {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 3.2rem 0;
  }

  .origins-system {
    gap: 4.8rem;
  }

  .origins-stats {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    max-width: 35rem;
  }

  .hero h1,
  .legal-hero h1 {
    font-size: clamp(2.55rem, 6.8vw, 3.2rem);
  }

  .section h2 {
    font-size: var(--section-h2-size);
  }

  .video-shell {
    width: min(25.8rem, 100%);
  }

  .hero-phone-stage {
    width: min(31rem, 100%);
    min-height: auto;
  }

  .hero-phone-stage::before,
  .hero-phone-stage::after {
    display: none;
  }

  .lunna-go-visual {
    width: min(34rem, 100%);
    height: auto;
    min-height: 43rem;
    place-items: center;
    padding: 2.4rem;
  }

  .lunna-go-visual-backdrop {
    inset: 4rem -2rem 1rem -0.8rem;
    border-radius: 2.6rem;
  }

  .lunna-go-visual .lunna-go-terminal {
    width: min(100%, 29rem);
    max-width: 100%;
    height: auto;
    max-height: 58rem;
    transform: translateY(-3.4rem);
    margin-bottom: -3.4rem;
  }

  .feature-list,
  .metric-grid,
  .story-grid,
  .impact-grid,
  .moment-profile-grid,
  .meta-template-showcase,
  .ai-flow-section .steps,
  .why-grid,
  .testimonial-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .flow-media:not(.media-strip) {
    grid-template-columns: 1fr;
    max-width: 34rem;
    margin-right: auto;
    margin-left: auto;
  }

  .flow-media:not(.media-strip) .report-visual img {
    max-height: 20rem;
  }

  .hero-insight {
    margin-top: 3.4rem;
  }

  .insight-dashboard img {
    min-height: 16rem;
  }

  .aggregate-insight-stack {
    display: grid;
    gap: 1.2rem;
    min-height: auto;
  }

  .aggregate-insight-stack::before {
    display: none;
  }

  .aggregate-visual-card,
  .aggregate-main,
  .aggregate-secondary,
  .aggregate-tertiary {
    position: static;
    width: 100%;
    height: auto;
  }

  .aggregate-visual-card {
    min-height: 18rem;
  }

  .aggregate-visual-card img {
    height: 18rem;
  }

  .result-showcase {
    display: grid;
    gap: 1.4rem;
    min-height: auto;
    max-width: 34rem;
    margin-right: auto;
    margin-left: auto;
  }

  .result-showcase-equal {
    grid-template-columns: 1fr;
    max-width: 38rem;
  }

  .process-hipp-panels {
    display: grid;
    gap: 1.4rem;
    min-height: auto;
    max-width: 38rem;
    perspective: none;
  }

  .result-showcase figure,
  .showcase-dashboard,
  .showcase-report {
    position: static;
    width: 100%;
  }

  .process-hipp-panels figure,
  .process-hipp-panels figure:nth-child(1),
  .process-hipp-panels figure:nth-child(2),
  .process-hipp-panels figure:nth-child(3) {
    position: static;
    width: 100%;
    min-height: 22rem;
    opacity: 1;
    transform: none;
  }

  .process-hipp-panels figure:nth-child(1) img,
  .process-hipp-panels figure:nth-child(2) img,
  .process-hipp-panels figure:nth-child(3) img {
    width: 100%;
    max-width: 100%;
    height: 18rem;
  }

  .showcase-phone {
    position: static;
    justify-self: center;
    width: min(58%, 19rem);
  }

  .media-strip {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .media-slide,
  .media-slide.dashboard-slide,
  .media-slide.report-slide {
    flex-basis: 82%;
  }

  .media-slide.phone-slide {
    flex-basis: 64%;
  }

  .feature-list article,
  .metric-grid article,
  .story-card,
  .impact-grid article,
  .moment-card,
  .why-grid article,
  .testimonial-row article {
    min-height: auto;
  }

  .moment-card {
    border-radius: 2.8rem;
    padding: 2.4rem;
  }

  .privacy-band,
  .contact-card,
  .legal-original {
    padding: 2.6rem;
  }

  .certification-row,
  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .certification-row-hero {
    grid-template-columns: 1fr;
    justify-items: start;
    width: 100%;
  }

  .certification-row-inline {
    grid-template-columns: 1fr;
    justify-items: start;
    width: 100%;
  }

  .certification-row-inline div {
    grid-column: 1;
    grid-row: auto;
  }

  .cta-section.demo-highlight {
    border-radius: 2.8rem;
    width: calc(100% - 4rem);
    padding: 2.6rem 2rem;
  }

  .cta-section.demo-highlight::before {
    inset: 0.8rem;
    border-radius: 2.2rem;
  }

  .cta-section.demo-highlight h2 {
    font-size: var(--section-h2-size);
    white-space: normal;
  }
}
