:root {
  --ink: #07101b;
  --ink-soft: #0e1a29;
  --surface: #111f30;
  --surface-2: #17283b;
  --line: rgba(210, 229, 249, 0.13);
  --muted: #9eacbb;
  --white: #f8fbf3;
  --green: #c8ff72;
  --green-bright: #d5ff95;
  --green-deep: #9ed84f;
  --blue: #83d8ff;
  --yellow: #ffd36a;
  --purple: #c7aeff;
  --red: #ff8790;
  --font-display: "Manrope", "Avenir Next", sans-serif;
  --font-body: "DM Sans", "Avenir Next", sans-serif;
  --max-width: 1180px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

.noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

.section {
  position: relative;
  padding: 120px 0;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 40px), 1180px);
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  border: 1px solid transparent;
  border-radius: 20px;
  transform: translateX(-50%);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, top .35s ease;
}

.site-header.scrolled {
  top: 10px;
  background: rgba(7, 16, 27, .8);
  border-color: var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.055em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--green);
  border-radius: 11px;
  place-items: center;
  box-shadow: 0 0 28px rgba(200, 255, 114, .15);
}

.brand-mark svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2px;
}

.brand-mark.large {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 17px;
  background: var(--ink);
  color: var(--green);
  box-shadow: 0 14px 30px rgba(7, 16, 27, .15);
}

.brand-mark.large svg {
  width: 31px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #bfccd9;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  transition: color .25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 13px;
  font-size: 12px;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .055);
}

.button-ghost:hover {
  border-color: rgba(200, 255, 114, .45);
  background: rgba(200, 255, 114, .08);
}

.button-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 14px 36px rgba(160, 223, 73, .16);
}

.button-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 18px 44px rgba(160, 223, 73, .24);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(7, 16, 27, .18);
}

.button-dark:hover {
  background: #132130;
}

.button-arrow {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(7, 16, 27, .12);
  place-items: center;
  transition: transform .25s var(--ease);
}

.button:hover .button-arrow {
  transform: rotate(45deg);
}

.button-dark .button-arrow {
  color: var(--ink);
  background: var(--green);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  display: flex;
  min-height: 900px;
  padding-top: 165px;
  padding-bottom: 54px;
  background:
    radial-gradient(circle at 80% 30%, rgba(65, 116, 129, .18), transparent 33%),
    linear-gradient(180deg, #07101b 0%, #09131f 73%, #0d1b29 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(460px, 1.07fr);
  align-items: center;
  gap: 76px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 80px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 13px;
  color: #b9c7d5;
  border: 1px solid rgba(200, 255, 114, .18);
  border-radius: 999px;
  background: rgba(200, 255, 114, .05);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(200, 255, 114, .1);
}

.live-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
  content: "";
}

.hero h1 {
  max-width: 650px;
  margin: 28px 0 26px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(54px, 6.15vw, 86px);
  font-weight: 700;
  letter-spacing: -.072em;
  line-height: .98;
}

.accent-word {
  position: relative;
  display: inline-block;
  color: var(--green);
  font-style: italic;
  font-weight: 600;
}

.accent-word::after {
  position: absolute;
  right: 3px;
  bottom: -7px;
  left: 9px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='300' height='10' viewBox='0 0 300 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7c83-7 186-6 296-3' fill='none' stroke='%23c8ff72' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  content: "";
  opacity: .8;
}

.hero-lead {
  max-width: 550px;
  margin: 0;
  color: #9eacbb;
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  color: #cfd9e3;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.play-icon {
  display: grid;
  width: 39px;
  height: 39px;
  padding-left: 2px;
  color: var(--green);
  border: 1px solid rgba(200, 255, 114, .28);
  border-radius: 50%;
  place-items: center;
  font-size: 10px;
  transition: color .25s ease, background .25s ease, transform .25s var(--ease);
}

.text-link:hover .play-icon {
  color: var(--ink);
  background: var(--green);
  transform: scale(1.08);
}

.trust-row {
  display: flex;
  gap: 23px;
  margin-top: 30px;
  color: #7f8e9e;
  font-size: 11px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row i,
.privacy-points i {
  display: grid;
  width: 17px;
  height: 17px;
  color: var(--green);
  border: 1px solid rgba(200, 255, 114, .25);
  border-radius: 50%;
  place-items: center;
  font-size: 9px;
  font-style: normal;
}

.hero-product {
  position: relative;
  z-index: 2;
  display: grid;
  height: 650px;
  place-items: center;
  perspective: 1400px;
}

.phone-shadow {
  position: absolute;
  z-index: -2;
  top: 8%;
  left: 50%;
  width: 420px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 183, 180, .22), transparent 67%);
  filter: blur(30px);
  transform: translateX(-50%);
}

.phone {
  position: relative;
  width: 306px;
  padding: 7px;
  border: 1px solid rgba(218, 232, 244, .32);
  border-radius: 48px;
  background: linear-gradient(145deg, #42505f, #121923 25%, #090e14 74%, #465664);
  box-shadow: 0 42px 80px rgba(0, 0, 0, .53), inset 0 0 0 1px rgba(255, 255, 255, .11);
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform .4s var(--ease);
}

.phone:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
}

.phone::before,
.phone::after {
  position: absolute;
  left: -9px;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: #333f4a;
  content: "";
}

.phone::before { top: 120px; height: 50px; }
.phone::after { top: 185px; height: 75px; }

.phone-frame {
  position: relative;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 41px;
  background: #09131f;
  overflow: hidden;
}

.phone-topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 39px;
  padding: 0 21px;
  color: #e8edf3;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
}

.dynamic-island {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 82px;
  height: 23px;
  border-radius: 14px;
  background: #020405;
  transform: translateX(-50%);
}

.phone-signals {
  font-size: 7px;
  letter-spacing: 1px;
}

.chat-header {
  display: flex;
  align-items: center;
  height: 57px;
  padding: 0 15px;
  border-top: 1px solid rgba(255, 255, 255, .025);
  border-bottom: 1px solid var(--line);
}

.ai-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  margin-right: 10px;
  color: var(--ink);
  border-radius: 11px;
  background: var(--green);
  place-items: center;
  font-size: 17px;
}

.chat-header div:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1px;
}

.chat-header span,
.console-top small {
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.chat-header strong {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}

.chat-header button {
  width: 30px;
  height: 30px;
  padding: 0 0 6px;
  color: #8e9dad;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  letter-spacing: 2px;
}

.chat-area {
  display: flex;
  height: 421px;
  padding: 13px 12px 5px;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.date-chip {
  align-self: center;
  margin-bottom: 1px;
  color: #536476;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.bubble {
  position: relative;
  max-width: 87%;
  padding: 9px 10px 7px;
  border-radius: 13px;
  font-size: 9.5px;
  line-height: 1.42;
  animation: messageIn .75s var(--ease) both;
}

.bubble time {
  display: block;
  margin-top: 3px;
  color: #69798a;
  font-size: 6px;
  text-align: right;
}

.bubble-user {
  align-self: flex-end;
  color: var(--ink);
  border-bottom-right-radius: 4px;
  background: var(--green);
  font-weight: 600;
}

.bubble-user time {
  color: #637a41;
}

.bubble-ai {
  align-self: flex-start;
  color: #dce5ed;
  border: 1px solid rgba(255, 255, 255, .075);
  border-bottom-left-radius: 4px;
  background: #121f2e;
}

.bubble-ai strong {
  color: var(--white);
}

.bubble-label {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: .1em;
}

.action-confirm {
  display: flex;
  align-items: center;
  gap: 5px;
  width: max-content;
  margin-top: 7px;
  padding: 4px 7px;
  color: #a9bbca;
  border: 1px solid rgba(200, 255, 114, .11);
  border-radius: 7px;
  background: rgba(200, 255, 114, .055);
  font-size: 6.5px;
  font-weight: 700;
}

.action-confirm i {
  display: grid;
  width: 10px;
  height: 10px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--green);
  place-items: center;
  font-size: 6px;
  font-style: normal;
}

.delayed-message {
  animation-delay: .35s;
}

.quick-prompts {
  display: flex;
  gap: 5px;
  padding: 0 11px 7px;
}

.quick-prompts button {
  padding: 5px 8px;
  color: #91a1b1;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: transparent;
  font-size: 6.5px;
  cursor: pointer;
}

.quick-prompts button:hover {
  color: var(--green);
  border-color: rgba(200, 255, 114, .25);
}

.composer {
  display: flex;
  align-items: center;
  height: 42px;
  margin: 0 10px;
  padding: 0 6px 0 11px;
  color: #607082;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #0e1a27;
  font-size: 7.5px;
}

.composer span { flex: 1; }
.composer i { margin-right: 7px; font-size: 16px; font-style: normal; }
.composer b {
  display: grid;
  width: 29px;
  height: 29px;
  color: var(--ink);
  border-radius: 10px;
  background: var(--green);
  place-items: center;
  font-size: 14px;
}

.home-indicator {
  width: 92px;
  height: 3px;
  margin: 9px auto 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, .7);
}

