/* =========================================================
   DOCKING — "Docking me, docking you"
   Design tokens: vinyl-black, cream, gold, hot pink, avocado
   ========================================================= */

:root {
  --black:  #14110d;
  --black-2: #1c1710;
  --cream:  #f3ead9;
  --gold:   #cf9d33;
  --gold-2: #e8c468;
  --pink:   #e14c86;
  --avocado:#7c8a4c;
  --red:    #d1442f;

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --groove: repeating-linear-gradient(
    90deg,
    rgba(207,157,51,0.55) 0px,
    rgba(207,157,51,0.55) 2px,
    transparent 2px,
    transparent 10px
  );

  --max-w: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--black-2);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.4em;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

p { max-width: 62ch; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.groove-line {
  height: 3px;
  background: var(--groove);
}

/* ---------- Nav ---------- */
.site-nav {
  background: var(--black);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 3px solid var(--gold);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand span { color: var(--pink); }
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--cream);
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { border-color: var(--pink); color: var(--gold-2); }
.nav-links .gape-teaser { color: var(--pink); }
.nav-toggle { display: none; }

@media (max-width: 780px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 18% 30%, rgba(207,157,51,0.35), transparent 32%),
    radial-gradient(circle at 55% 60%, rgba(225,76,134,0.28), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(124,138,76,0.28), transparent 28%),
    var(--black);
  color: var(--cream);
  padding: 92px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  color: var(--gold-2);
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: block;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: var(--cream);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}
.hero p.lede {
  font-size: 1.15rem;
  color: #e6ddc9;
  margin-top: 18px;
  max-width: 46ch;
}
.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  cursor: pointer;
}
.btn-primary {
  background: var(--pink);
  color: var(--black);
  border-color: var(--pink);
}
.btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
}
.btn-ghost:hover { background: rgba(243,234,217,0.08); }

.hero-photo {
  border: 3px solid var(--gold);
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--black-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #9c9384;
  padding: 6px 4px 0;
}

/* Trust bar */
.trust-bar {
  background: var(--black-2);
  color: #a89f8e;
  border-bottom: 3px solid var(--gold);
}
.trust-bar .wrap {
  padding: 16px 28px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  justify-content: center;
}

/* ---------- Section shells ---------- */
section { padding: 76px 0; }
section[id] {
  scroll-margin-top: 84px;
}

.section-dark { background: var(--black); color: var(--cream); }
.section-cream { background: var(--cream); color: var(--black-2); }

.section-head {
  max-width: 68ch;
  margin-bottom: 44px;
}
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.section-dark .section-head p { color: #cfc6b3; }
.section-head .kicker {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--pink);
  display: block;
  margin-bottom: 10px;
}
.section-dark .section-head .kicker { color: var(--gold-2); }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}
.product-card {
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 26px 24px 22px;
  background: var(--cream);
  position: relative;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 14px;
}
.dot-gold { background: var(--gold); }
.dot-pink { background: var(--pink); }
.dot-avocado { background: var(--avocado); }
.product-card h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.product-card .tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #766c58;
  display: block;
  margin-bottom: 10px;
}
.product-card p.desc {
  font-size: 0.93rem;
  color: #3a3325;
  margin-bottom: 16px;
}
.price-tag {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--red);
  border-top: 1px dashed #b7ac93;
  padding-top: 12px;
}
.price-tag small {
  font-weight: 400;
  color: #766c58;
  font-size: 0.72rem;
  display: block;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero .wrap { grid-template-columns: 1fr; }
}

/* ---------- Security / SOC ---------- */
.soc-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.soc-photo {
  border: 3px solid var(--pink);
  overflow: hidden;
}
.soc-photo img { width: 100%; display: block; }
.soc-panel ul {
  padding-left: 20px;
  margin: 18px 0;
}
.soc-panel li { margin-bottom: 10px; }
.soc-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  border: 1px solid var(--gold-2);
  color: var(--gold-2);
  padding: 5px 10px;
  margin-top: 10px;
}
@media (max-width: 780px) {
  .soc-panel { grid-template-columns: 1fr; }
}

/* ---------- Regions ---------- */
.region-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.region-table th, .region-table td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid #d8cdb2;
}
.region-table th {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: none;
  color: #766c58;
  border-bottom: 2px solid var(--black);
}
.region-code {
  font-family: var(--font-mono);
  color: var(--pink);
  font-weight: 600;
}

