:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --ink: #112039;
  --ink-muted: #4d5d78;
  --line: #dbe5f1;
  --primary: #0f7eff;
  --secondary: #0ac7c3;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}

.orb-a {
  width: 340px;
  height: 340px;
  background: #91c6ff;
  top: -120px;
  left: -80px;
}

.orb-b {
  width: 360px;
  height: 360px;
  background: #9af3ea;
  bottom: -140px;
  right: -90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(245, 248, 252, 0.8);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  display: block;
  width: clamp(180px, 22vw, 236px);
  height: auto;
}

.header-nav {
  display: flex;
  gap: 24px;
  color: var(--ink-muted);
  font-weight: 500;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin: 0 0 14px;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero-copy {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  transition: transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
}

.btn-danger {
  border: 0;
  background: #e63f67;
  color: #ffffff;
  cursor: pointer;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.handoff-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(15, 126, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(10, 199, 195, 0.18), transparent 34%),
    var(--bg);
}

.handoff-card {
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(33, 73, 127, 0.16);
  padding: 30px;
}

.handoff-card h1 {
  font-size: clamp(2rem, 8vw, 3rem);
}

.handoff-card p:not(.eyebrow) {
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(33, 73, 127, 0.13);
  padding: 24px;
}

.hero-card-label {
  margin: 0 0 8px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.hero-card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.hero-card p {
  margin: 0;
  color: var(--ink-muted);
}

.hero-replies {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.reply {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.reply.yes {
  background: #dff9ea;
  color: #127948;
}

.reply.no {
  background: #ffe7ed;
  color: #9a2344;
}

.reply.maybe {
  background: #eef3ff;
  color: #294f9b;
}

.section {
  padding: 56px 0;
}

.support-hero {
  padding-bottom: 40px;
}

.support-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.support-summary-card h3 {
  word-break: break-word;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(33, 73, 127, 0.08);
}

.support-card h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.support-copy {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.support-list {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-muted);
  line-height: 1.75;
}

.support-form {
  display: grid;
  gap: 16px;
  width: min(760px, 100%);
}

.compact-form {
  width: 100%;
  margin-top: 18px;
}

.support-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--ink);
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
  outline: none;
}

.support-form textarea {
  resize: vertical;
  min-height: 120px;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 126, 255, 0.12);
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px !important;
  font-weight: 700 !important;
  color: var(--ink-muted) !important;
  line-height: 1.45;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.form-note {
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}

.turnstile-container {
  min-height: 65px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-weight: 800;
}

.form-status[data-tone="success"] {
  color: #127948;
}

.form-status[data-tone="error"] {
  color: #9a2344;
}

.form-status[data-tone="info"] {
  color: var(--primary);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin: 0 0 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.feature p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.5;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.cta {
  padding-bottom: 84px;
}

.cta-card {
  background: linear-gradient(130deg, #0f7eff, #0ac7c3);
  border-radius: 24px;
  padding: 28px;
  color: #ffffff;
}

.cta-card h2 {
  margin: 0 0 6px;
}

.cta-card p {
  margin: 0;
  opacity: 0.95;
}

.signup-form {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.signup-form input {
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  min-width: 260px;
  flex: 1;
  font: inherit;
}

.signup-form button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  background: #0f1a2c;
  color: #ffffff;
  cursor: pointer;
}

.feedback {
  margin-top: 10px;
  min-height: 20px;
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink-muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .header-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .hero {
    padding-top: 52px;
  }
}
