:root {
  --navy: #041525;
  --navy-mid: #0a1e3c;
  --navy-soft: #122d52;
  --blue: #1e8df3;
  --oceanic-blue: #1e8df3;
  --oceanic-blue-rgb: 30, 141, 243;
  --oceanic-blue-dark: #3ca9fd;
  --oceanic-blue-dark-rgb: 60, 170, 253;
  --cyan: var(--oceanic-blue-dark);
  --aqua: #22d3ee;
  /* Apple Watch Ultra — International Orange */
  --ultra-orange: #ff4f00;
  --ultra-orange-light: #ff7028;
  --ultra-orange-deep: #e04600;
  --ultra-orange-glow: rgba(255, 79, 0, 0.42);
  --ultra-orange-shadow: rgba(160, 45, 0, 0.22);
  /* Caribbean water palette */
  --carib-surface: #7ad4dc;
  --carib-shallow: #4ab8c4;
  --carib-mid: #1a8aa8;
  --carib-deep: #0a4460;
  --carib-abyss: #010810;
  --card: rgba(12, 32, 56, 0.72);
  --card-solid: rgba(14, 36, 62, 0.92);
  --text: #f4f9ff;
  --text-secondary: #d4e8f8;
  --text-muted: #a8c4dc;
  --text-shallow: #022638;
  --text-shallow-secondary: #063544;
  --border: rgba(255, 255, 255, 0.12);
  --border-light: rgba(255, 255, 255, 0.08);
  --glow: rgba(var(--oceanic-blue-dark-rgb), 0.45);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --scroll-depth: 0;
  --text-phase: 0;
  --copy: color-mix(
    in srgb,
    var(--text-shallow) calc((1 - var(--text-phase)) * 100%),
    var(--text) calc(var(--text-phase) * 100%)
  );
  --copy-secondary: color-mix(
    in srgb,
    var(--text-shallow-secondary) calc((1 - var(--text-phase)) * 100%),
    var(--text-secondary) calc(var(--text-phase) * 100%)
  );
  --mock-text: #0a1e3c;
  --mock-muted: #64748b;
  --mock-accent: var(--oceanic-blue);
  --mock-accent-soft: rgba(var(--oceanic-blue-rgb), 0.18);
  --mock-accent-tag-bg: rgba(var(--oceanic-blue-rgb), 0.14);
  --radius: 20px;
  --max-width: 1180px;
  --header-height: 76px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
  --font-display: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  font-family: var(--font);
  color: var(--text);
  background: var(--carib-surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  background: transparent;
}

main > :not(.light-shimmer) {
  position: relative;
  z-index: 1;
}

/* Caribbean shallow → abyss — scrolls with page content */
main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    #8ee4ea 0%,
    #6ed3d9 6%,
    #52bcc9 14%,
    #3aa8b8 22%,
    #2896ad 32%,
    #1a7f99 42%,
    #106680 52%,
    #0a5070 62%,
    #063850 72%,
    #042538 82%,
    #021520 91%,
    var(--carib-abyss) 100%
  );
  pointer-events: none;
}

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

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 1000;
  padding: 10px 16px; background: var(--card-solid); border-radius: 8px;
  color: var(--text);
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* Ocean background */

.ocean-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Sunlit surface shimmer — fades as you scroll deeper */
.ocean-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 70% at 50% -15%, rgba(210, 250, 252, 0.7), transparent 52%),
    radial-gradient(ellipse 50% 35% at 85% 8%, rgba(160, 235, 225, 0.35), transparent 55%),
    radial-gradient(ellipse 45% 30% at 12% 12%, rgba(140, 225, 240, 0.3), transparent 50%);
  opacity: calc(1 - var(--scroll-depth) * 0.92);
  transition: opacity 0.08s linear;
}

/* Deep-water overlay on scroll — stacks on top of the page gradient */
.depth-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, #010810 100%);
  opacity: calc(var(--scroll-depth) * 0.55);
  transition: opacity 0.08s linear;
}

/* Underwater sunlight caustics — canvas layer over gradient, under content */
.light-shimmer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  opacity: max(0, calc(1 - var(--scroll-depth) * 2));
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0, 0, 0, 0.4) 75%, transparent 92%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0, 0, 0, 0.4) 75%, transparent 92%);
}

.caustic-canvas {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}

/* Depth rail */

.depth-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
}

.depth-rail-inner {
  display: flex;
  align-items: stretch;
  gap: 6px;
  height: 120px;
}

.depth-rail-meter {
  position: relative;
  width: 4px;
  height: 100%;
  flex-shrink: 0;
}

.depth-rail-scale {
  position: relative;
  width: 26px;
  height: 100%;
  flex-shrink: 0;
}