/* ---------- Pricing teaser ---------- */
.pricing-teaser {
  background: var(--avocado);
  color: var(--black);
  padding: 56px 0;
}
.pricing-teaser .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-teaser h2 { font-size: 1.9rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--black-2);
  border: 2px solid var(--gold);
  padding: 22px 20px;
}
.testimonial-card p.quote {
  font-size: 0.98rem;
  color: #f0e9d8;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--pink);
  line-height: 0.5;
  display: block;
  margin-bottom: 10px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.testi-person img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid var(--gold-2);
}
.testi-person .name { font-weight: 700; font-size: 0.9rem; }
.testi-person .role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #a89f8e;
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- Sister site teaser ---------- */
.gape-box {
  border: 3px dashed var(--pink);
  padding: 40px;
  text-align: left;
  background: repeating-linear-gradient(
    135deg,
    rgba(225,76,134,0.06) 0px,
    rgba(225,76,134,0.06) 12px,
    transparent 12px,
    transparent 24px
  );
}
.gape-box h2 { font-size: 1.7rem; }
.gape-box .domain {
  font-family: var(--font-mono);
  color: var(--pink);
}

/* ---------- Footer ---------- */
footer {
  background: var(--black);
  color: #9c9384;
  padding: 46px 0 30px;
  border-top: 3px solid var(--gold);
}
.badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}
.badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  border: 1px solid #4a4436;
  padding: 6px 10px;
  color: #beb49f;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.footer-links a { text-decoration: none; color: #cfc6b3; }
.footer-links a:hover { color: var(--gold-2); }
.fine-print {
  font-size: 0.76rem;
  color: #6b6656;
  max-width: 80ch;
}

/* ---------- Pricing calculator page ---------- */
.calc-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.calc-list {
  border-top: 2px solid var(--black);
}
.calc-list-noscript {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--black);
  font-size: 0.95rem;
}
.calc-list-noscript caption {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #766c58;
  padding: 10px 4px;
}
.calc-list-noscript th,
.calc-list-noscript td {
  text-align: left;
  padding: 10px 4px;
  border-bottom: 1px solid #d8cdb2;
}
.calc-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid #d8cdb2;
}
.calc-row label {
  font-weight: 600;
  font-size: 0.95rem;
}
.calc-row .rate {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #766c58;
}
.calc-row input[type="number"] {
  width: 64px;
  padding: 6px;
  font-family: var(--font-mono);
  border: 1px solid #b7ac93;
  background: #fff;
}
.calc-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.region-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 30px;
}
.region-checks label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  border: 1px solid #b7ac93;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.summary-box {
  background: var(--black);
  color: var(--cream);
  border: 3px solid var(--gold);
  padding: 26px 24px;
  position: sticky;
  top: 90px;
}
.summary-box h3 { color: var(--gold-2); font-size: 1.2rem; }
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 7px 0;
  border-bottom: 1px dashed #4a4436;
  font-family: var(--font-mono);
}
.summary-line.total {
  border-bottom: none;
  border-top: 2px solid var(--gold);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 1.05rem;
  color: var(--pink);
  font-weight: 700;
}
.summary-tabs {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.summary-tabs button {
  flex: 1;
  background: transparent;
  border: 1px solid #4a4436;
  color: #beb49f;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 8px 4px;
  cursor: pointer;
}
.summary-tabs button.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.disclaimer {
  font-size: 0.72rem;
  color: #766c58;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .calc-layout { grid-template-columns: 1fr; }
  .summary-box { position: static; }
}

/* =========================================================
   Additions: terminal mock, stat strip, wireframe imagery,
   team page, contact page, 404, richer footer
   ========================================================= */

/* ---------- Terminal mock (hero) ---------- */
.terminal {
  border: 3px solid var(--gold);
  background: #0d0b08;
  font-family: var(--font-mono);
  overflow: hidden;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  background: #1c1710;
  border-bottom: 2px solid var(--gold);
}
.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4a4436;
  display: inline-block;
}
.terminal-bar span:nth-child(1) { background: var(--pink); }
.terminal-bar span:nth-child(2) { background: var(--gold-2); }
.terminal-bar span:nth-child(3) { background: var(--avocado); }
.terminal-title {
  margin-left: 8px;
  font-size: 0.75rem;
  color: #a89f8e;
}
.terminal-body {
  padding: 18px 18px 22px;
  font-size: 0.86rem;
  line-height: 1.75;
  color: #e6ddc9;
}
.terminal-body .prompt { color: var(--gold-2); }
.terminal-body .comment { color: #766c58; }
.terminal-body div { white-space: pre-wrap; }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}
.stat-cell {
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 24px 20px;
  text-align: left;
}
.stat-cell .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--pink);
}
.stat-cell .cap {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #766c58;
}
@media (max-width: 780px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
}

/* ---------- Wireframe illustration frames ---------- */
/* Line-art / blueprint-style people illustrations sit on a plain
   card rather than a cropped photo frame — contain, not cover. */
