:root {
  --bg: #08080c;
  --surface: #10101a;
  --surface2: #16161f;
  --fg: #f0f0f0;
  --fg-muted: #888;
  --fg-subtle: #555;
  --accent: #00c97a;
  --accent-dim: rgba(0,201,122,0.12);
  --border: rgba(255,255,255,0.07);
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(8,8,12,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-buy-btn {
  padding: 0.4rem 1rem !important;
  background: var(--accent) !important;
  color: #000 !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--fg-muted);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-founder-link {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--fg-subtle);
  line-height: 1.5;
}
.hero-founder-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.hero-founder-link a:hover { text-decoration: underline; }
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.detection-display {
  width: 320px;
  height: 320px;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.display-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,12,0.8);
  z-index: 5;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.radar-ring {
  position: absolute;
  border: 1px solid rgba(0,201,122,0.15);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ring-3 { width: 280px; height: 280px; }
.ring-2 { width: 190px; height: 190px; }
.ring-1 { width: 100px; height: 100px; }
.radar-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.detection-blip {
  position: absolute;
  z-index: 4;
}
.blip-1 { top: 20%; left: 10%; }
.blip-2 { top: 30%; right: 10%; left: auto; }
.blip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  z-index: 2;
}
.blip-pulse {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
  top: -6px;
  left: -6px;
  animation: blip-pulse 2s ease-out infinite;
}
.blip-2 .blip-pulse { animation-delay: 0.8s; }
@keyframes blip-pulse {
  0% { transform: scale(1); opacity: 0.25; }
  100% { transform: scale(3); opacity: 0; }
}
.blip-label {
  font-size: 0.6rem;
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
  margin-top: 4px;
  font-family: monospace;
  letter-spacing: 0.05em;
}
.blip-2 .blip-label { text-align: right; }
.display-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0.75rem;
  border-top: 1px solid var(--border);
  background: rgba(8,8,12,0.9);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-val { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; }
.stat-key { font-size: 0.6rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* How it works */
.howitworks {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--surface);
}
.tech-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.tech-step {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 1rem;
}
.tech-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.tech-step p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.legal-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface2);
}
.legal-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Products */
.products {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--bg);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
}
.product-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative;
}
.product-card.featured {
  background: var(--surface2);
  border: 1px solid rgba(0,201,122,0.2);
}
.product-tier {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-desc {
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.product-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.product-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid var(--border);
  color: var(--fg);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  border-radius: 2px;
}
.product-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.product-card.featured .product-cta {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.product-card.featured .product-cta:hover {
  opacity: 0.85;
  color: #000;
}
.products-note {
  text-align: center;
  color: var(--fg-subtle);
  font-size: 0.8rem;
  margin-top: 2rem;
}

/* Use cases */
.usecases {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--surface);
}
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
}
.usecase-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
}
.usecase-icon {
  margin-bottom: 1.25rem;
}
.usecase-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.usecase-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Nordic section */
.nordic-section {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.nordic-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.nordic-text .section-label { text-align: left; }
.nordic-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.nordic-text p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.nordic-specs {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.spec { display: flex; flex-direction: column; gap: 0.25rem; }
.spec-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.spec-label { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.nordic-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.norway-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
}
.badge-info {}
.badge-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}
.badge-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 2px;
}
.compliance-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.compliance-badge {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--surface);
}

/* Closing */
.closing {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--accent);
  text-align: center;
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #000;
  margin-bottom: 1rem;
}
.closing p { color: rgba(0,0,0,0.6); font-size: 1rem; margin-bottom: 2rem; }
.closing-email { margin-bottom: 1rem; }
.closing-cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
}
.closing-sub { font-size: 0.8rem; color: rgba(0,0,0,0.4); }
.closing-sub a { color: rgba(0,0,0,0.7); }

/* Footer */
.site-footer {
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}
.footer-links { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; }
.footer-links a { color: var(--fg-muted); text-decoration: none; }
.footer-links a:hover { color: var(--fg); }
.footer-sep { color: var(--fg-subtle); }
.footer-legal { color: var(--fg-subtle); font-size: 0.75rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding-top: 8rem; }
  .hero-visual { display: none; }
  .tech-steps { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr; }
  .nordic-inner { grid-template-columns: 1fr; gap: 3rem; }
  .legal-strip { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .nav-links { display: none; }
  .nordic-specs { flex-wrap: wrap; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .closing-cta { padding: 0.8rem 1.8rem; width: 100%; display: block; }
}
/* Trust section */
.trust { padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem); background: var(--surface); }
.trust-inner { max-width: 1100px; margin: 0 auto; }
.trust-title { text-align: left; max-width: 680px; margin-left: 0; margin-right: auto; margin-bottom: 3rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 1100px; margin: 0 auto; background: var(--border); }
.trust-card { background: var(--bg); padding: 2rem 1.75rem; }
.trust-card.no { background: var(--surface2); }
.trust-icon { margin-bottom: 1rem; }
.trust-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.trust-card p { color: var(--fg-muted); font-size: 0.875rem; line-height: 1.6; }

