/* ─────────────────────────────────────────────────────────────────────
   PurrSense — Landingpage Design Tokens & Base
   ───────────────────────────────────────────────────────────────────── */

:root {
  /* Pink palette — soft pastel rosé */
  --bg:           #fdf3f0;
  --bg-warm:      #fbeae5;
  --pink-50:      #fdf2f5;
  --pink-100:     #fbe1ea;
  --pink-200:     #f7cedb;
  --pink-300:     #f0b3c6;
  --pink-400:     #e89bb4;
  --pink-500:     #db7a9b;
  --pink-600:     #c45a80;

  --peach:        #ffd9c4;
  --lavender:     #e2d4f5;
  --cream:        #fff5ec;
  --mint:         #cfe9d8;

  /* Brass / gold — pulled from the app-icon line work */
  --brass-100:    #f3e3c2;
  --brass-200:    #e6cf9f;
  --brass:        #c9a574;
  --brass-deep:   #a8854f;
  --brass-shine:  linear-gradient(135deg, #f3e3c2 0%, #d4b585 35%, #b48f5e 60%, #e6cf9f 100%);

  --ink:          #2b1c24;
  --ink-soft:     #6d5560;
  --ink-mute:     #98818c;
  --white:        #ffffff;
  --paper:        #fffaf9;

  --shadow-clay-sm: 0 2px 4px rgba(196, 90, 128, 0.08), 0 8px 18px rgba(196, 90, 128, 0.10);
  --shadow-clay:    0 4px 10px rgba(196, 90, 128, 0.10), 0 18px 40px rgba(196, 90, 128, 0.14);
  --shadow-clay-lg: 0 8px 22px rgba(196, 90, 128, 0.14), 0 30px 60px rgba(196, 90, 128, 0.18);
  --shadow-inset-glow: inset 0 1px 0 rgba(255,255,255,.9), inset 0 -10px 24px rgba(255,255,255,.4);

  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body { min-height: 100vh; }

/* ── Type system ─────────────────────────────────────────────────── */

h1, h2, h3, h4, .upper {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 6.4vw, 92px); line-height: 0.96; letter-spacing: -0.01em; }
h2 { font-size: clamp(32px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -0.005em; }
h3 { font-size: clamp(20px, 1.6vw, 28px); line-height: 1.1; }
h4 { font-size: 14px; line-height: 1.2; letter-spacing: 0.06em; }

p { margin: 0; line-height: 1.55; }
.lead { font-size: clamp(17px, 1.3vw, 20px); color: var(--ink-soft); line-height: 1.55; text-wrap: pretty; }
.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brass-deep);
}
.eyebrow-pink { color: var(--pink-600); }
.brass-shine {
  background: var(--brass-shine);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(168, 133, 79, 0.18));
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ── Layout ──────────────────────────────────────────────────────── */

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section   { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
.row       { display: flex; gap: 24px; }
.center    { display: flex; align-items: center; justify-content: center; }

/* ── Background variants ─────────────────────────────────────────── */

.bg-clean { background: var(--bg); }

.bg-aurora {
  background: var(--bg);
  position: relative;
}
.bg-aurora::before {
  content: '';
  position: fixed;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(50% 40% at 12% 18%, var(--pink-200) 0%, transparent 60%),
    radial-gradient(40% 38% at 88% 22%, var(--peach) 0%, transparent 60%),
    radial-gradient(48% 40% at 70% 78%, var(--lavender) 0%, transparent 60%),
    radial-gradient(42% 36% at 22% 84%, var(--pink-100) 0%, transparent 65%);
  filter: blur(28px) saturate(108%);
  opacity: 0.85;
  pointer-events: none;
  animation: drift 24s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.04); }
}
.bg-aurora > * { position: relative; z-index: 1; }

/* Decorative blobs — Y2K sticker accents */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(253, 246, 247, 0.72);
  border-bottom: 1px solid rgba(232, 155, 180, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 500; text-decoration: none; }
.brand-icon {
  width: 36px; height: 36px;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: var(--shadow-clay-sm), 0 0 0 1px rgba(255,255,255,.6);
  display: grid; place-items: center;
  background: var(--pink-200);
}
.brand-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 14px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .btn-primary,
.nav-links .btn-primary:hover { color: var(--paper); }

.lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(232, 155, 180, 0.25);
  border-radius: 999px;
  padding: 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lang-toggle button {
  border: 0; background: transparent; padding: 5px 10px;
  border-radius: 999px; cursor: pointer; color: var(--ink-soft);
  font: inherit; font-family: 'Poppins', sans-serif;
}
.lang-toggle button.on { background: var(--ink); color: var(--paper); }

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

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(43,28,36,.18);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(43,28,36,.26); }
.btn-store {
  background: var(--white);
  color: var(--ink);
  padding: 10px 18px 10px 14px;
  border: 1px solid rgba(232, 155, 180, 0.25);
  box-shadow: var(--shadow-clay-sm);
}
.btn-store:hover { transform: translateY(-1px); box-shadow: var(--shadow-clay); }
.btn-store svg { width: 22px; height: 22px; }
.btn-store .store-meta { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; gap: 3px; }
.btn-store .store-meta .small { font-size: 9px; opacity: .6; letter-spacing: 0.12em; }
.btn-store .store-meta .big { font-size: 14px; letter-spacing: 0.02em; }

/* ── Warteliste ──────────────────────────────────────────────────── */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  width: 100%;
}
.waitlist-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(232, 155, 180, 0.35);
  background: var(--white);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  padding: 15px 22px;
  box-shadow: var(--shadow-clay-sm);
  transition: border-color .2s, box-shadow .2s;
}
.waitlist-input:focus {
  border-color: rgba(196, 90, 128, .45);
  box-shadow: 0 0 0 3px rgba(196, 90, 128, .09), var(--shadow-clay-sm);
}
.waitlist-input::placeholder { color: var(--ink-mute); }
.waitlist-btn {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  margin-top: 2px;
}
.waitlist-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(43,28,36,.26); }
.cta-block .waitlist-form { margin: 0 auto; }

/* ── Cards ───────────────────────────────────────────────────────── */

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-clay-sm);
}
.card-clay {
  background: linear-gradient(160deg, var(--paper) 0%, var(--pink-50) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-clay), var(--shadow-inset-glow);
  border: 1px solid rgba(255,255,255,.7);
}

/* ── Sticker accents (Y2K) ──────────────────────────────────────── */

.sticker {
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pink-100);
  color: var(--pink-600);
  border: 1px dashed var(--pink-300);
  box-shadow: 0 6px 14px rgba(196,90,128,.12);
  transform: rotate(-8deg);
  white-space: nowrap;
  z-index: 5;
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(232, 155, 180, 0.3);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink-500); }

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

.hero { padding-block: clamp(60px, 7vw, 100px) clamp(80px, 8vw, 120px); position: relative; }
.hero-inner { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { max-width: 540px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.trust-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-top: 36px;
  color: var(--ink-soft);
}
.trust-row .trust-item { display: flex; align-items: center; gap: 7px; font-size: 15px; }
.trust-row .trust-icon { font-size: 17px; color: var(--pink-500); }
.trust-insta-link {
  display: flex; align-items: center; gap: 7px;
  text-decoration: none; color: inherit;
  transition: color .15s;
}
.trust-insta-link:hover { color: var(--pink-600); }
.trust-insta-handle { font-weight: 500; color: var(--ink); font-size: 15px; }
.stars { display: inline-flex; gap: 2px; color: var(--brass); }

/* ── Section headers ─────────────────────────────────────────────── */

.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-head .lead { margin-top: 18px; }

/* ── Features bento ──────────────────────────────────────────────── */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.bento .b-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-clay-sm);
  border: 1px solid rgba(255,255,255,.8);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.bento .b-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-clay); }
