* {
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0b;
  --panel: #141414;
  --text: #f5f5f2;
  --muted: #aaa9a3;
  --light: #f4f3ee;
  --light-card: #ffffff;
  --dark-text: #151515;
  --line: #2b2b2b;
  --accent: #d7ff3f;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,11,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1d1d1d;
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 21px;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #d2d2ce;
}

nav a:hover {
  color: #fff;
}

.nav-cta {
  border: 1px solid #444;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  padding: 96px 0 84px;
  border-bottom: 1px solid #222;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--accent);
  margin: 0 0 20px;
}

.eyebrow.dark {
  color: #5c6300;
}

h1 {
  font-size: clamp(54px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -0.06em;
  margin: 0 0 28px;
  max-width: 800px;
}

.hero-text {
  max-width: 650px;
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #111;
}

.btn.primary:hover {
  transform: translateY(-1px);
  filter: brightness(.95);
}

.btn.secondary {
  background: transparent;
  border-color: #444;
  color: inherit;
}

.btn.secondary:hover {
  border-color: #777;
}

.btn.full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  color: #c5c5c0;
  font-size: 14px;
}

.hero-card {
  background: linear-gradient(180deg, #181818, #111);
  border: 1px solid #292929;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}

.mini-label {
  color: #8e8e89;
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 700;
}

.hero-card h2 {
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 18px 0;
}

.hero-card > p {
  color: #aeadA8;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 34px;
}

.stat-row div {
  border-top: 1px solid #2f2f2f;
  padding-top: 18px;
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  font-size: 20px;
}

.stat-row span {
  margin-top: 4px;
  font-size: 11px;
  color: #8d8d87;
}

.section {
  padding: 92px 0;
}

.section.light {
  background: var(--light);
  color: var(--dark-text);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 48px;
}

.section-heading h2,
.apply h2 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child {
  color: #777;
  font-size: 17px;
}

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

.feature-card {
  background: var(--light-card);
  padding: 26px;
  min-height: 250px;
  border: 1px solid #e4e2da;
  border-radius: 12px;
}

.num {
  font-size: 12px;
  color: #888;
  margin-bottom: 54px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.feature-card p {
  color: #686868;
  font-size: 14px;
}

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

.price-card {
  position: relative;
  border: 1px solid #2d2d2d;
  border-radius: 16px;
  padding: 30px;
  background: #101010;
}

.price-card.featured {
  border-color: var(--accent);
}

.popular {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  background: var(--accent);
  color: #111;
  border-radius: 999px;
  padding: 6px 9px;
}

.tier {
  color: #878782;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.price-card h3 {
  font-size: 28px;
  margin: 18px 0;
}

.price {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.price span {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 4px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid #262626;
}

.price-card li {
  padding: 12px 0;
  border-bottom: 1px solid #262626;
  color: #c4c4bf;
  font-size: 14px;
}

.pricing-note {
  text-align: center;
  color: #777;
  font-size: 13px;
  margin-top: 20px;
}

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

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
  background: #fff;
  border: 1px solid #e4e2da;
  padding: 24px;
  border-radius: 12px;
}

.process-step > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 7px;
}

.process-step p {
  margin: 0;
  color: #707070;
}

.apply {
  border-top: 1px solid #222;
}

.apply-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.apply-grid > div > p:last-child {
  color: #a4a49f;
  font-size: 17px;
}

.apply-form {
  background: #111;
  border: 1px solid #2c2c2c;
  border-radius: 16px;
  padding: 26px;
}

.apply-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

input, select, textarea {
  width: 100%;
  margin-top: 8px;
  background: #0b0b0b;
  color: #fff;
  border: 1px solid #343434;
  border-radius: 8px;
  padding: 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-message {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--accent);
}

footer {
  border-top: 1px solid #222;
  padding: 42px 0;
  color: #9a9a95;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  color: #fff;
  margin-bottom: 8px;
}

.footer-wrap p {
  margin: 4px 0;
  font-size: 13px;
}

.footer-right {
  text-align: right;
  max-width: 470px;
}

.small {
  font-size: 11px !important;
  color: #6f6f6b;
}

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid,
  .apply-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 68px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid,
  .apply-grid {
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 26px, 1120px);
  }

  .section,
  .hero {
    padding: 68px 0;
  }

  h1 {
    font-size: 54px;
  }

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

  .feature-card {
    min-height: unset;
  }

  .num {
    margin-bottom: 28px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .footer-right {
    text-align: left;
  }
}