/* Segments section */
.segments { padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem); background: var(--bg); }
.segment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; max-width: 1100px; margin: 0 auto; background: var(--border); }
.segment-card { background: var(--surface); padding: 2.5rem 2rem; text-decoration: none; color: var(--fg); display: flex; flex-direction: column; transition: background 0.2s; }
.segment-card:hover { background: var(--surface2); }
.segment-icon { margin-bottom: 1.25rem; }
.segment-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.segment-card p { color: var(--fg-muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; flex-grow: 1; }
.segment-tags { list-style: none; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.3rem; }
.segment-tags li { font-size: 0.75rem; color: var(--accent); }
.segment-cta { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: var(--fg-muted); }
.segment-card:hover .segment-cta { color: var(--accent); }

/* Pricing section */
.pricing { padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem); background: var(--surface); }
.pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-configs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 900px; margin: 0 auto 2rem; background: var(--border); }
.config-card { background: var(--bg); padding: 2rem 1.75rem; position: relative; }
.config-card.featured { background: var(--surface2); border: 1px solid rgba(0,201,122,0.15); }
.config-badge { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--accent); color: #000; font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.config-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.config-price { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.config-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.config-features li { font-size: 0.875rem; color: var(--fg-muted); }
.pricing-note { text-align: center; color: var(--fg-muted); font-size: 0.8rem; max-width: 500px; margin: 0 auto; }
.pricing-note a { color: var(--accent); }

/* Segment page */
.segment-hero { padding: clamp(6rem, 12vw, 9rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem); background: var(--bg); min-height: 50vh; display: flex; align-items: center; }
.segment-hero-inner { max-width: 700px; }
.back-link { font-size: 0.8rem; color: var(--fg-muted); text-decoration: none; display: inline-block; margin-bottom: 2rem; }
.back-link:hover { color: var(--fg); }
.segment-badge { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); padding: 0.3rem 0.75rem; border-radius: 2px; margin-bottom: 1.5rem; }
.segment-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.25rem; }
.segment-hero p { color: var(--fg-muted); font-size: 1rem; line-height: 1.7; }
.segment-form-section { padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem); background: var(--surface); }
.segment-form-inner { max-width: 640px; margin: 0 auto; }
.segment-form-inner h2 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.segment-form-inner > p { color: var(--fg-muted); font-size: 0.9rem; margin-bottom: 2.5rem; line-height: 1.6; }
#waitlist-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.8rem; font-weight: 500; color: var(--fg-muted); }
.form-field.required label { color: var(--fg); }
.required-mark { color: var(--accent); }
.optional { color: var(--fg-subtle); font-weight: 400; }
.form-field input { padding: 0.75rem 1rem; background: var(--bg); border: 1px solid var(--border); color: var(--fg); font-size: 0.9rem; font-family: var(--font-body); border-radius: 4px; transition: border-color 0.2s; }
.form-field input:focus { outline: none; border-color: var(--accent); }
.form-field input::placeholder { color: var(--fg-subtle); }
.urgency-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.urgency-option { cursor: pointer; }
.urgency-option input { display: none; }
.urgency-card { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; transition: border-color 0.2s; }
.urgency-option:hover .urgency-card { border-color: var(--fg-subtle); }
.urgency-option input:checked + .urgency-card { border-color: var(--accent); background: var(--accent-dim); }
.urgency-title { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; }
.urgency-desc { font-size: 0.75rem; color: var(--fg-muted); line-height: 1.4; }
.waitlist-submit { padding: 1rem; background: var(--accent); color: #000; border: none; border-radius: 4px; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: opacity 0.2s; }
.waitlist-submit:hover:not(:disabled) { opacity: 0.85; }
.waitlist-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-note { font-size: 0.75rem; color: var(--fg-subtle); text-align: center; margin-top: -0.25rem; }
.segment-footer { padding: 2rem clamp(1.5rem, 5vw, 4rem); background: var(--bg); border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 0.8rem; }
.segment-footer a { color: var(--fg-muted); text-decoration: none; }
.segment-footer a:hover { color: var(--fg); }
.segment-footer span { color: var(--fg-subtle); }

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; }
  .segment-grid { grid-template-columns: 1fr; }
  .pricing-configs { grid-template-columns: 1fr; }
  .urgency-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