.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  min-width: 189px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  background: rgba(15, 28, 42, .87);
  box-shadow: 0 22px 42px rgba(0, 0, 0, .32);
  backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}

.floating-note > span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.floating-note small {
  margin-bottom: 2px;
  color: #7f90a0;
  font-size: 8px;
}

.floating-note strong {
  font-family: var(--font-display);
  font-size: 11px;
}

.floating-note > i {
  display: grid;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--green);
  place-items: center;
  font-size: 9px;
  font-style: normal;
}

.floating-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  color: var(--green);
  border-radius: 11px;
  background: rgba(200, 255, 114, .1);
  place-items: center;
}

.calendar-icon {
  color: var(--yellow);
  background: rgba(255, 211, 106, .1);
  font-size: 10px;
  font-weight: 800;
}

.note-expense {
  right: -18px;
  bottom: 132px;
}

.note-calendar {
  top: 122px;
  left: -20px;
  animation-delay: -2.4s;
}

.orbit {
  position: absolute;
  z-index: -1;
  display: grid;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  place-items: center;
}

.orbit::before {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, .035);
  border-radius: inherit;
  content: "";
}

.orbit span {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--ink);
  border-radius: 13px;
  background: var(--blue);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .25);
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.orbit-one { top: 8%; right: 5%; width: 148px; height: 148px; animation: orbitFloat 7s ease-in-out infinite; }
.orbit-two { bottom: 6%; left: 4%; width: 112px; height: 112px; animation: orbitFloat 6s ease-in-out -2s infinite; }
.orbit-three { top: 44%; right: 0; width: 90px; height: 90px; animation: orbitFloat 5s ease-in-out -4s infinite; }
.orbit-two span { color: var(--ink); background: var(--green); }
.orbit-three span { color: var(--ink); background: var(--purple); }

.hero-footer {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 35px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-footer p {
  margin: 0;
  color: #6f8090;
  font-size: 11px;
}

.category-strip {
  display: flex;
  gap: 23px;
}

.category-strip span {
  color: #8494a4;
  font-size: 10px;
  font-weight: 600;
}

.category-strip span::first-letter {
  color: var(--green);
}

.section-heading {
  max-width: 700px;
}

.section-heading.centered {
  margin: 0 auto 62px;
  text-align: center;
}

.kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
}

.section-heading h2,
.showcase-copy h2,
.experience-copy h2,
.faq-heading h2,
.privacy-copy h2,
.cta-content h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.section-heading p {
  max-width: 570px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.problem-section {
  background: #f2f4ee;
}

.problem-section .section-heading h2,
.problem-section .step-card h3 {
  color: #0d1720;
}

.problem-section .section-heading p,
.problem-section .step-card p {
  color: #65717a;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.step-card {
  position: relative;
  min-height: 380px;
  padding: 24px 27px 28px;
  border: 1px solid rgba(7, 16, 27, .09);
  border-radius: 25px;
  background: rgba(255, 255, 255, .68);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.step-card:hover {
  box-shadow: 0 25px 60px rgba(30, 45, 45, .1);
  transform: translateY(-7px);
}

.step-card.step-featured {
  color: var(--white);
  border-color: #132b27;
  background: #0c1c22;
  box-shadow: 0 24px 48px rgba(9, 27, 29, .14);
}

.step-card.step-featured h3 { color: var(--white); }
.step-card.step-featured p { color: #90a6a9; }

.step-number {
  color: #98a2a7;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.ai-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  color: var(--ink);
  border-radius: 99px;
  background: var(--green);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .12em;
}

.step-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
}

.step-card h3 {
  margin: 9px 0 12px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -.025em;
}

.step-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.62;
}

.sound-visual {
  gap: 15px;
}

.mic-orb {
  display: grid;
  width: 57px;
  height: 57px;
  color: #25331a;
  border-radius: 18px;
  background: var(--green);
  box-shadow: 0 11px 30px rgba(158, 216, 79, .24);
  place-items: center;
  font-size: 25px;
}

.wave-bars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wave-bars i {
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #83a05e;
  animation: wave 1.2s ease-in-out infinite;
}

.wave-bars i:nth-child(2) { height: 27px; animation-delay: -.2s; }
.wave-bars i:nth-child(3) { height: 39px; animation-delay: -.4s; }
.wave-bars i:nth-child(4) { height: 23px; animation-delay: -.15s; }
.wave-bars i:nth-child(5) { height: 46px; animation-delay: -.55s; }
.wave-bars i:nth-child(6) { height: 32px; animation-delay: -.3s; }
.wave-bars i:nth-child(7) { height: 19px; animation-delay: -.45s; }
.wave-bars i:nth-child(8) { height: 27px; animation-delay: -.1s; }
.wave-bars i:nth-child(9) { height: 12px; animation-delay: -.5s; }

.intent-visual {
  flex-direction: column;
}

.intent-source {
  padding: 10px 16px;
  color: #0c171d;
  border-radius: 12px 12px 4px 12px;
  background: var(--green);
  font-size: 10px;
  font-weight: 700;
  transform: translateX(23px);
}

.intent-line {
  width: 1px;
  height: 31px;
  background: linear-gradient(var(--green), rgba(200, 255, 114, .1));
}

.intent-result {
  display: flex;
  align-items: center;
  min-width: 178px;
  padding: 10px;
  border: 1px solid rgba(200, 255, 114, .15);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  font-size: 9px;
}

.intent-result > span {
  display: grid;
  width: 27px;
  height: 27px;
  margin-right: 9px;
  color: var(--purple);
  border-radius: 8px;
  background: rgba(199, 174, 255, .1);
  place-items: center;
}

.intent-result b { flex: 1; }
.intent-result i {
  display: grid;
  width: 17px;
  height: 17px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--green);
  place-items: center;
  font-size: 7px;
  font-style: normal;
}

.done-visual {
  gap: 14px;
}

.success-ring {
  display: grid;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(103, 140, 60, .22);
  border-radius: 50%;
  background: rgba(200, 255, 114, .12);
  place-items: center;
  box-shadow: 0 0 0 12px rgba(200, 255, 114, .045);
}

.success-ring i {
  display: grid;
  width: 42px;
  height: 42px;
  color: #233119;
  border-radius: 50%;
  background: var(--green);
  place-items: center;
  font-size: 20px;
  font-style: normal;
}

