:root {
  color-scheme: light;
  --sun: #f5b83f;
  --sun-soft: #fff2cc;
  --leaf: #0f766e;
  --leaf-strong: #0a5f59;
  --leaf-soft: #e5f5f0;
  --coral: #d85d47;
  --sky: #2563eb;
  --sky-soft: #e9f3ff;
  --blue: #2375ff;
  --purple: #8061f2;
  --ink: #171412;
  --muted: #5c635f;
  --line: #d9e4df;
  --canvas: #fbf6ea;
  --card: #ffffff;
  --paper: #f8f5ed;
  --surface: #ffffff;
  --surface-alt: #f3fbff;
  --surface-strong: #eef8f3;
  --footer: #12100e;
  --footer-text: rgba(255, 255, 255, 0.78);
  --focus: #1d8cff;
  --soft-shadow: 0 18px 44px rgba(15, 31, 51, 0.08);
  --max: 1120px;
  --radius: 8px;
  --navy: #071a2f;
  --border: #dbe2e8;
  --badge-blue: #e7f1ff;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --sun: #ffc857;
    --sun-soft: #3a3017;
    --leaf: #35c2b3;
    --leaf-strong: #68d6ca;
    --leaf-soft: #102520;
    --coral: #ff8d77;
    --sky: #8dbdff;
    --sky-soft: #142033;
    --ink: #f7f4ed;
    --muted: #c7c6bd;
    --line: #3a4742;
    --paper: #12100e;
    --surface: #1b1915;
    --surface-alt: #151d1a;
    --surface-strong: #102520;
    --footer: #090807;
    --footer-text: rgba(247, 244, 237, 0.78);
    --focus: #8fc5ff;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  touch-action: manipulation;
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.08em 0.32em;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface-alt), var(--paper) 35%);
  font-family: "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.93em;
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  border-radius: var(--radius);
  padding: 10px 14px;
  color: #12100e;
  background: var(--sun);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 25%);
  background: color-mix(in srgb, var(--paper), transparent 8%);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  color: var(--ink);
  font-family:
    ui-rounded,
    "SF Pro Rounded",
    "Avenir Next",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 21px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/logo-sun.svg") center / contain no-repeat;
}

.brand-mark::after {
  content: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.nav-links a {
  position: relative;
  border-radius: var(--radius);
  padding: 6px 2px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--ink);
}

.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.home-page {
  background:
    linear-gradient(180deg, #fbf6ea 0, #ffffff 44%, #f8fbff 100%), #ffffff;
}

.home-page .site-header {
  border-bottom: 0;
  background: color-mix(in srgb, #fbf6ea, transparent 9%);
}

.home-page .nav {
  width: min(calc(100% - 64px), 1240px);
  min-height: 84px;
}

.home-page .brand {
  gap: 10px;
  color: #071a2f;
  font-size: 27px;
  font-weight: 760;
}

.home-page .nav-links {
  gap: 34px;
  color: #071a2f;
  font-size: 15px;
  font-weight: 680;
}

.nav-store-badge,
.store-callout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-store-badge {
  width: 120px;
  min-height: 40px;
  flex: 0 0 auto;
}

.nav-store-badge img,
.store-callout img {
  width: 100%;
  height: auto;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #071a2f;
  background: #fbf6ea;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(251, 246, 234, 0.98) 0%,
    rgba(251, 246, 234, 0.94) 31%,
    rgba(251, 246, 234, 0.35) 48%,
    rgba(251, 246, 234, 0) 66%
  );
}

.landing-hero::after {
  content: none;
}

.hero-background-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-background-picture img,
.hero-background-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 46% center;
}

.hero-scene {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1240px);
  min-height: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.landing-hero .hero-copy-block {
  width: min(100%, 500px);
  padding: 46px 0 64px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  border-radius: 999px;
  padding: 8px 15px;
  color: #9b6a00;
  background: #fff0bd;
  font-size: 13px;
  font-weight: 680;
}

.mini-sun,
.sun-icon,
.uv-icon,
.watch-icon,
.shortcuts-icon,
.cloud-icon,
.lock-icon,
.help-icon,
.resource-icon {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.mini-sun::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: #ffb000;
  box-shadow:
    0 -11px 0 -7px #ffb000,
    0 11px 0 -7px #ffb000,
    11px 0 0 -7px #ffb000,
    -11px 0 0 -7px #ffb000,
    8px 8px 0 -7px #ffb000,
    -8px 8px 0 -7px #ffb000,
    8px -8px 0 -7px #ffb000,
    -8px -8px 0 -7px #ffb000;
}

.mini-sun::after {
  content: none;
}

.landing-hero h1 {
  max-width: 470px;
  margin: 0;
  color: #10243b;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 880;
  letter-spacing: 0;
}

.landing-hero .hero-copy {
  max-width: 470px;
  margin: 24px 0 0;
  color: #34465a;
  font-size: 17px;
  line-height: 1.48;
}

.hero-actions {
  margin-top: 26px;
}

.store-callout {
  width: 180px;
  min-height: 60px;
}

