@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/HankenGrotesk-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Material Symbols Rounded";
  src: url("/fonts/MaterialSymbolsRounded.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
}

:root {
  color-scheme: light;
  --ink: #153455;
  --ink-deep: #0c2847;
  --copy: #4b6879;
  --copy-soft: #6d8390;
  --paper: #fbf7ef;
  --paper-soft: #f4efe6;
  --surface: #ffffff;
  --surface-soft: #f2f9f7;
  --line: rgba(21, 52, 85, 0.12);
  --line-strong: rgba(21, 52, 85, 0.22);
  --brand: #467ed3;
  --brand-deep: #224e91;
  --brand-ice: #e4f6f2;
  --mint: #bee9e0;
  --mint-strong: #8fd6ca;
  --night: #071727;
  --night-soft: #102b4e;
  --coral: #ff9072;
  --sun: #f6c85f;
  --violet: #a99ae7;
  --feature-chat: #4c6fe0;
  --feature-location: #d15b9e;
  --feature-shopping: #2ba17f;
  --feature-meals: #e08636;
  --feature-reminders: #4c6fe0;
  --feature-dates: #d15b9e;
  --feature-expiry: #cb6552;
  --feature-cards: #7c5cf0;
  --feature-wishlist: #e15f8f;
  --feature-chores: #36a3b8;
  --feature-finances: #2f73d9;
  --feature-medications: #3f9e72;
  --feature-timetables: #5b7bd1;
  --shadow-sm: 0 18px 42px rgba(31, 67, 87, 0.09);
  --shadow-md: 0 28px 70px rgba(31, 67, 87, 0.15);
  --shadow-device: 0 44px 95px rgba(23, 59, 81, 0.26);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 46px;
  --max: 1240px;
  --ease: cubic-bezier(0.22, 0.72, 0.24, 1);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #edf8f7;
  --ink-deep: #ffffff;
  --copy: #b7cbd7;
  --copy-soft: #89a3b4;
  --paper: #071522;
  --paper-soft: #0b1b2b;
  --surface: #10283d;
  --surface-soft: #0d2235;
  --line: rgba(198, 226, 235, 0.13);
  --line-strong: rgba(198, 226, 235, 0.23);
  --brand-ice: #153b4f;
  --mint: #76c7ba;
  --mint-strong: #9be0d4;
  --shadow-sm: 0 18px 42px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 30px 75px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 470;
  line-height: 1.58;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  transition: background 280ms ease, color 280ms ease;
}

body.menu-open {
  overflow: hidden;
}

.locale-switcher {
  position: relative;
  color: var(--copy);
  font-size: 13px;
  font-weight: 700;
}

.locale-switcher summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  list-style: none;
}

.locale-switcher summary::-webkit-details-marker { display: none; }

