@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('/fonts/BricolageGrotesque-ExtraBold.ttf') format('truetype');
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('/fonts/BricolageGrotesque-SemiBold.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/HankenGrotesk-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/HankenGrotesk-Medium.ttf') format('truetype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/HankenGrotesk-SemiBold.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/HankenGrotesk-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --aurora-bg: #fff8f3;
  --aurora-muted: #fbefe6;
  --aurora-surface: #ffffff;
  --aurora-surface-alt: #f4ebe2;
  --aurora-elevated: #fffdfb;
  --aurora-border: #efe4da;
  --aurora-border-soft: #f5ece5;
  --ink: #1a1714;
  --ink-muted: #6e675e;
  --ink-soft: #71685f;
  --coral: #ff5a4d;
  --coral-2: #ff8a4d;
  --coral-text: #c23b32;
  --coral-soft: rgba(255, 90, 77, 0.12);
  --green: #2f9e68;
  --green-soft: rgba(47, 158, 104, 0.11);
  --blue: #4d83e6;
  --blue-soft: rgba(77, 131, 230, 0.11);
  --violet: #9463d7;
  --violet-soft: rgba(148, 99, 215, 0.11);
  --amber: #d88c18;
  --amber-soft: rgba(216, 140, 24, 0.12);
  --eclipse: #161b22;
  --eclipse-deep: #0d1116;
  --eclipse-surface: #1a1f26;
  --eclipse-border: rgba(255, 255, 255, 0.1);
  --eclipse-muted: #aab0ba;
  --display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --body: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gradient: linear-gradient(150deg, #ff5a4d 0%, #ff684c 32%, #ff764c 60%, #ff8a4d 100%);
  --text-gradient: linear-gradient(135deg, #d94339 0%, #e65338 100%);
  --shadow: 0 26px 70px rgba(74, 47, 31, 0.1);
  --shadow-soft: 0 14px 42px rgba(74, 47, 31, 0.07);
  --shell: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--aurora-bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(26, 23, 20, 0.045) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  opacity: 0.28;
  pointer-events: none;
  content: '';
}

img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button, select, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0; font-family: var(--display); line-height: 0.99; letter-spacing: -0.045em; text-wrap: balance; }
p { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--coral-text);
}