.compatibility {
  margin: 14px 0 0;
  color: #526071;
  font-size: 15px;
}

.feature-showcase,
.home-panel-section,
.resources-section {
  background: #ffffff;
}

.feature-showcase {
  position: relative;
  z-index: 2;
  margin-top: -18px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 54px 0 58px;
}

.feature-showcase h2,
.resources-section h2 {
  margin: 0;
  color: #10243b;
  text-align: center;
  font-size: 28px;
  line-height: 1.16;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.feature-column {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(16, 36, 59, 0.1);
  overflow: hidden;
}

.feature-column h3 {
  min-height: 37px;
  margin: 0;
  color: #10243b;
  font-size: 16px;
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.feature-column h3 span {
  display: block;
}

.feature-column p {
  min-height: 43px;
  margin: 0;
  color: #34465a;
  font-size: 12px;
  line-height: 1.45;
}

.feature-visual {
  width: 100%;
  margin: 10px 0 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fbf6ea);
  box-shadow: 0 14px 30px rgba(16, 36, 59, 0.08);
  overflow: hidden;
}

.feature-visual img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top center;
}

.home-panel-section {
  padding: 34px 0 44px;
}

.panel-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.soft-panel {
  position: relative;
  min-height: 286px;
  border-radius: 16px;
  padding: 30px 32px;
  overflow: hidden;
}

.privacy-panel {
  background:
    linear-gradient(
      90deg,
      rgba(246, 255, 244, 0.88),
      rgba(255, 255, 255, 0.94)
    ),
    #eef8e8;
}

.privacy-panel::before {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(249, 184, 0, 0.28) 0 22%,
      transparent 23%
    ),
    radial-gradient(
      circle at 50% 50%,
      transparent 0 39%,
      rgba(249, 184, 0, 0.18) 40% 42%,
      transparent 43%
    ),
    radial-gradient(
      circle at 50% 50%,
      transparent 0 58%,
      rgba(15, 118, 110, 0.14) 59% 61%,
      transparent 62%
    );
}

.support-panel {
  background:
    linear-gradient(
      135deg,
      rgba(239, 248, 255, 0.96),
      rgba(224, 240, 255, 0.92)
    ),
    #e8f4ff;
}

.soft-panel h2 {
  margin: 0 0 16px;
  color: #10243b;
  font-size: 25px;
  line-height: 1.15;
}

.panel-icon {
  position: absolute;
  left: 32px;
  top: 28px;
  width: 42px;
  height: 42px;
}

.lock-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 16px;
  width: 26px;
  height: 20px;
  border: 3px solid #5d8b4e;
  border-radius: 5px;
}

.lock-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 4px;
  width: 16px;
  height: 19px;
  border: 3px solid #5d8b4e;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.help-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 3px solid #2f8dff;
  border-radius: 999px;
  box-shadow:
    0 -16px 0 -10px #2f8dff,
    0 16px 0 -10px #2f8dff,
    16px 0 0 -10px #2f8dff,
    -16px 0 0 -10px #2f8dff;
}

.soft-panel > div {
  position: relative;
  z-index: 1;
  padding-left: 62px;
}

.panel-list {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.panel-list li {
  display: grid;
  gap: 2px;
  color: #34465a;
  font-size: 13px;
  line-height: 1.3;
}

.panel-list strong {
  color: #10243b;
  font-size: 14px;
  line-height: 1.25;
}

.soft-panel a {
  color: #0d6eed;
  font-size: 13px;
  font-weight: 740;
  text-decoration: none;
}

.support-actions {
  display: grid;
  gap: 10px;
}

.support-actions a {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 50px;
  align-content: center;
  border-radius: 12px;
  padding: 9px 36px 9px 16px;
  color: #10243b;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 20px rgba(47, 141, 255, 0.07);
}

.support-actions a::after,
.resource-card::after {
  content: ">";
  position: absolute;
  right: 16px;
  top: 50%;
  color: #0d6eed;
  transform: translateY(-50%);
}

.support-actions span {
  font-size: 14px;
  font-weight: 760;
}

.support-actions small {
  color: #526071;
  font-size: 12px;
  line-height: 1.28;
}

.resources-section {
  padding: 6px 0 clamp(104px, 10vw, 156px);
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.resource-card {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  min-height: 68px;
  align-content: center;
  gap: 5px;
  border: 1px solid #dbe2e8;
  border-radius: 14px;
  padding: 10px 22px 10px 12px;
  color: #10243b;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 36, 59, 0.05);
  text-decoration: none;
}

.resource-card strong,
.resource-card small {
  grid-column: 2;
}

.resource-card strong {
  font-size: 13px;
  line-height: 1.1;
}

.resource-card small {
  color: #526071;
  font-size: 10px;
  line-height: 1.2;
}

.resource-icon {
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  border: 2px solid #2f8dff;
  border-radius: 8px;
  transform: rotate(-35deg);
}

.globe-icon {
  border-radius: 999px;
  transform: none;
}

.shortcuts-line-icon {
  border-radius: 9px;
  transform: rotate(45deg);
}

.shield-line-icon {
  border-radius: 999px 999px 10px 10px;
  transform: none;
}

.home-page .site-footer {
  border-top: 1px solid #e8edf2;
  color: #526071;
  background: #ffffff;
}

.footer.home-footer {
  width: min(calc(100% - 64px), 1240px);
  align-items: center;
  padding: 24px 0;
}

.home-footer nav {
  justify-content: center;
}

.home-footer a {
  color: #526071;
}

.home-footer p {
  margin: 0;
}

.footer-brand {
  color: #10243b;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(
        90deg,
        color-mix(in srgb, var(--sun-soft), transparent 45%) 1px,
        transparent 1px
      )
      0 0 / 88px 88px,
    linear-gradient(
      180deg,
      var(--paper) 0%,
      var(--surface-alt) 64%,
      var(--surface) 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 72px 0 80px;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--leaf-strong);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.on-surface {
  color: var(--leaf-strong);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: 64px;
  line-height: 1.01;
  font-weight: 880;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
}

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

.actions.compact {
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 780;
  text-decoration: none;
}

.button.primary {
  color: #12100e;
  background: var(--sun);
}

.button.secondary {
  color: var(--leaf-strong);
  border-color: color-mix(in srgb, var(--leaf), var(--line) 44%);
  background: var(--surface);
}

.button.tertiary {
  color: var(--leaf-strong);
  border-color: var(--line);
  background: var(--surface);
}

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

.hero-media {
  position: relative;
  min-height: 520px;
}

.phone-frame {
  position: absolute;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--line), var(--ink) 8%);
  border-radius: 34px;
  padding: 10px;
  background: color-mix(in srgb, var(--surface), var(--paper) 20%);
  box-shadow: 0 28px 70px rgba(23, 20, 18, 0.18);
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 560 / 1216;
  border-radius: 25px;
  object-fit: cover;
  object-position: top center;
  background: var(--surface);
}