.locale-switcher > div {
  position: absolute;
  z-index: 120;
  top: calc(100% + 8px);
  right: 0;
  width: max-content;
  min-width: 180px;
  display: grid;
  overflow: hidden;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.locale-switcher > div a {
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
}

.locale-switcher > div a:hover,
.locale-switcher > div a[aria-current="page"] { background: var(--surface-soft); }

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

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

a {
  color: inherit;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-deep);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.ms {
  display: inline-block;
  font-family: "Material Symbols Rounded";
  font-size: 1.25em;
  font-style: normal;
  font-weight: 500;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.ms[hidden] {
  display: none;
}

.no-js .ms {
  display: none;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink-deep);
  color: var(--paper);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-nav.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  box-shadow: 0 8px 30px rgba(24, 58, 77, 0.05);
  backdrop-filter: blur(18px) saturate(1.3);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-deep);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(34, 78, 145, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.nav-links > a {
  color: var(--copy);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links > a:hover {
  color: var(--ink-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-button,
.menu-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.icon-button:hover,
.menu-button:hover {
  background: var(--surface);
  transform: translateY(-1px);
}

.theme-dark-icon {
  display: none;
}

:root[data-theme="dark"] .theme-light-icon {
  display: none;
}

:root[data-theme="dark"] .theme-dark-icon {
  display: inline-block;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 780;
  text-decoration: none;
  box-shadow: none;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(54, 105, 179, 0.24);
}

.button.secondary {
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  color: var(--ink-deep);
}

.button.light {
  background: #e8faf6;
  color: #0c3155;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.2);
}

.button.small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 126px 0 82px;
  background:
    radial-gradient(circle at 83% 20%, rgba(255, 211, 134, 0.45), transparent 26%),
    radial-gradient(circle at 68% 64%, rgba(190, 233, 224, 0.9), transparent 34%),
    linear-gradient(135deg, var(--paper) 0%, #f8f1e7 48%, #e5f5f1 100%);
}

:root[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 83% 20%, rgba(70, 126, 211, 0.25), transparent 28%),
    radial-gradient(circle at 68% 64%, rgba(82, 168, 154, 0.2), transparent 36%),
    linear-gradient(135deg, #071522 0%, #0b2032 50%, #123647 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero::before {
  width: 920px;
  height: 620px;
  top: 70px;
  right: -180px;
  border: 2px solid rgba(255, 144, 114, 0.52);
  transform: rotate(-18deg);
}

.hero::after {
  width: 690px;
  height: 710px;
  top: 65px;
  right: 30px;
  border: 2px solid rgba(70, 126, 211, 0.38);
  transform: rotate(21deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

:root[data-theme="dark"] .eyebrow {
  color: var(--mint-strong);
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 690px;
  margin: 24px 0 26px;
  font-size: clamp(58px, 6.25vw, 91px);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 .accent {
  background: linear-gradient(100deg, var(--brand) 0%, #55a9c7 45%, #2ba17f 100%);
  background-clip: text;
  color: transparent;
}

:root[data-theme="dark"] .hero h1 .accent {
  background: linear-gradient(100deg, #9bc2ff, #9de1d4, #f5d47d);
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--copy);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  color: var(--copy-soft);
  font-size: 13px;
  font-weight: 650;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-facts span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-strong);
  box-shadow: 0 0 0 4px rgba(143, 214, 202, 0.14);
  content: "";
}

.hero-scene {
  position: relative;
  min-height: 640px;
}

.hero-blob {
  position: absolute;
  inset: 20px -65px 24px 50px;
  border-radius: 53% 47% 46% 54% / 45% 55% 45% 55%;
  background: linear-gradient(140deg, rgba(190, 233, 224, 0.78), rgba(228, 246, 242, 0.46));
  transform: rotate(-4deg);
}

:root[data-theme="dark"] .hero-blob {
  background: linear-gradient(140deg, rgba(34, 78, 145, 0.48), rgba(50, 124, 141, 0.24));
}

.phone {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 40px;
  background: #ffffff;
  box-shadow: var(--shadow-device);
}

:root[data-theme="dark"] .phone {
  border-color: rgba(255, 255, 255, 0.16);
  background: #20334a;
}

.phone img {
  width: 100%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--mint) 54%, transparent) 0 15%, transparent 16%),
    linear-gradient(145deg, var(--surface-soft), color-mix(in srgb, var(--brand-ice) 74%, var(--surface)));
}

.phone-main {
  width: 258px;
  top: 0;
  left: 47%;
  transform: translateX(-24%) rotate(2.2deg);
}

.phone-side {
  z-index: 2;
  width: 184px;
  top: 250px;
  left: 7%;
  transform: rotate(-8deg);
}

.callout {
  position: absolute;
  z-index: 5;
  min-width: 170px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--callout-color, var(--brand));
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 93%, transparent);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.callout strong {
  display: block;
  color: var(--ink-deep);
  font-size: 14px;
}

.callout span {
  display: block;
  margin-top: 2px;
  color: var(--copy-soft);
  font-size: 12px;
}

.callout.meal {
  --callout-color: var(--feature-meals);
  top: 116px;
  right: -18px;
}

.callout.bill {
  --callout-color: var(--sun);
  right: -12px;
  bottom: 82px;
}

.callout.list {
  --callout-color: var(--feature-shopping);
  bottom: 18px;
  left: 22%;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.trust-intro,
.trust-point {
  min-height: 116px;
  padding: 25px 27px;
}

.trust-intro {
  display: flex;
  align-items: center;
  color: var(--ink-deep);
  font-size: 17px;
  font-weight: 760;
}

.trust-point {
  border-left: 1px solid var(--line);
}

.trust-point .ms {
  color: var(--point-color, var(--brand));
  font-size: 25px;
}

.trust-point strong,
.trust-point span {
  display: block;
}

.trust-point strong {
  margin-top: 8px;
  color: var(--ink-deep);
  font-size: 14px;
}

.trust-point span {
  margin-top: 2px;
  color: var(--copy-soft);
  font-size: 12px;
}

.section {
  padding: clamp(82px, 8vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.privacy-copy h2,
.closing h2 {
  margin: 15px 0 18px;
  font-size: clamp(42px, 5vw, 70px);
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--copy);
  font-size: 18px;
}

.day-section {
  position: relative;
  margin-top: 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(70, 126, 211, 0.34), transparent 30%),
    linear-gradient(135deg, #071727, #11345a 62%, #245daa);
  color: #eaf5ff;
}

.day-section::after {
  position: absolute;
  width: 780px;
  height: 780px;
  top: -590px;
  right: -170px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.day-section h2,
.day-section h3 {
  color: #ffffff;
}

.day-section .eyebrow {
  color: #a8e4d9;
}

.day-section .section-heading p {
  color: #b9cedc;
}

.day-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 80px;
}

.day-copy .section-heading {
  margin-bottom: 35px;
}

.timeline {
  display: grid;
}

.timeline-item {
  display: grid;
  grid-template-columns: 54px 42px 1fr;
  align-items: start;
  gap: 13px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-item time {
  padding-top: 9px;
  color: #91aac0;
  font-size: 12px;
  font-weight: 760;
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border-radius: 13px;
  background: var(--feature-color, var(--brand));
  color: #ffffff;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--feature-color, var(--brand)) 35%, transparent);
}

/* Scoped to the text column on purpose. A bare `.timeline-item span` also
   matches the `.feature-icon` box and the `.ms` glyph inside it (both are
   spans) and wins on specificity (0,1,1) over `.feature-icon` (0,1,0). That
   turned the box from `inline-grid` into `block`, which silently disables its
   own `place-items: center` — the glyph dropped to the top of the square — and
   also repainted it grey at 13px. Keep the `> div >` scope. */
.timeline-item > div > strong,
.timeline-item > div > span {
  display: block;
}

.timeline-item > div > strong {
  color: #ffffff;
  font-size: 15px;
}

.timeline-item > div > span {
  margin-top: 2px;
  color: #a9bfd0;
  font-size: 13px;
}

.day-visual {
  position: relative;
  min-height: 640px;
}

.day-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: rgba(6, 22, 38, 0.55);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.day-card.screen {
  width: 268px;
  right: 11%;
  top: 5px;
  padding: 7px;
  border-radius: 40px;
  transform: rotate(3deg);
}

.day-card.screen img {
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(126, 197, 223, 0.16) 0 15%, transparent 16%),
    linear-gradient(145deg, #0b2033, #173d5f);
}

.day-card.glance {
  z-index: 4;
  width: 245px;
  left: 2%;
  top: 158px;
  padding: 22px;
}

.day-card.glance .mini-label {
  color: #81a1bb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.day-card.glance h3 {
  margin: 7px 0 16px;
  font-size: 21px;
}

.glance-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.glance-row .feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 15px;
}

.product-section {
  background: var(--paper);
}

.product-stack {
  display: grid;
  gap: 26px;
}

.product-block {
  position: relative;
  display: grid;
  min-height: 580px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 62px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.product-block:nth-child(even) {
  grid-template-columns: 1.08fr 0.92fr;
}

.product-block:nth-child(even) .product-copy {
  order: 2;
}

.product-block::before {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -260px;
  border-radius: 50%;
  background: var(--block-wash, var(--brand-ice));
  opacity: 0.75;
  content: "";
}

.product-block:nth-child(even)::before {
  right: auto;
  left: -180px;
}

.product-copy,
.product-visual {
  position: relative;
  z-index: 2;
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--block-accent, var(--brand));
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-kicker .feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 18px;
}

.product-copy h3 {
  max-width: 520px;
  margin: 20px 0 18px;
  font-size: clamp(36px, 4vw, 56px);
}

.product-copy > p {
  max-width: 530px;
  color: var(--copy);
  font-size: 17px;
}

.proof-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--copy);
  font-size: 14px;
}

.proof-list .ms {
  color: var(--block-accent, var(--brand));
  font-size: 20px;
}

.product-visual {
  min-height: 465px;
}

.screen-frame {
  position: absolute;
  overflow: hidden;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 37px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.screen-frame img {
  width: 100%;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--mint) 54%, transparent) 0 15%, transparent 16%),
    linear-gradient(145deg, var(--surface-soft), color-mix(in srgb, var(--brand-ice) 74%, var(--surface)));
}

.screen-frame.main {
  width: 240px;
  right: 8%;
  top: -12px;
  transform: rotate(2deg);
}

.screen-frame.secondary {
  z-index: 3;
  width: 185px;
  left: 5%;
  bottom: -18px;
  transform: rotate(-7deg);
}

.visual-note {
  position: absolute;
  z-index: 5;
  max-width: 220px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.visual-note strong,
.visual-note span {
  display: block;
}

.visual-note strong {
  color: var(--ink-deep);
  font-size: 14px;
}

.visual-note span {
  margin-top: 3px;
  color: var(--copy-soft);
  font-size: 12px;
}

.visual-note.top {
  top: 57px;
  left: 0;
}

.visual-note.bottom {
  right: 0;
  bottom: 42px;
}

.paired-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.care-panel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  padding: 44px;
  border-radius: var(--radius-xl);
  color: #ffffff;
}

.care-panel.money {
  background: linear-gradient(145deg, #1a4f96, #2f73d9);
}

.care-panel.medicine {
  background: linear-gradient(145deg, #23664c, #3f9e72);
}

.care-panel::before {
  position: absolute;
  width: 430px;
  height: 430px;
  top: -235px;
  right: -130px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.care-panel h3 {
  max-width: 420px;
  margin: 18px 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
}

.care-panel p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.82);
}

.care-panel .product-kicker {
  color: #ffffff;
}

.care-panel .screen-frame {
  width: 230px;
  right: 34px;
  bottom: -170px;
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(2deg);
}

.feature-map-section {
  background: var(--paper-soft);
}

.feature-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-map-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.feature-group {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
}

.feature-group h3 {
  margin-bottom: 18px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.feature-pill {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--copy);
  font-size: 14px;
  font-weight: 670;
}

.feature-pill .feature-icon {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  font-size: 16px;
}

.personalization {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: clamp(42px, 6vw, 78px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.personalization::after {
  position: absolute;
  width: 640px;
  height: 640px;
  right: -330px;
  bottom: -350px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--mint), rgba(70, 126, 211, 0.25));
  content: "";
}

.personalization-copy,
.palette-preview {
  position: relative;
  z-index: 2;
}

.personalization h2 {
  margin: 16px 0 18px;
  font-size: clamp(38px, 4.6vw, 62px);
}

.personalization p {
  color: var(--copy);
  font-size: 17px;
}

.palette-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.palette-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--copy);
  font-size: 12px;
  font-weight: 700;
}

.palette-chip i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--palette-color);
}