.wireframe-frame {
  border: 3px solid var(--gold);
  background: var(--black-2);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wireframe-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.wireframe-frame.on-cream {
  background: #ece2cb;
  border-color: var(--black);
}

.avatar-wire {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold-2);
  background: #ece2cb;
  object-fit: contain;
  padding: 4px;
}
.testi-person img.avatar-wire {
  width: 48px;
  height: 48px;
}

/* ---------- Team page ---------- */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}
.crew-card {
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 26px 22px;
  background: var(--cream);
  text-align: left;
}
.crew-card .avatar-wire {
  width: 84px;
  height: 84px;
  margin-bottom: 14px;
}
.crew-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.crew-card .role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--pink);
  display: block;
  margin-bottom: 10px;
}
.crew-card p { font-size: 0.92rem; color: #3a3325; }
@media (max-width: 900px) {
  .crew-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .crew-grid { grid-template-columns: 1fr; }
}

/* ---------- Richer footer grid ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid #302b20;
  margin-bottom: 18px;
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: #766c58;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; font-size: 0.88rem; }
.footer-grid li a { text-decoration: none; color: #cfc6b3; }
.footer-grid li a:hover { color: var(--gold-2); }
.footer-grid p.small { font-size: 0.85rem; color: #9c9384; max-width: 32ch; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: #6b6656;
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #766c58;
  display: block;
  margin-bottom: 5px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #b7ac93;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
@media (max-width: 780px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ---------- 404 page ---------- */
.error-hero {
  text-align: left;
  padding: 90px 0 60px;
}
.error-hero .code {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--pink);
  display: block;
  margin-bottom: 12px;
}

/* ---------- Brand lockup (logo mark + wordmark) ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-block;
  flex-shrink: 0;
}
footer .brand-mark {
  width: 30px;
  height: 30px;
}

/* ---------- GAPE teaser: deep space / void treatment ---------- */
.section-void {
  position: relative;
  color: #ece7f5;
  background:
    radial-gradient(1.5px 1.5px at 8% 22%, #ffffff 100%, transparent 100%),
    radial-gradient(1.5px 1.5px at 18% 68%, #ffffff 100%, transparent 100%),
    radial-gradient(1px 1px at 27% 12%, #cf9d33 100%, transparent 100%),
    radial-gradient(1.5px 1.5px at 36% 82%, #ffffff 100%, transparent 100%),
    radial-gradient(1px 1px at 45% 34%, #e14c86 100%, transparent 100%),
    radial-gradient(1.5px 1.5px at 54% 58%, #ffffff 100%, transparent 100%),
    radial-gradient(1px 1px at 63% 20%, #ffffff 100%, transparent 100%),
    radial-gradient(1.5px 1.5px at 72% 74%, #cf9d33 100%, transparent 100%),
    radial-gradient(1px 1px at 81% 40%, #ffffff 100%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 64%, #ffffff 100%, transparent 100%),
    radial-gradient(1px 1px at 95% 15%, #e14c86 100%, transparent 100%),
    radial-gradient(1.5px 1.5px at 5% 90%, #ffffff 100%, transparent 100%),
    radial-gradient(circle at 78% 25%, rgba(225,76,134,0.16), transparent 32%),
    radial-gradient(circle at 20% 75%, rgba(207,157,51,0.14), transparent 30%),
    #0b0714;
  border-top: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  overflow: hidden;
}
.section-void .section-head p { color: #cabfd6; }
.section-void .kicker { color: var(--gold-2); }

.gape-quote-card {
  border: 1px solid rgba(207,157,51,0.4);
  background: rgba(255,255,255,0.03);
  padding: 20px 22px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gape-quote-card img {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--pink);
  background: #ece2cb;
  object-fit: contain;
  padding: 4px;
}
.gape-quote-card p {
  margin: 0;
  font-style: italic;
  color: #ece7f5;
  max-width: 54ch;
}
.gape-quote-card .cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold-2);
}

.void-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(207,157,51,0.35);
  border-left: 1px solid rgba(207,157,51,0.35);
  margin-bottom: 40px;
}
.void-stat-cell {
  border-right: 1px solid rgba(207,157,51,0.35);
  border-bottom: 1px solid rgba(207,157,51,0.35);
  padding: 22px 18px;
}
.void-stat-cell .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--pink);
}
.void-stat-cell .cap {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: #a89fc0;
}
@media (max-width: 780px) {
  .void-stat-strip { grid-template-columns: 1fr 1fr; }
}

.gape-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 36px;
}
.gape-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  border: 1px solid var(--gold-2);
  color: var(--gold-2);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(207,157,51,0.06);
}

.void-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px dashed rgba(207,157,51,0.4);
  padding-top: 28px;
}
.void-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(207,157,51,0.5);
  color: #ece7f5;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
.void-form input[type="email"]::placeholder { color: #756c8a; }
.void-form .btn-primary {
  background: var(--pink);
  border-color: var(--pink);
  color: #0b0714;
}