.depth-tick {
  position: absolute;
  left: 0;
  top: calc(var(--d) / 40 * 100%);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

.depth-tick:first-child {
  transform: translateY(0);
}

.depth-tick:last-child {
  transform: translateY(-100%);
}

.depth-tick i {
  display: block;
  height: 1px;
  background: rgba(238, 248, 252, 0.92);
  box-shadow: 0 0 0 0.5px rgba(2, 32, 48, 0.55);
  border-radius: 1px;
}

.depth-tick-major i {
  width: 7px;
}

.depth-tick-minor i {
  width: 4px;
  opacity: 0.65;
}

.depth-tick b {
  font-size: 0.58rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: #eef8fc;
  -webkit-text-stroke: 0.45px rgba(2, 32, 48, 0.88);
  paint-order: stroke fill;
}

.depth-rail-track {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: color-mix(
    in srgb,
    rgba(2, 38, 56, 0.45) calc((1 - var(--scroll-depth)) * 100%),
    rgba(255, 255, 255, 0.16) calc(var(--scroll-depth) * 100%)
  );
  overflow: hidden;
  box-shadow: inset 0 0 0 1px color-mix(
    in srgb,
    rgba(2, 38, 56, 0.2) calc((1 - var(--scroll-depth)) * 100%),
    rgba(255, 255, 255, 0.12) calc(var(--scroll-depth) * 100%)
  );
}

.depth-rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    180deg,
    var(--ultra-orange-light) 0%,
    var(--ultra-orange) 50%,
    var(--ultra-orange-deep) 100%
  );
  border-radius: 999px;
  box-shadow: 0 0 10px var(--ultra-orange-glow);
  transition: height 0.12s ease-out;
}

.depth-rail-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 0%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #eef8fc;
  -webkit-text-stroke: 0.5px rgba(2, 32, 48, 0.9);
  paint-order: stroke fill;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: top 0.12s ease-out;
  pointer-events: none;
}

@media (max-width: 720px) {
  .depth-rail { display: none; }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(4, 21, 37, calc(0.35 + var(--scroll-depth) * 0.35));
  border-bottom: 1px solid rgba(255, 255, 255, calc(0.08 + var(--scroll-depth) * 0.08));
}

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

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.14em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.app-icon {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 22%;
  flex-shrink: 0;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.35),
    0 0 0 0.5px rgba(255, 255, 255, 0.12) inset;
}

.app-icon-sm {
  width: 24px;
  height: 24px;
}

.app-icon-lg {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.45),
    0 0 0 0.5px rgba(255, 255, 255, 0.14) inset;
}

.wordmark-desk { color: var(--cyan); }
.wordmark-sm { font-size: 0.9rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.wordmark-dive {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid color-mix(in srgb, var(--text-shallow) 20%, transparent);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  color: var(--text-shallow);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block; width: 18px; height: 2px; margin: 0 auto;
  background: currentColor; border-radius: 2px; content: "";
}
.nav-toggle-bar::before { transform: translateY(-6px); }
.nav-toggle-bar::after { transform: translateY(4px); }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-glow {
  color: #fff;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--ultra-orange-light) 88%, transparent) 0%,
    color-mix(in srgb, var(--ultra-orange) 80%, transparent) 48%,
    color-mix(in srgb, var(--ultra-orange-deep) 74%, transparent) 100%
  );
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-bottom-color: rgba(255, 200, 170, 0.3);
  text-shadow: 0 1px 0 rgba(140, 40, 0, 0.3);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42) inset,
    0 -1px 0 var(--ultra-orange-shadow) inset,
    0 2px 6px rgba(160, 45, 0, 0.14) inset,
    0 1px 2px rgba(120, 35, 0, 0.16),
    0 10px 28px var(--ultra-orange-glow);
}

.btn-glow:hover {
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--ultra-orange-light) 94%, transparent) 0%,
    color-mix(in srgb, var(--ultra-orange) 86%, transparent) 48%,
    color-mix(in srgb, var(--ultra-orange-deep) 80%, transparent) 100%
  );
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.52) inset,
    0 -1px 0 rgba(160, 45, 0, 0.26) inset,
    0 2px 6px rgba(160, 45, 0, 0.12) inset,
    0 1px 3px rgba(120, 35, 0, 0.18),
    0 14px 36px rgba(255, 79, 0, 0.48);
}

.btn-glow:active {
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--ultra-orange) 84%, transparent) 0%,
    color-mix(in srgb, var(--ultra-orange-deep) 78%, transparent) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 2px 8px rgba(160, 45, 0, 0.24) inset,
    0 1px 2px rgba(120, 35, 0, 0.14);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-large { padding: 16px 32px; font-size: 1rem; }

