@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --green: #10B43C;
  --green-dim: #0d9132;
  --green-glow: rgba(16, 180, 60, 0.25);
  --green-glow-sm: rgba(16, 180, 60, 0.12);
  --dark-bg: #060a10;
  --dark-card: rgba(12, 18, 28, 0.85);
  --dark-surface: rgba(16, 25, 40, 0.6);
  --border: rgba(16, 180, 60, 0.2);
  --border-bright: rgba(16, 180, 60, 0.5);
  --text-primary: #e8f0fe;
  --text-secondary: rgba(200, 220, 255, 0.6);
  --text-muted: rgba(200, 220, 255, 0.35);
  --input-bg: rgba(8, 14, 24, 0.8);
  --readonly-bg: rgba(16, 180, 60, 0.04);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ── Background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(16, 180, 60, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(16, 180, 60, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 180, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 180, 60, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Layout ── */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header / Nav ── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 10, 16, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-link img {
  height: 36px;
  width: auto;
  filter: brightness(1.1);
}

.logo-link .brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green);
  border: 1px solid var(--border);
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: var(--green-glow-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Main Container ── */
.container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1.5rem;
}

/* ── Card ── */
.card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.75rem 2.5rem;
  width: 100%;
  max-width: 500px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(16, 180, 60, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(16, 180, 60, 0.06);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.7;
}

.card-wide {
  max-width: 640px;
}

/* ── Step Indicator ── */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid rgba(200, 220, 255, 0.15);
  color: var(--text-muted);
  background: var(--dark-surface);
  transition: all 0.3s;
  letter-spacing: 0;
}

.step.active {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-glow-sm);
  box-shadow: 0 0 16px var(--green-glow);
}

.step.completed {
  border-color: var(--green);
  color: #060a10;
  background: var(--green);
  box-shadow: 0 0 16px var(--green-glow);
}

.step-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: rgba(200, 220, 255, 0.1);
  margin: 0 0.75rem;
  position: relative;
}

.step-line.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}

/* ── Typography ── */
h1 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 span.accent {
  color: var(--green);
}

.subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
}

.pay-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(16, 180, 60, 0.07);
  border: 1px solid rgba(16, 180, 60, 0.2);
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  text-align: center;
}

.pay-banner strong {
  color: var(--green);
  font-weight: 700;
}

.pay-banner-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 1rem;
  opacity: 0.8;
}

/* ── Form Elements ── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.required {
  color: var(--green);
}

input[type="email"],
input[type="text"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
}

input[type="email"]::placeholder,
input[type="text"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow-sm), 0 0 16px var(--green-glow-sm);
  background: rgba(8, 14, 24, 0.95);
}

.readonly-input {
  background: var(--readonly-bg) !important;
  border-color: rgba(16, 180, 60, 0.15) !important;
  color: var(--text-secondary) !important;
  cursor: not-allowed !important;
  opacity: 0.85;
}

textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2310B43C' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select option {
  background: #0c1218;
  color: var(--text-primary);
}

/* ── Checkboxes ── */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  background: var(--dark-surface);
  margin-bottom: 0;
}

.checkbox-label:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-glow-sm);
  box-shadow: 0 0 10px var(--green-glow-sm);
}

.checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
}

.checkmark { display: none; }

.nda-label {
  padding: 1rem 1rem;
  background: rgba(16, 180, 60, 0.04);
  border: 1px solid rgba(16, 180, 60, 0.2);
  border-radius: 10px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.nda-label:hover {
  background: rgba(16, 180, 60, 0.08);
  border-color: rgba(16, 180, 60, 0.4);
  box-shadow: none;
}

/* ── Device Tags ── */
.device-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.device-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.875rem;
  background: var(--green-glow-sm);
  color: var(--green);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── Optional label ── */
.optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.75rem;
}

/* ── Experience Cards ── */
.experience-cards {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.experience-card {
  display: flex;
  cursor: pointer;
}

.experience-card input[type="radio"] {
  display: none;
}

.experience-card-inner {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--dark-surface);
  transition: all 0.2s;
}

.experience-card:hover .experience-card-inner {
  border-color: rgba(16, 180, 60, 0.4);
  background: var(--green-glow-sm);
}