.palette-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  transform: rotate(2deg);
}

.mini-theme {
  min-height: 270px;
  padding: 20px;
  border-radius: 25px;
  background: #f8fbfc;
  color: #163758;
  box-shadow: var(--shadow-md);
}

.mini-theme.dark {
  margin-top: 36px;
  background: #0b2035;
  color: #e7f4f5;
}

.mini-theme b {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  margin-top: 10px;
  padding: 11px;
  border-radius: 14px;
  background: rgba(70, 126, 211, 0.11);
}

.mini-card i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--mini-color);
}

.mini-lines::before,
.mini-lines::after {
  display: block;
  height: 6px;
  margin-top: 4px;
  border-radius: 99px;
  background: currentColor;
  opacity: 0.22;
  content: "";
}

.mini-lines::after {
  width: 62%;
}

.privacy-section {
  padding-top: 0;
}

.privacy-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 88px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 5%, rgba(70, 126, 211, 0.42), transparent 30%),
    linear-gradient(140deg, #061321, #102d4f 62%, #1f5594);
  color: #ddebF4;
}

.privacy-panel::after {
  position: absolute;
  width: 640px;
  height: 640px;
  top: -470px;
  right: -120px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.privacy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 78px;
  align-items: start;
}

.privacy-copy .eyebrow {
  color: #9de1d4;
}