/* Typography */

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.pulse-dot::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.gradient-text {
  background: linear-gradient(120deg, var(--cyan), var(--blue), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Darker gradient on shallow water; brightens as you scroll deeper */
.section-header .gradient-text {
  background: linear-gradient(
    125deg,
    color-mix(in srgb, #023047 calc((1 - var(--text-phase)) * 100%), #bae6fd calc(var(--text-phase) * 100%)),
    color-mix(in srgb, #0b6bcb calc((1 - var(--text-phase)) * 100%), var(--oceanic-blue-dark) calc(var(--text-phase) * 100%)),
    color-mix(in srgb, #0a6e8a calc((1 - var(--text-phase)) * 100%), #22d3ee calc(var(--text-phase) * 100%))
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero */

.hero {
  position: relative;
  padding: 88px 0 72px;
  min-height: auto;
  display: flex;
  align-items: center;
}

/* Dark text on bright shallow water for contrast */
.hero-copy {
  color: var(--text-shallow);
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #023047;
}

.hero .eyebrow {
  color: #055a6e;
  font-weight: 700;
}

.hero .pulse-dot::after {
  background: #0891b2;
  box-shadow: 0 0 8px rgba(8, 145, 178, 0.45);
}

.hero .gradient-text {
  color: #023047;
  background: none;
  -webkit-text-fill-color: #023047;
}

.hero-lede {
  margin: 0 0 28px;
  max-width: 30rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #155e75;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px 64px;
  align-items: center;
}

.hero-copy .line {
  display: block;
}

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

.hero-actions .btn-ghost {
  color: #023047;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.58) 0%,
    rgba(255, 255, 255, 0.34) 100%
  );
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.42);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 -1px 0 rgba(2, 48, 64, 0.07) inset,
    0 2px 5px rgba(2, 48, 64, 0.06) inset,
    0 1px 2px rgba(2, 48, 64, 0.1),
    0 8px 24px rgba(2, 60, 80, 0.1);
}

.hero-actions .btn-ghost:hover {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(255, 255, 255, 0.44) 100%
  );
  border-color: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 -1px 0 rgba(2, 48, 64, 0.08) inset,
    0 2px 5px rgba(2, 48, 64, 0.05) inset,
    0 2px 4px rgba(2, 48, 64, 0.12),
    0 12px 32px rgba(2, 60, 80, 0.14);
}

.hero-actions .btn-ghost:active {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.48) 0%,
    rgba(255, 255, 255, 0.32) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 2px 7px rgba(2, 48, 64, 0.1) inset,
    0 1px 2px rgba(2, 48, 64, 0.08);
}

/* Hero visual */

.hero-visual {
  position: relative;
}

.hero-app-glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle at 50% 40%, rgba(var(--oceanic-blue-dark-rgb), 0.22), transparent 62%);
  z-index: -1;
  pointer-events: none;
}

.hero-app-shot {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(4, 21, 37, 0.16));
}

/* Highlights */

.highlights {
  padding: 72px 0;
  position: relative;
  z-index: 2;
  background: transparent;
}

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

.highlight-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.highlight-card:hover::before { opacity: 1; }

.highlight-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}

.highlight-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* SF Symbol icons (exported from app system images) */

.sf-icon {
  display: block;
  width: var(--sf-size, 24px);
  height: var(--sf-size, 24px);
  object-fit: contain;
  flex-shrink: 0;
}

.sf-icon-xs { --sf-size: 14px; }
.sf-icon-sm { --sf-size: 18px; }
.sf-icon-md { --sf-size: 24px; }
.sf-icon-lg { --sf-size: 32px; }

.sf-icon-light {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.sf-icon-on-btn {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.highlight-icon,
.bento-icon,
.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(var(--oceanic-blue-dark-rgb), 0.12);
}

.highlight-icon .sf-icon,
.bento-icon .sf-icon {
  opacity: 1;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.card-title-row h3 {
  margin: 0;
}

.format-row-icon {
  flex-shrink: 0;
  width: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}

.format-row-body {
  flex: 1;
  min-width: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list .sf-icon,
.format-row-icon .sf-icon {
  opacity: 0.92;
}

.check-icon {
  filter: brightness(0) saturate(100%) invert(58%) sepia(93%) saturate(1752%) hue-rotate(169deg) brightness(96%) contrast(97%);
}

/* Sections */

.section {
  padding: 96px 0;
  position: relative;
  z-index: 2;
  background: transparent;
}

.section-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-header h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--copy);
}

.section-header p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--copy-secondary);
}

/* Bento */

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

.bento-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.35);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  background: linear-gradient(
    155deg,
    rgba(16, 44, 68, 0.86) 0%,
    rgba(12, 32, 56, 0.78) 50%,
    rgba(10, 26, 46, 0.84) 100%
  );
}

