@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../public/fonts/manrope/manrope-cyrillic-variable.woff2")
    format("woff2");
  unicode-range:
    U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../public/fonts/manrope/manrope-latin-variable.woff2")
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --tiffany: #3bb9b8;
  --tiffany-dark: #177f82;
  --tiffany-deep: #12686b;
  --tiffany-mist: #e8f7f6;
  --tiffany-fog: #f4fbfa;
  --section-fog: #eef9f8;
  --capability-mint: #edf7f1;
  --capability-blue: #edf5fb;
  --capability-rose: #f8eef1;
  --coral: #c98579;
  --graphite: #35333f;
  --graphite-soft: #5e5b67;
  --white: #ffffff;
  --line: #b8dfdc;
  --display: "Manrope", "Segoe UI", Arial, sans-serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
  --shadow-soft: 18px 26px 56px rgba(30, 94, 95, 0.14);
  --shadow-front: 18px 28px 48px rgba(47, 74, 78, 0.18);
  --max-width: 1320px;
  --page-pad: clamp(24px, 5vw, 76px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--graphite);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.health-site-main {
  background: var(--white);
  color: var(--graphite);
}

.health-site-main,
.health-site-main section,
.health-site-main article,
.health-site-main figure,
.health-site-main ol,
.health-site-main li {
  color-scheme: light;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--graphite);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  padding: 24px var(--page-pad);
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  transition:
    padding 180ms ease,
    background-color 180ms ease,
    backdrop-filter 180ms ease,
    border-color 180ms ease;
}

.site-header::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: transparent;
  border-bottom: 0;
  content: "";
  pointer-events: none;
  transition:
    background-color 180ms ease,
    backdrop-filter 180ms ease,
    border-color 180ms ease;
}

.site-header--scrolled {
  padding-block: 12px;
}

.site-header--scrolled::before {
  background: rgba(244, 251, 250, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 223, 220, 0.32);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: start;
  gap: 12px;
  color: var(--graphite);
  text-decoration: none;
}

.brand__mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition:
    width 180ms ease,
    height 180ms ease;
}

.site-header--scrolled .brand__mark {
  width: 44px;
  height: 44px;
}

.brand__wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.brand__prefix,
.brand__name {
  display: block;
}

.brand__prefix {
  color: var(--graphite);
  font-size: 0.82rem;
}

.brand__name {
  color: var(--tiffany-dark);
  font-size: 1.05rem;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(16px, 2.2vw, 36px);
}

.site-nav a,
.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--tiffany-deep);
  font-size: 0.9rem;
  text-decoration: none;
  transition: min-height 180ms ease;
}

.site-header--scrolled .site-nav a {
  min-height: 38px;
}

.site-nav__chat {
  width: 44px;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
}

.site-nav__chat img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-nav a:hover {
  color: var(--tiffany-dark);
  text-decoration: underline;
}

.site-nav a:not(.site-nav__cta):is(:link, :visited, :hover, :focus-visible, :active) {
  color: var(--tiffany-deep) !important;
  text-decoration-color: currentColor;
}

.site-nav__cta {
  min-height: 40px;
  padding: 0 20px;
  background: var(--tiffany-deep);
  color: var(--white) !important;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(18, 104, 107, 0.2);
  font-weight: 800;
  text-decoration: none !important;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-header--scrolled .site-nav__cta {
  min-height: 36px;
}

.site-nav__cta:is(:link, :visited, :hover, :focus-visible, :active) {
  background: var(--tiffany-deep);
  color: var(--white) !important;
  text-decoration: none !important;
  text-decoration-color: transparent !important;
}

.site-nav__cta:hover {
  background: var(--tiffany-dark);
  box-shadow: 0 16px 34px rgba(18, 104, 107, 0.24);
  transform: translateY(-1px);
}

.site-nav__cta:active {
  background: var(--tiffany-dark);
  box-shadow: 0 10px 24px rgba(18, 104, 107, 0.2);
  transform: translateY(0);
}

.site-nav__cta:focus-visible {
  outline: 3px solid rgba(127, 211, 205, 0.45);
  outline-offset: 3px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, 100vh);
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(32px, 4vw, 48px);
  width: 100%;
  margin: 0 auto;
  padding: clamp(120px, 12vh, 148px)
    max(
      var(--page-pad),
      calc((100vw - var(--max-width)) / 2 + var(--page-pad))
    )
    76px;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(74, 141, 255, 0.08), transparent 30%),
    radial-gradient(circle at 88% 38%, rgba(244, 138, 116, 0.09), transparent 25%),
    radial-gradient(circle at 82% 24%, rgba(59, 185, 184, 0.18), transparent 38%),
    linear-gradient(135deg, #fbfffe 0%, var(--tiffany-fog) 52%, #eef9f8 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -30%;
  width: 58%;
  height: 72%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  content: "";
  filter: blur(2px);
}

.hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-bottom: 24px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--tiffany-deep);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.integrations h2,
.privacy-manifesto h2,
.download-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3rem, 6.7vw, 6rem);
}

.hero h1,
.section-heading h2,
.integrations h2,
.privacy-manifesto h2,
.download-section h2,
.safety h2,
.simplicity__copy h3 {
  margin-left: -0.055em;
}

.hero-title__line {
  display: block;
}

.hero__lead {
  max-width: 570px;
  margin: 34px 0 0;
  color: var(--graphite-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button--primary {
  background: var(--graphite);
  color: var(--white) !important;
  box-shadow: 0 12px 28px rgba(18, 104, 107, 0.16);
  text-decoration: none !important;
}

.button--primary:is(:link, :visited, :hover, :focus-visible, :active) {
  color: var(--white) !important;
  text-decoration: none !important;
  text-decoration-color: transparent !important;
}

.hero .button--primary {
  background: var(--tiffany-dark);
}

.button--primary:hover {
  background: var(--tiffany-deep);
  box-shadow: 0 16px 34px rgba(18, 104, 107, 0.24);
  transform: translateY(-1px);
}

.button--primary:active {
  background: var(--tiffany-deep);
  box-shadow: 0 10px 24px rgba(18, 104, 107, 0.2);
  transform: translateY(0);
}

.button--primary:focus-visible {
  outline: 3px solid rgba(127, 211, 205, 0.45);
  outline-offset: 3px;
}

.route-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  color: var(--graphite);
  font-weight: 800;
  text-decoration: none;
}

.route-link svg {
  width: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.route-link:hover span {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.day-archive {
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
  margin: 0;
  justify-self: end;
}

.day-archive__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.day-archive__caption {
  width: 100%;
  margin: -14px 0 0;
  color: var(--graphite-soft);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
}

.navigator,
.simplicity,
.first-route,
.integrations,
.privacy-manifesto,
.download-section,
.safety,
.site-footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.navigator {
  padding: clamp(100px, 12vw, 172px) var(--page-pad);
}

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

.section-heading h2,
.integrations h2,
.privacy-manifesto h2,
.download-section h2,
.safety h2 {
  font-size: clamp(2.2rem, 4.45vw, 4rem);
}

.section-heading > p:last-child,
.integrations__copy > p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.navigator .section-heading > h2 ~ p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.navigator .section-heading > h2 ~ p + p {
  margin-top: 12px;
}

.capability-grid {
  display: none;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 58px;
}

[data-capability-explorer][data-enhanced] .capability-grid {
  display: grid;
}

.capability-card {
  display: grid;
  min-height: 154px;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  padding: 22px 26px;
  border: 2px solid transparent;
  background: var(--capability-mint);
  color: var(--graphite);
  text-align: left;
  cursor: pointer;
}

.capability-card[data-tone="blue"] {
  background: var(--capability-blue);
}

.capability-card[data-tone="rose"] {
  background: var(--capability-rose);
}

.capability-card[data-tone="tiffany"] {
  background: var(--tiffany-mist);
}

.capability-card.is-active {
  border-color: var(--graphite);
  background: var(--tiffany);
}

.capability-card__badge {
  width: auto;
  min-width: 0;
  margin: 0;
  justify-self: start;
  color: var(--graphite);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
}

.capability-card > strong {
  align-self: end;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.1;
}

.capability-card > span:not(.capability-card__badge) {
  line-height: 1.45;
}

.capability-card [data-selected-label] {
  min-height: 1.35em;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-results {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  padding: clamp(54px, 8vw, 92px) 0;
  border-bottom: 1px solid var(--line);
}

.route-panel > div:first-child > p:nth-child(2) {
  margin: 12px 0 0;
  color: var(--tiffany-deep);
  font-weight: 800;
}

.route-panel h3 {
  max-width: 650px;
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.route-panel h3 + p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--graphite-soft);
  font-size: 1.05rem;
}

.route-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.route-panel li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  line-height: 1.35;
}

.route-panel aside {
  max-width: 680px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.route-panel aside strong {
  color: var(--tiffany-deep);
}

.route-panel aside p {
  margin: 8px 0 0;
  color: var(--graphite-soft);
}

.route-panel__screens {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.route-panel__screens figure {
  width: min(100%, 340px);
  margin: 0 auto;
}

.route-panel__screens img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(53, 51, 63, 0.12);
  border-radius: 32px;
  background: var(--white);
}

.route-panel__screens figcaption,
.route-panel__screens > p {
  margin: 12px 0 0;
  color: var(--graphite-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.route-panel__screens > p {
  grid-column: 1 / -1;
  max-width: 520px;
}

[data-capability-explorer][data-enhanced] [data-route-panel][hidden] {
  display: none;
}

.first-route {
  width: 100%;
  padding: clamp(88px, 7vw, 104px)
    max(
      var(--page-pad),
      calc((100vw - var(--max-width)) / 2 + var(--page-pad))
    );
  background: var(--white);
}

.first-route .section-heading {
  max-width: none;
}

.first-route .section-heading h2 {
  max-width: 1120px;
}

.first-route__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  margin: clamp(44px, 4vw, 56px) 0 0;
  padding: 0;
  list-style: none;
}

.first-route__grid::before {
  position: absolute;
  top: 21px;
  right: 22px;
  left: 22px;
  height: 2px;
  background: var(--line);
  content: "";
}

.first-route__step {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 clamp(12px, 2vw, 24px) 0 0;
}

.first-route__step:last-child {
  padding-right: 0;
}

.first-route__step p {
  margin: 14px 0 0;
  color: var(--graphite-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.first-route__num {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--tiffany-dark);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 800;
}

.integrations {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(300px, 0.82fr) minmax(400px, 1.18fr);
  gap: clamp(48px, 5vw, 72px);
  padding: clamp(88px, 7.5vw, 108px)
    max(
      var(--page-pad),
      calc((100vw - var(--max-width)) / 2 + var(--page-pad))
    );
  background: var(--white);
  color: var(--graphite);
}

.integrations h2 {
  max-width: 12ch;
}

.integration-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 3.5vw, 48px);
  row-gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.integration-list li {
  display: grid;
  min-height: 104px;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.integration-mark {
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 14px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(18, 104, 107, 0.16);
  color: var(--tiffany-deep);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.integration-mark--connect {
  background: var(--white);
}

.integration-mark--cardio {
  background: var(--white);
}

.integration-mark--neyrox {
  background: var(--white);
}

.integration-mark--apple {
  color: #e93b62;
  font-size: 1.25rem;
}

.integration-mark--google {
  background: var(--white);
}

.integration-mark--samsung {
  background: var(--white);
}

.integration-mark img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.integration-list__copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.integration-list strong {
  color: var(--graphite);
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.integration-list small {
  color: var(--graphite-soft);
  font-size: 0.78rem;
}

.privacy-manifesto {
  width: 100%;
  padding: clamp(72px, 6vw, 96px)
    max(
      var(--page-pad),
      calc((100vw - var(--max-width)) / 2 + var(--page-pad))
    );
  background: var(--section-fog);
  color: var(--graphite);
}

.privacy-manifesto__intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: end;
}

.privacy-manifesto h2 {
  max-width: 12ch;
}

.privacy-manifesto__lead {
  max-width: 700px;
  margin: 0;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.privacy-manifesto__principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(48px, 7vw, 96px);
  row-gap: clamp(36px, 4vw, 52px);
  margin-top: clamp(48px, 5vw, 64px);
}

.privacy-principle {
  display: grid;
  min-width: 0;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.privacy-principle__icon {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--tiffany-mist);
  color: var(--tiffany-deep);
}

.privacy-principle__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.privacy-principle h3 {
  margin: 2px 0 0;
  color: var(--graphite);
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}

.privacy-principle p {
  max-width: 52ch;
  margin: 14px 0 0;
  color: var(--graphite-soft);
  line-height: 1.65;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(52px, 7vw, 104px);
  padding: clamp(64px, 5.5vw, 88px) var(--page-pad);
  background: var(--white);
  color: var(--graphite);
}

.download-section__copy {
  align-self: center;
}

.download-section h2 {
  max-width: 10ch;
}

.download-section__visual {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.download-section__route {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(112%, 620px);
  height: auto;
  overflow: visible;
  transform: translate(-50%, -50%);
  fill: var(--white);
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  opacity: 0.68;
}

.download-options {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 520px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.download-option {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 20px;
  margin: 0;
  text-align: center;
}

.download-option:nth-child(2) {
  margin-top: 72px;
}

.download-option__code {
  display: grid;
  width: clamp(156px, 15vw, 192px);
  aspect-ratio: 1;
  place-items: center;
  padding: 14px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 14px 20px 42px rgba(30, 94, 95, 0.16);
  color: var(--graphite);
}

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

.download-option__code img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.download-option figcaption {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 10px;
  line-height: 1.35;
}

.download-option strong {
  color: var(--graphite);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 800;
}

.download-option span {
  color: var(--graphite-soft);
  font-size: 0.78rem;
}

.download-option__link {
  display: inline-flex;
  width: auto;
  min-height: 44px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--tiffany-deep);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
  color: var(--tiffany-deep);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.download-option__link:hover {
  background: rgba(127, 211, 205, 0.16);
  color: var(--tiffany-deep);
  transform: translateY(-1px);
}

.download-option__link:active {
  transform: translateY(0);
}

.download-option__link:focus-visible {
  outline: 3px solid rgba(127, 211, 205, 0.45);
  outline-offset: 3px;
}

.safety {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(88px, 7.5vw, 108px) var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.safety > * {
  min-width: 0;
}

.safety h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.safety > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--graphite-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 42px var(--page-pad) 54px;
  background: var(--tiffany-fog);
  box-shadow: 0 0 0 100vmax var(--tiffany-fog);
  clip-path: inset(0 -100vmax);
}

.brand--footer .brand__mark {
  width: 44px;
  height: 44px;
}

.site-footer p {
  margin: 0;
  color: var(--graphite-soft);
  font-size: 0.74rem;
}

.site-footer p + p {
  margin-top: 6px;
}

.site-footer > div {
  max-width: 680px;
}

.site-footer__links {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.site-footer__links span {
  color: var(--graphite-soft);
}

.site-footer__links a {
  color: var(--tiffany-deep);
  font-size: 0.84rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--tiffany-dark);
  text-decoration: underline;
}

.site-footer__links a:is(:link, :visited, :hover, :focus-visible, :active) {
  color: var(--tiffany-deep) !important;
  text-decoration-color: currentColor;
}

.site-footer__chat {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}

.site-footer__chat img {
  width: 32px;
  height: 32px;
  max-width: none;
  object-fit: contain;
}

@media (min-width: 601px) {
  .capability-grid,
  .route-panel__screens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1081px) {
  .capability-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .route-panel {
    grid-template-columns: minmax(320px, 0.82fr) minmax(560px, 1.18fr);
    align-items: start;
    gap: clamp(52px, 8vw, 120px);
  }
}

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

  .day-archive {
    width: min(100%, 580px);
  }

  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .first-route__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .first-route__grid::before {
    top: 22px;
    right: auto;
    bottom: 22px;
    left: 21px;
    width: 2px;
    height: auto;
  }

  .first-route__step {
    display: grid;
    padding: 0 0 40px;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 20px;
  }

  .first-route__step:last-child {
    padding-bottom: 0;
  }

  .first-route__num {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .first-route__step h3 {
    grid-column: 2;
    margin-top: 5px;
  }

  .first-route__step h3 + p {
    grid-column: 2;
    margin-top: 12px;
  }

}

@media (max-width: 820px) {
  .site-header {
    padding-top: 18px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 82px;
    border-radius: 0;
  }

  .hero h1 {
    max-width: 590px;
  }

  .hero__copy {
    padding-bottom: 0;
  }

  .day-archive {
    width: min(100%, 620px);
    margin: 36px auto 0;
  }

  .integrations,
  .privacy-manifesto__intro,
  .download-section,
  .safety {
    grid-template-columns: minmax(0, 1fr);
  }

  .download-section {
    gap: 36px;
  }

  .download-section__copy {
    padding-top: 0;
  }

  .download-section__visual {
    min-height: 390px;
  }
}

@media (max-width: 600px) {
  :root {
    --page-pad: 22px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    gap: 16px;
  }

  .brand__name {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 120px;
    background:
      radial-gradient(circle at 68% 54%, rgba(74, 141, 255, 0.07), transparent 28%),
      radial-gradient(circle at 82% 68%, rgba(244, 138, 116, 0.08), transparent 24%),
      radial-gradient(circle at 52% 66%, rgba(59, 185, 184, 0.18), transparent 36%),
      linear-gradient(165deg, #ffffff 0%, #ffffff 30%, var(--tiffany-fog) 66%, #eef9f8 100%);
  }

  .hero h1 {
    font-size: clamp(3rem, 12.3vw, 4rem);
  }

  .hero__lead {
    margin-top: 26px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__actions .button {
    width: min(100%, 265px);
  }

  .route-link {
    margin-top: 28px;
  }

  .day-archive {
    width: min(94%, 520px);
    margin: 30px auto 0;
  }

  .day-archive__caption {
    width: min(100%, 36rem);
    margin: -6px auto 0;
    font-size: clamp(0.62rem, 2.7vw, 0.72rem);
    text-wrap: balance;
    white-space: normal;
  }

  .navigator {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading h2,
  .integrations h2,
  .privacy-manifesto h2,
  .download-section h2,
  .safety h2 {
    font-size: clamp(2.2rem, 9vw, 2.4rem);
  }

  .integrations {
    gap: 54px;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .privacy-manifesto {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .privacy-manifesto__principles {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 36px;
    margin-top: 40px;
  }

  .download-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .download-section__visual {
    min-height: 280px;
  }

  .download-options {
    gap: 18px;
  }

  .download-option {
    gap: 14px;
  }

  .download-option:nth-child(2) {
    margin-top: 38px;
  }

  .download-option__code {
    width: min(100%, 142px);
    padding: 11px;
    border-radius: 14px;
  }

  .download-section__route {
    display: none;
    width: 108%;
    stroke-width: 3.5;
  }

  .integration-list li {
    min-height: 96px;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 28px;
  }

  .site-footer > div {
    grid-row: 3;
  }

  .site-footer__links {
    justify-self: start;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.8rem;
    line-height: 1.02;
  }

  .day-archive {
    margin-top: 24px;
  }
}

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


.first-route__step h3 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.first-route__step h3 + p {
  margin-top: 14px;
  color: var(--graphite-soft);
  font-size: 0.96rem;
}

.simplicity {
  padding: clamp(72px, 6vw, 96px) var(--page-pad) clamp(44px, 5vw, 64px);
  background: var(--section-fog);
  box-shadow: 0 0 0 100vmax var(--section-fog);
  clip-path: inset(0 -100vmax);
  color: var(--graphite);
}

.simplicity__heading {
  max-width: 980px;
}

.simplicity__chapters {
  margin-top: clamp(40px, 3.5vw, 52px);
}

.simplicity__chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding: clamp(28px, 3.2vw, 44px) 0;
}

.simplicity__chapter + .simplicity__chapter {
  border-top: 1px solid var(--line);
}

.simplicity__chapter:nth-child(even) {
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
}

.simplicity__chapter:nth-child(even) .simplicity__copy {
  order: 2;
}

.simplicity__copy {
  max-width: 720px;
}

.simplicity__index {
  margin: 0 0 12px;
  color: var(--tiffany-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.6;
}

.simplicity__copy h3 {
  margin: 0 0 0 -0.055em;
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.simplicity__lead {
  margin: 28px 0 0;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 800;
}

.simplicity__body {
  max-width: 58ch;
  margin: 14px 0 0;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.simplicity__download {
  display: flex;
  justify-content: center;
  margin-top: clamp(20px, 3vw, 32px);
}

.simplicity__download-link {
  background: var(--tiffany-deep);
}

.simplicity__download-link:hover,
.simplicity__download-link:active {
  background: var(--tiffany-dark);
}

.simplicity__visual {
  position: relative;
  isolation: isolate;
  display: grid;
  min-width: 0;
  min-height: clamp(360px, 34vw, 460px);
  place-items: center;
  margin: 0;
}

.simplicity__visual--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.simplicity__visual::before {
  position: absolute;
  z-index: -1;
  width: min(92%, 360px);
  aspect-ratio: 0.82;
  border-radius: 44% 56% 61% 39% / 52% 38% 62% 48%;
  background: radial-gradient(
    circle at 50% 46%,
    var(--tiffany-mist) 0%,
    transparent 70%
  );
  filter: blur(18px);
  content: "";
}

.simplicity__visual img {
  width: auto;
  max-width: min(72%, 250px);
  height: auto;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.simplicity__visual--pair img {
  max-width: min(100%, 210px);
}


.integrations__copy > p:not(.section-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

@media (max-width: 820px) {
  .simplicity__chapter,
  .simplicity__chapter:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .simplicity__chapter:nth-child(even) .simplicity__copy {
    order: 0;
  }

  .simplicity__visual {
    min-height: 400px;
  }

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


@media (max-width: 600px) {
  .first-route__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .first-route__step h3 {
    min-height: 44px;
    display: flex;
    align-items: center;
    margin-top: 0;
  }

  .simplicity {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .simplicity__chapters {
    margin-top: 32px;
  }

  .simplicity__chapter {
    gap: 26px;
    padding: 28px 0;
  }

  .simplicity__copy h3 {
    font-size: clamp(1.75rem, 7.5vw, 2.1rem);
  }

  .simplicity__visual {
    min-height: 340px;
  }

  .simplicity__visual img {
    max-width: min(68vw, 220px);
    max-height: 460px;
  }

  .simplicity__visual--pair img {
    max-width: min(42vw, 170px);
  }

  .integration-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .integration-list li {
    min-height: 88px;
  }
}
