/* DankProxies public landing — black / charcoal / red operational storefront */

:root {
  --bg: #080809;
  --panel: #111114;
  --panel-2: #18181c;
  --line: #2c2c33;
  --line-soft: #232328;
  --text: #ececf0;
  --muted: #9898a3;
  --dim: #686872;
  --accent: #d91a22;
  --accent-2: #e8252d;
  --ok: #34a853;
  --info: #2eb8c4;
  --radius: 6px;
  --header-h: 56px;
  --transition: 140ms ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { text-decoration: underline; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.1rem;
}

.center { text-align: center; }
.center-sub { margin-left: auto; margin-right: auto; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.site-header .header-inner,
header .wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: var(--header-h);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-link:hover { text-decoration: none; }
.logo-img { height: 30px; width: auto; display: block; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  padding: .35rem .6rem;
  font: inherit;
  font-size: .84rem;
}
.nav-toggle:hover { background: var(--panel); border-color: var(--muted); }
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-nav,
header nav {
  display: flex;
  gap: .2rem;
  margin-left: auto;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a,
header nav a {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 500;
  padding: .38rem .65rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover,
header nav a:hover {
  color: var(--text);
  background: var(--panel-2);
  text-decoration: none;
}
.site-nav a[aria-current="page"],
header nav a[aria-current="page"] {
  color: var(--text);
  background: var(--panel-2);
}

.nav-cta,
header nav .btn {
  background: var(--accent) !important;
  color: #fff !important;
  border: 1px solid var(--accent);
  padding: .42rem .9rem !important;
  font-weight: 600;
}
.nav-cta:hover,
header nav .btn:hover {
  background: var(--accent-2) !important;
  border-color: var(--accent-2) !important;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: .58rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  font-size: .9rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}
.btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn.ghost:hover {
  background: var(--panel-2);
  border-color: var(--muted);
}
.btn.lg { padding: .72rem 1.5rem; font-size: .94rem; }
.btn.sm { padding: .32rem .65rem; font-size: .78rem; }

.cta-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  align-items: center;
}
.cta-row.center { justify-content: center; }

.micro {
  color: var(--dim);
  font-size: .82rem;
  margin-top: .85rem;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(68vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg,
      rgba(8,8,9,.72) 0%,
      rgba(8,8,9,.88) 45%,
      rgba(8,8,9,.96) 100%),
    url("/logo-hero.webp") center 30% / cover no-repeat,
    var(--bg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-bottom: .5rem;
}

.eyebrow {
  display: inline-block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}

.hero h1 {
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 .75rem;
  letter-spacing: 0;
}

.hero .tagline {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 1.25rem;
}

.hero-scroll-hint {
  margin-top: 1.5rem;
  color: var(--dim);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-scroll-hint a {
  color: var(--muted);
}
.hero-scroll-hint a:hover { color: var(--text); }

/* ---------- bands & sections ---------- */
.band {
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.band-alt { background: var(--panel); }

.band-head {
  margin-bottom: 1.75rem;
  max-width: 640px;
}

.band-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.band-head h2 {
  font-size: 1.45rem;
  font-weight: 650;
  margin: 0 0 .45rem;
  letter-spacing: 0;
}

.band-head .sub,
section > .wrap > p.sub {
  color: var(--muted);
  margin: 0;
  font-size: .92rem;
  max-width: 58ch;
}

.sub-head {
  margin: 2rem 0 .75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

/* legacy section selector for legal compatibility */
section { padding: 3rem 0; border-bottom: 1px solid var(--line); }
section h2 {
  font-size: 1.45rem;
  font-weight: 650;
  margin: 0 0 .45rem;
  letter-spacing: 0;
}

/* ---------- grids ---------- */
.grid {
  display: grid;
  gap: .85rem;
}
.grid.c2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.c4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ---------- cards (products & tools only) ---------- */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  min-width: 0;
}
.card h3 {
  margin: 0 0 .4rem;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}
.card code {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  padding: .06rem .35rem;
  border-radius: 4px;
  font-size: .86em;
  font-family: ui-monospace, Consolas, monospace;
}

.family-card { display: flex; flex-direction: column; gap: .35rem; }
.family-card .family-meta {
  color: var(--dim);
  font-size: .8rem;
  margin-top: auto;
  padding-top: .5rem;
}

/* feature list (unframed) */
.feature-list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  padding-left: .85rem;
  border-left: 2px solid var(--line);
}
.feature-list strong {
  display: block;
  font-size: .9rem;
  margin-bottom: .2rem;
}
.feature-list span {
  color: var(--muted);
  font-size: .86rem;
}

/* steps */
.steps .card { position: relative; padding-top: 2.2rem; }
.step-n {
  position: absolute;
  top: .85rem;
  left: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: rgba(217,26,34,.12);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .78rem;
}

/* pricing */
.price-card { display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); }
.tag {
  display: inline-block;
  background: rgba(46,184,196,.12);
  color: var(--info);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .14rem .5rem;
  border-radius: 4px;
  margin-bottom: .5rem;
  align-self: flex-start;
}
.price {
  font-size: 1.85rem;
  font-weight: 700;
  margin: .2rem 0 0;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.price small {
  font-size: .85rem;
  font-weight: 400;
  color: var(--muted);
}
.per-gb {
  color: var(--muted);
  font-size: .82rem;
  margin: .15rem 0 .85rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.price-card ul li {
  padding: .25rem 0;
  color: var(--muted);
  font-size: .86rem;
}
.price-card ul li::before {
  content: "\2713";
  color: var(--ok);
  margin-right: .45rem;
  font-weight: 700;
}
.price-card .btn { margin-top: auto; text-align: center; width: 100%; }

/* tables */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.table-scroll table { min-width: 520px; }
table { width: 100%; border-collapse: collapse; }
th, td {
  text-align: left;
  padding: .55rem .5rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: .86rem;
  vertical-align: top;
}
th {
  color: var(--muted);
  font-weight: 600;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
td { color: var(--muted); }
td strong { color: var(--text); }

.notice {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  margin: 1.5rem 0 0;
}
.notice p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.mono-inline {
  font-family: ui-monospace, Consolas, monospace;
  font-size: .86em;
}

/* partner directories */
.directory-hero {
  padding: 3.25rem 0 2.4rem;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.directory-hero h1 {
  margin: .2rem 0 .55rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.directory-intro {
  max-width: 720px;
  margin: 0;
  color: #c7c7d0;
  font-size: 1rem;
}
.directory-tabs {
  display: inline-flex;
  gap: .2rem;
  margin-top: 1.5rem;
  padding: .22rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.directory-tabs a {
  color: var(--muted);
  padding: .48rem .85rem;
  border-radius: 4px;
  font-size: .86rem;
  font-weight: 600;
}
.directory-tabs a:hover {
  color: var(--text);
  background: var(--panel-2);
  text-decoration: none;
}
.directory-tabs a.active {
  color: #fff;
  background: var(--accent);
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.5rem;
}
.partner-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.partner-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.partner-media {
  display: flex;
  aspect-ratio: 16 / 7;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
  background: #0d0d10;
}
.partner-media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-media-logo {
  min-height: 0;
}
.partner-media-logo img {
  width: min(38%, 150px);
  max-height: 72%;
}
.partner-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}
.partner-body > p {
  color: #c7c7d0;
}
.partner-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
}
.partner-heading h2 {
  margin: .1rem 0 0;
  font-size: 1.35rem;
  letter-spacing: 0;
}
.partner-type {
  margin: 0;
  color: var(--muted) !important;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.partner-price {
  flex-shrink: 0;
  margin: 0 !important;
  color: var(--text) !important;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}
.partner-price small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 500;
}
.partner-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
  margin: 1rem 0 1.2rem;
  padding: .85rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.partner-facts div { min-width: 0; }
.partner-facts dt {
  color: var(--dim);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.partner-facts dd {
  margin: .1rem 0 0;
  color: var(--text);
  font-size: .82rem;
  overflow-wrap: anywhere;
}
.partner-body h3 {
  margin: 0 0 .45rem;
  font-size: .86rem;
  letter-spacing: 0;
}
.partner-list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: .86rem;
}
.partner-list li { margin: .35rem 0; }
.partner-cta {
  width: 100%;
  margin-top: auto;
}
.partner-cta span { margin-left: .4rem; }
.partner-updated {
  margin: 1rem 0 0;
  color: var(--dim);
  font-size: .78rem;
}
.partner-safety { margin-top: 1rem; }
.partner-safety a { color: var(--text); text-decoration: underline; }

/* proxy guides */
.guide-hero {
  min-height: min(62vh, 500px);
  display: flex;
  align-items: flex-end;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8,8,9,.96) 0%, rgba(8,8,9,.88) 56%, rgba(8,8,9,.72) 100%),
    url("/logo-hero.webp") center 34% / cover no-repeat,
    var(--bg);
}
.guide-hero-inner { max-width: 760px; }
.guide-hero h1 {
  max-width: 760px;
  margin: .2rem 0 .75rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.guide-hero-inner > p:not(.eyebrow, .micro) {
  max-width: 68ch;
  margin: 0 0 1.25rem;
  color: #c7c7d0;
  font-size: 1rem;
}
.guide-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8,8,9,.96);
}
.guide-nav .wrap {
  display: flex;
  gap: .15rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.guide-nav .wrap::-webkit-scrollbar { display: none; }
.guide-nav a {
  flex: 0 0 auto;
  padding: .7rem .75rem;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}
.guide-nav a:hover { color: var(--text); text-decoration: none; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.guide-card {
  min-width: 0;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}
.guide-card h3 {
  margin: 0 0 .4rem;
  font-size: .95rem;
  letter-spacing: 0;
}
.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}
.guide-table { border-top: 1px solid var(--line); }
.guide-table td:first-child { white-space: nowrap; }
.guide-callout {
  display: grid;
  grid-template-columns: minmax(190px, .45fr) minmax(0, 1.55fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.guide-callout strong { font-size: 1rem; }
.guide-callout p { margin: 0; color: var(--muted); }
.guide-copy {
  max-width: 780px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.guide-copy h3 { margin: 0 0 .5rem; font-size: 1rem; }
.guide-copy p { color: var(--muted); }
.guide-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-points li {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: .8rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line-soft);
}
.guide-points strong { font-size: .88rem; }
.guide-points span { color: var(--muted); font-size: .86rem; }
.guide-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}
.guide-split h2 { margin-top: 0; }
.guide-split h3 { margin: 0 0 .65rem; font-size: 1rem; }
.guide-split p { color: var(--muted); }
.credential-example {
  max-width: 100%;
  overflow-x: auto;
  margin: 1rem 0;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font: .88rem/1.5 ui-monospace, Consolas, monospace;
}
.guide-checklist {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.guide-checklist li {
  padding: .5rem 0 .5rem 1.35rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: .88rem;
  position: relative;
}
.guide-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}
.guide-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-steps li { min-width: 0; }
.guide-steps li > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-bottom: .6rem;
  border: 1px solid rgba(217,26,34,.5);
  border-radius: 4px;
  color: var(--accent-2);
  background: rgba(217,26,34,.1);
  font-size: .78rem;
  font-weight: 700;
}
.guide-steps strong { font-size: .88rem; }
.guide-steps p { margin: .25rem 0 0; color: var(--muted); font-size: .82rem; }
.guide-link-stack { display: grid; gap: .65rem; }
.guide-link-stack a {
  display: flex;
  flex-direction: column;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}
.guide-link-stack a:hover { border-color: var(--muted); text-decoration: none; }
.guide-link-stack strong { color: var(--text); font-size: .9rem; }
.guide-link-stack span { color: var(--muted); font-size: .8rem; }
.faq-list {
  max-width: 820px;
  border-top: 1px solid var(--line);
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  padding: .95rem 2rem .95rem 0;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}
.faq-list details p {
  max-width: 72ch;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .88rem;
}
.guide-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.guide-final h2 { margin: 0 0 .35rem; }
.guide-final p { max-width: 680px; margin: 0; color: var(--muted); }

/* legal pages */
.legal {
  padding: 2.5rem 0 3.5rem;
  max-width: 720px;
}
.legal h1 {
  font-size: 1.65rem;
  margin: 0 0 .25rem;
  letter-spacing: 0;
}
.legal .updated {
  color: var(--muted);
  font-size: .88rem;
  margin: 0 0 1.75rem;
}
.legal h2 {
  font-size: 1.05rem;
  margin: 1.75rem 0 .5rem;
  letter-spacing: 0;
}
.legal p, .legal li { color: #d0d0d8; font-size: .92rem; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin: .3rem 0; }

/* footer */
footer {
  padding: 2.5rem 0 3rem;
  color: var(--muted);
  font-size: .88rem;
}
footer .cols {
  display: grid;
  gap: 1.5rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-bottom: 1.75rem;
}
footer h4 {
  color: var(--text);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 .55rem;
}
footer a {
  display: block;
  color: var(--muted);
  padding: .15rem 0;
  font-size: .86rem;
}
footer a:hover { color: var(--text); }
.foot-logo { height: 28px; }
footer .bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

/* ---------- mobile nav ---------- */
@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; align-items: center; }

  .site-nav,
  header nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: .45rem .75rem .75rem;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .1rem;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  body.nav-open .site-nav,
  body.nav-open header nav { display: flex; }

  .site-nav a,
  header nav a { padding: .5rem .65rem; }

  .site-header .header-inner,
  header .wrap { position: relative; flex-wrap: wrap; }

  .hero { min-height: min(72vh, 500px); padding: 1.75rem 0 .85rem; }
  .hero h1 { font-size: 1.85rem; }
  .partner-grid-three { grid-template-columns: 1fr; }
  .guide-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .partner-grid { grid-template-columns: 1fr; }
  .directory-hero { padding: 2.4rem 0 1.9rem; }
  .guide-hero { min-height: min(72vh, 520px); padding: 2.4rem 0 2rem; }
  .guide-grid,
  .guide-points,
  .guide-split { grid-template-columns: 1fr; }
  .guide-points li { grid-template-columns: 110px minmax(0, 1fr); }
  .guide-callout { grid-template-columns: 1fr; gap: .4rem; }
  .guide-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-final { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .cta-row .btn { flex: 1 1 auto; min-width: 0; }
  .hero { min-height: min(70vh, 460px); }
  .hero h1 { font-size: 1.65rem; }
  .directory-tabs { display: flex; }
  .directory-tabs a { flex: 1; text-align: center; }
  .partner-heading { flex-direction: column; }
  .partner-price { text-align: left; }
  .guide-steps { grid-template-columns: 1fr; }
  .guide-points li { grid-template-columns: 1fr; gap: .25rem; }
}

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