.phone-frame-primary {
  top: 0;
  right: 80px;
  width: 250px;
}

.phone-frame-secondary {
  right: 0;
  bottom: 0;
  width: 210px;
  background: color-mix(in srgb, var(--sky-soft), var(--surface) 65%);
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section.tight {
  padding: 58px 0;
}

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

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

.section-heading h2,
.content h1,
.content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.section-heading p,
.content .lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.feature-list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.feature {
  min-height: 218px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--sun);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
}

.feature:nth-child(2) {
  border-top-color: var(--leaf);
}

.feature:nth-child(3) {
  border-top-color: var(--coral);
}

.feature:nth-child(4) {
  border-top-color: var(--sky);
}

.feature:nth-child(5) {
  border-top-color: var(--leaf-strong);
}

.feature-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
}

.feature h3,
.support-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.15;
}

.feature p,
.support-item p,
.content p,
.content li {
  color: var(--muted);
}

.feature p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: 58px;
  align-items: center;
}

.hero-inner > *,
.split > *,
.privacy-row > * {
  min-width: 0;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--leaf-strong);
  font-weight: 850;
}

.timeline-item h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 20px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.screen-figure {
  margin: 22px 0 0 64px;
  width: min(100%, 246px);
}

.screen-figure img {
  width: 100%;
  aspect-ratio: 560 / 1216;
  border: 1px solid var(--line);
  border-radius: 28px;
  object-fit: contain;
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(23, 20, 18, 0.16);
}

.screen-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.docs-band {
  background: var(--surface);
}

.docs-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.docs-card {
  display: grid;
  min-height: 142px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
}

.docs-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.docs-card strong {
  color: var(--leaf-strong);
  font-size: 21px;
  line-height: 1.18;
}

.docs-card:hover {
  border-color: color-mix(in srgb, var(--leaf), var(--line) 34%);
}

.privacy-band {
  border-block: 1px solid var(--line);
  background: var(--surface-strong);
}

.privacy-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.48fr);
  gap: 42px;
  align-items: center;
}

.privacy-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.privacy-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.privacy-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--leaf);
}

.content {
  width: min(calc(100% - 32px), 860px);
  margin: 0 auto;
  padding: 76px 0 clamp(112px, 12vw, 180px);
}

.content h1 {
  font-size: 48px;
}

.content h2 {
  margin-top: 44px;
  font-size: 28px;
}

.content h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.content p,
.content li {
  font-size: 17px;
}

.content ul {
  padding-left: 22px;
}

.content a,
.footer a,
.privacy-points a {
  color: var(--leaf-strong);
  font-weight: 730;
  overflow-wrap: anywhere;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.support-meta {
  margin-top: 12px;
  color: #647386;
  font-size: 14px;
  font-weight: 650;
}

.support-contact-chips,
.contact-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.support-contact-chips a,
.contact-chip-grid a {
  border: 1px solid color-mix(in srgb, var(--blue), var(--line) 64%);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--navy);
  background: #ffffff;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.docs-index-card {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 12px 16px;
  align-items: start;
  color: var(--ink);
  font-weight: 400;
  text-decoration: none;
}

.docs-index-card:hover {
  border-color: color-mix(in srgb, var(--blue), var(--line) 38%);
  box-shadow: 0 12px 30px rgba(15, 31, 51, 0.07);
}