::selection { background: rgba(255, 90, 77, 0.22); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-140%);
  border-radius: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.section { position: relative; padding: clamp(88px, 10vw, 148px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--coral-text);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: '';
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--light { color: #ff8a78; }

.gradient-text {
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.icon { width: 24px; height: 24px; }
.button-icon { width: 19px; height: 19px; flex: none; transition: transform 180ms ease; }
.button:hover .button-icon { transform: translateX(3px); }
.inline-icon { display: inline-block; width: 17px; height: 17px; vertical-align: -3px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 13px 22px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button--primary {
  background: var(--gradient);
  box-shadow: 0 16px 32px -14px rgba(255, 90, 77, 0.72);
  color: #2b1712;
}

.button--primary:hover { box-shadow: 0 20px 38px -14px rgba(255, 90, 77, 0.82); }

.button--ghost { border-color: var(--aurora-border); background: rgba(255, 255, 255, 0.56); }
.button--ghost:hover { border-color: #dccdc1; background: #fff; box-shadow: var(--shadow-soft); }
.button--small { min-height: 44px; border-radius: 13px; padding: 10px 17px; background: var(--ink); color: #fff; font-size: 0.89rem; }
.button--light { background: #fff; box-shadow: 0 18px 40px rgba(5, 8, 11, 0.2); color: var(--eclipse); }
.button--dark-ghost { border-color: rgba(255, 255, 255, 0.2); color: #fff; }
.button--dark-ghost:hover { border-color: rgba(255, 255, 255, 0.42); background: rgba(255, 255, 255, 0.06); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 243, 0.76);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(239, 228, 218, 0.86);
  background: rgba(255, 250, 246, 0.92);
  box-shadow: 0 7px 28px rgba(74, 47, 31, 0.045);
}

.header-inner { display: flex; height: 76px; align-items: center; gap: 36px; }

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.31rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 90, 77, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px -14px rgba(255, 90, 77, 0.76);
}

.brand-mark img { width: 33px; height: 33px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }

.desktop-nav a {
  position: relative;
  padding: 7px 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 99px;
  background: var(--coral);
  content: '';
  transition: transform 160ms ease;
}

.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; margin-left: auto; align-items: center; gap: 10px; }

.language-control { position: relative; display: inline-flex; align-items: center; }

.language-control select {
  min-width: 118px;
  min-height: 44px;
  appearance: none;
  border: 1px solid var(--aurora-border);
  border-radius: 13px;
  padding: 9px 35px 9px 13px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
}

.language-chevron {
  position: absolute;
  right: 14px;
  width: 7px;
  height: 7px;
  transform: translateY(-2px) rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  pointer-events: none;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aurora-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.menu-button span { position: absolute; width: 19px; height: 2px; border-radius: 99px; background: var(--ink); transition: transform 180ms ease; }
.menu-button span:first-child { transform: translateY(-4px); }
.menu-button span:last-child { transform: translateY(4px); }
.menu-button[aria-expanded='true'] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded='true'] span:last-child { transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: rgba(255, 250, 246, 0.98);
  transition: max-height 220ms ease, border-color 220ms ease;
}

.mobile-menu a { display: flex; min-height: 50px; align-items: center; border-bottom: 1px solid var(--aurora-border-soft); padding: 0 24px; font-weight: 700; }
.mobile-menu.is-open { max-height: 260px; border-color: var(--aurora-border); }

.hero {
  display: flex;
  min-height: 850px;
  align-items: center;
  overflow: hidden;
  padding-top: 146px;
  background:
    radial-gradient(80% 70% at 12% 18%, rgba(255, 255, 255, 0.95), transparent 72%),
    radial-gradient(68% 66% at 95% 26%, rgba(255, 126, 77, 0.14), transparent 72%),
    linear-gradient(180deg, #fffdfb 0%, var(--aurora-bg) 58%, #fffaf6 100%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -38%;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(255, 90, 77, 0.08);
  border-radius: 50%;
  content: '';
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow--one { top: 2%; right: 7%; width: 390px; height: 390px; background: radial-gradient(circle, rgba(255, 169, 126, 0.22), transparent 68%); }
.hero-glow--two { bottom: 4%; left: -10%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255, 90, 77, 0.1), transparent 68%); }

.hero-grid { z-index: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr); align-items: center; gap: clamp(32px, 7vw, 95px); }
.hero-copy { max-width: 690px; }
.hero-title { font-size: clamp(3.3rem, 6.5vw, 6.15rem); font-weight: 800; }
.hero-title span { display: block; }
.hero-body { max-width: 610px; margin-top: 28px; color: var(--ink-muted); font-size: clamp(1.13rem, 1.8vw, 1.35rem); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--ink-soft); font-size: 0.89rem; font-weight: 600; }
.hero-note-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }

.hero-stage { position: relative; display: grid; min-height: 630px; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255, 90, 77, 0.16); border-radius: 50%; pointer-events: none; }
.orbit--one { width: 540px; height: 540px; transform: rotate(12deg) scaleY(0.72); }
.orbit--two { width: 470px; height: 600px; transform: rotate(-32deg) scaleX(0.76); border-color: rgba(255, 138, 77, 0.13); }
.orbit::after { position: absolute; top: 12%; right: 12%; width: 12px; height: 12px; border-radius: 50%; background: var(--coral-2); box-shadow: 0 0 22px rgba(255, 90, 77, 0.62); content: ''; }

.phone-frame {
  position: relative;
  z-index: 2;
  width: 334px;
  height: 674px;
  border: 9px solid #1d1a18;
  border-radius: 51px;
  padding: 7px;
  background: #211d1a;
  box-shadow: 0 46px 80px -30px rgba(35, 25, 21, 0.43), 0 15px 28px rgba(42, 27, 20, 0.16), inset 0 0 0 1px #4c4540;
}

.phone-island { position: absolute; z-index: 4; top: 10px; left: 50%; width: 104px; height: 28px; transform: translateX(-50%); border-radius: 0 0 16px 16px; background: #1d1a18; }

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  padding: 14px 15px 17px;
  background:
    radial-gradient(86% 36% at 50% 20%, rgba(255, 121, 74, 0.13), transparent 74%),
    var(--aurora-bg);
  color: var(--ink);
}

.mock-status { display: flex; height: 28px; align-items: center; justify-content: space-between; padding: 0 7px; font-size: 0.68rem; letter-spacing: 0.04em; }
.mock-status span { color: var(--ink-soft); font-size: 0.5rem; letter-spacing: 2px; }
.mock-app-head { display: flex; height: 42px; align-items: center; justify-content: space-between; }
.mock-brand { display: flex; align-items: center; gap: 5px; font-family: var(--display); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; }
.mock-brand img { width: 21px; height: 21px; }
.mock-avatar { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid var(--aurora-border); border-radius: 50%; background: #fff; font-size: 0.68rem; font-weight: 700; }
.mock-aura-zone { display: flex; flex-direction: column; align-items: center; margin-top: 4px; }
.mock-aura-logo { width: 152px; height: 152px; object-fit: contain; filter: drop-shadow(0 12px 20px rgba(255, 90, 77, 0.17)); animation: breathe 6s ease-in-out infinite; }
.mock-aura-copy { margin-top: -8px; text-align: center; }
.mock-aura-copy small { display: block; color: var(--coral-text); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.14em; }
.mock-aura-copy strong { display: block; margin-top: 4px; font-family: var(--display); font-size: 1.02rem; letter-spacing: -0.03em; }

.mock-next-card { margin-top: 18px; border: 1px solid var(--aurora-border); border-radius: 21px; padding: 16px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 13px 27px rgba(75, 51, 39, 0.06); }
.mock-label { color: var(--coral-text); font-size: 0.56rem; font-weight: 800; letter-spacing: 0.13em; }
.mock-next-title { margin-top: 6px; font-family: var(--display); font-size: 1.15rem; font-weight: 800; line-height: 1.08; letter-spacing: -0.035em; }
.mock-next-card p { margin-top: 7px; color: var(--ink-muted); font-size: 0.66rem; line-height: 1.35; }
.mock-action { display: flex; width: 100%; min-height: 39px; align-items: center; justify-content: center; gap: 7px; margin-top: 12px; border-radius: 12px; background: var(--gradient); color: #2b1712; font-size: 0.68rem; font-weight: 800; }
.mock-button-icon { width: 13px; height: 13px; }
.mock-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 10px; }
.mock-pills span { border: 1px solid var(--aurora-border); border-radius: 10px; padding: 7px 4px; background: rgba(255, 255, 255, 0.64); color: var(--ink-muted); font-size: 0.55rem; font-weight: 700; text-align: center; }
.mock-chat { position: absolute; right: 15px; bottom: 16px; left: 15px; display: flex; height: 43px; align-items: center; gap: 8px; border: 1px solid var(--aurora-border); border-radius: 99px; padding: 0 13px; background: rgba(255, 255, 255, 0.93); color: var(--ink-soft); font-size: 0.68rem; box-shadow: 0 11px 25px rgba(75, 51, 39, 0.08); }
.mock-chat-icon { width: 16px; height: 16px; }

.floating-card { position: absolute; z-index: 5; display: flex; max-width: 210px; align-items: center; gap: 10px; border: 1px solid rgba(239, 228, 218, 0.92); border-radius: 17px; padding: 10px 14px 10px 10px; background: rgba(255, 255, 255, 0.88); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); }
.floating-card--top { top: 12%; right: 2%; }
.floating-card--bottom { bottom: 12%; left: -13%; }
.floating-icon { display: grid; width: 38px; height: 38px; flex: none; place-items: center; border-radius: 12px; }
.floating-icon .icon { width: 19px; height: 19px; }
.floating-icon--coral { background: var(--coral-soft); color: var(--coral); }
.floating-icon--green { background: var(--green-soft); color: var(--green); }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: var(--ink-soft); font-size: 0.51rem; font-weight: 800; letter-spacing: 0.1em; }
.floating-card strong { max-width: 135px; overflow: hidden; margin-top: 2px; font-family: var(--display); font-size: 0.73rem; line-height: 1.1; text-overflow: ellipsis; white-space: nowrap; }