.done-visual div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.done-visual small { color: #97a3a8; font-size: 8px; }
.done-visual strong { color: #1c272c; font-family: var(--font-display); font-size: 12px; }

.screens-section {
  padding: 135px 0 105px;
  background:
    radial-gradient(circle at 50% 44%, rgba(91, 168, 163, .13), transparent 31%),
    #07101b;
  overflow: hidden;
}

.screens-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  content: "";
  pointer-events: none;
}

.screen-aura {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(200, 255, 114, .055);
  border-radius: 50%;
}

.screen-aura::before,
.screen-aura::after {
  position: absolute;
  border: 1px solid rgba(200, 255, 114, .035);
  border-radius: inherit;
  content: "";
}

.screen-aura::before { inset: 55px; }
.screen-aura::after { inset: 112px; }
.aura-left { top: 32%; left: -245px; }
.aura-right { right: -250px; bottom: 12%; }

.screens-heading {
  position: relative;
  z-index: 2;
}

.screen-tabs {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 58px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.screen-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  color: #788b9c;
  border: 0;
  border-radius: 12px;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, transform .25s var(--ease);
}

.screen-tab span {
  margin-right: 7px;
  color: #8aa0ae;
  font-size: 13px;
}

.screen-tab:hover {
  color: var(--white);
}

.screen-tab.active {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(200, 255, 114, .13);
}

.screen-tab.active span {
  color: var(--ink);
}

.screen-tour {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(120deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: 0 35px 90px rgba(0,0,0,.28);
  overflow: hidden;
}

.screen-tour::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 39%;
  width: 1px;
  background: linear-gradient(transparent, var(--line) 15%, var(--line) 85%, transparent);
  content: "";
}

.screen-tour-copy {
  max-width: 410px;
  padding: 55px;
}

.screen-index {
  display: block;
  margin-bottom: 58px;
  color: #627586;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
}

.screen-tour-copy .kicker {
  margin-bottom: 13px;
}

.screen-tour-copy h3 {
  margin: 0 0 19px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1.09;
}

.screen-tour-copy > p {
  min-height: 74px;
  margin: 0;
  color: #8fa0af;
  font-size: 14px;
  line-height: 1.7;
}

.screen-tour-copy ul {
  display: flex;
  min-height: 116px;
  margin: 27px 0 38px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 11px;
  list-style: none;
}

.screen-tour-copy li {
  display: flex;
  align-items: center;
  color: #b8c4cf;
  font-size: 11px;
}

.screen-tour-copy li i {
  display: grid;
  width: 17px;
  height: 17px;
  margin-right: 9px;
  color: var(--ink);
  border-radius: 6px;
  background: var(--green);
  place-items: center;
  font-size: 7px;
  font-style: normal;
}

.screen-arrows {
  display: flex;
  gap: 9px;
}

.screen-arrows button {
  display: grid;
  width: 43px;
  height: 43px;
  color: #9aabb9;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
  place-items: center;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s var(--ease);
}

.screen-arrows button:hover {
  color: var(--ink);
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-2px);
}

.device-showcase {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  perspective: 1400px;
}

.device-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(200,255,114,.07);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.device-backdrop::before,
.device-backdrop::after {
  position: absolute;
  border: 1px solid rgba(200,255,114,.05);
  border-radius: inherit;
  content: "";
}

.device-backdrop::before { inset: 70px; }
.device-backdrop::after { inset: 145px; }

.device-backdrop span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(200,255,114,.5);
}

.device-backdrop span:nth-child(1) { top: 14%; left: 16%; }
.device-backdrop span:nth-child(2) { top: 38%; right: -3px; background: var(--blue); }
.device-backdrop span:nth-child(3) { bottom: 5%; left: 35%; background: var(--purple); }

.app-device {
  position: relative;
  z-index: 2;
  width: 316px;
  padding: 7px;
  border: 1px solid rgba(224, 235, 247, .32);
  border-radius: 49px;
  background: linear-gradient(145deg, #465461, #131a23 24%, #070b10 76%, #3c4a57);
  box-shadow: 0 45px 90px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.12);
  transform: rotateY(-3deg) rotateX(1deg);
  transform-style: preserve-3d;
  transition: opacity .2s ease, transform .5s var(--ease);
}

.app-device.switching {
  opacity: .38;
  transform: rotateY(2deg) translateY(8px) scale(.985);
}

.app-device::before,
.app-device::after {
  position: absolute;
  left: -9px;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: #34414d;
  content: "";
}

.app-device::before { top: 125px; height: 52px; }
.app-device::after { top: 191px; height: 75px; }

.app-device-shell {
  position: relative;
  height: 642px;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 42px;
  background: #09131f;
  overflow: hidden;
}

.app-status {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 21px;
  color: #edf2f7;
  font-size: 8px;
}

.app-status > i {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 83px;
  height: 23px;
  border-radius: 14px;
  background: #020405;
  transform: translateX(-50%);
}

.app-status span { font-size: 7px; letter-spacing: 1px; }

.app-screen {
  height: 540px;
  padding: 10px 15px 5px;
  overflow: hidden;
}

.app-view {
  animation: screenIn .5s var(--ease) both;
}

.app-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.app-page-header > div {
  display: flex;
  flex-direction: column;
}

.app-page-header small,
.app-section-title span,
.screen-card-label {
  color: #778a9c;
  font-size: 6.5px;
  font-weight: 900;
  letter-spacing: .13em;
}

.app-page-header h4 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -.04em;
}

.app-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--ink);
  border-radius: 11px;
  background: var(--blue);
  place-items: center;
  font-size: 8px;
  font-weight: 900;
}

.daily-score {
  display: grid;
  grid-template-columns: 1fr 65px;
  align-items: center;
  min-height: 108px;
  padding: 15px;
  border: 1px solid rgba(200,255,114,.15);
  border-radius: 17px;
  background: linear-gradient(125deg, rgba(200,255,114,.1), rgba(255,255,255,.025));
}

.daily-score > div:first-child {
  display: flex;
  flex-direction: column;
}