.docs-index-card .resource-icon {
  grid-row: 1 / span 2;
  margin-top: 2px;
}

.docs-index-card h2 {
  margin: 0;
  font-weight: 780;
}

.docs-index-card p {
  grid-column: 2 / 4;
  margin: 0;
  font-weight: 520;
}

.card-chevron {
  color: var(--blue);
  font-size: 28px;
  font-weight: 650;
  line-height: 1;
}

.support-action-panel {
  margin-top: 30px;
  border: 1px solid #d8e9ff;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(135deg, #edf6ff 0%, #f9fcff 100%);
}

.support-action-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(47, 141, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.support-action-row + .support-action-row {
  margin-top: 12px;
}

.support-action-row strong,
.support-action-row small {
  display: block;
}

.support-action-row small {
  margin-top: 3px;
  color: #526071;
  font-size: 14px;
  font-weight: 560;
}

.support-action-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--badge-blue);
  box-shadow: inset 0 0 0 1px rgba(35, 117, 255, 0.1);
}

.support-action-icon::before,
.support-action-icon::after {
  content: "";
  position: absolute;
}

.mail-action-icon::before {
  inset: 12px 9px;
  border: 3px solid var(--navy);
  border-radius: 5px;
}

.mail-action-icon::after {
  left: 12px;
  top: 16px;
  width: 20px;
  height: 10px;
  border-right: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  transform: rotate(45deg) skew(-8deg, -8deg);
}

.help-action-icon::before {
  inset: 9px;
  border: 3px solid var(--navy);
  border-radius: 999px;
}

.help-action-icon::after {
  left: 20px;
  top: 31px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 -10px 0 0 var(--navy);
}

.feedback-action-icon::before {
  left: 10px;
  top: 10px;
  width: 23px;
  height: 18px;
  border: 3px solid var(--navy);
  border-radius: 6px;
}

.feedback-action-icon::after {
  left: 16px;
  top: 25px;
  width: 8px;
  height: 8px;
  border-left: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  transform: rotate(-45deg);
}

.support-grid.docs-index {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
}

.support-prep-card {
  margin-top: 44px;
  border-left: 3px solid var(--blue);
  border-radius: 0 14px 14px 0;
  padding: 2px 0 2px 24px;
}

.support-prep-card h2 {
  margin-top: 0;
}

.doc-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 4%, rgba(249, 184, 0, 0.1), transparent 28%),
    linear-gradient(180deg, #fbf9f5 0%, #ffffff 58%, #fbf9f5 100%);
  display: flex;
  flex-direction: column;
}

.doc-page .site-header {
  border-bottom: 1px solid rgba(230, 233, 238, 0.72);
  background: rgba(251, 249, 245, 0.9);
}

.doc-page main {
  flex: 1 0 auto;
}

.doc-page .nav {
  width: min(calc(100% - 64px), 1240px);
  min-height: 76px;
}

.doc-page .brand {
  color: #071a2f;
  font-size: 25px;
}

.doc-shell {
  width: min(calc(100% - 64px), 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  gap: 34px;
  padding: 52px 0 clamp(116px, 12vw, 184px);
}

.doc-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid #e6e9ee;
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(15, 31, 51, 0.06);
}

.doc-sidebar-brand {
  display: none;
}

.doc-sidebar nav {
  display: grid;
  gap: 6px;
}

.doc-sidebar nav a {
  border-radius: 12px;
  padding: 11px 12px;
  color: #0b1f33;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.doc-sidebar nav a[aria-current="page"] {
  background: #fff0bd;
}

.doc-help-card {
  margin-top: 18px;
  border: 1px solid #d8e9ff;
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(135deg, #edf6ff, #ffffff);
  box-shadow: none;
}

.doc-help-card strong,
.doc-help-card span,
.doc-help-card a {
  display: block;
}

.doc-help-card strong {
  margin-top: 14px;
  color: #0b1f33;
}

.doc-help-card span {
  color: #5c697b;
  font-size: 14px;
}

.doc-help-card a {
  margin-top: 14px;
  color: #0f766e;
  font-size: 14px;
  font-weight: 730;
  text-decoration: none;
}

.shortcuts-help-card {
  border-color: #ded4ff;
  background: linear-gradient(135deg, #f4efff, #ffffff);
}

.shortcuts-help-card a {
  color: #7c3aed;
}

.shortcuts-help-icon {
  display: block;
  margin-bottom: 4px;
  border-color: #8b5cf6;
}

.doc-side-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--badge-blue);
  box-shadow: inset 0 0 0 1px rgba(35, 117, 255, 0.1);
}

.doc-side-icon::before,
.doc-side-icon::after {
  content: "";
  position: absolute;
}

.help-mail-icon::before {
  inset: 12px 9px;
  border: 3px solid var(--navy);
  border-radius: 5px;
}

.help-mail-icon::after {
  left: 12px;
  top: 16px;
  width: 20px;
  height: 10px;
  border-right: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  transform: rotate(45deg) skew(-8deg, -8deg);
}