.privacy-copy h2 {
  color: #ffffff;
}

.privacy-copy p {
  max-width: 540px;
  color: #bfd0dc;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dff8f3;
  font-weight: 760;
  text-underline-offset: 4px;
}

.privacy-points {
  display: grid;
}

.privacy-point {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy-point:first-child {
  border-top: 0;
}

.privacy-point .feature-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--privacy-color, #9de1d4);
  box-shadow: none;
}

/* Same specificity trap as `.timeline-item` above: scoped to the text column so
   the `.feature-icon` box keeps its `inline-grid` + `place-items: center`. */
.privacy-point > div > strong,
.privacy-point > div > span {
  display: block;
}

.privacy-point > div > strong {
  color: #ffffff;
  font-size: 16px;
}

.privacy-point > div > span {
  margin-top: 4px;
  color: #a9c0d1;
  font-size: 14px;
}

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

.step {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
}

.step-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step h3 {
  margin: 28px 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.step p {
  margin-bottom: 0;
  color: var(--copy);
  font-size: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.faq-layout .section-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.faq-layout .section-heading .eyebrow {
  justify-content: center;
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 46px 23px 0;
  color: var(--ink-deep);
  cursor: pointer;
  font-size: 17px;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 2px;
  color: var(--brand);
  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  content: "+";
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 960px;
  padding: 0 35px 23px 0;
  margin-bottom: 0;
  color: var(--copy);
}

.feature-guide-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 132px 0 88px;
  background:
    radial-gradient(circle at 82% 24%, rgba(246, 200, 95, 0.38), transparent 25%),
    radial-gradient(circle at 72% 72%, rgba(190, 233, 224, 0.82), transparent 34%),
    linear-gradient(135deg, var(--paper) 0%, #f8f1e7 48%, #e5f5f1 100%);
}

:root[data-theme="dark"] .feature-guide-hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(70, 126, 211, 0.25), transparent 27%),
    radial-gradient(circle at 72% 72%, rgba(82, 168, 154, 0.18), transparent 36%),
    linear-gradient(135deg, #071522 0%, #0b2032 52%, #123647 100%);
}

.feature-guide-hero::before,
.feature-guide-hero::after {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--brand) 42%, transparent);
  border-radius: 50%;
  content: "";
}

.feature-guide-hero::before {
  width: 780px;
  height: 520px;
  top: 58px;
  right: -160px;
  transform: rotate(-15deg);
}

.feature-guide-hero::after {
  width: 590px;
  height: 620px;
  top: 26px;
  right: 36px;
  border-color: color-mix(in srgb, var(--coral) 54%, transparent);
  transform: rotate(21deg);
}

.feature-guide-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 70px;
}

.feature-guide-copy {
  max-width: 700px;
}

.feature-guide-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--copy);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.feature-guide-back:hover {
  color: var(--ink-deep);
}

.feature-guide-copy h1 {
  margin: 23px 0 25px;
  font-size: clamp(56px, 6vw, 84px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.feature-guide-copy h1 span {
  background: linear-gradient(100deg, var(--brand) 0%, #55a9c7 47%, #2ba17f 100%);
  background-clip: text;
  color: transparent;
}

:root[data-theme="dark"] .feature-guide-copy h1 span {
  background: linear-gradient(100deg, #9bc2ff, #9de1d4, #f5d47d);
  background-clip: text;
  color: transparent;
}

.feature-guide-copy > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--copy);
  font-size: 19px;
}

.feature-guide-orbit {
  position: relative;
  width: min(490px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid color-mix(in srgb, var(--brand) 34%, transparent);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--surface) 82%, transparent) 0 26%, transparent 27%),
    radial-gradient(circle at center, transparent 0 48%, color-mix(in srgb, var(--mint) 38%, transparent) 49% 50%, transparent 51%),
    color-mix(in srgb, var(--surface) 34%, transparent);
  box-shadow: inset 0 0 80px color-mix(in srgb, var(--mint) 24%, transparent);
}

.orbit-home,
.orbit-icon {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--surface) 62%, transparent);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.orbit-home {
  width: 126px;
  height: 126px;
  top: 50%;
  left: 50%;
  border-radius: 38px;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  font-size: 48px;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.orbit-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  font-size: 26px;
}

.orbit-shopping { top: 4%; left: 42%; background: var(--feature-shopping); transform: rotate(4deg); }
.orbit-meals { top: 20%; right: 4%; background: var(--feature-meals); transform: rotate(7deg); }
.orbit-dates { right: 0; bottom: 23%; background: var(--feature-dates); transform: rotate(-4deg); }
.orbit-cards { right: 23%; bottom: 2%; background: var(--feature-cards); transform: rotate(5deg); }
.orbit-chat { bottom: 3%; left: 23%; background: var(--feature-chat); transform: rotate(-5deg); }
.orbit-chores { bottom: 25%; left: 0; background: var(--feature-chores); transform: rotate(4deg); }
.orbit-money { top: 22%; left: 3%; background: var(--feature-finances); transform: rotate(-7deg); }
.orbit-medicine { top: 42%; right: 13%; background: var(--feature-medications); transform: rotate(4deg); }

