/* === ob05 shop landing — HUD/CRT terminal === */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700;800&display=swap');

:root {
  --c-bg: #0a0817;
  --c-bg-2: #100a26;
  --c-bg-soft: #150e2e;
  --c-line: #2a2245;
  --c-line-bright: #4a3a72;
  --c-text: #ece6fa;
  --c-mute: #9890b3;
  --c-dim: #6a6580;
  --c-purple: #b96aff;
  --c-orange: #ff5530;
  --c-amber: #ffaa00;
  --c-magenta: #ff4cb0;
  --c-mint: #6affb9;
  --font: 'JetBrains Mono', ui-monospace, monospace;
  --maxw: 1380px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(1200px 800px at 80% 0%, rgba(185, 106, 255, 0.05), transparent 60%),
    radial-gradient(1000px 700px at 0% 30%, rgba(255, 85, 48, 0.04), transparent 60%),
    var(--c-bg);
  overflow-x: hidden;
}

/* Global scanlines & grain (toggleable) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.018) 0px,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 3px
    );
  pointer-events: none;
  z-index: 9990;
  mix-blend-mode: overlay;
}
body.no-scan::before { display: none; }

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9991;
  opacity: 0.6;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.6  0 0 0 0 0.5  0 0 0 0 0.8  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body.no-grain::after { display: none; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--c-orange); color: #0a0817; }

/* === TERMINAL BAR === */
.term-bar {
  position: sticky;
  top: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 18px;
  background: rgba(10, 8, 23, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.term-dots { display: flex; gap: 6px; }
.term-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  display: block;
}
.term-title { color: var(--c-mute); }
.term-meta {
  margin-left: auto;
  display: flex;
  gap: 8px;
  color: var(--c-dim);
}
.dot-sep { color: var(--c-line-bright); }

/* === HERO === */
.hero {
  position: relative;
  width: 100%;
  height: clamp(640px, 100vh, 1080px);
  min-height: 640px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05) contrast(1.04);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 8, 23, 0) 0%, rgba(10, 8, 23, 0) 40%, rgba(10, 8, 23, 0.55) 100%),
    radial-gradient(ellipse at 50% 45%, rgba(0, 0, 0, 0) 30%, rgba(10, 8, 23, 0.55) 80%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.0) 0px,
      rgba(0, 0, 0, 0.0) 2px,
      rgba(0, 0, 0, 0.18) 3px
    );
  mix-blend-mode: multiply;
}