.uv-side-icon {
  background: #fff5d7;
}

.uv-side-icon::before {
  inset: 15px;
  border-radius: 999px;
  background: #f9b800;
  box-shadow:
    0 -15px 0 -10px #f9b800,
    0 15px 0 -10px #f9b800,
    15px 0 0 -10px #f9b800,
    -15px 0 0 -10px #f9b800,
    11px 11px 0 -10px #f9b800,
    -11px 11px 0 -10px #f9b800,
    11px -11px 0 -10px #f9b800,
    -11px -11px 0 -10px #f9b800;
}

.privacy-side-icon {
  background: #eef8f3;
}

.privacy-side-icon::before {
  left: 12px;
  top: 19px;
  width: 20px;
  height: 16px;
  border: 3px solid var(--navy);
  border-radius: 5px;
}

.privacy-side-icon::after {
  left: 16px;
  top: 8px;
  width: 12px;
  height: 14px;
  border: 3px solid var(--navy);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.doc-main {
  min-width: 0;
}

.doc-breadcrumb {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  border-radius: 999px;
  padding: 8px 13px;
  color: #5c697b;
  background: #fff0bd;
  font-size: 13px;
  font-weight: 650;
}

.doc-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 26px;
  align-items: center;
  border: 1px solid #e6e9ee;
  border-radius: 24px;
  padding: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 247, 226, 0.9)
    ),
    #ffffff;
  box-shadow: 0 18px 44px rgba(15, 31, 51, 0.08);
  overflow: hidden;
}

.doc-hero-card h1 {
  margin: 0;
  color: #0b1f33;
  font-size: 42px;
  line-height: 1.12;
}

.doc-hero-card .lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: #24384c;
  font-size: 17px;
  line-height: 1.5;
}

.doc-phone-preview {
  justify-self: center;
  width: 170px;
  max-height: 336px;
  margin: -8px 0;
  border: 6px solid #0b1f33;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 31, 51, 0.14);
  overflow: hidden;
}

.doc-phone-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.doc-hero-illustration {
  min-height: 160px;
  border-radius: 999px;
  background: #fff5d7;
}

.sunscreen-illustration {
  position: relative;
  overflow: hidden;
}

.sunscreen-illustration::before {
  content: "SPF\A 50";
  white-space: pre;
  position: absolute;
  left: 72px;
  top: 30px;
  width: 74px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 12px 12px 20px 20px;
  color: #ffffff;
  background: linear-gradient(180deg, #f9b800, #f59e0b);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.05;
  box-shadow: 0 16px 24px rgba(245, 158, 11, 0.24);
}

.sunscreen-illustration::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 22px;
  width: 82px;
  height: 48px;
  border: 10px solid #0b1f33;
  border-top-width: 7px;
  border-radius: 999px;
  transform: rotate(-10deg);
}

.uv-illustration,
.privacy-illustration {
  display: grid;
  place-items: center;
  text-align: center;
}

.uv-illustration strong {
  color: #f59e0b;
  font-size: 72px;
  line-height: 0.9;
}

.uv-illustration span {
  color: #0b1f33;
  font-size: 18px;
  font-weight: 760;
}

.privacy-illustration span {
  position: relative;
  width: 72px;
  height: 60px;
  border: 6px solid #4d8d38;
  border-radius: 14px;
}

.privacy-illustration span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: -38px;
  width: 34px;
  height: 36px;
  border: 6px solid #4d8d38;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.privacy-mini-panel {
  position: relative;
  min-height: 158px;
  border: 1px solid #e1eadf;
  border-radius: 20px;
  padding: 78px 18px 18px;
  background:
    linear-gradient(
      135deg,
      rgba(246, 255, 244, 0.94),
      rgba(255, 255, 255, 0.96)
    ),
    #ffffff;
  box-shadow: 0 12px 28px rgba(15, 31, 51, 0.06);
}

.privacy-mini-panel .panel-icon {
  left: 18px;
  top: 18px;
}

.privacy-mini-panel strong,
.privacy-mini-panel small {
  display: block;
}

.privacy-mini-panel strong {
  color: #0b1f33;
  font-size: 15px;
}

.privacy-mini-panel small {
  margin-top: 6px;
  color: #5c697b;
  font-size: 12px;
  line-height: 1.3;
}

.shortcuts-illustration {
  display: grid;
  align-content: center;
  gap: 12px;
  border-radius: 20px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 31, 51, 0.08);
}

.shortcuts-illustration span {
  color: #5c697b;
  font-size: 13px;
}

.shortcuts-illustration strong {
  color: #0b1f33;
  font-size: 16px;
}

.doc-steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.doc-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid #e6e9ee;
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(15, 31, 51, 0.04);
}

.doc-step-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e9f4ef;
}

.doc-step-icon::before,
.doc-step-icon::after {
  content: "";
  position: absolute;
}

