:root {
  --navy: #1a2b4a;
  --charcoal: #2d3748;
  --orange: #e07a2f;
  --teal: #2a9d8f;
  --offwhite: #fafafa;
  --lightgray: #f4f4f5;
  --white: #ffffff;
  --muted: #6b7280;
  --border: #e5e7eb;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 30px rgba(26, 43, 74, 0.12);
  --shadow-lg: 0 18px 60px rgba(26, 43, 74, 0.16);
  --radius-8: 8px;
  --radius-12: 12px;
  --radius-16: 16px;

  --container: 1200px;
  --pad-mobile: 24px;
  --pad-desktop: 48px;

  --section-y: 96px;
  --section-y-sm: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--charcoal);
  background: var(--offwhite);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius-8);
  z-index: 9999;
}

.skip-link:focus {
  left: 8px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-mobile);
}

.section {
  padding: var(--section-y-sm) 0;
}

.section.alt {
  background: var(--lightgray);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}

.brand-text {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 56vw;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero {
  background: radial-gradient(
      1000px 380px at 20% 10%,
      rgba(42, 157, 143, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 360px at 85% 25%,
      rgba(224, 122, 47, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff, var(--offwhite));
}

.hero-inner {
  padding-top: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  text-align: center;
  color: rgba(26, 43, 74, 0.75);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-title {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}

.hero-subtitle {
  margin: 0 auto 18px;
  max-width: 820px;
  text-align: center;
  font-size: 18px;
  color: rgba(45, 55, 72, 0.9);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 26px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(26, 43, 74, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(26, 43, 74, 0.86);
  font-weight: 600;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.h2 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.small {
  font-size: 14px;
  line-height: 1.5;
}

.muted {
  color: var(--muted);
}

.section-head {
  margin-bottom: 48px;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.card {
  background: var(--white);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 231, 235, 0.9);
  padding: 28px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card-title {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
}

.media {
  border-radius: var(--radius-12);
  background: linear-gradient(180deg, #eef2f7, #e7ecf5);
  border: 1px solid rgba(229, 231, 235, 0.9);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.media-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(26, 43, 74, 0.9);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(26, 43, 74, 0.2);
}

.media-caption {
  margin: 12px 0 0;
}

.form-card {
  position: sticky;
  top: 84px;
}

.form-intro {
  margin: -6px 0 12px;
}

.mini-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(45, 55, 72, 0.88);
}

.mini-list li {
  margin: 8px 0;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.field input {
  border: 1px solid var(--border);
  border-radius: var(--radius-8);
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
  background: var(--white);
}

.field input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.12);
}

.field input[aria-invalid="true"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.field-error {
  margin: 0;
  font-size: 14px;
  color: #ef4444;
  min-height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-8);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  transition: transform 120ms ease, filter 120ms ease, background 120ms ease,
    color 120ms ease, box-shadow 120ms ease;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.18);
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 10px 20px rgba(224, 122, 47, 0.2);
}

.btn-primary:hover {
  filter: brightness(0.9);
  text-decoration: none;
  color: white;
}

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

.btn-block {
  width: 100%;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 999px;
  display: none;
  animation: spin 0.9s linear infinite;
}

.is-submitting .btn-spinner {
  display: inline-block;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value {
  padding: 22px;
}

.value-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(224, 122, 47, 0.10);
  color: rgba(26, 43, 74, 0.9);
  border: 1px solid rgba(224, 122, 47, 0.18);
}

.pain-card .icon-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(42, 157, 143, 0.12);
  color: var(--teal);
  margin-bottom: 12px;
  font-size: 20px;
}

.opportunity {
  margin-top: 28px;
  background: var(--lightgray);
  border-radius: var(--radius-16);
  padding: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.opportunity-inner {
  max-width: 900px;
  margin: 0 auto;
}

.checklist,
.bullets,
.ba-list {
  margin: 14px 0 0;
  padding-left: 22px;
}

.checklist li {
  margin: 8px 0;
}

.checklist li::marker {
  color: var(--teal);
}

.bullets li,
.ba-list li {
  margin: 8px 0;
}

.urgency {
  margin-top: 16px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: start;
}

.ba-title {
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.ba-arrow {
  font-size: 26px;
  color: var(--orange);
  align-self: center;
}

/* Before/After Container Layout */
.before-after-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.ba-card {
  padding: 32px;
}

.ba-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ba-badge-before {
  background: rgba(229, 231, 235, 0.5);
  color: var(--muted);
}

.ba-badge-after {
  background: rgba(42, 157, 143, 0.15);
  color: var(--teal);
}

.ba-arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-arrow-combined {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--teal), #21867a);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.ba-arrow-combined .arrow {
  font-size: 24px;
}

@media (max-width: 768px) {
  .before-after-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ba-arrow-container {
    padding: 8px 0;
  }

  .ba-arrow-combined {
    flex-direction: row;
    gap: 12px;
    padding: 12px 24px;
  }
}

.timeline {
  margin-top: 28px;
}

.timeline-track {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pillar {
  padding: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(42, 157, 143, 0.35);
  color: var(--teal);
  background: rgba(42, 157, 143, 0.08);
  font-size: 12px;
  font-weight: 600;
}

.pillar-title {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.note {
  margin: 22px 0 0;
  text-align: center;
}

.profile img,
.testimonial img {
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #f8fafc;
}

.usp {
  margin-top: 24px;
}

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

.usp-item {
  padding: 14px;
  border-radius: var(--radius-12);
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #fbfbfb;
}

.usp-wide {
  grid-column: 1 / -1;
}

.usp-k {
  font-weight: 700;
  color: var(--navy);
}

.usp-v {
  color: var(--muted);
  margin-top: 4px;
}

.quote {
  margin: 16px 0 0;
  text-align: center;
  color: var(--navy);
  font-weight: 600;
}

.table {
  padding: 0;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 0.6fr 1fr 2fr;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.row.head {
  border-top: none;
  background: rgba(26, 43, 74, 0.04);
  font-weight: 700;
  color: var(--navy);
}

.mt {
  margin-top: 24px;
}

.mt-sm {
  margin-top: 14px;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.marquee {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-16);
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-sm);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: 0 18px;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
}

.marquee-fade.left {
  left: 0;
  background: linear-gradient(90deg, rgba(250, 250, 250, 1), transparent);
}

.marquee-fade.right {
  right: 0;
  background: linear-gradient(270deg, rgba(250, 250, 250, 1), transparent);
}

.testimonial .quote {
  margin-top: 14px;
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}

.testimonial .quote::before {
  content: "“";
  color: rgba(26, 43, 74, 0.25);
  margin-right: 2px;
}

.testimonial .quote::after {
  content: "”";
  color: rgba(26, 43, 74, 0.25);
  margin-left: 2px;
}

.cta-box {
  margin-top: 24px;
  border: 1px solid rgba(224, 122, 47, 0.25);
  background: linear-gradient(180deg, #fff, rgba(224, 122, 47, 0.06));
}

.story-quote {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
}

.story-quote + .story-quote {
  margin-top: 10px;
}

.mission p {
  margin: 0;
}

.mission p + p {
  margin-top: 10px;
}

.founders .founder-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.founder {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-12);
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: var(--white);
}

.founder-name {
  font-weight: 700;
  color: var(--navy);
}

.final-cta {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.school-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  padding: 42px 0;
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-title {
  font-weight: 700;
}

.footer-links,
.footer-social {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links a:hover,
.footer-social a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 16px;
}

/* Thank you page */
.thank-you-body {
  background: radial-gradient(
      900px 350px at 20% 10%,
      rgba(42, 157, 143, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 380px at 85% 25%,
      rgba(224, 122, 47, 0.18),
      transparent 60%
    ),
    var(--offwhite);
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-next {
  margin-top: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.75);
}

.thank-you-next .bullets {
  margin-top: 10px;
}

.success-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #22c55e;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin: 0 auto 16px;
}

.thank-you-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--pad-desktop);
  }

  .section {
    padding: var(--section-y) 0;
  }
}

@media (max-width: 1024px) {
  .timeline-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero-title {
    font-size: 40px;
  }

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

  .form-card {
    position: static;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .ba-arrow {
    display: none;
  }

  .timeline-track {
    grid-template-columns: 1fr;
  }

  .founders .founder-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }

  .card {
    transition: none;
  }
}

/* Format Cards with Icon Lists */
.format-card {
  background: var(--white);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 231, 235, 0.9);
  padding: 28px;
  border-top: 3px solid var(--teal);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.format-card.accent-orange {
  border-top-color: var(--orange);
}

.format-card .h3 {
  margin-bottom: 20px;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.icon-list li:last-child {
  border-bottom: none;
}

.icon-list .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.icon-list .icon svg {
  width: 100%;
  height: 100%;
}

.format-card.accent-orange .icon {
  color: var(--orange);
}

.icon-list span:not(.icon) {
  color: var(--charcoal);
  line-height: 1.5;
}

.format-chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.format-chips .chip {
  background: var(--white);
  border: 1px solid rgba(42, 157, 143, 0.3);
  color: var(--navy);
}

/* Journey Card (hero section) */
.journey-card {
  background: var(--white);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 231, 235, 0.9);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.journey-side h3,
.outcome-side h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
}

.journey-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.journey-list li:last-child {
  border-bottom: none;
}

.journey-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: white;
}

.journey-icon.strategy { background: linear-gradient(135deg, #2a9d8f, #21867a); }
.journey-icon.automation { background: linear-gradient(135deg, #e07a2f, #c96a25); }
.journey-icon.coding { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.journey-icon.project { background: linear-gradient(135deg, #ec4899, #db2777); }

.journey-content {
  flex: 1;
}

.journey-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.journey-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2px;
}

.outcome-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.outcome-list li:last-child {
  border-bottom: none;
}

.outcome-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a9d8f, #21867a);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.outcome-check svg {
  width: 14px;
  height: 14px;
}

.outcome-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .journey-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
  }
}

/* Choice Page (index.html) */
.choice-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      1000px 380px at 20% 10%,
      rgba(42, 157, 143, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 360px at 85% 25%,
      rgba(224, 122, 47, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff, var(--offwhite));
  padding: 40px 24px;
}

.choice-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.choice-header {
  margin-bottom: 48px;
}

.choice-title {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.choice-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.choice-prompt {
  margin-top: 32px;
}

.choice-question {
  margin: 0 0 32px;
  color: var(--navy);
  font-size: 48px;
  font-weight: 700;
}

.choice-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.choice-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.choice-btn:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: inherit;
}

.choice-btn-employer:hover {
  border-color: var(--teal);
}

.choice-btn-employee:hover {
  border-color: var(--orange);
}

.choice-btn-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.choice-btn-label {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.choice-btn-desc {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .choice-title {
    font-size: 24px;
  }

  .choice-question {
    font-size: 36px;
  }

  .choice-buttons {
    grid-template-columns: 1fr;
  }

  .choice-btn {
    padding: 32px 24px;
  }
}