.bento-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}

.bento-copy p {
  margin-bottom: 0;
}

.bento-app-peek {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 54%;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
  z-index: 1;
}

.bento-app-peek img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.38));
}

.bento-wide { grid-column: span 2; }

.bento-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      ellipse 85% 55% at 72% 0%,
      rgba(var(--oceanic-blue-dark-rgb), 0.14) 0%,
      rgba(var(--oceanic-blue-dark-rgb), 0.05) 42%,
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(var(--oceanic-blue-dark-rgb), 0.06) 0%,
      transparent 38%
    );
  pointer-events: none;
}

.bento-card > :not(.bento-glow):not(.bento-app-peek) {
  position: relative;
  z-index: 1;
}

.bento-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(56,189,248,0.15);
  color: var(--cyan);
}

.bento-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
}

.bento-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.bento-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -28px -28px 22px;
  padding: 13px 16px;
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  z-index: 3;
}

.bento-chrome.mac-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mac-dots span:nth-child(1) { background: #ff5f57; }
.mac-dots span:nth-child(2) { background: #febc2e; }
.mac-dots span:nth-child(3) { background: #28c840; }

/* Import */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  color: var(--copy);
}

.split-copy p { color: var(--copy-secondary); }

.split-copy code {
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(56,189,248,0.15);
  font-size: 0.9em;
  color: var(--cyan);
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  color: var(--copy-secondary);
}

.check-list li::before {
  content: none;
}

.format-panel-wrap {
  min-width: 0;
}

.format-panel {
  border-radius: var(--radius);
  background: rgba(8, 22, 40, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.format-panel-intro {
  margin: 0;
  padding: 16px 22px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.format-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.format-rows li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}

.format-rows li:last-child {
  border-bottom: 0;
}

.format-rows li:hover {
  background: rgba(255, 255, 255, 0.04);
}

.format-row-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.format-row-main strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text);
}

.format-ext {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--cyan);
  opacity: 0.9;
}

.format-desc {
  display: block;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.format-panel-note {
  margin: 10px 4px 0;
  font-size: 0.76rem;
  color: var(--copy-secondary);
  line-height: 1.45;
}

/* Explore viewer */

.explore-viewer {
  width: 100%;
}

.explore-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.explore-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  width: 100%;
}

.explore-frame {
  position: relative;
  min-height: clamp(380px, 54vh, 600px);
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: none;
  outline: none;
  background-color: #071525;
  background-image:
    radial-gradient(ellipse 75% 55% at 50% 18%, rgba(var(--oceanic-blue-dark-rgb), 0.14), transparent 62%),
    linear-gradient(165deg, #071525 0%, #0c2842 48%, #061018 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  isolation: isolate;
}

.explore-ui {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
}

.explore-ui.is-active {
  display: flex;
}

.explore-ui-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 35%, rgba(var(--oceanic-blue-dark-rgb), 0.1), transparent 68%),
    linear-gradient(180deg, rgba(8, 22, 40, 0.2) 0%, rgba(4, 12, 24, 0.55) 100%);
}

.explore-preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
  border: none;
  outline: none;
  transform: scale(1.02);
  transform-origin: center;
}

.explore-preview-img[hidden] {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

.explore-preview-img:not([hidden]) ~ .explore-ui,
.explore-preview-img:not([hidden]) ~ .explore-ui-fallback {
  display: none !important;
}

/* Dive card stack — All Dives UI mockup */

.dive-cards-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: clamp(20px, 4vw, 36px) clamp(16px, 4vw, 40px);
}