.experience-card input[type="radio"]:checked + .experience-card-inner {
  border-color: var(--green);
  background: var(--green-glow-sm);
  box-shadow: 0 0 0 1px rgba(16, 180, 60, 0.25), 0 0 16px rgba(16, 180, 60, 0.08);
}

.experience-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.experience-card input[type="radio"]:checked + .experience-card-inner .experience-title {
  color: var(--green);
}

.experience-title::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border-bright);
  flex-shrink: 0;
  transition: all 0.2s;
}

.experience-card input[type="radio"]:checked + .experience-card-inner .experience-title::before {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}

.experience-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
  font-weight: 400;
}

/* ── NDA Yes/No ── */
.nda-question {
  background: var(--dark-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.nda-question-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.375rem;
}

.nda-question-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.nda-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.nda-option {
  display: flex;
  cursor: pointer;
}

.nda-option input[type="radio"] {
  display: none;
}

.nda-option-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--input-bg);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.nda-option:hover .nda-option-inner {
  border-color: rgba(16, 180, 60, 0.4);
  color: var(--text-primary);
}

.nda-option input[type="radio"]:checked + .nda-option-inner {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-glow-sm);
  box-shadow: 0 0 12px rgba(16, 180, 60, 0.1);
}

.nda-option-no input[type="radio"]:checked + .nda-option-inner {
  border-color: rgba(239, 68, 68, 0.5);
  color: rgba(239, 68, 68, 0.85);
  background: rgba(239, 68, 68, 0.05);
  box-shadow: none;
}

.nda-option-icon {
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

/* ── Buttons ── */
.btn-primary {
  width: 100%;
  padding: 0.9rem;
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.25s;
  margin-top: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: inherit;
}

.btn-primary:hover {
  color: #060a10;
  box-shadow: 0 0 24px var(--green-glow), 0 0 48px rgba(16, 180, 60, 0.1);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.03em;
}

.btn-secondary:hover {
  background: var(--green);
  color: #060a10;
  box-shadow: 0 0 20px var(--green-glow);
}

/* ── Success Page ── */
.success-card {
  text-align: center;
  max-width: 540px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.75rem;
  box-shadow: 0 0 30px var(--green-glow), 0 0 60px rgba(16, 180, 60, 0.08);
  position: relative;
}

.success-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(16, 180, 60, 0.15);
}