.sun-doc-icon::before {
  inset: 18px;
  border-radius: 999px;
  background: #f9b800;
  box-shadow:
    0 -16px 0 -10px #f9b800,
    0 16px 0 -10px #f9b800,
    16px 0 0 -10px #f9b800,
    -16px 0 0 -10px #f9b800,
    11px 11px 0 -10px #f9b800,
    -11px 11px 0 -10px #f9b800,
    11px -11px 0 -10px #f9b800,
    -11px -11px 0 -10px #f9b800;
}

.bottle-doc-icon {
  background: #fff5d7;
}

.bottle-doc-icon::before {
  left: 20px;
  top: 12px;
  width: 16px;
  height: 30px;
  border-radius: 5px 5px 8px 8px;
  background: #f9b800;
}

.bell-doc-icon::before {
  left: 15px;
  top: 13px;
  width: 23px;
  height: 24px;
  border: 3px solid #0f766e;
  border-radius: 18px 18px 8px 8px;
}

.bell-doc-icon::after {
  left: 23px;
  top: 38px;
  width: 8px;
  height: 4px;
  border-radius: 999px;
  background: #0f766e;
}

.chart-doc-icon {
  background: #fff5d7;
}

.chart-doc-icon::before {
  left: 15px;
  bottom: 13px;
  width: 7px;
  height: 16px;
  border-radius: 999px 999px 2px 2px;
  background: #f9b800;
  box-shadow:
    12px -10px 0 #f9b800,
    24px -22px 0 #f9b800;
}

.shortcuts-doc-icon {
  background: #f3efff;
}

.shortcuts-doc-icon::before {
  inset: 14px;
  border: 3px solid #8b5cf6;
  border-radius: 10px;
  transform: rotate(45deg);
}

.doc-step-number {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #0f766e;
  font-size: 14px;
  font-weight: 760;
}

.doc-step h2,
.doc-card-grid h2,
.uv-scale h2,
.doc-legal h2 {
  margin: 0;
  color: #0b1f33;
  font-size: 20px;
  line-height: 1.24;
}

.doc-step h2 {
  display: inline;
  margin-left: 12px;
}

.doc-step p,
.doc-card-grid p,
.uv-scale p,
.doc-tip p,
.doc-legal p {
  margin: 8px 0 0;
  color: #24384c;
  font-size: 15px;
  line-height: 1.55;
}

.doc-card-grid,
.uv-scale-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.doc-section-title {
  margin: 34px 0 0;
  color: #0b1f33;
  font-size: 28px;
  line-height: 1.16;
}

.doc-card-grid article,
.uv-scale-grid article {
  border: 1px solid #e6e9ee;
  border-radius: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(15, 31, 51, 0.05);
}

.uv-scale {
  margin-top: 24px;
}

.uv-scale > h2 {
  font-size: 28px;
}

.uv-ramp {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.uv-ramp span {
  position: relative;
  min-height: 40px;
  border-radius: 12px;
  padding-top: 24px;
  color: #5c697b;
  font-size: 11px;
  font-weight: 760;
  text-align: center;
}

.uv-ramp span::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 14px;
  border-radius: 999px;
  background: currentColor;
}

.uv-ramp span:nth-child(1)::before {
  background: #34c759;
}

.uv-ramp span:nth-child(2)::before {
  background: #f7c948;
}

.uv-ramp span:nth-child(3)::before {
  background: #f59e0b;
}

.uv-ramp span:nth-child(4)::before {
  background: #ef4444;
}

.uv-ramp span:nth-child(5)::before {
  background: #7c3aed;
}

.uv-scale-grid article {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
}

.uv-scale-grid p {
  grid-column: 2;
  margin: 0;
}

.uv-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.uv-dot.low {
  background: #34c759;
}

.uv-dot.moderate {
  background: #f7c948;
}

.uv-dot.high {
  background: #f59e0b;
}

.uv-dot.very-high {
  background: #ef4444;
}

.uv-dot.extreme {
  background: #7c3aed;
}