.dive-card {
  width: min(100%, 440px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

.dive-card--back {
  transform: scale(0.94);
  opacity: 0.72;
}

.dive-card--featured {
  transform: scale(1);
  opacity: 1;
  box-shadow:
    0 0 0 3px rgba(var(--oceanic-blue-dark-rgb), 0.95),
    0 0 28px rgba(var(--oceanic-blue-dark-rgb), 0.42),
    0 12px 36px rgba(0, 0, 0, 0.32);
  z-index: 2;
}

.dive-card-header {
  padding: 18px;
  min-height: 118px;
  background: linear-gradient(135deg, #0a1e3c 0%, rgba(var(--oceanic-blue-rgb), 0.85) 100%);
}

.dive-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.dive-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dive-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.dive-badge-mode {
  background: #000;
  color: #fff;
}

.dive-badge-water {
  background: var(--cyan);
  color: #fff;
}

.dive-badge-water .sf-icon {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.dive-card-watch {
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.dive-card-meta {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.dive-card-title {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}

.dive-card-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 16px 18px;
  background: #fff;
}

.dive-card-stats > div {
  min-width: 0;
}

.dive-card-stats dt {
  margin: 0 0 4px;
  font-size: 0.62rem;
  font-weight: 500;
  color: #6b7f92;
  line-height: 1.2;
}

.dive-card-stats dd {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #0a1e3c;
  line-height: 1.2;
  white-space: nowrap;
}

/* Dive detail UI mockup */

.detail-mock {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 780px;
  height: 100%;
  margin: 0 auto;
  padding: clamp(14px, 2.5vw, 22px);
  overflow: hidden;
}

.detail-mock-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
  gap: 8px;
  min-height: 0;
  flex: 0 1 38%;
  max-height: 42%;
  min-height: 132px;
  align-items: stretch;
}

.detail-panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.detail-stat {
  background: #fff;
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(10, 30, 50, 0.05),
    0 4px 14px rgba(10, 30, 50, 0.09);
}

.detail-map-card {
  overflow: hidden;
  height: 100%;
  min-height: 0;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  background: #fff;
  line-height: 0;
}

.detail-map-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transform-origin: center;
}

.detail-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 6px;
  min-height: 0;
  height: 100%;
}

.detail-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  padding: 9px 11px 8px;
  min-width: 0;
  min-height: 0;
  container-type: size;
}

.detail-stat-value {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.95rem, 28cqh, 1.28rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  color: #0a1e3c;
  line-height: 1.05;
}

.detail-stat-label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: #9aadb9;
  line-height: 1;
}

.detail-stat-icon {
  --sf-size: 11px;
  flex-shrink: 0;
  opacity: 0.95;
  filter: brightness(0) saturate(100%) invert(43%) sepia(95%) saturate(1876%) hue-rotate(196deg) brightness(99%) contrast(93%);
}

.detail-panel {
  padding: 16px 18px 14px;
  flex: 1 1 48%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.detail-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.detail-panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0a1e3c;
}

.detail-panel-icon {
  --sf-size: 17px;
  opacity: 0.92;
}

.detail-profile-card {
  padding: 0;
  line-height: 0;
  flex: 0 0 auto;
  align-self: stretch;
  border-radius: 16px;
  overflow: hidden;
}

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

.detail-profile-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(var(--oceanic-blue-rgb), 0.12);
  font-size: 0.64rem;
  color: #0a1e3c;
  white-space: nowrap;
}

.detail-profile-badge-kicker {
  color: var(--oceanic-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.detail-profile-badge strong {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.detail-profile-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 12px;
  padding: 3px;
  border-radius: 999px;
  background: #000;
}

.detail-profile-tab {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.detail-profile-tab.is-active {
  background: var(--mock-accent);
  color: #fff;
}

.detail-profile-chart {
  flex: 1 1 auto;
  min-height: 118px;
  margin-top: 2px;
}

.detail-profile-chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.detail-chart-bg {
  fill: #f3f6f9;
}

.detail-chart-marker {
  fill: #ef4444;
}

.detail-chart-callout {
  fill: #ef4444;
}

.detail-chart-callout-text {
  fill: #fff;
  font-family: var(--font);
  font-size: 8.5px;
  font-weight: 600;
}

/* Dive sites UI mockup */

.sites-mock {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 780px;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 26px);
  overflow: hidden;
}

.sites-map-card {
  flex: 1 1 auto;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  background: #fff;
  line-height: 0;
}

.sites-map-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.sites-row-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 16px;
  padding: 15px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.sites-icon-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--mock-accent-soft);
}

.sites-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mock-accent);
}

.sites-icon-pin {
  --sf-size: 14px;
  filter: brightness(0) invert(1);
}

.sites-row-title {
  margin: 0 0 3px;
  font-family: var(--font);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a1e3c;
  line-height: 1.25;
}

.sites-row-coords,
.sites-row-date {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: #8aa0b4;
  line-height: 1.35;
}

.sites-row-count {
  text-align: right;
  min-width: 2.5rem;
}

.sites-row-count-value {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
  color: #0a1e3c;
}

.sites-row-count-label {
  margin: 4px 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: #8aa0b4;
  line-height: 1;
}

/* Gear UI mockup */

.sf-icon-accent {
  filter: brightness(0) saturate(100%) invert(43%) sepia(95%) saturate(1876%) hue-rotate(196deg) brightness(99%) contrast(93%);
}

.gear-mock {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 700px;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(16px, 2.8vw, 26px);
  overflow: hidden;
}

.gear-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  flex-shrink: 0;
}

.gear-stat {
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.gear-stat-value {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a1e3c;
  line-height: 1;
}

.gear-stat-label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px 0 0;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mock-muted);
  line-height: 1.2;
}

.gear-stat-label .sf-icon {
  --sf-size: 11px;
  flex-shrink: 0;
}