.feature-guide-jump {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: -30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.feature-guide-jump a {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: var(--surface);
  color: var(--ink-deep);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.feature-guide-jump a:hover {
  background: var(--surface-soft);
  color: var(--brand-deep);
}

.feature-guide-jump .ms {
  color: var(--brand);
  font-size: 22px;
}

.feature-guide-section {
  padding: clamp(82px, 8vw, 112px) 0;
  scroll-margin-top: 76px;
}

.feature-guide-section-tint {
  background: var(--paper-soft);
}

.feature-guide-heading {
  max-width: 790px;
  margin-bottom: 46px;
}

.feature-guide-heading h2 {
  margin: 15px 0 17px;
  font-size: clamp(42px, 5vw, 66px);
}

.feature-guide-heading p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--copy);
  font-size: 18px;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-detail-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature-detail-card::before {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -150px;
  right: -105px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent) 16%, transparent);
  content: "";
}

.feature-detail-card::after {
  position: absolute;
  height: 4px;
  right: 30px;
  bottom: 0;
  left: 30px;
  border-radius: 99px 99px 0 0;
  background: var(--card-accent);
  content: "";
}

.feature-detail-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-detail-title .feature-icon {
  background: var(--card-accent);
}

.feature-detail-title h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.feature-detail-card > p {
  position: relative;
  min-height: 116px;
  margin: 24px 0 22px;
  color: var(--copy);
  font-size: 15px;
}

.feature-detail-card ul {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-detail-card li {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 10px;
  color: var(--copy);
  font-size: 13px;
}

.feature-detail-card li::before {
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--card-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--card-accent) 12%, transparent);
  content: "";
}

.shared-capabilities {
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--mint) 42%, transparent), transparent 28%),
    var(--paper);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.capability-card h3 {
  margin: 23px 0 11px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.capability-card p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
}

.closing-wrap {
  padding-top: 0;
}

.closing {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) clamp(28px, 7vw, 92px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 10%, rgba(110, 168, 255, 0.66), transparent 31%),
    radial-gradient(circle at 20% 110%, rgba(82, 181, 162, 0.38), transparent 35%),
    linear-gradient(130deg, #071727, #163d70 63%, #2c6fc8);
  color: #ffffff;
  text-align: center;
}

.closing::before,
.closing::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.closing::before {
  width: 760px;
  height: 760px;
  top: -610px;
  right: -160px;
}

.closing::after {
  width: 540px;
  height: 540px;
  bottom: -440px;
  left: -70px;
}

.closing > * {
  position: relative;
  z-index: 2;
}

.closing .eyebrow {
  color: #a8e4d9;
}

.closing h2 {
  max-width: 790px;
  margin-inline: auto;
  color: #ffffff;
}

.closing p {
  max-width: 700px;
  margin: 0 auto 29px;
  color: #c3d5e3;
  font-size: 18px;
}

.site-footer {
  padding: 42px 0 34px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
}

.footer-links a {
  color: var(--copy);
  font-size: 14px;
  font-weight: 640;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: var(--copy-soft);
  font-size: 12px;
}

