:root {
  --bg-body: #020617;
  --bg-elevated: #020617;
  --bg-elevated-alt: #020617;
  --bg-accent: #020617;
  --color-primary: #22c55e;
  --color-primary-soft: rgba(34, 197, 94, 0.1);
  --color-text: #e5e7eb;
  --color-text-muted: #9ca3af;
  --color-border: #1f2933;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.8);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  --container-width: 1120px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 50%, #000 100%);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.75));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

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

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

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.55);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 14px;
}

.brand-tagline {
  font-size: 11px;
  color: var(--color-text-muted);
}

.meta-pill {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 11px;
  color: var(--color-text-muted);
}

/* Hero */
.hero {
  padding: 32px 0 16px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.hero-highlight {
  color: var(--color-primary);
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero-bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.hero-cta {
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #020617;
  box-shadow: 0 16px 35px rgba(34, 197, 94, 0.42);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-full {
  width: 100%;
}

.hero-note {
  margin-top: 6px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.hero-trust {
  margin-top: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 11px;
  color: var(--color-text-muted);
}

.hero-visual {
  position: relative;
}

.hero-image {
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-mentor-card {
  position: absolute;
  bottom: 16px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.35), rgba(15, 23, 42, 0.97));
  border: 1px solid rgba(148, 163, 184, 0.6);
  backdrop-filter: blur(12px);
}

.mentor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(34, 197, 94, 0.9);
}

.mentor-text {
  display: flex;
  flex-direction: column;
}

.mentor-name {
  font-size: 13px;
  font-weight: 600;
}

.mentor-role {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* Sections */
.section {
  padding: 34px 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000 100%);
}

.section-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.section-lead {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 20px;
}

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

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

.card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), rgba(2, 6, 23, 1));
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: var(--shadow-soft);
  padding: 16px 18px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  border: 1px solid rgba(34, 197, 94, 0.8);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.step-body h3 {
  font-size: 15px;
  margin: 0 0 4px;
}

.step-body p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial-image {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.testimonial-quote {
  font-size: 13px;
  color: var(--color-text);
}

.testimonial-name {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Lead section */
.section-accent {
  background: radial-gradient(circle at top, #022c22 0, #020617 60%, #000 100%);
}

.lead-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: flex-start;
}

.lead-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

.lead-bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}

.lead-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.lead-form-card {
  padding: 18px 18px 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.field span {
  font-size: 12px;
}

.required {
  color: #f97316;
  margin-left: 3px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  border-radius: 11px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 9px 10px;
  font-size: 13px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--color-text);
  outline: none;
}

input::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.45);
}

.field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.field-checkbox input {
  margin-top: 3px;
}

.form-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.form-success {
  margin-top: 10px;
  font-size: 12px;
  color: #bbf7d0;
}

/* FAQ */
.faq-list details {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  margin-bottom: 8px;
  padding: 8px 10px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 13px;
}

.faq-list p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* Disclaimer */
.disclaimer-section {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.disclaimer-text {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

/* Footer */
.page-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(2, 6, 23, 0.98);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 12px;
}

.footer-text {
  font-size: 11px;
  color: var(--color-text-muted);
}

.footer-links {
  font-size: 11px;
  color: var(--color-text-muted);
}

.footer-links a {
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.6);
}

.dot {
  margin: 0 6px;
}

/* Responsive */
@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    order: -1;
  }
  .hero {
    padding-top: 22px;
  }
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .lead-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .header-inner {
    padding-inline: 12px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 32px;
    height: 32px;
  }
  .hero-copy h1 {
    font-size: 26px;
  }
  .section {
    padding-block: 26px;
  }
}
