/* WebsNZ: graphite + signal cyan theme */
:root {
  --ink: #eef3fa;
  --ink-dim: #c4cfdd;
  --ink-mute: #a3b2c5;
  --paper: #0e1626;
  --paper-2: #152035;
  --panel: rgba(22, 34, 54, 0.78);
  --panel-solid: #1a2740;
  --line: rgba(140, 175, 220, 0.2);
  --line-strong: rgba(140, 175, 220, 0.34);
  --cyan: #2ee6c5;
  --cyan-deep: #14b8a6;
  --cyan-glow: rgba(46, 230, 197, 0.35);
  --amber: #f5b942;
  --coral: #ff6b6b;
  --violet: #8b7cf6;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --wrap: 1120px;
  --header-h: 64px;
  --gutter: 1.25rem;
  --touch: 44px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #7ff5e0; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}

/* Ambient background */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(120, 160, 210, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 160, 210, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}
.bg-glow {
  position: fixed;
  inset: -20% -10% auto;
  height: 60vh;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(46, 230, 197, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 35% at 80% 10%, rgba(139, 124, 246, 0.14), transparent 55%),
    radial-gradient(ellipse 35% 30% at 60% 50%, rgba(245, 185, 66, 0.06), transparent 50%);
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 18, 32, 0.88);
  border-bottom: 1px solid var(--line);
  padding-top: var(--safe-top);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 0.75rem;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  min-height: var(--touch);
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 8px 24px var(--cyan-glow);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(11, 18, 32, 0.55);
  border-radius: 4px;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
}
.brand-tld { color: var(--cyan); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.25rem;
}
.site-nav a {
  color: var(--ink-dim);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.45rem 0.15rem;
  border-bottom: 2px solid transparent;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a.is-active {
  color: var(--ink);
  border-bottom-color: var(--cyan);
}
.site-nav .nav-cta {
  border-bottom: none;
  margin-left: 0.25rem;
  min-height: 40px;
}

.nav-toggle {
  display: none;
  width: var(--touch);
  height: var(--touch);
  min-width: var(--touch);
  min-height: var(--touch);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-solid);
  cursor: pointer;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Dim page when mobile menu open */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(4, 8, 16, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav-backdrop.is-visible { display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  min-height: var(--touch);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  text-decoration: none;
  font-family: var(--font);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
  color: #04241f !important;
  box-shadow: 0 10px 30px var(--cyan-glow);
}
.btn-primary:hover {
  box-shadow: 0 14px 36px var(--cyan-glow);
  color: #021612 !important;
}
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan) !important;
  background: rgba(46, 230, 197, 0.06);
}
.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  min-height: 40px;
}
.btn-block { width: 100%; }

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(46, 230, 197, 0.08);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--cyan), #7dd3fc 45%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-dim);
  max-width: 42ch;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
.hero-stats div strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink);
}
.hero-stats div span {
  font-size: 0.85rem;
  color: var(--ink-mute);
}