.bento .b-card h3 { font-size: 24px; }
.bento .b-card p { color: var(--ink-soft); font-size: 15px; }
.bento .b-card .b-visual { flex: 1; display: flex; align-items: center; justify-content: center; margin-top: 12px; }
.b-card.span-3 { grid-column: span 3; }
.b-card.span-2 { grid-column: span 2; }
.b-card.span-4 { grid-column: span 4; }
.b-card.tinted-1 { background: linear-gradient(155deg, #fff 0%, var(--pink-100) 100%); }
.b-card.tinted-2 { background: linear-gradient(155deg, #fff 0%, var(--peach) 100%); }
.b-card.tinted-3 { background: linear-gradient(155deg, #fff 0%, var(--lavender) 100%); }
.b-card.tinted-4 { background: linear-gradient(155deg, #fff 0%, var(--mint) 100%); }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .b-card.span-3, .b-card.span-2, .b-card.span-4 { grid-column: span 1; }
}

/* ── How it works ────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-clay-sm);
  border: 1px solid rgba(255,255,255,.8);
  counter-increment: step;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step .step-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--pink-300);
  margin-bottom: 8px;
}
.step h3 { font-size: 22px; }
.step p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}

/* ── Testimonials — ausgeblendet bis Launch ──────────────────────── */
.testimonials-section { display: none !important; }

/* ── Testimonials ────────────────────────────────────────────────── */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-clay-sm);
  border: 1px solid rgba(255,255,255,.8);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi .stars { font-size: 16px; }
.testi blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  text-wrap: pretty;
}
.testi .author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testi .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-200), var(--peach));
  display: grid; place-items: center;
  color: var(--pink-600);
  font-weight: 500;
  font-size: 14px;
  flex-shrink: 0;
}
.testi .author-meta { display: flex; flex-direction: column; line-height: 1.2; }
.testi .author-meta .name { font-size: 14px; font-weight: 500; }
.testi .author-meta .meta { font-size: 12px; color: var(--ink-mute); }
@media (max-width: 800px) {
  .testi-grid { grid-template-columns: 1fr; }
}

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

.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 4px 24px;
  box-shadow: var(--shadow-clay-sm);
  border: 1px solid rgba(255,255,255,.8);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-600);
  display: grid; place-items: center;
  font-size: 18px;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .answer {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 0 22px;
}

/* ── Final CTA ───────────────────────────────────────────────────── */

.cta-block {
  background: linear-gradient(155deg, var(--pink-100) 0%, var(--brass-100) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-clay-lg);
  border: 1px solid rgba(255,255,255,.7);
}
.cta-block h2 { margin-bottom: 20px; }
.cta-block .lead { max-width: 540px; margin: 0 auto 36px; }
.cta-block .hero-cta { justify-content: center; }

/* ── Footer ──────────────────────────────────────────────────────── */

footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(232, 155, 180, 0.18);
  color: var(--ink-soft);
}
footer .foot-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
footer a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
footer a:hover { color: var(--ink); }
footer .copy { font-size: 12px; color: var(--ink-mute); }

/* ── Beta Section ────────────────────────────────────────────────── */
.beta-section {
  background: linear-gradient(160deg, var(--pink-50) 0%, #f3effe 100%);
}
.beta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.beta-eyebrow {
  background: linear-gradient(135deg, var(--pink-100), #ece7fc);
  color: var(--pink-600);
  border: 1px solid rgba(196,90,128,.15);
}
.beta-perks {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}
.beta-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.beta-perk-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-clay-sm);
  border: 1px solid rgba(232,155,180,.2);
  display: grid; place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.beta-perk-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 3px;
}
.beta-perk-body { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.beta-form-wrap { position: relative; }
.beta-card {
  padding: 36px;
  background: var(--white);
}
.beta-card-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(232,155,180,.18);
  margin-bottom: 28px;
}
.beta-card-head-text .eyebrow { font-size: 10px; margin-bottom: 4px; display: block; }
.beta-card-head-text strong {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 500;
}
.beta-form { display: flex; flex-direction: column; gap: 20px; }
.beta-field { display: flex; flex-direction: column; gap: 6px; }
.beta-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 5px;
}
.beta-label .req { color: var(--pink-600); }
.beta-input {
  width: 100%; padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid rgba(232,155,180,.28);
  background: var(--pink-50);
  font-family: 'Poppins', sans-serif;
  font-size: 14px; color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.beta-input:focus {
  border-color: rgba(196,90,128,.45);
  box-shadow: 0 0 0 3px rgba(196,90,128,.09);
  background: var(--white);
}
.beta-input::placeholder { color: var(--ink-mute); }
.beta-hint { font-size: 11px; color: var(--ink-mute); margin: 0; }
.beta-btn {
  width: 100%; padding: 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  margin-top: 4px;
}
.beta-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(43,28,36,.26); }
.beta-fine {
  font-size: 11px; color: var(--ink-mute);
  text-align: center; margin: 0;
}
.beta-success {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  padding: 32px 16px; text-align: center;
}
.beta-success-icon { font-size: 40px; }
.beta-success-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500; font-size: 18px;
}
.beta-success-body { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.waitlist-success {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: var(--pink-100);
  color: var(--pink-600);
  border-radius: 999px;
  border: 1px solid rgba(196,90,128,.2);
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 500;
}
@media (max-width: 860px) {
  .beta-inner { grid-template-columns: 1fr; gap: 48px; }
  .beta-card { padding: 28px; }
}

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

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .nav-links a { display: none; }

  /* Hero: Handy ausblenden, Text nimmt volle Breite */
  .hero { overflow: hidden; padding-block: 40px 56px; }
  .hero-inner { display: block !important; }
  .hero-phone-col { display: none !important; }
  .hero-text { max-width: 100% !important; }
  .hero .lead { max-width: 100%; }
  .waitlist-form { max-width: min(320px, 100%); }
}

/* ── Button loading state & spinner ─────────────────────────────────── */
.waitlist-btn:disabled,
.beta-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin .7s linear infinite;
  vertical-align: middle;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