.gear-stack {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  min-height: 0;
  justify-content: center;
}

.gear-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px 14px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.gear-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mock-accent-soft);
  flex-shrink: 0;
}

.gear-row-icon .sf-icon {
  --sf-size: 18px;
}

.gear-row-body {
  min-width: 0;
}

.gear-row-title {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0a1e3c;
  line-height: 1.25;
}

.gear-row-meta {
  margin: 2px 0 0;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--mock-muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gear-row-tag {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--mock-accent-tag-bg);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mock-accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.gear-row-chevron {
  color: #94a8b8;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
}

.gear-kits {
  flex-shrink: 0;
}

.gear-kits-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.gear-kits-label .sf-icon {
  --sf-size: 12px;
  opacity: 0.7;
}

.gear-kits-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.gear-kit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 12px 13px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.gear-kit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mock-accent-soft);
  flex-shrink: 0;
}

.gear-kit-icon .sf-icon {
  --sf-size: 18px;
}

.gear-kit-body {
  min-width: 0;
}

.gear-kit-title {
  margin: 0;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0a1e3c;
  line-height: 1.2;
}

.gear-kit-meta {
  margin: 3px 0 0;
  font-size: 0.62rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.3;
}

.gear-kit-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 7px;
}

.gear-kit-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mock-accent-tag-bg);
}

.gear-kit-chip .sf-icon {
  --sf-size: 11px;
}

/* Statistics UI mockup */

.stats-mock {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 700px;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(16px, 2.8vw, 26px);
  overflow: hidden;
}

.stats-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  flex-shrink: 0;
}

.stats-stat {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.stats-stat-value {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--mock-text);
  line-height: 1;
}

.stats-stat-label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 7px 0 0;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mock-muted);
  line-height: 1.2;
}

.stats-stat-label .sf-icon {
  --sf-size: 11px;
  flex-shrink: 0;
}

.stats-chart-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
  padding: 14px 16px 12px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.stats-chart-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.stats-chart-head h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--mock-text);
}

.stats-chart-icon {
  --sf-size: 16px;
}

.stats-chart-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: stretch;
}

.stats-duration-chart {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 140px;
}

.stats-chart-bars rect {
  fill: var(--mock-accent);
  opacity: 0.88;
}

/* Settings UI mockup */

.settings-mock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: clamp(14px, 2.4vw, 24px);
  overflow: hidden;
}

.settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 720px;
  min-height: 0;
  align-items: stretch;
  align-content: center;
}

.settings-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.settings-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 13px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  min-width: 0;
}

.settings-card--units {
  align-self: stretch;
}

.settings-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.settings-card-title {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.settings-card-title h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--mock-text);
}

.settings-card-title .sf-icon {
  --sf-size: 15px;
  flex-shrink: 0;
}

.settings-link {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--mock-accent);
  white-space: nowrap;
}

.settings-unit-list {
  display: flex;
  flex-direction: column;
}

.settings-unit-row,
.settings-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid #e8eef3;
}

.settings-unit-list .settings-unit-row:first-child {
  border-top: none;
  padding-top: 2px;
}

.settings-unit-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mock-text);
}

.settings-pill,
.settings-segment {
  display: flex;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 999px;
  background: #000;
}

.settings-pill-opt,
.settings-segment-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
}

.settings-segment-opt {
  min-width: 46px;
  padding: 5px 8px;
  font-size: 0.58rem;
}

.settings-pill-opt.is-active,
.settings-segment-opt.is-active {
  background: var(--mock-accent);
  color: #fff;
}

.settings-data-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 4px 0 8px;
  border-bottom: 1px solid #e8eef3;
}

.settings-data-stat {
  min-width: 0;
}

.settings-data-value {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--mock-text);
  line-height: 1.1;
}

.settings-data-label {
  margin: 2px 0 0;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mock-muted);
}

.settings-data-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.settings-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 9px;
  border: 1px solid rgba(var(--oceanic-blue-rgb), 0.28);
  background: rgba(var(--oceanic-blue-rgb), 0.08);
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--mock-accent);
  line-height: 1.2;
}

.settings-btn .sf-icon {
  --sf-size: 12px;
}

.settings-btn--danger {
  border-color: rgba(var(--oceanic-blue-rgb), 0.2);
  color: var(--mock-accent);
}

.explore-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.explore-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.explore-arrow:active {
  transform: scale(0.96);
}

.explore-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 32px;
  align-items: end;
  padding: 28px 32px;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(8, 22, 40, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.explore-copy {
  position: relative;
  min-height: 7.5rem;
}

.explore-panel {
  display: none;
  animation: explore-fade-in 0.28s ease;
}

.explore-panel.is-active {
  display: block;
}

@keyframes explore-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.explore-eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.explore-panel h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  line-height: 1.1;
  color: var(--text);
}