/* Product preview card (hero) */
.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.hero-card-top .dots { display: flex; gap: 6px; }
.hero-card-top .dots i {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink-mute); display: block;
}
.hero-card-top .dots i:nth-child(1) { background: #ff6b6b; }
.hero-card-top .dots i:nth-child(2) { background: #f5b942; }
.hero-card-top .dots i:nth-child(3) { background: #2ee6c5; }
.hero-card-top small { color: var(--ink-mute); font-size: 0.78rem; }
.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  margin-bottom: 0.6rem;
}
.plan-row.is-featured {
  border-color: rgba(46, 230, 197, 0.45);
  background: rgba(46, 230, 197, 0.08);
}
.plan-row strong { display: block; font-size: 0.95rem; }
.plan-row span { color: var(--ink-mute); font-size: 0.8rem; }
.plan-row .price {
  font-family: var(--display);
  font-weight: 700;
  color: var(--cyan);
  white-space: nowrap;
}
.plan-row .price small { color: var(--ink-mute); font-weight: 500; font-size: 0.75rem; }

/* Sections */
.section { padding: 4rem 0; }
.section-tight { padding: 2.5rem 0 4rem; }
.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
}
.section-head p { color: var(--ink-dim); margin: 0; }
.section-label {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(46, 230, 197, 0.35);
  transform: translateY(-2px);
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  background: rgba(46, 230, 197, 0.1);
  border: 1px solid rgba(46, 230, 197, 0.2);
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.feature-card p { color: var(--ink-dim); font-size: 0.95rem; margin: 0; }
.feat-group { margin-bottom: 3rem; }
.feat-group h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 0.35rem;
}
.feat-lead {
  color: var(--ink-dim);
  max-width: 42em;
  margin: 0 0 1.25rem;
}
.feature-card code {
  font-size: 0.88em;
  color: var(--cyan);
}

/* Pricing cards */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.price-card {
  position: relative;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.price-card.is-highlight {
  border-color: rgba(46, 230, 197, 0.5);
  box-shadow: 0 0 0 1px rgba(46, 230, 197, 0.15), 0 20px 50px rgba(46, 230, 197, 0.08);
}
.price-badge {
  position: absolute;
  top: -0.65rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  color: #04241f;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.price-amount {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0.5rem 0 0.25rem;
}
.price-amount small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-mute);
}
.price-card .blurb {
  color: var(--ink-mute);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.price-card ul {
  flex: 1;
  margin-bottom: 1.25rem;
}
.price-card li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.4rem;
  color: var(--ink-dim);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(120, 160, 210, 0.08);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}
.price-card .btn { width: 100%; margin-top: auto; }

/* Domain table */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  /* subtle cue that table can scroll on small screens */
  background-image:
    linear-gradient(to right, var(--panel-solid) 30%, transparent),
    linear-gradient(to left, var(--panel-solid) 30%, transparent),
    linear-gradient(to right, rgba(0,0,0,0.35), transparent 40%),
    linear-gradient(to left, rgba(0,0,0,0.35), transparent 40%);
  background-position: left center, right center, left center, right center;
  background-repeat: no-repeat;
  background-size: 40px 100%, 40px 100%, 16px 100%, 16px 100%;
  background-attachment: local, local, scroll, scroll;
}
.domain-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: transparent;
}
.domain-table th,
.domain-table td {
  text-align: left;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.domain-table td:last-child {
  white-space: normal;
  min-width: 10rem;
}
.domain-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.02);
  position: sticky;
  top: 0;
}
.domain-table tr:last-child td { border-bottom: none; }
.domain-table td strong {
  font-family: var(--display);
  font-size: 1.05rem;
}
.domain-table .money {
  color: var(--cyan);
  font-weight: 700;
  font-family: var(--display);
}

/* Two-col content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.panel h2, .panel h3 { margin-top: 0; }
.panel p, .panel li { color: var(--ink-dim); }
.panel ul { list-style: disc; padding-left: 1.2rem; margin-bottom: 1rem; }
.panel li { margin-bottom: 0.4rem; }

/* CTA band */
.cta-band {
  margin: 1rem 0 4rem;
  padding: 2.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(46, 230, 197, 0.25);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(139, 124, 246, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(46, 230, 197, 0.12), transparent 50%),
    var(--panel-solid);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band h2 { font-size: 1.75rem; margin: 0 0 0.4rem; }
.cta-band p { color: var(--ink-dim); margin: 0; max-width: 40ch; }

/* Page hero (inner) */
.page-hero {
  padding: 3.25rem 0 1.5rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  max-width: 18ch;
}
.page-hero p {
  color: var(--ink-dim);
  max-width: 50ch;
  font-size: 1.05rem;
}

/* Legal / prose */
.prose {
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  max-width: 48rem;
}
.prose h2 {
  font-size: 1.2rem;
  color: var(--cyan);
  margin: 1.75rem 0 0.65rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-dim); font-size: 0.98rem; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin: 0 0 1rem; }
.prose li { margin-bottom: 0.4rem; }
.prose .meta { color: var(--ink-mute); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* Note */
.note {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--line-strong);
  color: var(--ink-mute);
  font-size: 0.88rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
  background: rgba(0,0,0,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.footer-tag { color: var(--ink-dim); font-size: 0.95rem; }
.footer-meta { color: var(--ink-mute); font-size: 0.85rem; margin: 0; }
.site-footer h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin-bottom: 0.85rem;
}
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: var(--ink-dim); font-size: 0.92rem; }
.site-footer a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 0.85rem;
}