.daily-score span { color: var(--green); font-size: 6px; font-weight: 900; letter-spacing: .15em; }
.daily-score strong { margin: 6px 0 5px; font-family: var(--font-display); font-size: 13px; }
.daily-score small { color: #738698; font-size: 7px; }

.score-ring {
  display: grid;
  width: 58px;
  height: 58px;
  border: 5px solid rgba(200,255,114,.12);
  border-top-color: var(--green);
  border-right-color: var(--green);
  border-radius: 50%;
  place-items: center;
  transform: rotate(20deg);
}

.score-ring b { font-family: var(--font-display); font-size: 12px; transform: rotate(-20deg); }

.app-section-title {
  display: flex;
  justify-content: space-between;
  margin: 18px 1px 8px;
}

.app-section-title small { color: var(--green); font-size: 7px; }

.habit-row,
.task-screen-row {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.habit-row > i,
.task-screen-row > i {
  display: grid;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border: 1px solid #3a4d60;
  border-radius: 8px;
  place-items: center;
  font-size: 8px;
  font-style: normal;
}

.habit-row.done > i,
.task-screen-row.done > i {
  color: var(--ink);
  border-color: var(--green);
  background: var(--green);
}

.habit-row > span,
.task-screen-row > span {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}

.habit-row b,
.task-screen-row b { font-size: 9px; }
.habit-row small,
.task-screen-row small { color: #718396; font-size: 6.5px; }
.habit-row em,
.task-screen-row em { color: #8091a2; font-size: 7px; font-style: normal; }

.next-card {
  display: flex;
  align-items: center;
  min-height: 67px;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid rgba(255,211,106,.14);
  border-radius: 14px;
  background: rgba(255,211,106,.055);
}

.next-icon {
  display: grid;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  color: var(--yellow);
  border-radius: 11px;
  background: rgba(255,211,106,.1);
  place-items: center;
}

.next-card > div { display: flex; flex: 1; flex-direction: column; }
.next-card small { color: #8a8064; font-size: 5.5px; font-weight: 800; letter-spacing: .1em; }
.next-card strong { margin: 3px 0 2px; font-size: 9px; }
.next-card p { margin: 0; color: #8090a0; font-size: 6.5px; }
.next-card > b { color: #768899; font-size: 9px; }

.app-bottom-nav {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 55px;
  padding: 8px 10px 7px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(9,19,31,.95);
  backdrop-filter: blur(14px);
}

.app-bottom-nav span {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 42px;
  color: #536577;
  flex-direction: column;
  font-size: 12px;
}

.app-bottom-nav small { font-size: 5.5px; }
.app-bottom-nav span.active { color: var(--green); }

.app-bottom-nav .app-ai-button {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 5px;
  color: var(--ink);
  border-radius: 13px;
  background: var(--green);
  box-shadow: 0 9px 22px rgba(200,255,114,.18);
  place-items: center;
  font-size: 16px;
}

.app-home-bar {
  position: absolute;
  z-index: 6;
  bottom: 6px;
  left: 50%;
  width: 91px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.62);
  transform: translateX(-50%);
}

.screen-callout {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  width: 190px;
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(15,29,43,.9);
  box-shadow: 0 22px 45px rgba(0,0,0,.38);
  backdrop-filter: blur(16px);
  transition: opacity .2s ease, transform .4s var(--ease);
}

.screen-callout.switching { opacity: 0; transform: translateY(7px); }
.screen-callout > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-right: 9px;
  color: var(--ink);
  border-radius: 11px;
  background: var(--green);
  place-items: center;
  font-size: 12px;
}
.screen-callout > div { display: flex; flex-direction: column; gap: 3px; }
.screen-callout small { color: #718495; font-size: 6px; font-weight: 800; letter-spacing: .12em; }
.screen-callout strong { font-size: 9px; }
.callout-top { top: 133px; right: 15px; animation: float 5s ease-in-out -1s infinite; }
.callout-bottom { bottom: 105px; left: 19px; animation: float 5.5s ease-in-out -3s infinite; }

.screen-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  overflow: hidden;
}

.screen-benefits > div {
  display: flex;
  align-items: center;
  min-height: 105px;
  padding: 21px;
  background: #0a1521;
}

.screen-benefits > div > span {
  display: grid;
  width: 39px;
  height: 39px;
  margin-right: 13px;
  color: var(--green);
  border-radius: 12px;
  background: rgba(200,255,114,.075);
  place-items: center;
  font-size: 15px;
}

.screen-benefits p {
  margin: 0;
  color: #738596;
  font-size: 9px;
  line-height: 1.5;
}

.screen-benefits strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
}

.insight-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .95fr 1.25fr;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(200, 255, 114, .13);
  border-radius: 20px;
  background: rgba(200, 255, 114, .045);
}

.insight-strip > div {
  display: flex;
  align-items: center;
  padding-right: 15px;
}

.insight-strip > div > span {
  display: grid;
  width: 39px;
  height: 39px;
  margin-right: 12px;
  color: var(--ink);
  border-radius: 12px;
  background: var(--green);
  place-items: center;
}

.insight-strip p {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 3px;
}

.insight-strip small {
  color: var(--green);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .13em;
}

.insight-strip strong {
  font-family: var(--font-display);
  font-size: 10px;
}

.insight-strip blockquote {
  margin: 0;
  padding: 14px 15px;
  color: #becad4;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
  font-size: 10px;
  line-height: 1.4;
}

/* Product screen: tasks */
.date-selector {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-bottom: 15px;
}

.date-selector span {
  display: flex;
  align-items: center;
  min-height: 46px;
  color: #607285;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 11px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  font-size: 6px;
}

.date-selector b { color: #9aabba; font-size: 9px; }
.date-selector span.active { color: var(--ink); border-color: var(--green); background: var(--green); }
.date-selector span.active b { color: var(--ink); }

.task-group-label {
  display: flex;
  justify-content: space-between;
  margin: 13px 0 4px;
  color: #6f8294;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .1em;
}

.task-group-label b { color: var(--green); }
.task-screen-row > i.time-box { width: 38px; color: var(--yellow); border-color: rgba(255,211,106,.18); background: rgba(255,211,106,.07); font-size: 6px; }
.task-screen-row.done span { opacity: .55; }
.task-screen-row.done b { text-decoration: line-through; }

/* Product screen: habits */
.streak-hero {
  display: flex;
  align-items: center;
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(255,211,106,.14);
  border-radius: 16px;
  background: linear-gradient(125deg, rgba(255,211,106,.09), rgba(255,255,255,.02));
}

.streak-flame {
  display: grid;
  width: 50px;
  height: 50px;
  margin-right: 13px;
  border-radius: 16px;
  background: rgba(255,211,106,.11);
  place-items: center;
  font-size: 22px;
}

.streak-hero > div { display: flex; flex-direction: column; }
.streak-hero small { color: #8f8263; font-size: 6px; font-weight: 800; letter-spacing: .12em; }
.streak-hero strong { margin: 4px 0 3px; font-family: var(--font-display); font-size: 15px; }
.streak-hero p { margin: 0; color: #748697; font-size: 6.5px; }

.habit-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin: 15px 0;
}

.habit-calendar span { display: flex; align-items: center; color: #65778a; flex-direction: column; gap: 5px; font-size: 5.5px; }
.habit-calendar i { display: grid; width: 27px; height: 27px; border: 1px solid #304357; border-radius: 9px; place-items: center; font-size: 7px; font-style: normal; }
.habit-calendar span.done i { color: var(--ink); border-color: var(--green); background: var(--green); }
.habit-list-card { padding: 3px 12px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); }
.habit-color { display: grid; width: 29px; height: 29px; margin-right: 10px; border-radius: 10px; place-items: center; font-size: 12px; }
.habit-color.water { color: var(--blue); background: rgba(131,216,255,.09); }
.habit-color.meditate { color: var(--purple); background: rgba(199,174,255,.09); }
.habit-color.read { color: var(--yellow); background: rgba(255,211,106,.09); }

/* Product screen: finance */
.balance-card {
  padding: 17px;
  border: 1px solid rgba(131,216,255,.13);
  border-radius: 17px;
  background: linear-gradient(125deg, rgba(131,216,255,.09), rgba(255,255,255,.02));
}
.balance-card small { color: #7892a3; font-size: 6px; font-weight: 800; letter-spacing: .11em; }
.balance-card > strong { display: block; margin: 7px 0 13px; font-family: var(--font-display); font-size: 23px; letter-spacing: -.04em; }
.money-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.money-stats div { display: flex; padding: 8px; border-radius: 9px; background: rgba(255,255,255,.035); flex-direction: column; gap: 4px; }
.money-stats span { color: #718495; font-size: 5.5px; }
.money-stats b { font-size: 8px; }
.money-stats div:first-child b { color: var(--green); }
.money-stats div:last-child b { color: var(--red); }
.category-bars { padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.category-bar { display: grid; grid-template-columns: 72px 1fr 48px; align-items: center; min-height: 30px; gap: 7px; font-size: 6.5px; }
.category-bar span { color: #9aa9b7; }
.category-bar i { height: 4px; border-radius: 9px; background: rgba(255,255,255,.06); overflow: hidden; }
.category-bar i::after { display: block; width: var(--bar); height: 100%; border-radius: inherit; background: var(--bar-color, var(--green)); content: ""; }
.category-bar b { color: #bdc8d1; text-align: right; }
.mini-transaction { display: flex; align-items: center; min-height: 48px; padding: 6px 3px; border-bottom: 1px solid rgba(255,255,255,.06); }
.mini-transaction > span { display: grid; width: 29px; height: 29px; margin-right: 9px; color: var(--blue); border-radius: 9px; background: rgba(131,216,255,.08); place-items: center; font-size: 11px; }
.mini-transaction > div { display: flex; flex: 1; flex-direction: column; gap: 3px; }
.mini-transaction strong { font-size: 8px; }
.mini-transaction small { color: #6f8193; font-size: 5.5px; }
.mini-transaction b { color: #bec8d1; font-size: 7px; }

/* Product screen: goals */
.goal-summary { display: flex; justify-content: space-between; margin-bottom: 13px; }
.goal-summary div { display: flex; flex-direction: column; gap: 4px; }
.goal-summary small { color: #748698; font-size: 6px; }
.goal-summary strong { font-family: var(--font-display); font-size: 18px; }
.goal-summary > span { display: grid; width: 37px; height: 37px; color: var(--purple); border-radius: 12px; background: rgba(199,174,255,.09); place-items: center; }
.goal-card-screen { position: relative; margin-bottom: 9px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.goal-card-screen > div:first-child { display: flex; align-items: center; }
.goal-card-screen .goal-emoji { display: grid; width: 33px; height: 33px; margin-right: 10px; border-radius: 10px; background: rgba(200,255,114,.08); place-items: center; font-size: 14px; }
.goal-card-screen .goal-copy { display: flex; flex: 1; flex-direction: column; gap: 3px; }
.goal-copy strong { font-size: 9px; }
.goal-copy small { color: #6c7f91; font-size: 5.5px; }
.goal-card-screen > div:first-child > b { color: var(--green); font-size: 8px; }
.goal-progress { height: 4px; margin: 11px 0 7px; border-radius: 9px; background: rgba(255,255,255,.06); overflow: hidden; }
.goal-progress i { display: block; width: var(--goal); height: 100%; border-radius: inherit; background: var(--goal-color, var(--green)); }
.goal-detail { display: flex; justify-content: space-between; color: #6e8091; font-size: 5.5px; }

/* Product screen: training */
.workout-week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 14px; }
.workout-week span { display: flex; align-items: center; min-height: 43px; color: #637588; border: 1px solid rgba(255,255,255,.055); border-radius: 10px; flex-direction: column; justify-content: center; gap: 5px; font-size: 5.5px; }
.workout-week i { width: 6px; height: 6px; border-radius: 50%; background: #304457; }
.workout-week span.done { color: #a9b7c2; border-color: rgba(199,174,255,.13); background: rgba(199,174,255,.06); }
.workout-week span.done i { background: var(--purple); }
.workout-card-screen { padding: 15px; border: 1px solid rgba(199,174,255,.14); border-radius: 16px; background: linear-gradient(125deg, rgba(199,174,255,.09), rgba(255,255,255,.02)); }
.workout-card-top { display: flex; align-items: center; }
.workout-card-top > span { display: grid; width: 41px; height: 41px; margin-right: 11px; color: var(--purple); border-radius: 13px; background: rgba(199,174,255,.11); place-items: center; font-size: 17px; }
.workout-card-top > div { display: flex; flex: 1; flex-direction: column; gap: 3px; }
.workout-card-top small { color: #82769b; font-size: 5.5px; font-weight: 800; letter-spacing: .1em; }
.workout-card-top strong { font-size: 10px; }
.workout-card-top b { color: var(--purple); font-size: 7px; }
.workout-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 13px; }
.workout-stats div { display: flex; align-items: center; min-height: 45px; border-radius: 10px; background: rgba(255,255,255,.035); flex-direction: column; justify-content: center; gap: 3px; }
.workout-stats strong { font-family: var(--font-display); font-size: 10px; }
.workout-stats small { color: #718394; font-size: 5px; }
.exercise-list { margin-top: 13px; padding: 3px 11px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); }
.exercise-row { display: flex; align-items: center; min-height: 44px; border-bottom: 1px solid rgba(255,255,255,.06); }
.exercise-row:last-child { border-bottom: 0; }
.exercise-row > span { display: grid; width: 26px; height: 26px; margin-right: 9px; color: var(--purple); border-radius: 8px; background: rgba(199,174,255,.07); place-items: center; font-size: 7px; }
.exercise-row > div { display: flex; flex: 1; flex-direction: column; gap: 3px; }
.exercise-row strong { font-size: 7.5px; }
.exercise-row small { color: #697b8c; font-size: 5.5px; }
.exercise-row b { color: #8293a2; font-size: 6px; }

@keyframes screenIn {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: none; }
}

.showcase-section {
  padding: 145px 0;
  background: #08121d;
  overflow: hidden;
}

.showcase-section::before {
  position: absolute;
  right: -18%;
  bottom: -35%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: rgba(67, 137, 137, .12);
  filter: blur(100px);
  content: "";
}

.showcase-shell {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 95px;
}

.showcase-copy > p {
  margin: 25px 0 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.feature-tabs {
  border-top: 1px solid var(--line);
}

.feature-tab {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 0;
  color: #6e7f90;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .3s ease, padding .3s var(--ease);
}

.feature-tab:hover,
.feature-tab.active {
  padding-left: 7px;
  color: var(--white);
}

.feature-tab span {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
}

.feature-tab b {
  font-family: var(--font-display);
  font-size: 13px;
}

.feature-tab i {
  font-style: normal;
  opacity: 0;
  transform: translateX(-7px);
  transition: opacity .3s ease, transform .3s ease;
}

.feature-tab.active i {
  opacity: 1;
  transform: none;
}

.dashboard-stage {
  position: relative;
  min-height: 570px;
  perspective: 1300px;
}

.dashboard-glow {
  position: absolute;
  inset: 8% 5% 5%;
  border-radius: 50%;
  background: rgba(110, 197, 190, .12);
  filter: blur(70px);
}

.dashboard-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(17, 31, 48, .92);
  box-shadow: 0 40px 75px rgba(0, 0, 0, .38);
  backdrop-filter: blur(20px);
}

.dashboard-main {
  z-index: 2;
  top: 0;
  left: 8%;
  width: 80%;
  min-height: 470px;
  padding: 24px;
  border-radius: 29px;
  transform: rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
  transition: opacity .25s ease, transform .5s var(--ease);
}

.dashboard-main.switching {
  opacity: .4;
  transform: rotateY(-2deg) translateY(8px) scale(.98);
}

.dashboard-main header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}

.dashboard-main header small,
.dashboard-mini > small,
.dashboard-week > small {
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
}

.dashboard-main h3 {
  margin: 5px 0 0;
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: -.035em;
}

.dashboard-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--ink);
  border: 2px solid #254150;
  border-radius: 12px;
  background: var(--blue);
  place-items: center;
  font-size: 9px;
  font-weight: 900;
}

.progress-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
}

.progress-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-card > div:first-child span {
  color: var(--green);
  font-size: 15px;
}

.progress-card small {
  color: #8192a1;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.progress-card > strong {
  display: block;
  margin: 12px 0 9px;
  font-family: var(--font-display);
  font-size: 35px;
  letter-spacing: -.05em;
}

.progress-track {
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.progress-track i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  box-shadow: 0 0 12px rgba(200, 255, 114, .25);
  transition: width .55s var(--ease), background .3s ease;
}

.progress-card p {
  margin: 9px 0 0;
  color: #6f8293;
  font-size: 8px;
}

.dashboard-list {
  margin-top: 15px;
}

.list-row {
  display: flex;
  align-items: center;
  min-height: 65px;
  padding: 10px 5px;
  border-bottom: 1px solid var(--line);
}

.list-row > i {
  display: grid;
  width: 25px;
  height: 25px;
  margin-right: 11px;
  border: 1px solid #405266;
  border-radius: 8px;
  place-items: center;
  font-size: 9px;
  font-style: normal;
}

.list-row.checked > i {
  color: var(--ink);
  border-color: var(--green);
  background: var(--green);
}

.list-row > span {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}

.list-row strong { font-size: 10px; }
.list-row small { color: #758698; font-size: 7px; }
.list-row > b { color: #8192a1; font-size: 8px; }

.dashboard-mini {
  z-index: 3;
  right: 0;
  bottom: 22px;
  width: 235px;
  padding: 17px;
  border-radius: 18px;
  animation: float 5.5s ease-in-out -1.5s infinite;
}

.dashboard-mini > strong {
  display: block;
  margin: 7px 0 13px;
  font-family: var(--font-display);
  font-size: 12px;
}

.mini-money {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: #a9b7c5;
  font-size: 8px;
}

.mini-money i { color: var(--green); font-style: normal; }

.dashboard-week {
  z-index: 3;
  bottom: 5px;
  left: 0;
  width: 255px;
  padding: 16px;
  border-radius: 18px;
  animation: float 5s ease-in-out infinite;
}

.week-days {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.week-days span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #758698;
  flex-direction: column;
  font-size: 7px;
}

.week-days i {
  display: grid;
  width: 20px;
  height: 20px;
  color: var(--ink);
  border: 1px solid #35485c;
  border-radius: 7px;
  place-items: center;
  font-size: 7px;
  font-style: normal;
}

.week-days span:nth-child(-n+4) i {
  border-color: var(--green);
  background: var(--green);
}

.commands-section {
  background: #f2f4ee;
  color: var(--ink);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  max-width: none;
  margin-bottom: 58px;
}

.commands-section .section-heading h2 {
  color: var(--ink);
}

.split-heading p {
  margin: 0 0 5px auto;
  color: #65717a;
}

.command-console {
  border: 1px solid rgba(7, 16, 27, .08);
  border-radius: 30px;
  background: #0b1722;
  box-shadow: 0 34px 85px rgba(12, 28, 33, .18);
  overflow: hidden;
}

.console-top {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 0 27px;
  border-bottom: 1px solid var(--line);
}

.console-top .ai-avatar {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}

.console-top > div:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3px;
}

.console-top strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
}

.online-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: #8292a2;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 8px;
}

.online-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.console-body {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 400px;
}

.command-suggestions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 28px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  gap: 9px;
}

.command-group-label {
  margin: 4px 12px 2px;
  color: #64788a;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.command-group-spaced {
  margin-top: 12px;
}

.command-chip {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  color: #9babb9;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.command-chip span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  color: var(--green);
  border-radius: 9px;
  background: rgba(200, 255, 114, .07);
  place-items: center;
}

.command-chip:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .035);
  transform: translateX(4px);
}

.command-chip.active {
  color: var(--white);
  border-color: rgba(200, 255, 114, .16);
  background: rgba(200, 255, 114, .07);
}

.console-response {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 55px 58px;
  flex-direction: column;
  overflow: hidden;
}

.console-response::before {
  position: absolute;
  top: -70%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(115, 190, 183, .07);
  filter: blur(55px);
  content: "";
}

.response-eyebrow {
  position: relative;
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
}

.console-response > p {
  position: relative;
  max-width: 450px;
  min-height: 72px;
  margin: 15px 0 27px;
  color: #dbe4ec;
  font-size: 21px;
  line-height: 1.48;
}

.console-response > p strong {
  color: var(--white);
}

.result-ticket {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto 23px;
  align-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(200, 255, 114, .17);
  border-radius: 17px;
  background: rgba(200, 255, 114, .055);
  transition: opacity .2s ease, transform .3s var(--ease);
}

.result-ticket.loading {
  opacity: 0;
  transform: translateY(8px);
}

.ticket-icon {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--green);
  border-radius: 11px;
  background: rgba(200, 255, 114, .09);
  place-items: center;
}

.result-ticket > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-ticket small {
  color: #73899a;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.result-ticket strong {
  color: var(--white);
  font-size: 11px;
}

.result-ticket b {
  color: #c7d2dc;
  font-size: 11px;
}

.result-ticket > i {
  display: grid;
  width: 21px;
  height: 21px;
  margin-left: 13px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--green);
  place-items: center;
  font-size: 9px;
  font-style: normal;
}

.typing-line {
  position: absolute;
  bottom: 42px;
  left: 58px;
  display: none;
  gap: 4px;
}

.typing-line.visible { display: flex; }
.typing-line i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: typing .8s ease-in-out infinite alternate;
}
.typing-line i:nth-child(2) { animation-delay: .16s; }
.typing-line i:nth-child(3) { animation-delay: .32s; }

.experience-section {
  padding: 135px 0;
  background: #0a1521;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 90px;
}

.lifestyle-card {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.lifestyle-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
  transition: transform 1s var(--ease);
}

.lifestyle-card:hover img {
  transform: scale(1.025);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 12, 19, .25) 57%, rgba(5, 12, 19, .96) 100%);
}

.lifestyle-caption {
  position: absolute;
  right: 36px;
  bottom: 36px;
  left: 36px;
}

.quote-mark {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: .7;
}

.lifestyle-caption blockquote {
  max-width: 450px;
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.28;
}

.lifestyle-caption p {
  margin: 0;
  color: #93a3b1;
  font-size: 10px;
}

.experience-copy h2 {
  margin-bottom: 25px;
}

.experience-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.experience-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.experience-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.experience-list > div > span {
  padding-top: 2px;
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
}

.experience-list p {
  margin: 0;
  color: #7f90a0;
  font-size: 12px;
  line-height: 1.55;
}

.experience-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
}

.stories-section {
  background: #f2f4ee;
}

.stories-section .section-heading h2 { color: var(--ink); }
.stories-section .section-heading p { color: #65717a; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-card {
  min-height: 305px;
  padding: 27px;
  border: 1px solid rgba(7, 16, 27, .09);
  border-radius: 23px;
  background: rgba(255, 255, 255, .66);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.story-card:hover {
  box-shadow: 0 22px 55px rgba(30, 45, 45, .1);
  transform: translateY(-6px);
}

.story-card.featured-story {
  background: #e8f2da;
}

.story-top {
  display: flex;
  align-items: center;
}

.story-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  margin-right: 12px;
  color: #17211d;
  border-radius: 14px;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

.avatar-one { background: var(--blue); }
.avatar-two { background: var(--green); }
.avatar-three { background: var(--purple); }

.story-top > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.story-top strong {
  color: #182328;
  font-family: var(--font-display);
  font-size: 13px;
}

.story-top small { color: #7b878d; font-size: 8px; }

.story-card > p {
  min-height: 112px;
  margin: 29px 0 24px;
  color: #38454c;
  font-size: 16px;
  line-height: 1.55;
}

.story-result {
  display: flex;
  align-items: center;
  min-height: 45px;
  padding: 0 11px;
  border: 1px solid rgba(7, 16, 27, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .45);
  font-size: 10px;
}

.story-result span { margin-right: 9px; color: #6c9340; }
.story-result b { flex: 1; color: #374449; }
.story-result i {
  display: grid;
  width: 17px;
  height: 17px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--green);
  place-items: center;
  font-size: 7px;
  font-style: normal;
}

.disclaimer {
  margin: 22px 0 0;
  color: #879195;
  font-size: 9px;
  text-align: center;
}

.privacy-section {
  padding: 90px 0;
  background: #08121d;
}

.privacy-shell {
  display: grid;
  grid-template-columns: 110px 1fr .72fr;
  align-items: center;
  padding: 53px 58px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(115deg, rgba(200, 255, 114, .07), rgba(255, 255, 255, .018));
}

.privacy-icon {
  display: grid;
  width: 73px;
  height: 73px;
  color: var(--green);
  border: 1px solid rgba(200, 255, 114, .18);
  border-radius: 23px;
  background: rgba(200, 255, 114, .07);
  place-items: center;
}

.privacy-icon svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.privacy-copy .kicker { margin-bottom: 13px; }
.privacy-copy h2 { font-size: clamp(28px, 3.1vw, 42px); }

.privacy-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9dabb8;
  font-size: 11px;
}

.faq-section {
  background: #0a1521;
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 105px;
}

.faq-heading {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-heading > p {
  margin: 24px 0 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.text-link.light {
  color: var(--green);
}

.text-link.light span {
  transition: transform .2s ease;
}

.text-link.light:hover span {
  transform: translate(3px, -3px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  min-height: 86px;
  color: #dbe4ed;
  list-style: none;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-left: auto;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  font-size: 16px;
  font-weight: 400;
  transition: transform .3s var(--ease), background .3s ease;
}

.faq-list details[open] summary span {
  color: var(--ink);
  background: var(--green);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 600px;
  margin: -5px 0 28px;
  color: #8494a3;
  font-size: 13px;
  line-height: 1.7;
}

.coming-soon-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: #0a1622;
}

.coming-soon-section::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(200, 255, 114, .1);
  border-radius: 50%;
  content: "";
}

.coming-soon-shell {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 70px;
  max-width: 1080px;
}

.coming-soon-orbit {
  position: relative;
  width: min(300px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(200, 255, 114, .17);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(200, 255, 114, .12), rgba(200, 255, 114, 0) 60%);
  box-shadow: 0 0 90px rgba(200, 255, 114, .08);
}

.coming-soon-orbit::before {
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(200, 255, 114, .24);
  border-radius: 50%;
  content: "";
}

.coming-soon-orbit-ring {
  position: absolute;
  border: 1px solid rgba(131, 216, 255, .18);
  border-radius: 50%;
}

.coming-soon-orbit .ring-one { inset: 31% -5%; transform: rotate(24deg); }
.coming-soon-orbit .ring-two { inset: -5% 31%; transform: rotate(-24deg); }

.coming-soon-orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  color: var(--ink);
  background: var(--green);
  border-radius: 24px;
  box-shadow: 0 0 0 10px rgba(200, 255, 114, .1), 0 18px 50px rgba(0, 0, 0, .25);
  place-items: center;
  font-size: 26px;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.coming-soon-copy { max-width: 590px; }
.coming-soon-copy .kicker { color: var(--green); }
.coming-soon-copy h2 { margin: 16px 0 20px; color: #f1f6fa; font-size: clamp(42px, 5vw, 68px); }
.coming-soon-copy p { max-width: 500px; color: #93a4b3; font-size: 16px; line-height: 1.75; }

.coming-soon-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
  color: #6f8190;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.coming-soon-meta span { display: inline-flex; align-items: center; gap: 8px; }
.coming-soon-meta i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(200, 255, 114, .1); }

.coming-soon-toast { background: #102331; border-color: rgba(200, 255, 114, .25); }
.coming-soon-toast > span { color: var(--green); }
.coming-soon-toast strong { color: var(--green); }

.final-cta {
  padding: 125px 0;
  color: var(--ink);
  background: var(--green);
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(7, 16, 27, .07);
  border-radius: 50%;
  content: "";
}

.final-cta::before { top: -60%; left: -10%; }
.final-cta::after { right: -9%; bottom: -78%; }

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(7, 16, 27, .045);
  border-radius: 50%;
  box-shadow: inset 0 0 0 120px rgba(255, 255, 255, .025);
  transform: translate(-50%, -50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.cta-content .kicker {
  margin-bottom: 19px;
  color: rgba(7, 16, 27, .62);
}

.cta-content h2 {
  color: var(--ink);
  font-size: clamp(46px, 5.4vw, 74px);
}

.cta-content > p {
  margin: 24px 0 33px;
  color: rgba(7, 16, 27, .67);
  font-size: 16px;
}

.cta-content > small {
  margin-top: 18px;
  color: rgba(7, 16, 27, .52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.site-footer {
  padding: 70px 0 24px;
  background: #060d15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr 1fr;
  gap: 40px;
  padding-bottom: 62px;
}

.footer-grid > div:first-child > p {
  margin: 18px 0 0;
  color: #667686;
  font-size: 12px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong,
.footer-note > span {
  margin-bottom: 5px;
  color: #80909f;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  color: #b4c0ca;
  font-size: 11px;
  transition: color .2s ease;
}

.footer-links a:hover { color: var(--green); }

.footer-note {
  justify-self: end;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a9b6c1;
  font-size: 10px;
}

.status-line i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(200, 255, 114, .08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: #546575;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.footer-bottom a,
.simple-footer a {
  transition: color .25s ease;
}

.footer-bottom a:hover,
.simple-footer a:hover {
  color: var(--green);
}

.cookie-dialog {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 40px), 1080px);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(200, 255, 114, .2);
  border-radius: 22px;
  background: rgba(10, 22, 34, .97);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
  backdrop-filter: blur(24px);
}

.cookie-dialog-icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--ink);
  border-radius: 15px;
  background: var(--green);
  place-items: center;
  font-size: 16px;
  box-shadow: 0 0 30px rgba(200, 255, 114, .12);
}

.cookie-dialog-copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
}

.cookie-dialog-copy p {
  max-width: 650px;
  margin: 0;
  color: #8fa0af;
  font-size: 11px;
  line-height: 1.55;
}

.cookie-dialog-copy a {
  display: inline-block;
  margin-top: 6px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.cookie-dialog-actions {
  display: flex;
  gap: 8px;
}

.cookie-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s var(--ease), border-color .2s ease, background .2s ease;
}

.cookie-button:hover { transform: translateY(-2px); }
.cookie-button-primary { color: var(--ink); background: var(--green); }
.cookie-button-secondary { color: #c7d2dc; border-color: var(--line); background: rgba(255, 255, 255, .04); }
.cookie-button-secondary:hover { border-color: rgba(200, 255, 114, .28); }

.cookie-settings {
  position: fixed;
  z-index: 55;
  bottom: 18px;
  left: 18px;
  min-height: 34px;
  padding: 0 12px;
  color: #8495a5;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 16, 27, .88);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.cookie-settings:hover { color: var(--green); border-color: rgba(200, 255, 114, .3); }

.standalone-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 22%, rgba(65, 116, 129, .2), transparent 32%),
    linear-gradient(180deg, #07101b, #0a1622);
}

.simple-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.simple-header-link {
  color: #9aabba;
  font-size: 12px;
  font-weight: 700;
  transition: color .25s ease;
}

.simple-header-link:hover { color: var(--green); }

.error-page {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding-top: 17vh;
  padding-bottom: 100px;
  flex-direction: column;
  overflow: hidden;
}

.error-code {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  color: rgba(200, 255, 114, .035);
  font-family: var(--font-display);
  font-size: clamp(230px, 42vw, 580px);
  font-weight: 800;
  letter-spacing: -.1em;
  line-height: .7;
  transform: translateY(-48%);
}

.error-page .kicker,
.legal-hero .kicker { color: var(--green); }

.error-page h1,
.legal-hero h1 {
  margin: 18px 0 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 88px);
  letter-spacing: -.065em;
  line-height: .98;
}

.error-page > p {
  max-width: 540px;
  margin: 0 0 32px;
  color: #8fa0af;
  font-size: 15px;
  line-height: 1.75;
}

.legal-page {
  max-width: 940px;
  padding-top: 145px;
  padding-bottom: 100px;
}

.legal-hero {
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line);
}

.legal-hero p {
  margin: 0;
  color: #718392;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.legal-content { max-width: 760px; }

.legal-content section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 15px;
  color: #eaf0f5;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -.025em;
}

.legal-content p {
  margin: 0 0 13px;
  color: #91a1af;
  font-size: 14px;
  line-height: 1.8;
}

.legal-content p:last-child { margin-bottom: 0; }
.legal-content a { color: var(--green); text-decoration: underline; text-underline-offset: 4px; }

.simple-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 32px;
  color: #5d6f7e;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.demo-toast {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  width: min(340px, calc(100% - 32px));
  padding: 14px;
  border: 1px solid rgba(200, 255, 114, .2);
  border-radius: 17px;
  background: rgba(12, 25, 37, .94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .3s ease, transform .4s var(--ease);
  backdrop-filter: blur(18px);
}

.demo-toast.visible {
  opacity: 1;
  transform: none;
}

.demo-toast > span {
  display: grid;
  width: 39px;
  height: 39px;
  margin-right: 11px;
  color: var(--ink);
  border-radius: 12px;
  background: var(--green);
  place-items: center;
}

.demo-toast p {
  margin: 0;
  color: #8495a5;
  font-size: 10px;
  line-height: 1.4;
}

.demo-toast strong {
  display: block;
  color: var(--white);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-small { transition-delay: .1s; }
.reveal-delay { transition-delay: .2s; }

@keyframes pulse {
  0% { opacity: 1; transform: scale(.6); }
  80%, 100% { opacity: 0; transform: scale(1.65); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-13px) rotate(3deg); }
}

@keyframes wave {
  0%, 100% { transform: scaleY(.55); }
  50% { transform: scaleY(1); }
}

@keyframes messageIn {
  from { opacity: 0; transform: translateY(8px) scale(.97); }
  to { opacity: 1; transform: none; }
}

@keyframes typing {
  from { opacity: .25; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(-2px); }
}

@media (max-width: 1050px) {
  .desktop-nav { gap: 20px; }
  .hero-grid { gap: 20px; }
  .note-expense { right: -4px; }
  .note-calendar { left: -2px; }
  .showcase-shell { gap: 50px; }
  .dashboard-main { left: 3%; width: 87%; }
  .experience-grid { gap: 55px; }
  .faq-grid { gap: 60px; }
}

@media (max-width: 900px) {
  .section { padding: 95px 0; }
  .cookie-dialog { grid-template-columns: auto minmax(0, 1fr); }
  .cookie-dialog-actions { grid-column: 2; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, .04);
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  .menu-button span {
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform .3s var(--ease);
  }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: flex;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 16, 27, .97);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, visibility .25s ease, transform .3s var(--ease);
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(20px);
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav > a:not(.button) { padding: 12px 8px; color: #b8c5d0; font-size: 14px; }
  .mobile-nav .button { margin-top: 7px; }
  .hero { min-height: 1280px; padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; padding-bottom: 20px; text-align: center; justify-self: center; }
  .hero h1 { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .eyebrow-pill { justify-content: center; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-product { width: min(100%, 600px); margin: 0 auto; }
  .hero-footer { bottom: 27px; flex-direction: column; gap: 15px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .step-card { min-height: 320px; }
  .step-visual { height: 145px; }
  .screens-section { padding-bottom: 85px; }
  .screen-tabs { width: 100%; flex-wrap: wrap; }
  .screen-tab { flex: 1 1 28%; }
  .screen-tour { grid-template-columns: 1fr; }
  .screen-tour::after { top: 390px; right: 8%; bottom: auto; left: 8%; width: auto; height: 1px; background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent); }
  .screen-tour-copy { max-width: 680px; padding: 45px 50px 18px; }
  .screen-index { margin-bottom: 30px; }
  .screen-tour-copy > p { min-height: auto; }
  .screen-tour-copy ul { min-height: auto; margin-bottom: 27px; }
  .device-showcase { min-height: 720px; }
  .insight-strip { grid-template-columns: 1fr 1fr; }
  .insight-strip > div { grid-column: span 2; }
  .showcase-shell, .experience-grid { grid-template-columns: 1fr; }
  .showcase-copy { max-width: 620px; }
  .showcase-section { padding-bottom: 90px; }
  .dashboard-stage { width: min(100%, 650px); margin: 0 auto; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .split-heading p { margin-left: 0; }
  .console-body { grid-template-columns: 1fr; }
  .command-suggestions { display: grid; grid-template-columns: repeat(2, 1fr); border-right: 0; border-bottom: 1px solid var(--line); }
  .command-chip:last-child { grid-column: span 2; }
  .lifestyle-card { min-height: 600px; }
  .experience-copy { max-width: 650px; }
  .story-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .story-card { min-height: auto; }
  .story-card > p { min-height: auto; }
  .privacy-shell { grid-template-columns: 90px 1fr; }
  .privacy-points { grid-column: 2; margin-top: 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .coming-soon-shell { grid-template-columns: 1fr; gap: 44px; }
  .coming-soon-copy { max-width: 680px; text-align: center; justify-self: center; }
  .coming-soon-copy p { margin-inline: auto; }
  .coming-soon-meta { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-note { justify-self: start; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 30px), var(--max-width)); }
  .section { padding: 78px 0; }
  .cookie-dialog { right: 12px; bottom: 12px; left: 12px; grid-template-columns: 1fr; gap: 13px; width: auto; padding: 17px; border-radius: 18px; }
  .cookie-dialog-icon { display: none; }
  .cookie-dialog-actions { grid-column: auto; flex-direction: column-reverse; }
  .cookie-button { width: 100%; }
  .cookie-settings { bottom: 12px; left: 12px; }
  .simple-header { padding-top: 18px; }
  .simple-header-link { font-size: 10px; }
  .error-page { min-height: calc(100vh - 68px); padding-top: 15vh; }
  .error-code { top: 43%; right: -18px; font-size: 72vw; }
  .error-page h1, .legal-hero h1 { font-size: 48px; }
  .error-page > p { font-size: 14px; }
  .legal-page { padding-top: 105px; padding-bottom: 70px; }
  .legal-hero { padding-bottom: 38px; }
  .legal-content section { padding: 31px 0; }
  .legal-content h2 { font-size: 18px; }
  .legal-content p { font-size: 13px; }
  .site-header { top: 10px; width: calc(100% - 24px); min-height: 62px; padding-left: 14px; background: rgba(7, 16, 27, .72); border-color: var(--line); backdrop-filter: blur(18px); }
  .brand { font-size: 21px; }
  .brand-mark { width: 33px; height: 33px; }
  .hero { min-height: 1180px; padding-top: 120px; }
  .hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 9px; }
  .hero-actions .button { width: 100%; }
  .trust-row { align-items: center; margin-top: 20px; flex-direction: column; gap: 9px; }
  .hero-product { height: 600px; margin-top: 5px; transform: scale(.89); transform-origin: top center; }
  .phone { width: 294px; }
  .phone-frame { height: 605px; }
  .chat-area { height: 406px; }
  .note-calendar { top: 135px; left: -32px; }
  .note-expense { right: -30px; bottom: 89px; }
  .floating-note { min-width: 168px; transform: scale(.84); }
  .hero-footer { bottom: 22px; }
  .hero-footer p { display: none; }
  .category-strip { width: 100%; justify-content: center; flex-wrap: wrap; gap: 9px 17px; }
  .category-strip span { font-size: 8px; }
  .section-heading.centered { margin-bottom: 42px; }
  .section-heading h2, .showcase-copy h2, .experience-copy h2, .faq-heading h2, .cta-content h2 { font-size: 38px; }
  .section-heading p { font-size: 14px; }
  .step-card { padding: 22px; }
  .screens-section { padding-top: 85px; }
  .screen-tabs { justify-content: flex-start; margin-bottom: 28px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .screen-tabs::-webkit-scrollbar { display: none; }
  .screen-tab { flex: 0 0 auto; padding-inline: 15px; }
  .screen-tour { border-radius: 25px; }
  .screen-tour::after { top: 405px; }
  .screen-tour-copy { padding: 32px 24px 18px; }
  .screen-index { margin-bottom: 24px; }
  .screen-tour-copy h3 { font-size: 32px; }
  .screen-tour-copy ul { margin-top: 21px; padding-top: 18px; }
  .device-showcase { min-height: 670px; margin-inline: -18px; transform: scale(.93); transform-origin: top center; }
  .device-backdrop { width: 465px; height: 465px; }
  .screen-callout { width: 166px; }
  .callout-top { top: 115px; right: 0; }
  .callout-bottom { bottom: 95px; left: 0; }
  .screen-benefits { grid-template-columns: 1fr; }
  .screen-benefits > div { min-height: 90px; }
  .insight-strip { grid-template-columns: 1fr; }
  .insight-strip > div { grid-column: auto; }
  .insight-strip blockquote { padding: 13px; }
  .showcase-section { padding-top: 85px; }
  .showcase-shell { gap: 55px; }
  .dashboard-stage { min-height: 500px; transform: scale(.92); transform-origin: top left; width: 108%; }
  .dashboard-main { width: 94%; left: 0; }
  .dashboard-week { left: -5px; width: 220px; }
  .dashboard-mini { right: -2px; width: 205px; }
  .commands-section { padding-bottom: 85px; }
  .command-suggestions { display: flex; padding: 16px; }
  .command-chip:last-child { grid-column: auto; }
  .console-top { padding: 0 17px; }
  .online-pill { display: none; }
  .console-response { min-height: 330px; padding: 40px 20px; }
  .console-response > p { min-height: 87px; font-size: 18px; }
  .result-ticket { grid-template-columns: 40px 1fr 22px; }
  .result-ticket > b { grid-column: 2; margin-top: 4px; }
  .result-ticket > i { grid-row: 1 / 3; grid-column: 3; }
  .typing-line { left: 20px; bottom: 34px; }
  .experience-grid { gap: 50px; }
  .lifestyle-card { min-height: 540px; }
  .lifestyle-caption { right: 22px; bottom: 25px; left: 22px; }
  .privacy-shell { grid-template-columns: 1fr; padding: 34px 25px; }
  .privacy-icon { margin-bottom: 25px; }
  .privacy-points { grid-column: auto; }
  .faq-list summary { min-height: 74px; padding-right: 3px; font-size: 14px; }
  .faq-list summary span { flex: 0 0 auto; margin-left: 12px; }
  .coming-soon-section { padding: 88px 0; }
  .coming-soon-orbit { width: min(240px, 72vw); }
  .coming-soon-copy h2 { font-size: 38px; }
  .coming-soon-copy p { font-size: 14px; }
  .coming-soon-meta { align-items: center; flex-direction: column; gap: 11px; font-size: 9px; }
  .final-cta { padding: 100px 0; }
  .cta-content > p { font-size: 14px; }
  .cta-content .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 37px 25px; }
  .footer-grid > div:first-child, .footer-note { grid-column: span 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }
  .demo-toast { right: 16px; bottom: 16px; }
}

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