.js.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.js.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(450px, 0.9fr);
  }

  .callout.meal,
  .callout.bill {
    right: 0;
  }

  .day-grid {
    gap: 42px;
  }

  .product-block {
    gap: 35px;
  }

  .feature-groups {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    z-index: 95;
    inset: 76px 18px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links > a {
    padding: 14px 13px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .nav-links > a:last-child {
    border-bottom: 0;
  }

  .menu-open .nav-links {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .nav-app-button {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .eyebrow,
  .hero-actions,
  .hero-facts {
    justify-content: center;
  }

  .hero h1,
  .hero-lede {
    margin-inline: auto;
  }

  .hero-scene {
    width: min(630px, 100%);
    margin-inline: auto;
  }

  .trust-panel {
    grid-template-columns: 1fr 1fr;
  }

  .trust-intro {
    grid-column: 1 / -1;
    min-height: auto;
    border-bottom: 1px solid var(--line);
  }

  .trust-point:nth-of-type(2) {
    border-left: 0;
  }

  .day-grid,
  .privacy-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .day-visual {
    width: min(580px, 100%);
    margin: 0 auto;
  }

  .product-block,
  .product-block:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-block:nth-child(even) .product-copy {
    order: 0;
  }

  .product-visual {
    width: min(560px, 100%);
    margin: auto;
  }

  .paired-panels {
    grid-template-columns: 1fr;
  }

  .personalization {
    grid-template-columns: 1fr;
  }

  .palette-preview {
    width: min(540px, 100%);
    margin: auto;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 35px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 30px));
  }

  .nav-inner {
    height: 66px;
    gap: 9px;
  }

  .brand {
    gap: 8px;
    font-size: 16px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    inset: 66px 15px auto;
  }

  .icon-button,
  .menu-button {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .nav-actions > .locale-switcher summary {
    width: 38px;
    height: 38px;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .nav-actions > .locale-switcher summary::before {
    content: "🌐";
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 48px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero::before {
    width: 520px;
    height: 360px;
    top: 470px;
    right: -240px;
  }

  .hero::after {
    width: 420px;
    height: 440px;
    top: 500px;
    right: -60px;
  }

  .hero h1 {
    margin: 20px 0;
    font-size: clamp(43px, 13.5vw, 56px);
    overflow-wrap: anywhere;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    margin-top: 27px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    justify-content: center;
    justify-items: start;
    gap: 10px 16px;
    margin-top: 24px;
  }

  .hero-facts span:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .hero-scene {
    min-height: 520px;
    margin-top: 28px;
  }

  .hero-blob {
    inset: 30px -70px 0 -60px;
  }

  .phone-main {
    width: 218px;
    left: 38%;
    transform: translateX(-22%) rotate(2deg);
  }

  .phone-side {
    width: 145px;
    top: 220px;
    left: -6px;
  }

  .callout {
    min-width: 152px;
    padding: 12px 13px;
  }

  .callout.meal {
    top: 76px;
    right: -5px;
  }

  .callout.bill {
    right: -4px;
    bottom: 42px;
  }

  .callout.list {
    bottom: 0;
    left: 16%;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 15px;
    background: var(--paper);
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .trust-intro {
    grid-column: auto;
  }

  .trust-point,
  .trust-point:nth-of-type(2) {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .closing h2 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .section-heading p {
    font-size: 16px;
  }

  .day-section {
    margin-top: 65px;
  }

  .timeline-item {
    grid-template-columns: 45px 38px 1fr;
    gap: 9px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }

  .day-visual {
    min-height: 530px;
  }

  .day-card.screen {
    width: 220px;
    right: 0;
  }

  .day-card.glance {
    width: 205px;
    top: 185px;
    left: 0;
    padding: 17px;
  }

  .product-block {
    min-height: auto;
    gap: 15px;
    padding: 30px 22px;
    border-radius: 30px;
  }

  .product-copy h3 {
    font-size: 39px;
  }

  .product-copy > p {
    font-size: 16px;
  }

  .product-visual {
    min-height: 430px;
  }

  .screen-frame.main {
    width: 205px;
    right: 0;
  }

  .screen-frame.secondary {
    width: 150px;
    left: 0;
  }

  .visual-note {
    max-width: 175px;
  }

  .paired-panels {
    gap: 16px;
  }

  .care-panel {
    min-height: 560px;
    padding: 32px 24px;
    border-radius: 30px;
  }

  .care-panel h3 {
    font-size: 39px;
  }

  .care-panel .screen-frame {
    width: 205px;
    right: 22px;
    bottom: -155px;
  }

  .feature-groups {
    grid-template-columns: 1fr;
  }

  .personalization {
    gap: 38px;
    padding: 32px 22px;
    border-radius: 30px;
  }

  .personalization h2 {
    font-size: 40px;
  }

  .palette-preview {
    gap: 8px;
  }

  .mini-theme {
    min-height: 220px;
    padding: 14px;
    border-radius: 20px;
  }

  .mini-theme.dark {
    margin-top: 24px;
  }

  .privacy-panel {
    padding: 42px 24px;
    border-radius: 30px;
  }

  .privacy-grid {
    gap: 35px;
  }

  .step {
    padding: 25px;
  }

  .closing {
    padding: 62px 22px;
    border-radius: 30px;
  }

  .closing p {
    font-size: 16px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 45px;
  }

  .phone-main {
    left: 31%;
  }

  .callout.meal {
    right: -12px;
  }

  .hero-facts {
    display: grid;
  }
}

@media (max-width: 1080px) {
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .feature-guide-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .feature-guide-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .feature-guide-back,
  .feature-guide-copy .eyebrow,
  .feature-guide-copy .hero-facts {
    justify-content: center;
  }

  .feature-guide-orbit {
    width: min(430px, 82vw);
  }

  .feature-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-detail-card > p {
    min-height: 92px;
  }
}

@media (max-width: 640px) {
  .feature-guide-hero {
    min-height: auto;
    padding: 100px 0 72px;
  }

  .feature-guide-copy h1 {
    font-size: clamp(46px, 14vw, 60px);
  }

  .feature-guide-copy > p {
    font-size: 17px;
  }

  .feature-guide-orbit {
    width: min(330px, 88vw);
  }

  .orbit-home {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    font-size: 40px;
  }

  .orbit-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 22px;
  }

  .feature-guide-jump {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -22px;
    border-radius: 19px;
  }

  .feature-guide-jump a {
    min-height: 60px;
    padding: 12px 8px;
    font-size: 13px;
  }

  .feature-guide-section {
    padding: 72px 0;
  }

  .feature-guide-heading {
    margin-bottom: 32px;
  }

  .feature-guide-heading h2 {
    font-size: 40px;
  }

  .feature-guide-heading p {
    font-size: 16px;
  }

  .feature-detail-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .feature-detail-card {
    min-height: 0;
    padding: 25px;
  }

  .feature-detail-card > p {
    min-height: 0;
  }

  .capability-card {
    min-height: 0;
    padding: 24px;
  }
}

@media (max-width: 370px) {
  .feature-guide-orbit {
    width: 280px;
  }
}

.plans-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: 132px 0 100px;
  background:
    radial-gradient(circle at 80% 18%, rgba(246, 200, 95, 0.42), transparent 25%),
    radial-gradient(circle at 76% 78%, rgba(70, 126, 211, 0.27), transparent 34%),
    linear-gradient(135deg, #fbf7ef 0%, #f0f7f5 52%, #dfeefb 100%);
}

:root[data-theme="dark"] .plans-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(246, 200, 95, 0.14), transparent 27%),
    radial-gradient(circle at 76% 78%, rgba(70, 126, 211, 0.24), transparent 36%),
    linear-gradient(135deg, #071522 0%, #0d2538 54%, #173e62 100%);
}

.plans-hero::before {
  position: absolute;
  width: 850px;
  height: 850px;
  top: -500px;
  right: -160px;
  border: 1px solid color-mix(in srgb, var(--brand) 34%, transparent);
  border-radius: 50%;
  content: "";
}

.plans-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  align-items: center;
  gap: 70px;
}

.plans-hero-copy {
  max-width: 720px;
}

.plans-hero-copy h1 {
  margin: 23px 0 25px;
  font-size: clamp(58px, 6.2vw, 88px);
  letter-spacing: -0.068em;
  line-height: 0.95;
}

.plans-hero-copy h1 span {
  background: linear-gradient(100deg, var(--brand) 0%, #4f9fbe 48%, #2ba17f 100%);
  background-clip: text;
  color: transparent;
}

:root[data-theme="dark"] .plans-hero-copy h1 span {
  background: linear-gradient(100deg, #9bc2ff, #9de1d4, #f5d47d);
  background-clip: text;
  color: transparent;
}

.plans-hero-copy > p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--copy);
  font-size: 19px;
}

.plans-hero-visual {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1.04;
  margin-inline: auto;
}

.plans-orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
  border-radius: 50%;
}

.plans-orbit-one {
  inset: 5% 3% 1% 8%;
  transform: rotate(-15deg);
}

.plans-orbit-two {
  inset: 12% 10% 8% 1%;
  border-color: color-mix(in srgb, var(--coral) 48%, transparent);
  transform: rotate(18deg);
}

.plan-ticket {
  position: absolute;
  display: flex;
  width: 270px;
  min-height: 325px;
  flex-direction: column;
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 34px;
  box-shadow: 0 28px 68px rgba(18, 52, 85, 0.22);
}

.plan-ticket-free {
  top: 12%;
  left: 2%;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  color: var(--ink-deep);
  transform: rotate(-7deg);
}

.plan-ticket-plus {
  right: 0;
  bottom: 5%;
  background:
    radial-gradient(circle at 88% 5%, rgba(246, 200, 95, 0.42), transparent 31%),
    linear-gradient(145deg, #0d2b4d, #245a9f 65%, #327ec0);
  color: #ffffff;
  transform: rotate(7deg);
}

.plan-ticket-kicker {
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-ticket strong {
  margin-top: 24px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.plan-ticket-price {
  margin-top: auto;
  font-size: 52px;
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.plan-ticket > span:last-of-type {
  margin-top: 7px;
  font-size: 12px;
  opacity: 0.72;
}

.plan-ticket > .ms {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 28px;
}

.plans-status-wrap {
  position: relative;
  z-index: 5;
  margin-top: -40px;
}

.plans-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border: 1px solid color-mix(in srgb, var(--feature-shopping) 30%, var(--line));
  border-radius: 25px;
  background: color-mix(in srgb, var(--surface) 94%, var(--mint));
  box-shadow: var(--shadow-md);
}

.plans-status-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  background: color-mix(in srgb, var(--feature-shopping) 15%, var(--surface));
  color: var(--feature-shopping);
  font-size: 25px;
}

.plans-status h2 {
  margin: 3px 0 5px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.plans-status p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
}

.plans-card-section {
  padding-top: clamp(92px, 10vw, 132px);
}

.plan-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1040px;
  margin: 48px auto 0;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 690px;
  overflow: hidden;
  flex-direction: column;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.plan-card::before {
  position: absolute;
  width: 310px;
  height: 310px;
  top: -220px;
  right: -120px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--feature-shopping) 16%, transparent);
  content: "";
}

.plan-card-plus {
  border-color: rgba(119, 174, 255, 0.35);
  background:
    radial-gradient(circle at 90% 4%, rgba(246, 200, 95, 0.3), transparent 25%),
    linear-gradient(150deg, #071727, #123b68 62%, #2468ac);
  color: #ffffff;
}

.plan-card-plus::before {
  background: rgba(106, 166, 255, 0.22);
}

.plan-card-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.plan-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-badge.available {
  background: color-mix(in srgb, var(--feature-shopping) 14%, var(--surface));
  color: var(--feature-shopping);
}

.plan-badge.launch {
  background: rgba(255, 255, 255, 0.12);
  color: #dfeeff;
}

.plan-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--brand) 12%, var(--surface));
  color: var(--brand);
  font-size: 24px;
}