.section-heading--center { max-width: 840px; margin: 0 auto; text-align: center; }
.section-heading h2, .how-intro h2, .coach-copy h2, .aura-copy h2, .faq-intro h2, .privacy-card h2, .final-card h2 { font-size: clamp(2.35rem, 4.4vw, 4.35rem); }
.section-heading > p:last-child, .section-heading--split > p, .lead { color: var(--ink-muted); font-size: clamp(1.05rem, 1.5vw, 1.21rem); line-height: 1.55; }
.section-heading--center > p:last-child { max-width: 660px; margin: 22px auto 0; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr); align-items: end; gap: 74px; }
.section-heading--split > p { padding-bottom: 6px; }

.goals-section { background: #fffdfa; }
.goal-cloud { display: flex; max-width: 980px; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 48px auto 0; padding: 0; list-style: none; }
.goal-pill { display: inline-flex; min-height: 52px; align-items: center; gap: 9px; border: 1px solid var(--aurora-border); border-radius: 999px; padding: 10px 18px 10px 12px; background: #fff; box-shadow: 0 8px 24px rgba(74, 47, 31, 0.045); font-weight: 700; transition: transform 180ms ease, box-shadow 180ms ease; }
.goal-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.goal-pill__icon { width: 30px; height: 30px; border-radius: 50%; padding: 7px; }
.goal-pill--1 .goal-pill__icon { background: var(--coral-soft); color: var(--coral); }
.goal-pill--2 .goal-pill__icon { background: var(--green-soft); color: var(--green); }
.goal-pill--3 .goal-pill__icon { background: var(--blue-soft); color: var(--blue); }
.goal-pill--4 .goal-pill__icon { background: var(--violet-soft); color: var(--violet); }

.pillars-section { overflow: hidden; background: var(--aurora-muted); }
.pillars-section::before { position: absolute; top: -230px; right: -230px; width: 520px; height: 520px; border: 1px solid rgba(255, 90, 77, 0.11); border-radius: 50%; content: ''; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 62px; }
.pillar-card { position: relative; min-height: 390px; overflow: hidden; border: 1px solid var(--aurora-border); border-radius: 27px; padding: 30px; background: rgba(255, 255, 255, 0.89); box-shadow: var(--shadow-soft); transition: transform 200ms ease, box-shadow 200ms ease; }
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-card::after { position: absolute; right: -34px; bottom: -45px; width: 170px; height: 170px; border-radius: 50%; opacity: 0.55; filter: blur(2px); content: ''; }
.pillar-card--nutrition::after { background: radial-gradient(circle, var(--green-soft), transparent 69%); }
.pillar-card--movement::after { background: radial-gradient(circle, var(--blue-soft), transparent 69%); }
.pillar-card--balance::after { background: radial-gradient(circle, var(--violet-soft), transparent 69%); }
.pillar-top { display: flex; align-items: center; justify-content: space-between; }
.pillar-icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 18px; }
.pillar-icon .icon { width: 29px; height: 29px; }
.pillar-card--nutrition .pillar-icon { background: var(--green-soft); color: var(--green); }
.pillar-card--movement .pillar-icon { background: var(--blue-soft); color: var(--blue); }
.pillar-card--balance .pillar-icon { background: var(--violet-soft); color: var(--violet); }
.pillar-number { color: var(--ink-soft); font-family: var(--display); font-size: 0.9rem; }
.pillar-card h3 { margin-top: 58px; font-size: 2rem; }
.pillar-card p { position: relative; z-index: 1; margin-top: 17px; color: var(--ink-muted); line-height: 1.55; }
.pillar-line { position: absolute; right: 30px; bottom: 28px; left: 30px; height: 3px; border-radius: 99px; background: var(--aurora-border); }
.pillar-card--nutrition .pillar-line { background: linear-gradient(90deg, var(--green) 0 45%, var(--aurora-border) 45%); }
.pillar-card--movement .pillar-line { background: linear-gradient(90deg, var(--blue) 0 63%, var(--aurora-border) 63%); }
.pillar-card--balance .pillar-line { background: linear-gradient(90deg, var(--violet) 0 36%, var(--aurora-border) 36%); }

.how-section { background: #fffdfa; }
.how-grid { display: grid; grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr); align-items: start; gap: clamp(50px, 8vw, 110px); }
.how-intro { position: sticky; top: 122px; }
.how-aura { display: grid; width: 245px; height: 245px; place-items: center; margin-top: 48px; border: 1px solid var(--aurora-border); border-radius: 50%; background: radial-gradient(circle, #fff 0 40%, var(--aurora-muted) 69%, transparent 70%); }
.how-aura img { width: 190px; height: 190px; object-fit: contain; filter: drop-shadow(0 16px 30px rgba(255, 90, 77, 0.18)); }
.steps-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.step-card { display: grid; grid-template-columns: 58px 1fr; gap: 24px; border: 1px solid var(--aurora-border); border-radius: 24px; padding: 28px; background: var(--aurora-bg); }
.step-number { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 17px; background: var(--gradient); box-shadow: 0 13px 28px -15px rgba(255, 90, 77, 0.66); color: #2b1712; font-family: var(--display); font-size: 0.85rem; }
.step-card h3 { font-size: clamp(1.45rem, 2.3vw, 2rem); line-height: 1.08; }
.step-card p { margin-top: 11px; color: var(--ink-muted); line-height: 1.55; }

.preview-section {
  overflow: hidden;
  background:
    radial-gradient(68% 72% at 88% 50%, rgba(255, 126, 77, 0.13), transparent 72%),
    linear-gradient(180deg, var(--aurora-muted) 0%, #fffaf6 100%);
}
.preview-section::before { position: absolute; top: 11%; left: -170px; width: 380px; height: 380px; border: 1px solid rgba(255, 90, 77, 0.1); border-radius: 50%; content: ''; }
.preview-grid { display: grid; grid-template-columns: minmax(320px, 0.82fr) minmax(440px, 1.08fr); align-items: center; gap: clamp(54px, 8vw, 118px); }
.preview-copy { max-width: 530px; }
.preview-copy h2 { font-size: clamp(2.55rem, 4.7vw, 4.55rem); }
.preview-copy .lead { margin-top: 26px; }
.preview-list { display: grid; gap: 15px; margin: 32px 0 0; padding: 0; list-style: none; }
.preview-list li { display: flex; align-items: flex-start; gap: 11px; font-weight: 650; }
.preview-list .icon { width: 21px; height: 21px; flex: none; margin-top: 3px; border-radius: 50%; padding: 4px; background: var(--green-soft); color: var(--green); stroke-width: 2.5; }
.simulator-stage { position: relative; display: flex; min-height: 940px; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; margin: 0; border: 1px solid var(--aurora-border); border-radius: 38px; padding: 44px 30px 27px; background: radial-gradient(80% 45% at 50% 21%, rgba(255, 255, 255, 0.97), transparent 74%), rgba(255, 248, 243, 0.84); box-shadow: var(--shadow); }
.simulator-device { position: relative; z-index: 2; width: min(380px, 86%); overflow: hidden; border: 9px solid #1d1a18; border-radius: 55px; padding: 5px; background: #1d1a18; box-shadow: 0 40px 76px -30px rgba(35, 25, 21, 0.45), 0 13px 25px rgba(42, 27, 20, 0.14); }
.simulator-device img { width: 100%; height: auto; border-radius: 41px; background: var(--aurora-bg); }
.simulator-stage figcaption { position: relative; z-index: 2; margin-top: 20px; color: var(--ink-soft); font-size: 0.76rem; font-weight: 600; text-align: center; }
.simulator-orbit { position: absolute; border: 1px solid rgba(255, 90, 77, 0.15); border-radius: 50%; pointer-events: none; }
.simulator-orbit--one { width: 650px; height: 650px; transform: rotate(18deg) scaleY(0.66); }
.simulator-orbit--two { width: 520px; height: 760px; transform: rotate(-32deg) scaleX(0.74); border-color: rgba(255, 138, 77, 0.12); }
.simulator-badge { position: absolute; z-index: 3; top: 38px; right: 38px; display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid rgba(255, 90, 77, 0.16); border-radius: 18px; background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow-soft); color: var(--coral-text); font-family: var(--display); font-size: 0.85rem; }

.coach-section { overflow: hidden; background: var(--aurora-bg); }
.coach-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr); align-items: center; gap: clamp(52px, 8vw, 112px); }
.chat-demo { position: relative; max-width: 580px; border: 1px solid var(--aurora-border); border-radius: 30px; padding: 22px; background: #fff; box-shadow: var(--shadow); }
.chat-demo::before { position: absolute; z-index: -1; top: 10%; right: -12%; width: 290px; height: 290px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 90, 77, 0.17), transparent 68%); content: ''; }
.chat-demo-head { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--aurora-border); padding-bottom: 17px; }
.coach-avatar { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 14px; background: var(--gradient); color: #fff; }
.coach-avatar .icon { width: 20px; height: 20px; }
.chat-demo-head strong, .chat-demo-head small { display: block; }
.chat-demo-head strong { font-family: var(--display); font-size: 1.01rem; }
.chat-demo-head small { margin-top: 2px; color: var(--ink-soft); font-size: 0.52rem; font-weight: 700; letter-spacing: 0.09em; }
.chat-status { width: 9px; height: 9px; margin-left: auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }
.bubble { max-width: 82%; margin-top: 16px; border-radius: 18px; padding: 12px 15px; font-size: 0.92rem; line-height: 1.43; }
.bubble--user { margin-left: auto; border-bottom-right-radius: 6px; background: var(--ink); color: #fff; }
.bubble--fitura { border: 1px solid var(--aurora-border); border-bottom-left-radius: 6px; background: var(--aurora-muted); color: var(--ink); }
.chat-compose { display: flex; min-height: 50px; align-items: center; gap: 10px; margin-top: 20px; border: 1px solid var(--aurora-border); border-radius: 999px; padding: 6px 7px 6px 16px; color: var(--ink-soft); }
.chat-compose-icon { width: 18px; height: 18px; }
.chat-send { display: grid; width: 36px; height: 36px; margin-left: auto; place-items: center; border-radius: 50%; background: var(--gradient); color: #fff; }
.chat-send .icon { width: 17px; height: 17px; }
.coach-copy .lead { margin-top: 24px; }
.check-list, .aura-points { display: grid; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li, .aura-points li { display: flex; align-items: flex-start; gap: 11px; font-weight: 600; }
.check-list .icon, .aura-points .icon { width: 20px; height: 20px; flex: none; margin-top: 3px; border-radius: 50%; padding: 4px; background: var(--green-soft); color: var(--green); stroke-width: 2.5; }

.aura-section { min-height: 780px; overflow: hidden; background: radial-gradient(80% 110% at 77% 45%, #2a1c20 0%, var(--eclipse) 46%, var(--eclipse-deep) 100%); color: #fff; }
.aura-section::after { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(4, 8, 12, 0.45) 100%); content: ''; pointer-events: none; }
.aura-stars { position: absolute; inset: 0; opacity: 0.34; background-image: radial-gradient(rgba(255, 180, 139, 0.48) 0.7px, transparent 0.7px); background-size: 19px 19px; mask-image: radial-gradient(circle at 77% 50%, #000, transparent 60%); }
.aura-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(310px, 0.78fr) minmax(460px, 1.22fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.aura-copy .lead { margin-top: 25px; color: var(--eclipse-muted); }
.aura-points li { color: #e8e9ed; }
.aura-points .icon { background: rgba(63, 176, 122, 0.14); color: #68d69d; }
.aura-disclaimer { margin-top: 27px; color: #87919d; font-size: 0.78rem; }
.aura-visual { position: relative; display: grid; min-height: 560px; place-items: center; }
.aura-main-logo { position: relative; z-index: 2; width: min(440px, 80%); aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 0 45px rgba(255, 112, 75, 0.33)); animation: breathe 6s ease-in-out infinite; }
.aura-halo { position: absolute; border-radius: 50%; }
.aura-halo--outer { width: 520px; height: 520px; border: 1px solid rgba(255, 126, 86, 0.22); animation: orbit 17s linear infinite; }
.aura-halo--outer::after { position: absolute; top: 11%; right: 10%; width: 13px; height: 13px; border-radius: 50%; background: #ff9561; box-shadow: 0 0 24px #ff734c; content: ''; }
.aura-halo--inner { width: 390px; height: 470px; transform: rotate(34deg); border: 1px solid rgba(246, 119, 151, 0.17); animation: orbitReverse 13s linear infinite; }
.week-rings { position: absolute; z-index: 4; right: 0; bottom: 6px; left: 0; display: flex; justify-content: center; gap: 9px; }
.week-ring { display: grid; width: 48px; gap: 4px; place-items: center; }
.week-ring i { display: block; width: 36px; height: 36px; border-radius: 50%; background: conic-gradient(#ff7356 var(--progress), rgba(255,255,255,0.11) 0); mask: radial-gradient(transparent 54%, #000 56%); }
.week-ring b { color: #7d858f; font-size: 0.62rem; }

.privacy-section { padding-block: clamp(70px, 8vw, 108px); background: #fffdfa; }
.privacy-card { display: grid; grid-template-columns: 86px 1fr; gap: 30px; border: 1px solid var(--aurora-border); border-radius: 30px; padding: clamp(28px, 5vw, 54px); background: linear-gradient(135deg, #fff 0%, var(--aurora-bg) 100%); box-shadow: var(--shadow-soft); }
.privacy-icon { display: grid; width: 72px; height: 72px; place-items: center; border-radius: 22px; background: var(--coral-soft); color: var(--coral); }
.privacy-icon .icon { width: 30px; height: 30px; }
.privacy-card h2 { max-width: 790px; font-size: clamp(2.1rem, 4vw, 3.8rem); }
.privacy-card p { max-width: 800px; margin-top: 20px; color: var(--ink-muted); font-size: 1.06rem; }
.privacy-card a { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; color: var(--coral-text); font-weight: 700; }
.privacy-card small { margin-left: 10px; color: var(--ink-soft); }

.faq-section { background: var(--aurora-muted); }
.faq-grid { display: grid; grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.15fr); gap: clamp(50px, 8vw, 110px); }
.faq-intro { position: relative; }
.faq-aura { width: 190px; margin-top: 44px; opacity: 0.84; filter: drop-shadow(0 15px 28px rgba(255, 90, 77, 0.14)); }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--aurora-border); border-radius: 19px; background: rgba(255, 255, 255, 0.82); }
.faq-item summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 20px; cursor: pointer; font-family: var(--display); font-size: 1.09rem; line-height: 1.18; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 32px; height: 32px; flex: none; border-radius: 50%; background: var(--aurora-muted); }
.faq-plus::before, .faq-plus::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; transform: translate(-50%, -50%); border-radius: 99px; background: var(--ink); content: ''; transition: transform 180ms ease; }
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { padding: 0 66px 21px 20px; }
.faq-answer p { color: var(--ink-muted); line-height: 1.55; }

.final-section { overflow: hidden; background: #fffdfa; }
.final-card { position: relative; overflow: hidden; border-radius: 36px; padding: clamp(62px, 9vw, 105px) 24px; background: radial-gradient(70% 160% at 50% 110%, #55302d 0%, #262028 45%, var(--eclipse-deep) 100%); color: #fff; text-align: center; }
.final-card > * { position: relative; z-index: 2; }
.final-orbit { position: absolute; z-index: 1; top: 50%; left: 50%; width: 680px; height: 360px; transform: translate(-50%, -50%) rotate(-10deg); border: 1px solid rgba(255, 116, 82, 0.2); border-radius: 50%; }
.final-orbit::before, .final-orbit::after { position: absolute; border: 1px solid rgba(255, 159, 106, 0.12); border-radius: 50%; content: ''; }
.final-orbit::before { inset: -85px 65px; transform: rotate(32deg); }
.final-orbit::after { inset: -130px 155px; transform: rotate(-45deg); }
.final-logo { width: 96px; margin: 0 auto 22px; filter: drop-shadow(0 0 28px rgba(255, 105, 71, 0.42)); }
.final-card h2 { max-width: 760px; margin: 0 auto; }
.final-card > p:not(.eyebrow) { max-width: 620px; margin: 24px auto 0; color: var(--eclipse-muted); font-size: 1.09rem; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }

.site-footer { border-top: 1px solid var(--aurora-border); padding: 68px 0 24px; background: var(--aurora-bg); }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(135px, 0.65fr)); gap: 40px; }
.brand--footer { margin-bottom: 18px; }
.footer-grid > div:first-child p { max-width: 330px; color: var(--ink-muted); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column strong { margin-bottom: 4px; font-family: var(--display); font-size: 0.96rem; }
.footer-column a { color: var(--ink-muted); font-size: 0.89rem; }
.footer-column a:hover { color: var(--coral-text); }
.footer-column a small { color: var(--ink-soft); font-size: 0.71rem; }
.language-control--footer { margin-top: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 54px; border-top: 1px solid var(--aurora-border); padding-top: 22px; color: var(--ink-soft); }
.footer-status { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; }
.footer-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 620ms cubic-bezier(0.2, 0.65, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.65, 0.2, 1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 80ms !important; }
.reveal--delay-2 { transition-delay: 150ms !important; }
.reveal--delay-3 { transition-delay: 220ms !important; }

@keyframes breathe { 0%, 100% { transform: scale(0.97); filter: drop-shadow(0 10px 24px rgba(255, 90, 77, 0.19)); } 50% { transform: scale(1.025); filter: drop-shadow(0 14px 32px rgba(255, 90, 77, 0.32)); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitReverse { from { transform: rotate(34deg); } to { transform: rotate(-326deg); } }

@media (min-width: 921px) {
  html[lang='fr'] .hero-title { font-size: clamp(3rem, 4.9vw, 4rem); }
  html[lang='es'] .hero-title { font-size: clamp(3rem, 5.45vw, 4.45rem); }
  html[lang='de'] .hero-title { font-size: clamp(3rem, 4.55vw, 3.75rem); }
  html[lang='pt-PT'] .hero-title { font-size: clamp(3rem, 4.65vw, 3.8rem); }
  html:not([lang='en']) .hero-title span { white-space: nowrap; }
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 19px; }
  .desktop-nav a { font-size: 0.85rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr); gap: 28px; }
  .floating-card--top { right: -2%; }
  .floating-card--bottom { left: -4%; }
  .pillar-card { padding: 25px; }
}

@media (max-width: 920px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { position: relative; display: flex; }
  .mobile-menu { display: grid; }
  .hero { min-height: 0; padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { max-width: 760px; }
  .hero-stage { min-height: 690px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 22px; }
  .section-heading--split > p { max-width: 680px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 300px; }
  .pillar-card h3 { margin-top: 40px; }
  .how-grid, .preview-grid, .coach-grid, .aura-grid, .faq-grid { grid-template-columns: 1fr; }
  .how-intro { position: relative; top: auto; }
  .how-aura { display: none; }
  .preview-copy { max-width: 680px; }
  .simulator-stage { width: 100%; max-width: 680px; min-height: 880px; margin: 0 auto; }
  .coach-copy { order: -1; }
  .chat-demo { width: 100%; max-width: 680px; margin: 0 auto; }
  .aura-grid { gap: 42px; }
  .aura-visual { min-height: 570px; }
  .faq-aura { display: none; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid .footer-column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  .shell { width: min(var(--shell), calc(100% - 32px)); }
  .section { padding-block: 82px; }
  .preview-section { padding-bottom: 46px; }
  .coach-section { padding-top: 56px; }
  .header-inner { height: 70px; gap: 8px; }
  .brand { font-size: 1.18rem; }
  .brand-mark { width: 36px; height: 36px; border-radius: 12px; }
  .brand-mark img { width: 30px; height: 30px; }
  .language-control select { min-width: 104px; max-width: 124px; }
  .hero { padding-top: 115px; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-body { font-size: 1.08rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 210px; }
  .hero-stage { min-height: 610px; transform: scale(0.92); margin: -26px 0 -38px; }
  .phone-frame { width: 310px; height: 626px; }
  .floating-card--top { top: 13%; right: -2%; }
  .floating-card--bottom { bottom: 11%; left: -3%; }
  .section-heading h2, .how-intro h2, .coach-copy h2, .aura-copy h2, .faq-intro h2, .privacy-card h2, .final-card h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .goal-cloud { gap: 9px; }
  .goal-pill { min-height: 48px; padding: 8px 14px 8px 9px; font-size: 0.91rem; }
  .pillar-card { min-height: 310px; }
  .step-card { grid-template-columns: 47px 1fr; gap: 17px; padding: 22px; }
  .step-number { width: 46px; height: 46px; border-radius: 14px; }
  .simulator-stage { min-height: 0; border-radius: 29px; padding: 35px 12px 24px; }
  .simulator-device { width: min(320px, 100%); border-width: 7px; border-radius: 47px; padding: 4px; }
  .simulator-device img { border-radius: 36px; }
  .simulator-badge { display: none; }
  .bubble { max-width: 90%; }
  .aura-visual { min-height: 470px; }
  .aura-halo--outer { width: 430px; height: 430px; }
  .aura-halo--inner { width: 310px; height: 390px; }
  .week-rings { gap: 3px; }
  .week-ring { width: 41px; }
  .week-ring i { width: 31px; height: 31px; }
  .privacy-card { grid-template-columns: 1fr; gap: 21px; }
  .privacy-icon { width: 58px; height: 58px; border-radius: 18px; }
  .privacy-card small { display: block; margin: 7px 0 0; }
  .faq-item summary { min-height: 70px; font-size: 1rem; }
  .final-card { border-radius: 28px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .language-control select { min-width: 91px; max-width: 104px; padding-left: 10px; font-size: 0.78rem; }
  .header-actions { gap: 6px; }
  .hero-title { font-size: clamp(2.75rem, 14.3vw, 3.8rem); }
  .hero-stage { min-height: 560px; transform: scale(0.82); margin: -55px -32px -70px; }
  .floating-card { max-width: 175px; padding-right: 10px; }
  .floating-card--top { right: 0; }
  .floating-card--bottom { left: 0; }
  .floating-card strong { max-width: 100px; }
  .goal-cloud { justify-content: flex-start; }
  .goal-pill { width: 100%; }
  .pillar-card { padding: 23px; }
  .chat-demo { padding: 15px; border-radius: 24px; }
  .bubble { font-size: 0.86rem; }
  .aura-visual { min-height: 420px; }
  .aura-halo--outer { width: 350px; height: 350px; }
  .aura-halo--inner { width: 260px; height: 330px; }
  .week-ring { width: 36px; }
  .week-ring i { width: 27px; height: 27px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid .footer-column:last-child { grid-column: auto; }
}

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