.explore-panel p {
  margin: 0 0 16px;
  max-width: 52rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.explore-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
}

.explore-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.explore-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.explore-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--cyan);
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.panel-tags li {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Detail grid */

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

.detail-block {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, transform 0.3s ease;
}

.detail-block:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.detail-block h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cyan);
}

.detail-block .sf-icon {
  opacity: 0.95;
}

.detail-block ul {
  margin: 0;
  padding-left: 16px;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.detail-block li { margin-bottom: 8px; }

/* Privacy */

.privacy-block {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  border-radius: calc(var(--radius) + 8px);
  background: rgba(8, 22, 40, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
}

.privacy-ring {
  position: relative;
  width: 100px;
  height: 100px;
}

.privacy-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.privacy-ring circle {
  fill: none;
  stroke: rgba(255,255,255,0.12);
  stroke-width: 4;
}

.privacy-ring .ring-progress {
  stroke: var(--cyan);
  stroke-dasharray: 339;
  stroke-dashoffset: 80;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px var(--cyan));
}

.privacy-ring .sf-icon {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.privacy-ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.privacy-block h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--text);
}

.privacy-block p {
  margin: 0;
  color: var(--text-secondary);
  max-width: 48rem;
}

/* Download */

#privacy {
  padding-top: 48px;
  padding-bottom: 48px;
  z-index: 2;
}

#download {
  padding-top: 48px;
  padding-bottom: 24px;
  z-index: 2;
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  border-radius: calc(var(--radius) + 8px);
  background: rgba(8, 22, 40, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
}

.download-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--text);
}

.download-copy p { color: var(--text-secondary); }

.download-actions { text-align: center; position: relative; }

.download-note {
  margin: 16px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Reef — rises from page bottom, fades under privacy & download */

.reef-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(520px, 68vh, 880px);
  z-index: 0;
  pointer-events: none;
  background-image: url("assets/reef-bottom.png");
  background-repeat: no-repeat;
  background-position: center calc(100% + clamp(190px, 38vh, 440px));
  background-size: 100% auto;
  filter: brightness(0.88) saturate(0.92);
  -webkit-mask-image: linear-gradient(
    to top,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.92) 54%,
    rgba(0, 0, 0, 0.68) 68%,
    rgba(0, 0, 0, 0.38) 80%,
    rgba(0, 0, 0, 0.14) 90%,
    transparent 98%
  );
  mask-image: linear-gradient(
    to top,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.92) 54%,
    rgba(0, 0, 0, 0.68) 68%,
    rgba(0, 0, 0, 0.38) 80%,
    rgba(0, 0, 0, 0.14) 90%,
    transparent 98%
  );
}

.reef-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    transparent 0%,
    rgba(1, 8, 16, 0.08) 38%,
    rgba(2, 16, 24, 0.38) 64%,
    rgba(2, 21, 32, 0.72) 86%,
    #021520 100%
  );
  pointer-events: none;
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 2;
  padding: 40px 0 56px;
  background: transparent;
  color: var(--text-secondary);
}

.footer-inner { text-align: center; }
.footer-inner .wordmark-dive { color: var(--text); text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65); }
.footer-inner p { margin: 10px 0 0; font-size: 0.92rem; color: var(--text-muted); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55); }
.footer-meta { font-size: 0.82rem !important; opacity: 0.85; color: var(--text-muted); }

/* Reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--i, 0) * 0.08s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.15s; }

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

  .reveal { opacity: 1; transform: none; }
  .explore-panel { animation: none; }
  .light-shimmer {
    opacity: max(0, calc((1 - var(--scroll-depth) * 2) * 0.15)) !important;
  }
  .caustic-canvas {
    opacity: 0.25;
  }
}

/* Responsive */

@media (max-width: 980px) {
  .dive-card-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
  }

  .dive-cards-stack {
    gap: 10px;
    padding: 16px;
  }

  .dive-card--back {
    display: none;
  }

  .dive-card--featured {
    transform: none;
  }

  .detail-mock {
    max-width: none;
    padding: 14px;
    gap: 10px;
  }

  .detail-mock-row {
    grid-template-columns: 1fr;
    flex: none;
  }

  .detail-profile-chart {
    min-height: 96px;
  }

  .detail-panel {
    flex: none;
  }

  .sites-row-card {
    padding: 14px 16px;
    gap: 12px;
  }

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

  .gear-kits-row {
    grid-template-columns: 1fr;
  }

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

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

  .settings-data-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .explore-stage {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .explore-stack {
    gap: 12px;
  }

  .explore-arrow {
    display: none;
  }

  .explore-frame {
    min-height: clamp(260px, 40vh, 380px);
  }

  .explore-meta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .explore-dots {
    justify-content: center;
    padding-bottom: 0;
  }

  .hero-grid,
  .split-section,
  .download-card,
  .highlights-grid,
  .bento,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .bento-app-peek {
    left: 20px;
    right: 20px;
    height: 52%;
  }

  .hero-visual { order: -1; }
  .hero { padding-top: 64px; }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-shallow);
  }

  .nav-links {
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(4, 21, 37, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.82);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #fff;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    padding: 12px 0;
    border-top: 1px solid var(--border);
  }

  .section { padding: 72px 0; }
  .privacy-block { grid-template-columns: 1fr; padding: 32px; }
}