.plan-card-plus .plan-mark {
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
}

.plan-card h3 {
  margin: 28px 0 18px;
  color: inherit;
  font-size: clamp(30px, 4vw, 42px);
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 13px;
}

.plan-price strong {
  font-size: clamp(54px, 7vw, 76px);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.plan-price span {
  max-width: 140px;
  padding-bottom: 7px;
  color: var(--copy-soft);
  font-size: 13px;
}

.plan-card-plus .plan-price span {
  color: #aec9df;
}

.annual-note {
  width: fit-content;
  margin-top: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #dcecf8;
  font-size: 12px;
  font-weight: 720;
}

.plan-card > p {
  margin: 26px 0 24px;
  color: var(--copy);
}

.plan-card-plus > p {
  color: #bfd2e1;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-card-plus ul {
  border-color: rgba(255, 255, 255, 0.14);
}

.plan-card li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  color: var(--copy);
  font-size: 14px;
}

.plan-card-plus li {
  color: #d3e1ec;
}

.plan-card li::before {
  color: var(--feature-shopping);
  font-weight: 850;
  content: "✓";
}

.plan-card-plus li::before {
  color: #8ed9cb;
}

.plan-card-action {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.button.is-disabled {
  cursor: default;
  opacity: 0.7;
  pointer-events: none;
}

.plan-card-plus .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.plans-price-note {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--copy-soft);
  font-size: 13px;
  text-align: center;
}

