:root {
  --ink: #092e24;
  --ink-soft: #31584d;
  --forest: #063126;
  --forest-deep: #021f18;
  --green: #0b7b67;
  --green-bright: #22b455;
  --mint: #bcebdd;
  --mint-soft: #e1f3ec;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --clay: #d75b32;
  --yellow: #f3c65d;
  --line: rgba(9, 46, 36, 0.14);
  --shadow: 0 30px 70px rgba(4, 39, 30, 0.14);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--forest-deep);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(9, 46, 36, 0.08);
  background: rgba(246, 241, 232, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(10, 123, 103, 0.18);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 720;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta):focus-visible {
  color: var(--green);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  transition: transform 180ms ease, background-color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--green);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  background:
    linear-gradient(130deg, rgba(188, 235, 221, 0.75) 0%, rgba(246, 241, 232, 0.2) 43%),
    var(--cream);
}

.hero::after {
  position: absolute;
  right: -18%;
  bottom: -52%;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background: rgba(188, 235, 221, 0.42);
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 8%;
  left: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(11, 123, 103, 0.25);
}

.hero-orb-two {
  top: 23%;
  right: 8%;
  width: 90px;
  height: 90px;
  background: rgba(243, 198, 93, 0.65);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 82px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--mint);
}

.hero h1,
.section-heading h2,
.wear-copy h2,
.faq-heading h2,
.privacy-card h2,
.final-cta h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 em,
.centered-heading h2 em {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  min-width: 190px;
  background: var(--forest);
  color: white;
  box-shadow: 0 14px 32px rgba(6, 49, 38, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green);
  box-shadow: 0 18px 38px rgba(6, 49, 38, 0.28);
}

.button-primary svg {
  width: 25px;
  fill: currentColor;
}

.button-primary span {
  display: grid;
  text-align: left;
}

.button-primary small {
  font-size: 9px;
  letter-spacing: 0.13em;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.6);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--paper);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 720;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-list svg {
  width: 16px;
  fill: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.phone-stage {
  position: absolute;
  inset: 26px 24px 8px 52px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  inset: 10% 4% 2% 7%;
  border-radius: 48% 48% 40% 40%;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.9), rgba(188, 235, 221, 0.25) 64%, transparent 72%);
  filter: blur(12px);
}

.hero-phone {
  position: relative;
  z-index: 1;
  width: min(405px, 88%);
  border-radius: 34px 34px 22px 22px;
  box-shadow: 0 42px 80px rgba(3, 43, 32, 0.22);
  clip-path: inset(0 0 0 0 round 34px 34px 22px 22px);
  transform: rotate(2deg);
}

.watch-card {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 88px;
  width: 176px;
  padding: 11px 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.87);
  box-shadow: 0 22px 50px rgba(3, 43, 32, 0.18);
  backdrop-filter: blur(12px);
  transform: rotate(-5deg);
}

.watch-card img {
  border-radius: 50%;
}

.watch-label {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.visual-caption {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 185px;
  padding: 14px 16px;
  border: 1px solid rgba(9, 46, 36, 0.08);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 14px 40px rgba(4, 39, 30, 0.12);
  backdrop-filter: blur(10px);
  font-size: 11px;
  line-height: 1.45;
}

.visual-caption strong {
  font-size: 13px;
}

.caption-top {
  top: 40px;
  right: -12px;
  padding-left: 50px;
}

.caption-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
}

.caption-bottom {
  bottom: 20px;
  left: -2px;
  display: flex;
  align-items: center;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(34, 180, 85, 0.14);
}