/* Help page */

.help-page {
  --help-text: #0a1e3c;
  --help-muted: #5f6f82;
  --help-border: #e2e8f0;
  --help-surface: #f8fafc;
  background: #fff;
  color: var(--help-text);
}

.help-page::before {
  display: none;
}

.help-page main::before {
  display: none;
}

.help-page a {
  color: var(--oceanic-blue);
}

.help-header {
  background: #fff;
  border-bottom: 1px solid var(--help-border);
  backdrop-filter: none;
}

.help-header .wordmark-dive {
  color: var(--help-text);
}

.help-header .nav-links a {
  color: #334155;
}

.help-header .nav-links a:hover,
.help-header .nav-links a.active {
  color: var(--help-text);
}

.help-header .nav-toggle {
  color: var(--help-text);
  border-color: var(--help-border);
  background: #fff;
}

.help-hero {
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--help-border);
}

.help-hero .eyebrow {
  color: var(--oceanic-blue);
}

.help-hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.08;
  color: var(--help-text);
}

.help-hero-lede {
  margin: 0;
  max-width: 42rem;
  font-size: 1.05rem;
  color: var(--help-muted);
}

.help-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 40px 0 72px;
}

.help-toc {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  padding: 16px 14px;
  border-radius: 12px;
  background: var(--help-surface);
  border: 1px solid var(--help-border);
}

.help-toc-title {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--help-muted);
}

.help-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.help-toc a {
  display: block;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #475569;
  line-height: 1.35;
}

.help-toc a:hover {
  background: #fff;
  color: var(--help-text);
}

.help-content {
  min-width: 0;
}

.help-section {
  padding: 36px 0;
  border-top: 1px solid var(--help-border);
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.help-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.help-section h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  line-height: 1.15;
  color: var(--help-text);
}

.help-section h3 {
  margin: 28px 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--help-text);
}

.help-section p,
.help-section li {
  color: #334155;
}

.help-section p {
  margin: 0 0 14px;
}

.help-section ul,
.help-section ol {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.help-section li + li {
  margin-top: 6px;
}

.help-section code {
  padding: 2px 6px;
  border-radius: 5px;
  background: #eef6fe;
  font-size: 0.88em;
  color: #0b5cad;
}

.help-callout {
  margin: 20px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--oceanic-blue);
  border-radius: 0 8px 8px 0;
  background: #f0f7ff;
}

.help-callout p {
  margin: 0;
  color: var(--help-text);
  font-weight: 500;
}

.help-warning {
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12 !important;
}

.help-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--help-muted) !important;
}

.help-table-wrap {
  margin: 16px 0 20px;
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--help-border);
  background: #fff;
}

.help-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.help-table th,
.help-table td {
  padding: 11px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--help-border);
  color: #334155;
}

.help-table th {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--help-muted);
  background: var(--help-surface);
}

.help-table tr:last-child th,
.help-table tr:last-child td {
  border-bottom: 0;
}

.help-table td strong {
  color: var(--help-text);
}

.help-faq {
  margin: 0;
}

.help-faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--help-border);
}

.help-faq-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.help-faq dt {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--help-text);
  line-height: 1.4;
}

.help-faq dd {
  margin: 0;
  color: #334155;
  line-height: 1.55;
}

.help-content-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--help-border);
}

.help-content-footer p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--help-muted);
}

.help-page .help-site-footer.site-footer {
  background: #fff;
  border-top: 1px solid var(--help-border);
  color: var(--help-muted);
}

.help-page .help-site-footer .wordmark-dive {
  color: var(--help-text);
  text-shadow: none;
}

.help-page .help-site-footer p {
  color: var(--help-muted);
  text-shadow: none;
}

@media (max-width: 900px) {
  .help-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .help-toc {
    position: static;
  }

  .help-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }
}

@media (max-width: 560px) {
  .help-toc ol {
    grid-template-columns: 1fr;
  }

  .help-hero {
    padding-top: 28px;
  }
}