.plan-compare-section {
  background:
    radial-gradient(circle at 8% 12%, color-mix(in srgb, var(--mint) 40%, transparent), transparent 25%),
    var(--paper-soft);
}

.plan-comparison {
  overflow: hidden;
  max-width: 1120px;
  margin: 48px auto 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(190px, 1fr));
  min-height: 66px;
  border-top: 1px solid var(--line);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 20px;
  border-left: 1px solid var(--line);
  color: var(--copy);
  font-size: 13px;
}

.compare-row > div:first-child {
  border-left: 0;
  color: var(--ink-deep);
  font-weight: 730;
}

.compare-head {
  min-height: 58px;
  background: linear-gradient(110deg, var(--brand-deep), var(--brand));
}

.compare-head > div,
.compare-head > div:first-child {
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-emphasis {
  background: color-mix(in srgb, var(--brand) 5%, var(--surface));
}

.compare-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: color-mix(in srgb, var(--compare-color, var(--brand)) 13%, var(--surface));
  color: var(--compare-color, var(--brand));
  font-size: 18px;
}

.comparison-note {
  display: flex;
  max-width: 900px;
  align-items: flex-start;
  gap: 11px;
  margin: 22px auto 0;
  color: var(--copy-soft);
  font-size: 13px;
}

.comparison-note .ms {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 20px;
}

.fair-billing-section .section-heading {
  max-width: 820px;
}

.fair-billing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.fair-card {
  min-height: 285px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
}

.fair-card h3 {
  margin: 23px 0 11px;
  font-size: 21px;
}

.fair-card p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
}

.plans-support-section {
  padding-top: 0;
}

.plans-support {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 46px;
  overflow: hidden;
  padding: clamp(46px, 7vw, 76px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 0%, rgba(246, 200, 95, 0.28), transparent 30%),
    radial-gradient(circle at 15% 120%, rgba(82, 181, 162, 0.3), transparent 35%),
    linear-gradient(132deg, #071727, #163d70 64%, #2c6fc8);
  color: #ffffff;
}

.plans-support::after {
  position: absolute;
  width: 540px;
  height: 540px;
  top: -420px;
  right: -100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.plans-support > * {
  position: relative;
  z-index: 2;
}

.plans-support .eyebrow {
  color: #9de1d4;
}

.plans-support h2 {
  max-width: 760px;
  margin: 16px 0 14px;
  color: #ffffff;
}

.plans-support p {
  max-width: 820px;
  margin: 0;
  color: #c5d7e5;
  font-size: 16px;
}

.plans-support-same {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: #dff8f3;
  font-size: 13px;
  font-weight: 730;
}

.plans-support-same .ms {
  color: #8ed9cb;
  font-size: 20px;
}

.plans-faq {
  padding-top: 80px;
}

@media (max-width: 1080px) {
  .fair-billing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .plans-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .plans-hero-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .plans-hero-copy .feature-guide-back,
  .plans-hero-copy .eyebrow,
  .plans-hero-copy .hero-facts {
    justify-content: center;
  }

  .plans-hero-visual {
    width: min(470px, 90vw);
  }

  .plans-status {
    grid-template-columns: auto 1fr;
  }

  .plans-status .button {
    grid-column: 2;
    width: fit-content;
  }

  .plan-card-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .plan-card {
    min-height: 0;
  }

  .plans-support {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .plans-support .button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .plans-hero {
    min-height: auto;
    padding: 104px 0 82px;
  }

  .plans-hero-copy h1 {
    font-size: clamp(47px, 14vw, 61px);
  }

  .plans-hero-copy > p {
    font-size: 17px;
  }

  .plans-hero-visual {
    width: min(350px, 94vw);
    min-height: 350px;
  }

  .plan-ticket {
    width: 210px;
    min-height: 260px;
    padding: 23px;
    border-radius: 27px;
  }

  .plan-ticket-plus {
    right: -2%;
  }

  .plan-ticket-price {
    font-size: 40px;
  }

  .plans-status-wrap {
    margin-top: -28px;
  }

  .plans-status {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .plans-status .button {
    grid-column: auto;
    width: 100%;
    justify-content: center;
  }

  .plan-card {
    padding: 27px 23px;
    border-radius: 28px;
  }

  .plan-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .plan-price span {
    max-width: none;
    padding-bottom: 0;
  }

  .plan-comparison {
    border-radius: 21px;
  }

  .compare-row {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.82fr) minmax(0, 0.9fr);
    min-height: 60px;
  }

  .compare-row > div {
    align-items: flex-start;
    padding: 11px 8px;
    font-size: 11px;
    line-height: 1.35;
  }

  .compare-row > div:first-child {
    gap: 7px;
    font-size: 11px;
  }

  .compare-head > div,
  .compare-head > div:first-child {
    align-items: center;
    font-size: 9px;
  }

  .compare-icon {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    font-size: 15px;
  }

  .fair-billing-grid {
    grid-template-columns: 1fr;
  }

  .fair-card {
    min-height: 0;
  }

  .plans-support {
    padding: 42px 24px;
    border-radius: 30px;
  }

  .plans-support .button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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