/* Hero content sits in the central dark panel of the HUD frame */
.hero-content {
  position: absolute;
  z-index: 5;
  /* matches the inner dark zone of the HUD video frame */
  left: 19%;
  right: 19%;
  top: 26%;
  bottom: 38%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 0 12px;
}
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11.5px;
  color: var(--c-mute);
  letter-spacing: 0.05em;
}
.hero-coord { color: var(--c-dim); }

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sd, var(--c-magenta));
  text-transform: lowercase;
  letter-spacing: 0.06em;
}
.status-dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sd, var(--c-magenta));
  box-shadow: 0 0 12px var(--sd, var(--c-magenta));
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-h1 {
  position: relative;
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: lowercase;
  color: var(--c-text);
  text-shadow:
    0 0 1px rgba(255, 76, 176, 0.4),
    -1px 0 0 rgba(255, 85, 48, 0.35),
    1px 0 0 rgba(108, 218, 255, 0.25);
}
.hero-h1-line {
  display: inline-block;
  animation: heroGlowPulse 4s ease-in-out infinite;
}
.hero-h1-line:nth-child(4) { animation-delay: -2s; }
@keyframes heroGlowPulse {
  0%, 70%, 100% {
    text-shadow:
      0 0 1px rgba(255, 76, 176, 0.4),
      -1px 0 0 rgba(255, 85, 48, 0.35),
      1px 0 0 rgba(108, 218, 255, 0.25);
  }
  85% {
    text-shadow:
      0 0 18px rgba(255, 60, 60, 0.65),
      0 0 2px rgba(255, 76, 176, 0.5),
      -1px 0 0 rgba(255, 85, 48, 0.45),
      1px 0 0 rgba(108, 218, 255, 0.25);
  }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--c-orange);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  opacity: 0.85;
  text-decoration: none;
  animation: scrollBlink 1.6s ease-in-out infinite;
}
.hero-scroll-arrow {
  font-size: 14px;
  line-height: 1;
  transform: translateY(0);
  animation: scrollBob 1.8s ease-in-out infinite;
}
@keyframes scrollBlink {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.35; }
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.hero-h1-ghost {
  position: absolute;
  inset: 0;
  display: block;
  transform: scaleY(-1);
  opacity: 0.06;
  color: var(--c-amber);
  filter: blur(0.4px);
  pointer-events: none;
  white-space: pre-line;
  /* a single line as ghost */
  font-size: 0.5em;
  top: -28%;
}
.cursor-blink {
  display: inline-block;
  color: var(--c-orange);
  animation: blink 1.05s steps(1) infinite;
  margin-left: 0.05em;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.hero-body {
  font-size: clamp(13px, 1.05vw, 15px);
  color: var(--c-mute);
  max-width: 64ch;
  margin: 0;
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  color: var(--c-orange);
  position: relative;
}
.btn:hover {
  animation: bracketPulse 1.5s ease-in-out infinite;
}
@keyframes bracketPulse {
  0%, 100% { color: var(--c-orange); border-color: var(--c-orange); }
  50% { color: var(--c-magenta); border-color: var(--c-magenta); }
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  z-index: -1;
}
.btn:hover::before { transform: scaleX(1); }
.btn-orange { color: var(--c-orange); }
.btn-orange:hover { color: #0a0817; }
.btn-ghost { color: var(--c-mute); border-color: var(--c-line-bright); }
.btn-ghost:hover { color: var(--c-text); border-color: var(--c-text); }

/* Bracket pulse on the inline cta-button text inside cards */
.card:hover .cta-button {
  animation: bracketPulse 1.5s ease-in-out infinite;
}

/* === BILLING TOGGLE === */
.billing-toggle {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--c-line);
  margin-bottom: 18px;
  background: rgba(10, 8, 23, 0.6);
}
.billing-toggle button {
  appearance: none;
  background: transparent;
  border: none;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-mute);
  cursor: pointer;
  text-transform: lowercase;
  transition: color 0.15s, background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.billing-toggle button + button { border-left: 1px solid var(--c-line); }
.billing-toggle button:hover { color: var(--c-text); }
.billing-toggle button.on {
  color: #0a0817;
  background: var(--c-orange);
}
.billing-save {
  font-size: 9.5px;
  padding: 1px 5px;
  border: 1px solid currentColor;
  letter-spacing: 0.1em;
  color: var(--c-amber);
}
.billing-toggle button.on .billing-save {
  color: #0a0817;
  background: rgba(10, 8, 23, 0.15);
  border-color: rgba(10, 8, 23, 0.3);
}

/* === DELIVERY === */
.del-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}
.del-card {
  position: relative;
  padding: 22px 22px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0)),
    var(--c-bg-2);
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.del-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 4px);
  pointer-events: none;
}
.del-card:hover {
  transform: translateY(-4px);
  border-color: currentColor;
  box-shadow: 0 16px 50px -12px rgba(0,0,0,0.65);
}
.del-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.del-card-id {
  font-size: 16px;
  font-weight: 700;
  color: currentColor;
}
.del-card-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--c-dim);
  border: 1px solid var(--c-line-bright);
  padding: 2px 6px;
  text-transform: lowercase;
}
.del-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.del-list li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.6;
}
.del-mark {
  color: currentColor;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

/* === REVEAL on scroll === */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* card hover lift refinement */
.card { transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.7);
}

/* parallax: rule line moves smoothly via inline transform set in JS */
.sec-rule-line { transition: transform 0.05s linear; will-change: transform; }

/* === MOBILE === */
@media (max-width: 768px) {
  .sec-head-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sec-head-glyph { align-self: flex-start; opacity: 0.8; }
  .grid-4, .grid-3, .grid-2, .del-grid { grid-template-columns: 1fr; }
  .card, .del-card { width: 100%; }
  .card-foot, .del-card-head { flex-wrap: wrap; }
  .card-cta { width: 100%; text-align: left; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { flex: 1; justify-content: center; }
}

/* === MOUNTAIN RIDGE divider === */
.ridge {
  position: relative;
  margin-top: -100px;
  z-index: 4;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--c-bg) 90%);
}
.ridge-svg { width: 100%; height: 100%; display: block; }

/* === MAIN === */
.main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* === SECTION HEAD === */
.sec {
  padding: 60px 0 40px;
  scroll-margin-top: 60px;
}
.sec-head {
  position: relative;
  margin-bottom: 36px;
}
.sec-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.sec-head-text { flex: 1; min-width: 0; }
.sec-num {
  font-size: 11.5px;
  color: var(--c-orange);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.sec-num-tick {
  display: inline-block;
  border: 1px solid var(--c-orange);
  padding: 1px 6px;
  margin-right: 4px;
}
.sec-title {
  position: relative;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 12px;
  text-transform: lowercase;
  color: var(--c-text);
  display: inline-block;
}
.sec-title-ghost {
  position: absolute;
  left: 0;
  bottom: -0.5em;
  font-size: 0.6em;
  color: var(--c-amber);
  opacity: 0.08;
  transform: scaleY(-1);
  pointer-events: none;
  white-space: nowrap;
}
.sec-sub {
  margin: 0;
  font-size: 13.5px;
  color: var(--c-mute);
  max-width: 64ch;
  line-height: 1.6;
}
.sec-head-glyph {
  flex-shrink: 0;
  opacity: 0.85;
}
.sec-rule {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec-rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--c-line-bright), var(--c-line) 30%, transparent);
}
.sec-rule-end {
  color: var(--c-orange);
  font-size: 8px;
}

