:root {
  --ink: #071018;
  --ink-soft: #142433;
  --paper: #f3f7f8;
  --accent: #0ea58f;
  --accent-deep: #0a7d6c;
  --accent-glow: rgba(14, 165, 143, 0.35);
  --line: rgba(7, 16, 24, 0.1);
  --muted: #5b6d7c;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 55% at 8% -5%, rgba(14, 165, 143, 0.32), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 5%, rgba(20, 70, 120, 0.18), transparent 50%),
    radial-gradient(ellipse 45% 40% at 60% 100%, rgba(14, 165, 143, 0.12), transparent 50%),
    linear-gradient(165deg, #e7f2ef 0%, var(--paper) 38%, #e8eef3 100%);
  animation: meshDrift 22s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes floaty {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

@keyframes typingPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes tickFlash {
  0%, 100% { color: #7a8a98; }
  40% { color: #2b7cff; }
}

.top {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  animation: riseIn 0.6s ease both;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--accent-deep); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: auto;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px var(--accent-glow);
}
.btn-sm { padding: 8px 14px; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover {
  background: rgba(7, 16, 24, 0.04);
  box-shadow: inset 0 0 0 1.5px rgba(7, 16, 24, 0.18);
}

/* —— Hero: brand + one story + mock —— */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(28px, 7vh, 72px) clamp(20px, 4vw, 48px) 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  animation: riseIn 0.85s ease both;
  min-height: min(78vh, 720px);
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 5.2rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 0 0 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 0 0 12px;
  max-width: 28ch;
  color: var(--ink-soft);
}

.hero-lead {
  margin: 0 0 24px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-stage {
  position: relative;
  min-height: 340px;
  animation: floaty 5s ease-in-out infinite alternate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% -4% -6% 6%;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(14, 165, 143, 0.55), rgba(20, 60, 100, 0.75)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
  box-shadow: 0 30px 80px rgba(7, 16, 24, 0.22);
  z-index: 0;
}

.mock-chat {
  position: relative;
  z-index: 1;
  margin: 24px 18px 18px 0;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 60px rgba(7, 16, 24, 0.18);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mock-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbfb, #fff);
}
.mock-top strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
}
.mock-top small {
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.78rem;
}
.mock-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0ea58f, #1a508c);
  position: relative;
}
.mock-dot.is-on::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
}

.mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(14, 165, 143, 0.08), transparent 50%),
    #f7fafb;
}

.mock-bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.4;
}
.mock-bubble.in {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
}
.mock-bubble.out {
  align-self: flex-end;
  background: linear-gradient(135deg, #0ea58f, #0a7d6c);
  color: #fff;
}
.mock-reply {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  border-left: 2px solid var(--accent);
  padding-left: 8px;
  margin-bottom: 6px;
}
.mock-ticks {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.78rem;
  letter-spacing: -0.08em;
  animation: tickFlash 2.8s ease-in-out infinite;
}
.mock-reacts {
  align-self: flex-start;
  font-size: 0.82rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 600;
}
.mock-typing {
  align-self: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  font-style: italic;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 48px) 20px;
}
.section-head { margin-bottom: 32px; max-width: 58ch; }
.eyebrow {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  letter-spacing: -0.035em;
  margin: 0 0 10px;
}
.section-head p { margin: 0; color: var(--muted); }
.section-head a { color: var(--accent-deep); font-weight: 700; }

/* Screenshot gallery */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.shot-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(7, 16, 24, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(7, 16, 24, 0.1);
}
.shot-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #0b1220;
}
.shot-ph {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, rgba(14, 165, 143, 0.08), rgba(20, 70, 120, 0.06)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(7, 16, 24, 0.03) 10px,
      rgba(7, 16, 24, 0.03) 20px
    );
  border-bottom: 1px dashed var(--line);
}
.shot-card.is-empty {
  box-shadow: none;
}
.shot-card.is-empty:hover {
  transform: none;
  box-shadow: none;
}
.shot-card figcaption {
  display: grid;
  gap: 4px;
  padding: 12px 14px 14px;
}
.shot-card figcaption strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.shot-card figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}
.shot-cta { margin-top: 28px; }

@media (max-width: 720px) {
  .shot-grid { grid-template-columns: 1fr; }
}

/* Feature showcase */
.showcase {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.show-item {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px 40px;
  align-items: center;
  padding: 8px 0 20px;
  border-bottom: 1px solid var(--line);
}
.show-item:nth-child(even) .show-visual { order: 2; }
.show-item:nth-child(even) .show-copy { order: 1; }
.show-item:last-child { border-bottom: 0; }

.show-copy h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.show-tag {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.show-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  max-width: 52ch;
  font-size: 1.02rem;
}
.show-copy ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.show-copy li { margin: 4px 0; }

.show-visual {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(14, 165, 143, 0.08));
  border: 1px solid var(--line);
}

