/* ═══════════════════════════════════════════════════════════════════════
   Holidock — marketing site
   Palette, type and semantics are lifted from the product's own tokens
   (src/ui/styles/tokens.css) so the page and the app speak one language:
   mulberry is the brand, gold means "statutory", and a cool near-white —
   never a cream — is the paper.
   ═══════════════════════════════════════════════════════════════════════ */

/* Self-hosted variable faces — the same two files the app ships, so the site
   and the product set type identically and neither depends on a font CDN. */
@font-face {
  font-family: "Hanken Grotesk Variable";
  src: url("assets/fonts/hanken-grotesk-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter Variable";
  src: url("assets/fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --mulberry:      #4d1042;
  --mulberry-deep: #2c0826;
  --mulberry-lift: #6a1b5b;
  --wash:          #f4eef2;   /* the logo's light shape colour */

  --paper:  #fafbfd;          /* cool near-white, the app's surface */
  --paper-2:#f2f4f8;
  --white:  #ffffff;
  --ink:    #1c1f26;
  --muted:  #6a707c;
  --faint:  #a2a8b2;
  --line:   #e4e7ee;

  --gold:     #bf9233;        /* statutory holiday, in the app and here */
  --gold-lit: #e5c46e;
  --ok:       #3f9d6b;
  --tight:    #d89a2e;
  --rest:     #e6a23c;

  --display: "Hanken Grotesk Variable", "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --body: "Inter Variable", Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gut: clamp(20px, 5vw, 64px);
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 { font-family: var(--display); font-weight: 600; margin: 0; letter-spacing: -0.028em; line-height: 1.06; }
p { margin: 0; }
img { max-width: 100%; }

a { color: var(--mulberry); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--white); color: var(--ink); padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 760px; }

/* ── Buttons ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold  { background: var(--gold-lit); color: #37260a; }
.btn-gold:hover { background: #f0d48b; }
.btn-ghost { color: var(--wash); border-color: rgba(244,238,242,.32); }
.btn-ghost:hover { border-color: rgba(244,238,242,.7); background: rgba(244,238,242,.06); }
.btn-light { background: var(--wash); color: var(--mulberry); padding: 11px 18px; font-size: 15px; }
.btn-light:hover { background: var(--white); }
.btn-wide { display: block; text-align: center; }

/* ── Nav ─────────────────────────────────────────────────────────────── */

.nav { background: var(--mulberry-deep); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 18px var(--gut);
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: block; flex: none; }
/* 48px, not 34. This is a STACKED lockup: the tagline is set inside the same
   height as the wordmark, so a third of any given height goes to type that is
   already the smallest thing on the page. At 34px the whole mark read as a
   smudge. 3.12:1, so this is ~150px wide. */
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a, .nav-signin {
  color: rgba(244,238,242,.82); font-size: 15px; font-weight: 450; letter-spacing: -0.005em;
}
.nav-links a:hover, .nav-signin:hover { color: var(--wash); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 20px; flex: none; }

/* ── Hero ────────────────────────────────────────────────────────────── */

.hero {
  background: var(--mulberry-deep);
  color: var(--wash);
  padding-block: clamp(56px, 8vw, 104px) clamp(64px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
/* A single soft mulberry lift behind the instrument — not a gradient wash. */
.hero::before {
  content: ""; position: absolute; inset: auto -10% -40% 45%;
  height: 620px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(106,27,91,.55), transparent 72%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--max); margin: 0 auto; padding-inline: var(--gut);
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 4.5vw, 64px); align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 600;
  max-width: 17ch;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(17px, 1.35vw, 19px);
  color: rgba(244,238,242,.76);
  max-width: 48ch;
  line-height: 1.62;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-fine { margin-top: 20px; font-size: 14.5px; color: rgba(244,238,242,.62); max-width: 44ch; }

/* ── The instrument ──────────────────────────────────────────────────── */

.rig {
  margin: 0;
  background: rgba(250,251,253,.05);
  border: 1px solid rgba(244,238,242,.14);
  border-radius: 14px;
  padding: 22px 22px 18px;
  backdrop-filter: blur(2px);
}
.rig-head { display: block; margin-bottom: 20px; }
.rig-title {
  display: block; font-family: var(--display); font-weight: 600; font-size: 16px;
  color: var(--gold-lit); letter-spacing: -0.01em;
}
.rig-note { display: block; font-size: 13.5px; color: rgba(244,238,242,.66); margin-top: 3px; }

.rig-grid { position: relative; display: grid; gap: 7px; }
.rig-row {
  display: grid;
  grid-template-columns: 62px repeat(7, minmax(0, 1fr));
  gap: 5px; align-items: center;
}
.rig-label {
  font-size: 12.5px; color: rgba(244,238,242,.6); font-variant-numeric: tabular-nums;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rig-cell {
  height: 42px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11.5px; letter-spacing: -0.005em;
}
.rig-dayname {
  height: auto; font-size: 11.5px; color: rgba(244,238,242,.6); font-weight: 500;
}
.rig-cell.open { background: rgba(244,238,242,.1); }
.rig-cell.rest { background: rgba(230,162,60,.2); color: #f0c481; }
/* The day the BUSINESS is shut, which is a different fact from a person's rest
   day and has to look like one: recessed rather than filled, so the eye reads
   the whole column as absent instead of as somebody's day off. */
.rig-cell.shut {
  background: rgba(10,6,14,.28);
  color: rgba(244,238,242,.34);
  box-shadow: inset 0 0 0 1px rgba(244,238,242,.07);
}
/* The statutory column wears the same faint gold wash the app's calendar uses,
   so the holiday is a property of the day rather than a badge stuck on it. */
.rig-cell.is-hol {
  background: rgba(191,146,51,.3);
  color: #f4dda3;
  box-shadow: inset 0 0 0 1px rgba(229,196,110,.42);
}
.rig-dayname.is-hol { background: none; box-shadow: none; color: var(--gold-lit); font-weight: 600; }
/* Her rest day keeps its own amber and borrows only the holiday's ring — two
   facts about one square, which is exactly the situation being explained. */
.rig-cell.rest.is-hol { background: rgba(230,162,60,.2); color: #f0c481; }

/* Mei's day back: it flies out of the holiday she lost and settles on the
   working day Holidock found for it. */
.lieu {
  position: absolute; z-index: 2;
  height: 42px; border-radius: 6px;
  background: var(--gold); color: #2a1d05;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; font-size: 11px; letter-spacing: -0.01em;
  box-shadow: 0 6px 18px rgba(0,0,0,.34);
  white-space: nowrap; overflow: hidden;
  opacity: 0;
  transition: left .62s cubic-bezier(.65,.02,.24,1), opacity .3s ease;
  pointer-events: none;
}
.rig[data-state="after"] .lieu { opacity: 1; }
/* On a narrow column the words will not fit inside one day; the gold block alone
   still reads, because it is the only solid gold thing on the grid. */
@media (max-width: 900px) { .lieu-tx, .hol-tx { display: none; } }

.rig-verdict {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid rgba(244,238,242,.13);
  min-height: 84px;
}
.verdict-line {
  font-size: 14.5px; line-height: 1.58; color: rgba(244,238,242,.78);
  display: none;
}
.rig[data-state="before"] .verdict-line[data-state="before"],
.rig[data-state="after"]  .verdict-line[data-state="after"] { display: block; }
.tok-stat { color: var(--gold-lit); font-weight: 600; }

.rig-switch { display: flex; gap: 6px; margin-top: 16px; }
.sw {
  flex: 1;
  font-family: var(--display); font-weight: 600; font-size: 13.5px;
  padding: 9px 12px; border-radius: 7px; cursor: pointer;
  background: transparent; color: rgba(244,238,242,.62);
  border: 1px solid rgba(244,238,242,.18);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.sw:hover { color: var(--wash); border-color: rgba(244,238,242,.4); }
.sw[aria-pressed="true"] {
  background: var(--wash); color: var(--mulberry); border-color: var(--wash);
}

/* ── Bands ───────────────────────────────────────────────────────────── */

.band { padding-block: clamp(64px, 8vw, 112px); }
.band-alt { background: var(--paper-2); }
.band-dark { background: var(--mulberry); color: var(--wash); }

.band-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.band-head h2, .cov h2, .price h2, .faq-h, .close h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 18px;
}
.band-lede { color: var(--muted); font-size: 17.5px; line-height: 1.65; max-width: 58ch; }
.band-lede + .band-lede { margin-top: 14px; }

/* ── Proof strip ─────────────────────────────────────────────────────── */
/* Sits directly under the hero, still on the dark ground, so it reads as the
   last line of the hero rather than the first of the next section. */
.proof { background: var(--mulberry-deep); color: var(--wash); padding-bottom: clamp(40px, 5vw, 64px); }
.proof-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(244,238,242,.14);
}
.proof-fig {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(34px, 4vw, 46px); line-height: 1;
  color: var(--gold-lit); letter-spacing: -0.02em;
}
.proof-say { margin-top: 12px; font-size: 15px; line-height: 1.6; color: rgba(244,238,242,.72); }

/* ── Why Hong Kong ───────────────────────────────────────────────────── */
.hk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3.5vw, 44px); }
.hk-item h3 {
  font-size: 18.5px; margin-bottom: 10px; letter-spacing: -0.012em;
  padding-top: 14px; border-top: 2px solid var(--gold);
}
.hk-item p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* ── Rule ledger ─────────────────────────────────────────────────────── */

.ledger { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.rule {
  display: grid; grid-template-columns: minmax(0, 27fr) minmax(0, 40fr);
  gap: clamp(24px, 4vw, 56px);
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}
.rule h3 {
  font-size: clamp(21px, 2vw, 25px); line-height: 1.18;
  position: relative; padding-left: 18px;
}
/* a small gold tick on the rule's left edge — the app's statutory marker */
.rule h3::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 6px; height: 6px; border-radius: 1px;
  background: var(--gold);
}
.rule-body { display: grid; gap: 14px; }
.rule-what { color: var(--muted); font-size: 16.5px; line-height: 1.62; }
.rule-us {
  font-size: 16.5px; line-height: 1.62; color: var(--ink);
  padding-left: 16px; border-left: 2px solid var(--mulberry);
}

/* ── In use ──────────────────────────────────────────────────────────── */

.use {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.use-text { display: grid; gap: 32px; }
.use-item h3 { font-size: 20px; margin-bottom: 8px; }
.use-item p { color: var(--muted); font-size: 16.5px; line-height: 1.6; max-width: 52ch; }

.mail {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(20,22,28,.04), 0 12px 40px rgba(20,22,28,.09);
  overflow: hidden;
}
.mail-chrome {
  background: var(--mulberry); color: var(--wash);
  padding: 14px 20px;
}
.mail-from { display: block; font-size: 12px; opacity: .66; }
.mail-subj { display: block; font-family: var(--display); font-weight: 600; font-size: 15.5px; margin-top: 2px; }
.mail-body { padding: 20px; }
.mail-hi { font-family: var(--display); font-weight: 600; font-size: 17px; margin: 0 0 3px; }
.mail-sub { font-size: 13.5px; color: var(--muted); margin: 0 0 16px; }
.mail-facts { margin: 0; display: grid; gap: 10px; }
/* 108px, not 92: "Working days" and "Also off then" are the real labels and the
   narrower column wrapped both of them. */
.mail-facts > div {
  display: grid; grid-template-columns: 108px 1fr; gap: 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.mail-facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
.mail-facts dt { color: var(--muted); }
.mail-facts dd { margin: 0; font-variant-numeric: tabular-nums; }
.mail-btns { display: flex; gap: 10px; margin-top: 20px; }
.mbtn {
  flex: 1; text-align: center; padding: 11px; border-radius: 8px;
  font-family: var(--display); font-weight: 600; font-size: 14.5px;
  border: 1px solid var(--line); color: var(--muted);
}
.mbtn-yes { background: var(--mulberry); color: var(--wash); border-color: var(--mulberry); }

/* ── Coverage ────────────────────────────────────────────────────────── */

.cov {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.cov-strip {
  background: var(--white); border-radius: 12px; padding: 24px;
  box-shadow: 0 1px 2px rgba(20,22,28,.04), 0 10px 32px rgba(20,22,28,.07);
}
.cov-week { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.cov-day { display: grid; gap: 8px; justify-items: center; }
.cov-d { font-size: 12.5px; color: var(--muted); }
.cov-bar { display: block; width: 100%; height: 76px; border-radius: 5px; }
.cov-n { font-size: 11.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.cov-day.ok    .cov-bar { background: rgba(63,157,107,.2);  box-shadow: inset 0 -3px 0 var(--ok); }
.cov-day.tight .cov-bar { background: rgba(216,154,46,.22); box-shadow: inset 0 -3px 0 var(--tight); }
.cov-day.shutday .cov-bar { background: var(--paper-2); }
.cov-day.shutday .cov-n { color: var(--faint); }
.cov-key { margin-top: 14px; font-size: 12.5px; color: var(--faint); }

/* Friday opened up: the per-skill claim, shown rather than asserted. */
.cov-open { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.cov-open-h { font-family: var(--display); font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.cov-skills { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.cov-skills li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; padding: 7px 11px; border-radius: 6px;
}
.cov-sk { flex: 1; }
.cov-sv { font-variant-numeric: tabular-nums; font-weight: 600; }
.cov-skills .ok    { background: rgba(63,157,107,.1);  color: #2d7a51; }
.cov-skills .short { background: rgba(216,154,46,.14); color: #8a6216; }
.cov-fix {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 15px; line-height: 1.55; color: var(--muted);
}
.cov-fix b { color: var(--ink); font-weight: 600; }

/* ── Pricing ─────────────────────────────────────────────────────────── */

.price {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 400px);
  gap: clamp(36px, 5vw, 80px); align-items: start;
}
.price-lede { color: rgba(244,238,242,.72); font-size: 17.5px; line-height: 1.65; max-width: 46ch; }
.price-list {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: grid; gap: 0;
}
.price-list li {
  font-size: 16px; color: rgba(244,238,242,.86);
  padding: 12px 0 12px 26px;
  border-top: 1px solid rgba(244,238,242,.14);
  position: relative;
}
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 1.24em;
  width: 11px; height: 2px; background: var(--gold-lit);
}

.price-card {
  background: var(--wash); color: var(--ink);
  border-radius: 14px; padding: 32px 30px;
}
.price-figure {
  font-family: var(--display); font-weight: 600; color: var(--mulberry);
  line-height: 1; display: flex; align-items: baseline; gap: 4px;
}
.cur { font-size: 28px; }
.amt { font-size: 76px; letter-spacing: -0.04em; }
.price-unit { font-size: 16px; color: var(--muted); margin-top: 8px; }
.price-rule { border: 0; border-top: 1px solid rgba(77,16,66,.16); margin: 24px 0; }
.price-def { font-size: 15px; line-height: 1.6; color: var(--muted); margin-bottom: 24px; }
.price-fine { font-size: 13.5px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */

.faq { max-width: 780px; }
.faq-h { margin-bottom: 32px; }
details { border-top: 1px solid var(--line); }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: 18px;
  padding: 20px 40px 20px 0; position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid var(--mulberry); border-bottom: 2px solid var(--mulberry);
  transform: rotate(45deg); transition: transform .2s ease;
}
details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
details p {
  color: var(--muted); font-size: 16.5px; line-height: 1.65;
  padding-bottom: 22px; max-width: 64ch;
}

/* ── Close & footer ──────────────────────────────────────────────────── */

.close {
  background: var(--mulberry-deep); color: var(--wash);
  padding-block: clamp(64px, 8vw, 104px); text-align: center;
}
.close h2 { max-width: 18ch; margin-inline: auto; }
.close p { color: rgba(244,238,242,.68); margin: 18px auto 32px; max-width: 46ch; font-size: 17px; }

.foot { background: var(--mulberry-deep); color: rgba(244,238,242,.74); padding-block: 36px 44px; }
.foot-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px;
  border-top: 1px solid rgba(244,238,242,.14); padding-top: 30px;
}
/* Full opacity: dimming the brand to .8 to make it recede is the instinct this
   whole change is correcting. */
.foot-logo { height: 40px; width: auto; }
.foot-links { display: flex; gap: 22px; margin-left: auto; }
.foot-links a { color: rgba(244,238,242,.74); font-size: 14.5px; }
.foot-links a:hover { color: var(--wash); text-decoration: none; }
.foot-fine { font-size: 13.5px; width: 100%; color: rgba(244,238,242,.58); }

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { max-width: 18ch; }
  .hero::before { inset: auto -20% -50% 20%; }
  .rig { max-width: 620px; }
  .use, .cov, .price { grid-template-columns: 1fr; }
  .mail { position: static; max-width: 480px; }
  .cov-text { order: -1; }
  .price-card { max-width: 420px; }
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-inner { gap: 16px; }
  .nav-actions { margin-left: auto; gap: 14px; }
  .rule { grid-template-columns: 1fr; gap: 16px; padding-block: 28px; }
  .rig-row { grid-template-columns: 58px repeat(7, minmax(0, 1fr)); gap: 3px; }
  .rig-label { font-size: 11px; }
  .rig-cell { height: 38px; font-size: 10px; }
  .chip { height: 38px; padding: 0 6px; font-size: 11px; gap: 5px; }
  .lieu { height: 38px; font-size: 10px; }
  .cov-week { grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }
  .cov-bar { height: 60px; }
  .cov-d, .cov-n { font-size: 10.5px; }
  .cov-strip { padding: 18px; }
  /* Three columns of prose under 780px is four words a line. Stack both. */
  .proof-inner { grid-template-columns: 1fr; gap: 26px; }
  .hk-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .nav-signin { display: none; }
  .amt { font-size: 62px; }
  .foot-links { margin-left: 0; flex-wrap: wrap; gap: 14px 20px; }
  .btn { width: 100%; text-align: center; }
  .hero-cta { gap: 10px; }
  .cov-n { display: none; }
}
