:root {
  color-scheme: light dark;
  --bg: #fff;
  --surface: #f5f7f6;
  --ink: #071b28;
  --muted: #58686f;
  --line: #dce4e1;
  --mint: #01e4b2;
  --cyan: #087d99;
  --navy: #071b28;
  --radius: 24px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 6px;
  border-radius: 4px;
}
::selection {
  background: #b1f6df;
  color: #071b28;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 600;
}
h2 {
  font-size: clamp(36px, 4.2vw, 56px);
}
h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
}
p {
  max-width: 65ch;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wrap {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.5;
  margin-bottom: 25px;
  color: var(--muted);
}
.accent {
  color: var(--mint);
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 13px;
}
.section-copy {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 27px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  max-width: 100%;
  white-space: normal;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  padding-block: 10px;
  border-bottom: 1px solid var(--mint);
}
.text-link:hover {
  color: var(--mint);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  width: min(52%, 612px);
  flex-shrink: 0;
}
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 12px;
}
.site-header nav a:hover {
  color: var(--mint);
}
.status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}
.hero-scene {
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.hero-chevron {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: 14%;
  right: clamp(-160px, -7vw, -52px);
  height: 90%;
  aspect-ratio: 887 / 1200;
  background: var(--mint);
  mask: url("/assets/chevron-right-heavy.png") center / contain no-repeat;
  opacity: 0.16;
  transform: translate3d(0, var(--background-y, 0px), 0);
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px 35px;
  padding-top: 70px;
}
.hero-copy {
  padding-top: 10px;
  padding-bottom: 22px;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tiny-line {
  width: 22px;
  height: 1px;
  background: var(--mint);
}
h1 {
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 1.045;
}
.hero-description {
  font-size: 17px;
  max-width: 375px;
  color: var(--muted);
  margin-top: 25px;
  line-height: 1.7;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border-radius: 50px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 23px;
  font-size: 13px;
  font-weight: 550;
  max-width: 100%;
  white-space: normal;
  text-align: left;
  margin-top: 28px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}
.platform-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
}
.hero-art {
  position: relative;
  min-height: 465px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 140px 24px 24px 24px;
  display: grid;
  align-content: center;
  padding: 50px 40px;
  isolation: isolate;
  transform: translate3d(0, var(--panel-y, 0px), 0);
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(ellipse at 85% 85%, #65ebc416, transparent 65%);
  transform: translate3d(0, var(--background-y, 0px), 0);
}
.orbit {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: -1;
  right: -160px;
  top: -125px;
}
.orbit-one {
  transform: translate3d(0, var(--near-y, 0px), 0);
}
.orbit-two {
  width: 610px;
  height: 610px;
  right: -245px;
  top: -210px;
  transform: translate3d(0, var(--far-y, 0px), 0);
}
.hero-next {
  position: relative;
  transform: translate3d(0, var(--content-y, 0px), 0);
}
.hero-next .eyebrow {
  font-size: 9px;
  margin-bottom: 50px;
}
.hero-next-label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.23em;
  font-weight: 600;
}
.hero-time {
  display: block;
  font-size: clamp(46px, 5.4vw, 76px);
  letter-spacing: -0.06em;
  font-weight: 550;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}
.hero-time span {
  color: var(--mint);
  font-size: 0.6em;
}
.hero-rule {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--mint);
  margin-top: 20px;
  margin-bottom: 16px;
}
.hero-art-note {
  font-size: 12px;
  color: var(--muted);
}
.illustration-note {
  position: absolute;
  bottom: 20px;
  left: 40px;
  font-size: 9px;
  color: var(--muted);
}
.art-index {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.care-strip {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border-block: 1px solid var(--line);
  font-size: 12px;
}
.care-strip > span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.care-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.care-strip li {
  font-size: 17px;
  text-transform: uppercase;
}
.care-strip a {
  display: block;
}
.section-heading {
  margin-bottom: 55px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.step-number {
  font-size: 11px;
  color: var(--mint);
  display: block;
  margin-bottom: 30px;
}
.steps h3 {
  font-size: 23px;
  max-width: 270px;
  line-height: 1.2;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 270px;
}
.next-section {
  background: var(--navy);
  color: #f4faf8;
  --muted: #a1b4bd;
  --line: #2a3c47;
}
.next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.next-grid h2 {
  font-size: clamp(35px, 3.6vw, 48px);
}
.next-grid .small {
  margin-top: 30px;
}
.demo-caption {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  gap: 15px;
  margin-bottom: 20px;
}
.demo-caption span {
  color: var(--muted);
  font-size: 10px;
}
.state-sequence {
  list-style: none;
  padding: 0;
  margin: 0;
}
.state {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 4px 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition:
    transform 0.7s,
    opacity 0.7s;
}
.state-index {
  font-size: 9px;
  color: var(--muted);
  padding-top: 7px;
}
.state-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  display: block;
}
.state strong {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 550;
  letter-spacing: -0.035em;
}
.state-description {
  grid-column: 2;
  font-size: 11px;
  color: var(--muted);
}
.state-available strong {
  color: var(--mint);
}
.action-options {
  display: flex;
  gap: 35px;
  font-size: 26px;
  font-weight: 550;
  line-height: 1.5;
}
.used,
.pass {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.used {
  color: var(--mint);
}
.pass {
  color: #71dcf5;
}
.action-options svg {
  width: 11px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}
.pass svg {
  width: 23px;
}
.demo-footnote {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 10px;
  color: var(--muted);
}
.life-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.photo-slot {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #dde5df;
  color: #15392d;
  isolation: isolate;
}
.window-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    125deg,
    transparent 42%,
    #b8ccc159 42%,
    #b8ccc159 62%,
    transparent 62%
  );
}
.window-lines:before,
.window-lines:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #a8bcb3;
  left: 33%;
}
.window-lines:after {
  left: 72%;
}
.slot-tag {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.photo-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  right: 24px;
}
.photo-caption .eyebrow {
  color: #3d5e50;
  margin-bottom: 16px;
}
.photo-caption p {
  font-size: 33px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.placeholder-label {
  display: block;
  font-size: 10px;
  margin-top: 24px;
  color: #3d5e50;
}
.life-lines {
  font-size: 20px;
  line-height: 1.7;
  margin-block: 24px;
  letter-spacing: -0.02em;
}
.pass-scene {
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.pass-chevron {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: 7%;
  right: -18%;
  display: flex;
  gap: 12px;
  opacity: 0.08;
  transform: translate3d(0, var(--background-y, 0px), 0);
}
.pass-chevron span {
  display: block;
  height: min(95vh, 850px);
  aspect-ratio: 887 / 1200;
  background: var(--cyan);
  mask: url("/assets/chevron-right-heavy.png") center / contain no-repeat;
}
.pass-scene > section {
  position: relative;
  z-index: 1;
}
.watch-section {
  background: var(--surface);
  overflow: hidden;
}
.device-stage {
  position: relative;
  min-height: 510px;
  margin-top: 55px;
}
.phone {
  position: absolute;
  width: 215px;
  height: 440px;
  border: 8px solid #172630;
  border-radius: 46px;
  background: #0b202d;
  right: 23%;
  top: 10px;
  box-shadow:
    inset 0 0 0 2px #63727a,
    0 25px 45px #071b281a;
  transform: translate3d(0, var(--device-y, 0px), 0);
}
.phone:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 23px;
  border-radius: 20px;
  background: #02090d;
}
.phone-screen {
  position: absolute;
  inset: 42px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.phone-screen span,
.watch-face span {
  color: #8ba0aa;
  font-size: 9px;
  letter-spacing: 0.15em;
}
.phone-screen strong {
  font-size: 34px;
  color: var(--mint);
  font-weight: 550;
  margin-top: 12px;
}
.phone-screen small {
  color: #8ba0aa;
  margin-top: 8px;
}
.watch {
  position: absolute;
  width: 170px;
  height: 190px;
  border: 7px solid #273943;
  border-radius: 54px;
  background: #091b25;
  right: 12%;
  top: 225px;
  box-shadow:
    inset 0 0 0 2px #708087,
    0 20px 40px #071b2820;
  transform: translate3d(0, var(--device-near-y, 0px), 0);
}
.watch:before,
.watch:after {
  content: "";
  position: absolute;
  left: 42px;
  width: 72px;
  height: 58px;
  background: #d7dedb;
  z-index: -1;
}
.watch:before {
  top: -55px;
  border-radius: 22px 22px 0 0;
}
.watch:after {
  bottom: -55px;
  border-radius: 0 0 22px 22px;
}
.watch-face {
  position: absolute;
  inset: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.watch-face strong {
  color: var(--mint);
  font-size: 24px;
  font-weight: 550;
  margin-top: 8px;
}
.watch-face small {
  color: #8ba0aa;
  font-size: 9px;
  margin-top: 4px;
}
.device-copy {
  position: absolute;
  left: 0;
  top: 120px;
  max-width: 360px;
}
.device-copy p {
  color: var(--muted);
  margin-top: 20px;
  font-size: 17px;
}
.privacy-section {
  position: relative;
  overflow: hidden;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.privacy-list {
  padding-top: 12px;
}
.privacy-list li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.privacy-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
}
.pricing-section {
  background: var(--navy);
  color: #f4faf8;
  --muted: #a1b4bd;
  --line: #2a3c47;
}
.pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}
.pricing-head p {
  color: var(--muted);
  max-width: 380px;
  font-size: 14px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.price-card {
  padding: 45px 0 10px;
}
.price-card + .price-card {
  border-left: 1px solid var(--line);
  padding-left: 55px;
}
.price-label {
  color: var(--mint);
  font-size: 11px;
  letter-spacing: 0.15em;
}
.price {
  font-size: 40px;
  font-weight: 550;
  letter-spacing: -0.05em;
  margin-top: 8px;
}
.price-card ul {
  margin-top: 30px;
}
.price-card li {
  font-size: 14px;
  padding: 8px 0;
  color: #c4d1d6;
}
.price-card .button {
  background: var(--mint);
  color: #071b28;
}
.closing-scene {
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.closing-chevron {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: -8%;
  top: 0;
  height: 115%;
  aspect-ratio: 887 / 1200;
  background: var(--mint);
  mask: url("/assets/chevron-right-heavy.png") center / contain no-repeat;
  opacity: 0.11;
  transform: translate3d(0, var(--background-y, 0px), 0);
}
.closing-scene > section {
  position: relative;
  z-index: 1;
}
.closing {
  padding-block: 135px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.closing h2 {
  font-size: clamp(45px, 5.4vw, 74px);
}
.closing-copy {
  max-width: 390px;
  justify-self: end;
}
.closing-copy p {
  color: var(--muted);
  margin-bottom: 25px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 34px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  font-size: 11px;
  color: var(--muted);
}
.site-footer strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  margin-bottom: 5px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}
.footer-links a:hover {
  color: var(--mint);
}
.legal-page {
  min-height: 70vh;
  padding-block: 75px 120px;
}
.legal-page h1 {
  font-size: clamp(45px, 6vw, 80px);
  max-width: 850px;
}
.legal-page .lead {
  font-size: 19px;
  color: var(--muted);
  margin-top: 25px;
  max-width: 700px;
}
.legal-content {
  max-width: 800px;
  margin-top: 65px;
}
.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.legal-content h2 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 15px;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
}
.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
  margin-top: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
}
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-list a {
  border-bottom: 1px solid var(--mint);
}
.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.calc-panel {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.calc-form {
  display: grid;
  gap: 20px;
}
.calc-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.calc-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
}
.calc-form input:focus {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}
.calc-result {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 35px;
  min-height: 250px;
}
.calc-result strong {
  display: block;
  font-size: clamp(45px, 6vw, 70px);
  color: var(--mint);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-block: 15px;
}
.calc-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}

/* Shared topic landing pages */
.topic-page {
  overflow: clip;
}
.topic-hero {
  position: relative;
  isolation: isolate;
  width: min(var(--max), calc(100% - 96px));
  min-height: 560px;
  max-height: 760px;
  aspect-ratio: 3 / 2;
  margin-inline: auto;
  overflow: hidden;
  background: var(--navy);
}
.topic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 13, 22, 0.08) 0%, rgba(4, 13, 22, 0.12) 46%, rgba(4, 13, 22, 0.9) 100%),
    linear-gradient(90deg, rgba(4, 13, 22, 0.38), transparent 76%);
}
.topic-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topic-hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(28px, 5vw, 72px);
  right: clamp(28px, 5vw, 72px);
  bottom: clamp(32px, 5vw, 68px);
  color: #fff;
}
.topic-hero h1 {
  max-width: 900px;
  font-size: clamp(50px, 7vw, 92px);
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
  overflow-wrap: break-word;
  hyphens: auto;
}
.topic-hero h1 span {
  color: var(--mint);
}
.topic-hero-subcopy {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.55;
  color: #eef6f3;
}
.topic-hero--snacks h1 {
  font-size: clamp(72px, 10vw, 132px);
}
.topic-hero--tobacco h1,
.topic-hero--alcohol h1 {
  font-size: clamp(48px, 6.2vw, 80px);
}
.topic-hero--tobacco h1 {
  max-width: 760px;
}
.topic-hero--screen h1 {
  max-width: 850px;
  font-size: clamp(45px, 5.6vw, 72px);
}
.topic-section {
  padding-block: 105px;
}
.topic-intro,
.topic-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 9vw, 120px);
  align-items: start;
}
.topic-intro h2,
.topic-fit h2,
.topic-calculator-shell h2 {
  max-width: 650px;
}
.topic-intro .section-copy {
  margin-top: 0;
}
.topic-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 75px;
}
.topic-principles article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.topic-principles span,
.topic-steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--mint);
  font-size: 10px;
  letter-spacing: 0.14em;
}
.topic-principles h3,
.topic-steps h3 {
  font-size: 22px;
}
.topic-principles p,
.topic-steps p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
.topic-fit {
  background: var(--surface);
}
.topic-steps {
  display: grid;
  gap: 28px;
}
.topic-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.topic-steps li > div {
  grid-column: 2;
}
.topic-steps span {
  margin: 4px 0 0;
}
.topic-steps p {
  max-width: 520px;
}
.topic-calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 8vw, 100px);
  align-items: start;
  border-block: 1px solid var(--line);
  padding-block: 70px;
}
.calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.calculator-fields li {
  min-height: 88px;
  padding: 18px 12px 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.calculator-fields li:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.calculator-fields strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 16px;
  text-transform: none;
  letter-spacing: normal;
  overflow-wrap: break-word;
}