.signal-strip {
  padding: 25px 0;
  background: var(--forest);
  color: white;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid div {
  display: grid;
  gap: 2px;
  padding: 3px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-grid div:first-child {
  padding-left: 0;
}

.signal-grid div:last-child {
  border-right: 0;
}

.signal-grid strong {
  color: var(--mint);
  font-size: 14px;
}

.signal-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.section {
  padding: 120px 0;
}

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

.section-heading h2,
.wear-copy h2,
.faq-heading h2,
.privacy-card h2,
.final-cta h2 {
  font-size: clamp(42px, 5.2vw, 70px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 72px;
}

.split-heading > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.feature-card {
  position: relative;
  min-height: 335px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.feature-card-primary {
  background: var(--mint-soft);
}

.feature-card-wear {
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(243, 198, 93, 0.22), transparent 30%),
    var(--forest);
}

.feature-card-wear p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.feature-number {
  position: absolute;
  top: 32px;
  right: 34px;
  color: rgba(9, 46, 36, 0.28);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.feature-card-wear .feature-number {
  color: rgba(255, 255, 255, 0.38);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--paper);
  color: var(--green);
  box-shadow: 0 10px 28px rgba(4, 39, 30, 0.08);
}

.feature-icon svg {
  width: 26px;
  fill: currentColor;
}

.feature-card h3 {
  max-width: 390px;
  margin: 56px 0 12px;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.feature-card p {
  max-width: 510px;
  margin: 0;
  color: var(--ink-soft);
}

.showcase-section {
  overflow: hidden;
}

.centered-heading {
  max-width: 790px;
  margin: 0 auto 70px;
  text-align: center;
}

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

.centered-heading > p:last-child {
  max-width: 590px;
  margin: 25px auto 0;
  color: var(--ink-soft);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.showcase-card {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  border-radius: 38px;
}

.showcase-card figcaption {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 42px;
  display: grid;
  max-width: 420px;
}

.showcase-card figcaption span {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-card figcaption strong {
  font-size: clamp(30px, 3.8vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.showcase-card img {
  position: absolute;
  left: 50%;
  width: 470px;
  max-width: 84%;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 30px 70px rgba(3, 43, 32, 0.24);
}

.showcase-light {
  background: linear-gradient(145deg, #d7eee7, #f7f1e8 62%);
}

.showcase-light img {
  top: 210px;
  transform: translateX(-50%) rotate(-2deg);
}

.showcase-dark {
  background:
    radial-gradient(circle at 15% 10%, rgba(27, 130, 109, 0.65), transparent 40%),
    var(--forest-deep);
  color: white;
}

.showcase-dark figcaption span {
  color: var(--yellow);
}

.showcase-dark img {
  top: 220px;
  transform: translateX(-50%) rotate(2deg);
}

.steps-section {
  background: var(--forest);
  color: white;
}

.steps-section .split-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.steps-grid li {
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.step-index {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--forest);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 800;
}

.steps-grid h3 {
  margin: 64px 0 12px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.steps-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.wear-section {
  overflow: hidden;
  background: var(--paper);
}

.wear-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.wear-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 720;
}

.check-list span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--green);
  font-size: 13px;
}

.text-link {
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.watch-stage {
  position: relative;
  min-height: 550px;
}

.watch-stage::before {
  position: absolute;
  inset: 5% 5% 0;
  border-radius: 50% 50% 18% 18%;
  background:
    linear-gradient(rgba(9, 46, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 46, 36, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: 32px 32px;
  content: "";
}

.watch-ring {
  position: absolute;
  z-index: 1;
  top: 80px;
  left: 50%;
  width: 360px;
  height: 360px;
  border: 34px solid var(--forest);
  border-radius: 50%;
  box-shadow: 0 30px 70px rgba(3, 43, 32, 0.25);
  transform: translateX(-50%);
}

.watch-stage > img {
  position: absolute;
  z-index: 2;
  top: 99px;
  left: 50%;
  width: 322px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.watch-note {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 145px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 42px rgba(4, 39, 30, 0.13);
  backdrop-filter: blur(10px);
}

.watch-note strong {
  font-size: 21px;
  letter-spacing: -0.03em;
}

.watch-note span {
  color: var(--ink-soft);
  font-size: 11px;
}

.watch-note-top {
  top: 42px;
  right: 8px;
}

.watch-note-bottom {
  bottom: 40px;
  left: 5px;
}

.privacy-teaser {
  padding-top: 0;
  background: var(--paper);
}

.privacy-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 48px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0, rgba(188, 235, 221, 0.18), transparent 30%),
    var(--forest);
  color: white;
}

.privacy-card h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.privacy-card p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.privacy-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 22px;
  background: rgba(188, 235, 221, 0.12);
  color: var(--mint);
}

.privacy-mark svg {
  width: 38px;
  fill: currentColor;
}

.button-cream {
  background: var(--cream);
  color: var(--forest);
  white-space: nowrap;
}

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading > p:last-child {
  margin-top: 26px;
  color: var(--ink-soft);
}

.faq-heading a {
  color: var(--green);
  font-weight: 750;
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 56px 26px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--green);
  content: "+";
  font-size: 21px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 56px 26px 0;
  color: var(--ink-soft);
}

.faq-list details a {
  color: var(--green);
  font-weight: 750;
}

.final-cta {
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(188, 235, 221, 0.18), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(243, 198, 93, 0.14), transparent 25%),
    var(--forest-deep);
  color: white;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: end;
  gap: 90px;
}

.final-cta-inner > div:last-child > p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
}

.button-yellow {
  background: var(--yellow);
  color: var(--forest-deep);
}

.site-footer {
  padding: 72px 0 28px;
  background: #011a14;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.brand-footer {
  color: white;
}

.footer-brand > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 7px;
  color: var(--mint);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 62px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

/* Interior pages */
.interior {
  background: var(--paper);
}

.page-header {
  background: var(--cream);
}

.page-hero {
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 80% 10%, rgba(188, 235, 221, 0.8), transparent 28%),
    var(--cream);
}

.page-hero-inner {
  max-width: 860px;
}

.page-hero h1 {
  font-size: clamp(52px, 7vw, 86px);
}

.page-hero .lede {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 13px;
}

.page-meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
}

.content-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 80px;
  justify-content: center;
  padding: 84px 0 120px;
}

.content-toc {
  position: sticky;
  top: 118px;
  display: grid;
  align-self: start;
  gap: 9px;
  font-size: 13px;
}

.content-toc strong {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.content-toc a {
  color: var(--ink-soft);
  text-decoration: none;
}

.content-toc a:hover,
.content-toc a:focus-visible {
  color: var(--green);
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 58px 0 16px;
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.prose h3 {
  margin: 32px 0 10px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  padding-left: 24px;
}

.prose li + li {
  margin-top: 8px;
}

.prose a {
  color: var(--green);
  font-weight: 720;
}

.notice {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--green);
  border-radius: 0 18px 18px 0;
  background: var(--mint-soft);
}

.notice p {
  margin: 0;
  color: var(--ink);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 48px;
}

.support-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

.support-card h2 {
  margin: 0 0 10px;
  font-size: 21px;
}

.support-card p {
  margin: 0;
  font-size: 14px;
}

.contact-panel {
  margin-top: 58px;
  padding: 34px;
  border-radius: 24px;
  background: var(--forest);
  color: white;
}

.contact-panel h2 {
  margin: 0 0 12px;
  color: white;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel .button {
  margin-top: 8px;
}

.not-found {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}

.not-found-inner {
  max-width: 620px;
}

.not-found-mark {
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 120px;
  font-style: italic;
  line-height: 1;
}

.not-found h1 {
  margin: 8px 0 16px;
  font-size: clamp(42px, 7vw, 70px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.not-found p {
  margin-bottom: 30px;
  color: var(--ink-soft);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a:nth-child(2),
  .main-nav a:nth-child(3) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 28px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .phone-stage {
    inset-inline: 15px 0;
  }

  .caption-top {
    right: -10px;
  }

  .watch-card {
    right: -8px;
    width: 150px;
  }

  .split-heading {
    gap: 40px;
  }

  .wear-grid {
    gap: 44px;
  }

  .privacy-card {
    grid-template-columns: auto 1fr;
  }

  .privacy-card .button {
    grid-column: 2;
    justify-self: start;
  }

  .faq-grid {
    gap: 50px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: relative;
  }

  .nav-shell {
    min-height: 70px;
  }

  .main-nav a {
    display: none;
  }

  .main-nav .nav-cta {
    display: inline-flex;
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero {
    padding: 66px 0 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(51px, 15vw, 76px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 190px;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, max-content);
  }

  .hero-visual {
    width: min(100%, 520px);
    min-height: 660px;
    margin-inline: auto;
  }

  .phone-stage {
    inset: 35px 12px 10px 32px;
  }

  .hero-phone {
    width: min(390px, 83%);
  }

  .caption-top {
    right: 0;
  }

  .caption-bottom {
    left: 4px;
  }

  .watch-card {
    right: 0;
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .signal-grid div:nth-child(2) {
    border-right: 0;
  }

  .signal-grid div:nth-child(3) {
    padding-left: 0;
  }

  .section {
    padding: 86px 0;
  }

  .split-heading,
  .wear-grid,
  .faq-grid,
  .final-cta-inner,
  .footer-grid,
  .content-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-grid,
  .showcase-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    margin-top: 48px;
  }

  .feature-card {
    min-height: 300px;
  }

  .showcase-card {
    min-height: 630px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .steps-grid li {
    display: grid;
    min-height: 0;
    grid-template-columns: auto 1fr;
    gap: 22px;
  }

  .steps-grid h3 {
    margin: 0 0 8px;
  }

  .wear-grid {
    gap: 20px;
  }

  .wear-copy {
    position: relative;
    z-index: 2;
  }

  .watch-stage {
    min-height: 500px;
  }

  .privacy-card {
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .privacy-card .button {
    grid-column: auto;
  }

  .faq-heading {
    position: static;
  }

  .final-cta-inner {
    gap: 28px;
  }

  .footer-links {
    gap: 18px;
  }

  .footer-bottom {
    display: grid;
  }

  .page-hero {
    padding: 68px 0 58px;
  }

  .content-shell {
    padding: 58px 0 90px;
  }

  .content-toc {
    position: static;
    display: none;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .brand {
    font-size: 18px;
  }

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

  .nav-cta {
    max-width: 132px;
    text-align: center;
  }

  .hero h1 {
    font-size: 49px;
  }

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

  .hero-visual {
    min-height: 560px;
  }

  .phone-stage {
    inset-inline: 0;
  }

  .hero-phone {
    width: 82%;
  }

  .caption-top {
    top: 15px;
    min-width: 165px;
  }

  .caption-bottom {
    bottom: 0;
    min-width: auto;
  }

  .watch-card {
    bottom: 70px;
    width: 125px;
  }

  .signal-grid div {
    padding-inline: 16px;
  }

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

  .feature-card h3 {
    margin-top: 42px;
  }

  .showcase-card {
    min-height: 550px;
    border-radius: 28px;
  }

  .showcase-card figcaption {
    top: 28px;
    left: 28px;
  }

  .showcase-light img,
  .showcase-dark img {
    top: 190px;
  }

  .watch-ring {
    width: 290px;
    height: 290px;
  }

  .watch-stage > img {
    top: 99px;
    width: 252px;
  }

  .watch-note-top {
    right: -3px;
  }

  .watch-note-bottom {
    bottom: 60px;
  }

  .privacy-mark {
    width: 58px;
    height: 58px;
  }

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

  .footer-links div:last-child {
    grid-column: 1 / -1;
  }
}

@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;
  }
}