.viz-ticks { text-align: center; }
.viz-msg {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0ea58f, #0a7d6c);
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}
.viz-tick-row { display: block; font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.t-sent { color: #7a8a98; letter-spacing: -0.08em; }
.t-read { color: #2b7cff; letter-spacing: -0.08em; }

.viz-presence { width: 100%; display: flex; flex-direction: column; gap: 12px; }
.viz-peer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.viz-peer.dim { opacity: 0.85; }
.viz-peer strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.viz-peer small { color: var(--muted); font-size: 0.78rem; font-weight: 600; }
.viz-peer small.is-on { color: var(--accent-deep); }
.viz-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0ea58f, #1a508c);
}
.viz-av.b { background: linear-gradient(145deg, #1a508c, #0a7d6c); }

.viz-reply { width: 100%; }
.viz-quote {
  padding: 10px 12px;
  border-left: 3px solid var(--accent);
  background: rgba(14, 165, 143, 0.08);
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.viz-ans {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
}

.viz-react {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.viz-react span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}
.viz-react span:hover { transform: translateY(-4px) scale(1.06); }

.viz-notify {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.viz-notify label {
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--muted);
}
.viz-notify label.on {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.viz-type {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--muted);
}
.viz-type .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: typingPulse 1.1s ease-in-out infinite;
}

.band {
  margin-top: 12px;
  padding-top: 48px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, rgba(14, 165, 143, 0.06), transparent);
  border-radius: 28px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.pill-grid > div {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}
.pill-grid h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.pill-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 16px 18px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: linear-gradient(105deg, rgba(14, 165, 143, 0.16), rgba(26, 80, 140, 0.08));
  border: 1px solid rgba(14, 165, 143, 0.22);
}
.promo strong { font-family: var(--font-display); }
.promo span { color: var(--muted); flex: 1 1 200px; font-size: 0.92rem; }

.plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.plan {
  position: relative;
  padding: 22px 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7, 16, 24, 0.08);
}
.plan-hot {
  border-color: rgba(14, 165, 143, 0.45);
  box-shadow: 0 12px 36px rgba(14, 165, 143, 0.12);
}
.plan-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.plan h3 {
  font-family: var(--font-display);
  margin: 4px 0 0;
  letter-spacing: -0.02em;
}
.plan-for { margin: 0; color: var(--muted); font-size: 0.88rem; }
.plan-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 4px 0;
}
.plan-price small { font-size: 0.9rem; font-weight: 700; }
.plan-meta {
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 0.88rem;
}
.plan ul {
  margin: 8px 0 12px;
  padding: 0 0 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
}
.plan li { margin: 4px 0; }
.plan-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 70ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.steps article { min-width: 0; }
.bn {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 0.95rem;
}
.steps h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 6px 0 6px;
  letter-spacing: -0.02em;
}
.steps p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.center-cta {
  text-align: center;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 800;
}
.faq details[open] summary::after { content: "–"; }
.faq p {
  margin: 10px 0 4px;
  color: var(--muted);
  max-width: 70ch;
}
.faq a { color: var(--accent-deep); font-weight: 700; }

.cta-block {
  max-width: 1200px;
  margin: 24px auto 72px;
  padding: 40px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  animation: riseIn 1s 0.1s ease both;
}
.cta-block h2 {
  font-family: var(--font-display);
  width: 100%;
  margin: 0;
  letter-spacing: -0.03em;
}
.cta-block p {
  width: 100%;
  margin: -4px 0 6px;
  color: var(--muted);
}

/* Trust strip */
.trust-strip {
  max-width: 1200px;
  margin: 0 auto 8px;
  padding: 0 clamp(20px, 4vw, 48px);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 24px;
  padding: 22px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.trust-inner span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 36px;
}
.audience-grid h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42ch;
}

/* Panel band */
.panel-band {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 clamp(20px, 4vw, 48px);
}
.panel-band-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.panel-band h2 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}
.panel-band p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}
.panel-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.faq code {
  font-size: 0.88em;
  background: rgba(7, 16, 24, 0.05);
  padding: 1px 6px;
  border-radius: 6px;
}

/* Full footer */
.site-foot {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(231, 242, 239, 0.55));
}
.site-foot-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px clamp(20px, 4vw, 48px) 28px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 28px 32px;
}
.site-foot-brand .logo {
  display: inline-block;
  margin-bottom: 12px;
}
.site-foot-brand p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 36ch;
  line-height: 1.5;
}
.site-foot-mail {
  margin: 0 !important;
  font-size: 0.92rem !important;
}
.site-foot-mail a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: none;
}
.site-foot h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--ink);
}
.site-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.site-foot li a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.site-foot li a:hover { color: var(--accent-deep); }
.site-foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 48px) 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 24px;
  }
  .hero-stage { min-height: 280px; max-width: 440px; }
  .show-item,
  .show-item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .show-item:nth-child(even) .show-visual,
  .show-item:nth-child(even) .show-copy { order: initial; }
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .panel-band-inner { grid-template-columns: 1fr; }
  .panel-band-actions { justify-content: flex-start; }
  .site-foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .plans { grid-template-columns: 1fr; }
  .pill-grid { grid-template-columns: 1fr; }
  .hero-brand { font-size: clamp(2.4rem, 14vw, 3.4rem); }
  .trust-inner,
  .audience-grid,
  .site-foot-grid { grid-template-columns: 1fr; }
  .site-foot-bottom { flex-direction: column; }
}