.hero > *,
.next-grid > *,
.life-grid > *,
.devices-grid > *,
.plans-grid > *,
.topic-intro > *,
.topic-fit-grid > *,
.topic-calculator-shell > * {
  min-width: 0;
}
.calculator-status {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}
.topic-safety {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 65px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.topic-safety p {
  color: var(--muted);
  font-size: 14px;
}
.topic-safety--prominent {
  margin-top: 55px;
  padding: 28px;
  border: 1px solid var(--mint);
  background: var(--surface);
}
.topic-safety .text-link {
  flex: 0 0 auto;
}
.topic-nav {
  margin-top: 30px;
}
.topic-nav a:hover {
  color: var(--mint);
}
.topic-page + .site-footer .footer-top,
.canonical-footer .footer-top {
  display: grid;
  gap: 16px;
}
.topic-page + .site-footer .footer-brand {
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}
.topic-page + .site-footer .footer-brand span {
  color: var(--mint);
}
.topic-page + .site-footer .footer-top nav,
.canonical-footer .footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.topic-page + .site-footer .footer-bottom,
.canonical-footer .footer-bottom {
  display: grid;
  justify-items: end;
  gap: 7px;
  text-align: right;
}
.topic-page + .site-footer address {
  font-style: normal;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #061721;
    --surface: #0a202c;
    --ink: #f3f8f6;
    --muted: #9db0b8;
    --line: #263b46;
    --cyan: #71dcf5;
  }
  ::selection {
    background: #1d5c50;
    color: #fff;
  }
  .brand-light {
    display: none;
  }
  .brand-dark {
    display: block;
  }
  .hero-art::before {
    background: radial-gradient(ellipse at 85% 85%, #65ebc426, transparent 65%);
  }
  .hero-art {
    border-color: #27404c;
  }
  .watch:before,
  .watch:after {
    background: #26343a;
  }
}
@media (prefers-color-scheme: light) {
  .brand-dark {
    display: none;
  }
  .brand-light {
    display: block;
  }
}
@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }
  .brand {
    width: min(78%, 500px);
  }
  .hero,
  .next-grid,
  .life-grid,
  .privacy-grid,
  .pricing-grid,
  .calculator {
    grid-template-columns: 1fr;
  }
  .topic-intro,
  .topic-fit-grid,
  .topic-calculator-shell {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-art {
    min-height: 390px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .life-grid {
    gap: 45px;
  }
  .photo-slot {
    min-height: 360px;
  }
  .device-stage {
    min-height: 650px;
  }
  .device-copy {
    position: relative;
    top: 0;
  }
  .phone {
    right: 42%;
    top: 180px;
  }
  .watch {
    right: 15%;
    top: 390px;
  }
  .pricing-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .price-card + .price-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    margin-top: 25px;
  }
  .closing {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .closing-copy {
    justify-self: start;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(100% - 40px, var(--max));
  }
  .section {
    padding-block: 75px;
  }
  .site-header {
    min-height: 110px;
  }
  .brand {
    width: min(90%, 430px);
  }
  .hero {
    gap: 30px;
  }
  .hero-copy {
    padding-top: 0;
  }
  h1 {
    font-size: clamp(43px, 13vw, 62px);
  }
  .hero-art {
    min-height: 350px;
    border-radius: 95px 20px 20px 20px;
    padding: 40px 25px;
  }
  .hero-time {
    font-size: clamp(44px, 14vw, 64px);
  }
  .care-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .care-strip ul {
    gap: 12px 22px;
  }
  .care-strip li {
    font-size: 14px;
  }
  .topic-hero {
    width: 100%;
    min-height: 560px;
    max-height: none;
    aspect-ratio: 4 / 5;
  }
  .topic-hero-copy {
    left: 20px;
    right: 20px;
    bottom: 30px;
  }
  .topic-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }
  .topic-hero--snacks h1 {
    font-size: clamp(70px, 22vw, 100px);
  }
  .topic-hero--tobacco h1,
  .topic-hero--alcohol h1 {
    font-size: clamp(39px, 10.5vw, 52px);
  }
  .topic-hero--screen h1 {
    font-size: clamp(38px, 10vw, 50px);
  }
  .topic-hero-subcopy {
    font-size: 15px;
  }
  .topic-section {
    padding-block: 75px;
  }
  .topic-principles {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 55px;
  }
  .calculator-fields {
    grid-template-columns: 1fr;
  }
  .calculator-fields li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
  .topic-safety,
  .topic-safety--prominent {
    align-items: flex-start;
    flex-direction: column;
  }
  .topic-page + .site-footer .footer-bottom,
  .canonical-footer .footer-bottom {
    justify-items: start;
    text-align: left;
  }
  .action-options {
    flex-direction: column;
    gap: 5px;
  }
  .device-stage {
    min-height: 690px;
  }
  .phone {
    width: 185px;
    height: 380px;
    right: 36%;
    top: 205px;
  }
  .watch {
    width: 145px;
    height: 165px;
    right: 3%;
    top: 405px;
  }
  .site-footer {
    flex-direction: column;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .legal-page {
    padding-block: 55px 90px;
  }
  .calculator {
    gap: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-parallax],
  [data-background-parallax] {
    transform: none !important;
  }
}