.success-details {
  text-align: left;
  background: var(--dark-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.75rem 0;
}

.success-details p {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.success-details ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.success-details li {
  color: var(--text-secondary);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.5;
}

.success-details li::before {
  content: '›';
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.site-footer a {
  color: var(--green);
  text-decoration: none;
  opacity: 0.8;
}

.site-footer a:hover {
  opacity: 1;
}

/* ── Privacy Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #0c1520;
  border: 1px solid var(--border-bright);
  border-radius: 18px;
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 0 1px rgba(16, 180, 60, 0.08), 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(16, 180, 60, 0.07);
  position: relative;
  transform: translateY(12px);
  transition: transform 0.25s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 18px 18px 0 0;
  opacity: 0.6;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-title-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-glow-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--green);
  flex-shrink: 0;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  flex-shrink: 0;
}

.modal-close:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-glow-sm);
}

.modal-body {
  padding: 1.5rem 1.75rem;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.modal-body::-webkit-scrollbar {
  width: 4px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.modal-body h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin: 1.25rem 0 0.5rem;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.5rem;
}

.modal-body ul li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.modal-body ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.modal-highlight {
  background: var(--green-glow-sm);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin: 1rem 0;
}

.modal-highlight p {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

.modal-footer {
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.modal-btn-close {
  padding: 0.6rem 1.5rem;
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.modal-btn-close:hover {
  background: var(--green);
  color: #060a10;
  box-shadow: 0 0 16px var(--green-glow);
}

.footer-privacy-link {
  cursor: pointer;
  color: var(--green) !important;
  opacity: 0.8;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  text-decoration: none;
}

.footer-privacy-link:hover {
  opacity: 1 !important;
}

/* ── Landing page (`/`) ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: #060a10;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}

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

.landing-page .site-header.landing-header {
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.landing-header-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.landing-header-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.02em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.landing-header-link:hover {
  color: var(--text-primary);
}

.landing-header-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 4px;
}

.landing-header-link--muted {
  color: var(--text-secondary);
  font-weight: 500;
}

.landing-header-link--muted:hover {
  color: var(--text-primary);
}

.landing-page main {
  flex: 1;
}

.landing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2.5rem 4rem;
  min-height: min(78vh, 720px);
}

.landing-hero-copy {
  max-width: 36rem;
}

.landing-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 1rem;
}

.landing-hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  text-align: left;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.landing-hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  text-align: left;
}

.landing-trust-line {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  text-align: left;
}

.landing-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
}

.landing-hero-cta--center {
  justify-content: center;
}

.landing-hero-cta .btn-primary,
.landing-hero-cta .btn-secondary {
  width: auto;
  min-height: 48px;
  margin-top: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-hero-cta .btn-primary {
  min-width: 11rem;
}

.landing-hero-cta .btn-primary:focus-visible,
.landing-hero-cta .btn-secondary:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 3px;
}

.landing-hero-visual {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--dark-surface);
  overflow: hidden;
  isolation: isolate;
}

.landing-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 180, 60, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 180, 60, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
}

.landing-hero-orb {
  position: absolute;
  width: min(90%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 30%, rgba(16, 180, 60, 0.45), transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(16, 180, 60, 0.2), transparent 50%);
  filter: blur(0.5px);
  animation: landing-orb-drift 14s ease-in-out infinite alternate;
}

@keyframes landing-orb-drift {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-48%, -52%) scale(1.06); }
}

.landing-section {
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
}

.landing-section--alt {
  background: rgba(16, 180, 60, 0.03);
}

.landing-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.landing-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 2.25rem;
  letter-spacing: -0.02em;
}

.landing-section-lede {
  max-width: 42rem;
  margin: -1rem auto 1.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.landing-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.landing-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.landing-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.landing-card--wide {
  grid-column: span 2;
}

.landing-card--tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.landing-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.landing-card-text + .landing-card-text {
  margin-top: 0.65rem;
}

.landing-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.landing-path {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem 1.75rem 1.5rem;
}

.landing-path-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.25rem;
  text-align: left;
}

.landing-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.landing-steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(16, 180, 60, 0.08);
}

.landing-steps li:last-child {
  border-bottom: none;
}

.landing-step-num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  background: var(--green-glow-sm);
  border: 1px solid var(--border);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-path-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.25rem;
  background: var(--green);
  color: #060a10;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: box-shadow 0.2s, transform 0.15s;
}

.landing-path-cta:hover {
  box-shadow: 0 0 24px var(--green-glow);
}

.landing-path-cta:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 3px;
}

.landing-path-cta--outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.landing-path-cta--outline:hover {
  background: var(--green-glow-sm);
  color: var(--green);
  box-shadow: none;
}

.landing-trust-block {
  max-width: 720px;
}

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

.landing-trust-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.35rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  border-bottom: 1px solid rgba(16, 180, 60, 0.1);
}

.landing-trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

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

.landing-cta-band {
  padding: 3.5rem 1.5rem;
  border-top: 1px solid var(--border-bright);
  background: linear-gradient(180deg, rgba(16, 180, 60, 0.06) 0%, transparent 100%);
}

.landing-cta-band-inner {
  text-align: center;
}

.landing-cta-band-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.landing-cta-band-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.landing-cta-band-sub a {
  color: var(--green);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .header-badge::before {
    animation: none;
  }

  .landing-hero-orb {
    animation: none;
  }
}

/* ── Responsive ── */
@media (max-width: 560px) {
  .site-header { padding: 1rem 1.25rem; }
  .card { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 1.5rem; }
  .header-badge { display: none; }

  .landing-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2rem 1.25rem 3rem;
  }

  .landing-hero-visual {
    order: -1;
    min-height: 200px;
  }

  .landing-hero-cta .btn-primary,
  .landing-hero-cta .btn-secondary {
    width: 100%;
  }

  .landing-bento {
    grid-template-columns: 1fr;
  }

  .landing-card--wide,
  .landing-card--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .landing-paths {
    grid-template-columns: 1fr;
  }

  .landing-header-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) and (min-width: 561px) {
  .landing-bento {
    grid-template-columns: 1fr 1fr;
  }

  .landing-card--wide {
    grid-column: span 2;
  }

  .landing-card--tall {
    grid-row: span 1;
  }

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

  .landing-hero-visual {
    min-height: 240px;
  }
}