/* === GRID === */
.grid {
  display: grid;
  gap: 18px;
}
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }

/* === CARD === */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0)) ,
    var(--c-bg-2);
  border: 1px solid var(--c-line);
  color: var(--c-text);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  min-height: 280px;
  cursor: pointer;
  overflow: hidden;
}
.card::after {
  /* faint diagonal stripe pattern over card to mimic CRT */
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.012) 0px,
    rgba(255, 255, 255, 0.012) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
}
.card:hover {
  transform: translateY(-2px);
  border-color: currentColor;
  box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.6);
}
.card-purple { color: var(--c-purple); }
.card-orange { color: var(--c-orange); }
.card-amber { color: var(--c-amber); }

.card-purple:hover { background: linear-gradient(180deg, rgba(185, 106, 255, 0.05), rgba(185, 106, 255, 0)) , var(--c-bg-2); }
.card-orange:hover { background: linear-gradient(180deg, rgba(255, 85, 48, 0.06), rgba(255, 85, 48, 0)) , var(--c-bg-2); }
.card-amber:hover { background: linear-gradient(180deg, rgba(255, 170, 0, 0.06), rgba(255, 170, 0, 0)) , var(--c-bg-2); }

.card-featured {
  border-color: rgba(255, 85, 48, 0.5);
}

.card-flag {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--c-orange);
  opacity: 0.7;
}

.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.card-id {
  font-size: 16px;
  font-weight: 700;
  color: currentColor;
  letter-spacing: -0.005em;
}
.card-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  white-space: nowrap;
}
.card-cycle {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-dim);
  margin-left: 2px;
}

.card-desc {
  font-size: 12.5px;
  color: var(--c-mute);
  margin: 0 0 14px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.card-desc-tall {
  margin-bottom: 18px;
  flex: 1;
}

.card-perks {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: block;
  flex: 1;
  position: relative;
  z-index: 1;
}
.card-perks li {
  display: block;
  padding-left: 16px;
  position: relative;
  font-size: 12px;
  color: var(--c-mute);
  line-height: 1.5;
  margin-bottom: 6px;
}
.card-perks li .perk-mark {
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor;
  font-weight: 700;
}
.card-perks li > span:last-child { display: block; }
.perk-mark {
  color: currentColor;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--c-line);
  font-size: 12px;
  color: currentColor;
  position: relative;
  z-index: 1;
  letter-spacing: 0.04em;
}
.card-cta { font-weight: 600; white-space: nowrap; }
.card-arrow {
  transition: transform 0.18s ease;
}
.card:hover .card-arrow { transform: translateX(4px); }

/* === HUD CHROME PIECES === */
.tick-gauge {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
}
.tick-gauge span {
  display: block;
  width: 6px;
  height: 14px;
  border: 1px solid;
}
.tick-gauge .tick-arrow {
  width: 0; height: 0;
  border: 7px solid transparent;
  border-left-style: solid;
  margin-left: 4px;
  background: transparent;
  border-top-width: 6px;
  border-bottom-width: 6px;
}

.readout {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--rd, var(--c-magenta));
  padding: 8px 12px;
  min-width: 160px;
  background: rgba(10, 8, 23, 0.5);
}
.readout-label {
  font-size: 9px;
  color: var(--c-dim);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.readout-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  color: var(--rd, var(--c-magenta));
  letter-spacing: 0.05em;
}
.readout-key { color: var(--c-mute); }

/* === HOW IT WORKS === */
.how-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.how-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 22px 0 22px;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
}
.how-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-orange);
  letter-spacing: -0.02em;
  line-height: 1;
}
.how-item p {
  margin: 0;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.65;
  max-width: 70ch;
}

/* === FOOTER === */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 32px 60px;
}
.footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-line-bright), transparent);
  margin-bottom: 24px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11.5px;
  color: var(--c-dim);
  letter-spacing: 0.05em;
}
.footer-right {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-right a {
  color: var(--c-mute);
  transition: color 0.15s;
}
.footer-right a:hover { color: var(--c-orange); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content {
    left: 8%;
    right: 8%;
    top: 22%;
    bottom: 22%;
  }
}
@media (max-width: 640px) {
  body { font-size: 13px; }
  .term-meta { display: none; }
  .hero-content {
    left: 6%;
    right: 6%;
    top: 18%;
    bottom: 14%;
    gap: 14px;
  }
  .hero-top { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-coord { font-size: 10px; }
  .hero-h1 { font-size: 36px; line-height: 1.0; }
  .hero-body { font-size: 12.5px; }
  .main { padding: 0 18px 60px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .sec { padding: 40px 0 24px; }
  .sec-head-row { flex-direction: column; gap: 16px; }
  .sec-head-glyph { align-self: flex-start; }
  .how-item { grid-template-columns: 1fr; gap: 8px; }
  .footer-row { flex-direction: column; }
}