/* Anchor offset */
.anchor { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* Under construction */
.uc-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.uc-card {
  width: min(100%, 480px);
  text-align: center;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
}
.uc-card .brand { justify-content: center; margin-bottom: 1.5rem; }
.uc-card h1 {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}
.uc-card p { color: var(--ink-dim); }
.uc-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(245, 185, 66, 0.12);
  border: 1px solid rgba(245, 185, 66, 0.35);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ========== Responsive ========== */

/* Tablet and down: hamburger + single columns */
@media (max-width: 960px) {
  :root { --header-h: 60px; }

  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .hero-card { max-width: 28rem; }

  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: calc(var(--gutter) * -1);
    right: calc(var(--gutter) * -1);
    width: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem var(--gutter) calc(1rem + var(--safe-bottom));
    background: rgba(11, 18, 32, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    gap: 0.15rem;
    max-height: min(70vh, calc(100dvh - var(--header-h) - var(--safe-top)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 0.85rem 0.75rem;
    border-bottom: none;
    border-radius: 12px;
    min-height: var(--touch);
    font-size: 1.05rem;
  }

  .site-nav a.is-active {
    background: rgba(46, 230, 197, 0.1);
    color: var(--cyan);
    border-bottom: none;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .site-nav .nav-cta {
    margin: 0.65rem 0 0;
    width: 100%;
    justify-content: center;
    min-height: var(--touch);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

/* Phone */
@media (max-width: 640px) {
  :root {
    --gutter: 1rem;
    --header-h: 56px;
    --radius: 14px;
  }

  body { font-size: 15.5px; }

  .feature-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2rem 0 2.25rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.4rem);
  }

  .hero-lead {
    font-size: 1rem;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 1rem 1.25rem;
  }

  .hero-stats div {
    flex: 1 1 40%;
    min-width: 7.5rem;
  }

  .hero-card {
    max-width: none;
    padding: 1rem;
  }

  .plan-row {
    padding: 0.75rem 0.85rem;
    gap: 0.75rem;
  }

  .plan-row .price {
    font-size: 0.95rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-tight {
    padding: 1.5rem 0 2.5rem;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .section-head h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .page-hero {
    padding: 2rem 0 1rem;
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
  }

  .page-hero p {
    font-size: 1rem;
    max-width: none;
  }

  .feature-card,
  .price-card,
  .panel {
    padding: 1.15rem 1.1rem;
  }

  .price-amount {
    font-size: 1.85rem;
  }

  .price-card .btn {
    width: 100%;
  }

  .cta-band {
    margin: 0.5rem 0 2.5rem;
    padding: 1.35rem 1.15rem;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .cta-band h2 {
    font-size: 1.35rem;
  }

  .cta-band p {
    max-width: none;
    margin-bottom: 0.25rem;
  }

  .cta-band .btn,
  .cta-band > a.btn {
    width: 100%;
  }

  .cta-band > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
  }

  .prose {
    padding: 1.15rem 1.05rem;
    border-radius: var(--radius);
  }

  .prose p,
  .prose li {
    font-size: 0.95rem;
  }

  .domain-table th,
  .domain-table td {
    padding: 0.75rem 0.85rem;
    font-size: 0.88rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .site-footer {
    padding: 2rem 0 calc(1.5rem + var(--safe-bottom));
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
  }

  .note {
    font-size: 0.85rem;
    padding: 0.75rem 0.85rem;
  }

  .uc-body {
    padding: 1.25rem;
    padding-bottom: calc(1.25rem + var(--safe-bottom));
  }

  .uc-card {
    padding: 1.75rem 1.25rem;
  }

  .uc-card h1 {
    font-size: 1.45rem;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .brand-text { font-size: 1.05rem; }
  .hero-stats div { flex-basis: 100%; }
  .eyebrow { font-size: 0.72rem; }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .feature-card,
  .nav-toggle span {
    transition: none;
  }
}

/* Landscape phones: keep menu usable */
@media (max-width: 960px) and (max-height: 480px) {
  .site-nav {
    max-height: calc(100dvh - var(--header-h) - var(--safe-top) - 0.5rem);
  }
}