.doc-tip {
  margin-top: 24px;
  border: 1px solid color-mix(in srgb, #0f766e, #e6e9ee 72%);
  border-radius: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f4faf2, #ffffff);
}

.doc-tip strong {
  color: #0f766e;
}

.doc-legal {
  margin-top: 52px;
  padding-top: 38px;
  border-top: 1px solid #e6e9ee;
}

.doc-legal h2 + p {
  margin-bottom: 24px;
}

.site-footer {
  border-top: 1px solid #e8edf2;
  background: #ffffff;
  color: #526071;
}

.footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer a {
  color: #526071;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.doc-page .footer {
  width: min(calc(100% - 64px), 1240px);
  justify-content: center;
  padding: 22px 0;
}

.docs-help-strip {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  border: 1px solid #d8e9ff;
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(135deg, #edf6ff, #ffffff);
}

.docs-help-strip h2,
.docs-help-strip p {
  margin: 0;
}

.docs-help-strip h2 {
  color: var(--navy);
  font-size: 20px;
}

.docs-help-strip p {
  margin-top: 4px;
  color: #526071;
  font-size: 15px;
}

.docs-help-strip a {
  border-radius: 999px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.doc-page .footer a,
.footer.home-footer a {
  color: #526071;
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: color-mix(in srgb, var(--paper), transparent 6%);
  }

  .hero {
    background:
      linear-gradient(
          90deg,
          color-mix(in srgb, var(--leaf-soft), transparent 56%) 1px,
          transparent 1px
        )
        0 0 / 88px 88px,
      linear-gradient(
        180deg,
        var(--paper) 0%,
        var(--surface-alt) 68%,
        var(--surface) 100%
      );
  }

  .phone-frame {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  }

  .screen-figure img {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  }

  .button.tertiary,
  .button.secondary {
    color: var(--leaf-strong);
    background: color-mix(in srgb, var(--surface), white 3%);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .privacy-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    display: block;
  }

  .hero-inner {
    padding: 60px 0 70px;
  }

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

  .hero-copy {
    font-size: 19px;
  }

  .hero-media {
    min-height: 420px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(100%, 520px);
    margin-top: 40px;
  }

  .phone-frame-primary {
    position: static;
    width: 100%;
  }

  .phone-frame-secondary {
    position: static;
    width: 100%;
    margin-top: 46px;
  }

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

  .support-grid.docs-index {
    grid-template-columns: 1fr;
  }

  .screen-figure {
    margin-left: 64px;
  }
}

@media (max-width: 620px) {
  [id] {
    scroll-margin-top: 28px;
  }

  .site-header {
    position: static;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    width: auto;
    margin-inline: 16px;
    padding: 12px 0 10px;
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand,
  .home-page .brand,
  .doc-page .brand {
    font-size: 23px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 6px 14px;
    font-size: 15px;
  }

  .nav-links a {
    padding: 4px 0;
  }

  .hero-inner {
    width: auto;
    margin-inline: 16px;
    padding: 50px 0 58px;
  }

  .hero-copy-block,
  .actions,
  .hero-media {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .wrap,
  .content,
  .footer {
    width: auto;
    margin-inline: 16px;
  }

  .hero h1,
  .section-heading h2,
  .content h1 {
    font-size: 32px;
  }

  .content h2 {
    font-size: 27px;
  }

  .hero h1,
  .hero-copy,
  .section-heading p,
  .feature p,
  .timeline-item p,
  .content p,
  .content li {
    max-width: 100%;
  }

  .hero h1,
  .hero-copy {
    overflow-wrap: anywhere;
  }

  .hero-media {
    min-height: 0;
    gap: 12px;
  }

  .phone-frame {
    border-radius: 28px;
    padding: 8px;
  }

  .phone-frame img {
    border-radius: 21px;
  }

  .phone-frame-primary {
    width: 100%;
  }

  .phone-frame-secondary {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section.tight,
  .content {
    padding: 50px 0 clamp(96px, 18vw, 148px);
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .timeline-number {
    width: 34px;
    height: 34px;
  }

  .screen-figure {
    margin: 18px auto 0;
    width: min(72vw, 230px);
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 900px) {
  .doc-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(calc(100% - 32px), 760px);
  }

  .doc-sidebar {
    position: static;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #e6e9ee;
    padding: 0 0 24px;
  }

  .doc-sidebar-brand,
  .doc-help-card {
    display: none;
  }

  .doc-sidebar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .doc-sidebar nav a {
    border-left: 0;
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.68);
  }

  .doc-sidebar nav a[aria-current="page"] {
    background: #e9f4ef;
  }

  .doc-hero-card {
    grid-template-columns: 1fr;
  }

  .doc-hero-illustration {
    width: min(100%, 260px);
  }
}

@media (max-width: 620px) {
  .doc-shell {
    padding: 28px 0 clamp(88px, 16vw, 132px);
  }

  .doc-sidebar {
    padding-bottom: 14px;
  }

  .doc-sidebar nav {
    gap: 7px;
  }

  .doc-sidebar nav a {
    padding: 8px 12px;
    font-size: 13px;
  }

  .doc-hero-card h1 {
    font-size: 34px;
    text-wrap: balance;
  }

  .doc-hero-card {
    border-radius: 20px;
    padding: 24px;
  }

  .doc-hero-card .lead {
    font-size: 16px;
    text-wrap: pretty;
  }

  .doc-phone-preview {
    width: min(62vw, 176px);
    max-height: 300px;
    border-width: 5px;
    border-radius: 24px;
  }

  .doc-steps,
  .doc-card-grid,
  .uv-scale-grid {
    grid-template-columns: 1fr;
  }

  .uv-ramp {
    grid-template-columns: 1fr;
  }

  .uv-ramp span {
    min-height: 30px;
    padding: 4px 10px 4px 72px;
    text-align: left;
  }

  .uv-ramp span::before {
    inset: 8px auto auto 0;
    width: 56px;
    height: 12px;
  }

  .docs-help-strip {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .docs-help-strip a {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .doc-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    border-radius: 14px;
    padding: 16px;
  }

  .doc-step-icon {
    width: 48px;
    height: 48px;
  }

  .doc-step h2 {
    display: block;
    margin: 8px 0 0;
  }

  .doc-card-grid article,
  .uv-scale-grid article,
  .support-item {
    border-radius: 14px;
    padding: 18px;
  }

  .support-grid {
    gap: 16px;
  }

  .support-action-panel {
    border-radius: 16px;
    padding: 14px;
  }

  .support-action-row {
    grid-template-columns: 42px minmax(0, 1fr) 16px;
    gap: 12px;
    border-radius: 12px;
    padding: 14px;
  }

  .support-action-icon {
    width: 40px;
    height: 40px;
  }

  .support-prep-card {
    margin-top: 34px;
    padding-left: 18px;
  }

  .docs-index-card {
    grid-template-columns: 30px minmax(0, 1fr) 18px;
    gap: 6px 12px;
    min-height: 0;
    align-items: start;
  }

  .docs-index-card .resource-icon {
    grid-column: 1;
    grid-row: 1;
    margin-top: 1px;
  }

  .docs-index-card .card-chevron {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    font-size: 22px;
  }

  .docs-index-card h2 {
    grid-column: 2;
    grid-row: 1;
    font-size: 22px;
    line-height: 1.12;
    text-wrap: balance;
  }

  .docs-index-card p {
    grid-column: 2 / 4;
    font-size: 15px;
    line-height: 1.42;
    text-wrap: pretty;
  }
}

@media (max-width: 1100px) {
  .home-page .nav,
  .hero-scene,
  .home-footer {
    width: min(calc(100% - 40px), 980px);
  }

  .landing-hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 860px) {
  .home-page .nav {
    min-height: 78px;
  }

  .home-page .brand {
    font-size: 24px;
  }

  .home-page .nav-links {
    gap: 18px;
  }

  .nav-store-badge {
    width: 112px;
    min-height: 38px;
  }

  .landing-hero {
    min-height: 720px;
  }

  .hero-scene {
    min-height: 720px;
    align-items: center;
  }

  .landing-hero .hero-copy-block {
    width: min(100%, 500px);
    padding: 78px 0 64px;
  }

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

@media (max-width: 760px) {
  .feature-columns,
  .resource-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .home-page .nav,
  .hero-scene,
  .home-footer {
    width: auto;
    margin-inline: 16px;
  }

  .home-page .nav {
    align-items: flex-start;
    padding: 12px 0 10px;
    gap: 8px;
  }

  .home-page .nav-links {
    gap: 6px 16px;
    order: 3;
  }

  .nav-store-badge {
    position: absolute;
    right: 0;
    top: 10px;
    width: 104px;
    min-height: 35px;
  }

  .landing-hero h1 {
    font-size: 34px;
    line-height: 1.1;
    text-wrap: balance;
  }

  .landing-hero .hero-copy {
    font-size: 16px;
    text-wrap: pretty;
  }

  .hero-pill {
    max-width: 100%;
    padding: 7px 13px;
    font-size: 13px;
  }

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

  .store-callout {
    width: 164px;
  }

  .compatibility {
    font-size: 14px;
  }

  .landing-hero {
    min-height: 640px;
  }

  .landing-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(251, 246, 234, 0.98) 0%,
        rgba(251, 246, 234, 0.9) 52%,
        rgba(251, 246, 234, 0.18) 100%
      ),
      linear-gradient(
        90deg,
        rgba(251, 246, 234, 0.96) 0%,
        rgba(251, 246, 234, 0.72) 58%,
        rgba(251, 246, 234, 0) 100%
      );
  }

  .hero-background-picture img,
  .hero-background-image {
    object-position: center bottom;
  }

  .hero-scene {
    min-height: 640px;
    align-items: flex-start;
  }

  .landing-hero .hero-copy-block {
    padding: 46px 0 0;
  }

  .feature-showcase {
    margin-top: -10px;
    padding: 38px 0 44px;
  }

  .feature-showcase h2,
  .resources-section h2 {
    font-size: 24px;
    text-wrap: balance;
  }

  .feature-columns,
  .resource-cards {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  .feature-column {
    width: 100%;
    max-width: 348px;
    margin: 0 auto;
  }

  .feature-column h3,
  .feature-column p {
    min-height: 0;
  }

  .feature-column p {
    font-size: 13px;
    text-wrap: pretty;
  }

  .feature-visual {
    width: min(100%, 312px);
    margin-right: auto;
    margin-left: auto;
    border-radius: 16px;
  }

  .feature-visual img {
    aspect-ratio: 2 / 3;
  }

  .soft-panel {
    min-height: 0;
    padding: 34px 24px;
  }

  .privacy-panel::before {
    content: none;
  }

  .panel-icon {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 14px;
  }

  .soft-panel > div {
    padding-left: 0;
  }

  .soft-panel h2 {
    font-size: 27px;
  }

  .resource-card {
    border-radius: 12px;
  }

  .home-footer {
    gap: 14px;
  }
}

@media (max-width: 360px) {
  .nav,
  .home-page .nav {
    margin-inline: 14px;
  }

  .brand,
  .home-page .brand,
  .doc-page .brand {
    font-size: 22px;
  }

  .nav-links,
  .home-page .nav-links {
    gap: 6px 12px;
    font-size: 14px;
  }

  .nav-store-badge {
    width: 98px;
    min-height: 33px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
