/* ===== Design tokens ===== */
:root {
  --accent: #f04438;

  --bg: #0f1115;
  --surface: #16181d;

  --text: #f3f1ee;
  --text-2: #c7c9cf;
  --text-3: #b4b8c0;
  --muted: #9297a1;
  --muted-2: #8a8f99;
  --faint: #6f747d;

  --hair-07: rgba(255, 255, 255, 0.07);
  --hair-08: rgba(255, 255, 255, 0.08);
  --hair-09: rgba(255, 255, 255, 0.09);
  --hair-10: rgba(255, 255, 255, 0.10);
  --hair-16: rgba(255, 255, 255, 0.16);
  --outline: rgba(255, 255, 255, 0.28);

  --sans: 'Archivo', system-ui, -apple-system, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;

  --maxw: 1180px;
  --pad-x: 32px;
  --section-y: 92px;
}

/* ===== Reset / base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--text); text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ===== Shared type ===== */
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 20px;
}
.h2 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.03;
  font-size: 44px;
  margin: 0;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  padding: 11px 20px;
  cursor: pointer;
  transition: filter .15s ease, background-color .15s ease, color .15s ease;
}
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { filter: brightness(0.92); color: #fff; }
.btn--outline { border: 1.5px solid var(--outline); color: var(--text); }
.btn--outline:hover { background: var(--text); color: var(--bg); }
.btn--lg { font-size: 15px; padding: 16px 30px; }
.btn--outline.btn--lg { padding: 15px 28px; }
.btn--block { display: flex; width: 100%; padding: 13px; font-size: 15px; }
.btn--accent.btn--block { padding: 14px; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(15, 17, 21, 0.78);
  border-bottom: 1px solid var(--hair-08);
}
.nav__inner {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__badge {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 15px;
}
.brand__name { font-weight: 800; letter-spacing: -0.01em; font-size: 16px; }

.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: 14px; font-weight: 500; color: var(--text-2); transition: color .15s ease; }
.nav__link:hover { color: var(--accent); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ===== Hero ===== */
.hero {
  padding-top: 72px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: stretch;
}
.hero__text { display: flex; flex-direction: column; justify-content: center; }
.hero .kicker { margin-bottom: 22px; }
.hero__title {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
  font-size: 68px;
  margin: 0 0 22px;
}
.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: #a9adb6;
  max-width: 460px;
  margin: 0 0 34px;
}
.hero__buttons {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero__contact {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}
.hero__contact a { color: var(--muted-2); transition: color .15s ease; }
.hero__contact a:hover { color: var(--accent); }

.hero__media {
  position: relative;
  min-height: 560px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--hair-10);
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
}
.hero__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,17,21,0) 55%, rgba(15,17,21,0.72) 100%);
}
.hero__caption {
  position: absolute; left: 22px; bottom: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e4e2df;
}

/* ===== Sections ===== */
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.section--raised {
  background: var(--surface);
  border-top: 1px solid var(--hair-07);
  border-bottom: 1px solid var(--hair-07);
}
.section--top-only { border-bottom: none; }

/* ===== Credentials ===== */
.creds__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 60px;
}
.creds__intro .kicker { margin-bottom: 18px; }
.creds__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-3);
  margin: 0 0 18px;
}
.creds__body:last-child { margin-bottom: 0; }

.stats { gap: 20px; margin-bottom: 56px; }
.stat-card {
  background: var(--bg);
  border: 1px solid var(--hair-09);
  border-radius: 8px;
  padding: 30px 28px;
}
.stat-card__num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.stat-card__label { font-size: 15px; color: var(--muted); margin-top: 12px; font-weight: 600; }

.podiums { gap: 20px; margin-bottom: 44px; }
.podium {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--hair-09);
  border-radius: 8px;
}
.podium__rank {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #d6d8dd;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
}
.podium__rank--first { border-color: var(--accent); color: var(--accent); }
.podium__race { font-weight: 700; font-size: 16px; }
.podium__meta { font-size: 13px; color: var(--muted-2); margin-top: 2px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--hair-16);
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

/* ===== How it works ===== */
.approach__title { max-width: 640px; margin-bottom: 48px; }
.step-card {
  background: var(--surface);
  border: 1px solid var(--hair-08);
  border-radius: 8px;
  padding: 34px;
}
.step-card__num { font-family: var(--mono); font-size: 13px; color: var(--accent); font-weight: 700; }
.step-card__title { font-weight: 800; font-size: 21px; margin: 16px 0 10px; }
.step-card__body { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ===== Pricing ===== */
.pricing__header { text-align: center; margin-bottom: 52px; }
.pricing__header .h2 { font-size: 46px; margin-bottom: 14px; }
.pricing__sub { font-size: 17px; color: var(--muted); margin: 0; }
.pricing__grid { align-items: stretch; }

.plan {
  background: var(--bg);
  border: 1px solid var(--hair-10);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.plan--popular {
  background: linear-gradient(180deg, #21242b 0%, #191c22 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(-10px);
}
.plan__badge {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.plan__title { font-weight: 800; font-size: 22px; margin: 0 0 6px; }
.plan__tagline { font-size: 14px; color: var(--muted-2); margin: 0 0 22px; }
.plan__tagline--light { color: #a9adb6; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.plan__amount { font-weight: 900; font-size: 46px; letter-spacing: -0.02em; }
.plan__unit { font-size: 15px; color: var(--muted-2); }
.plan__unit--light { color: #a9adb6; }
.plan .btn { margin-bottom: 28px; }
.plan__features { display: flex; flex-direction: column; gap: 13px; }
.feature { display: flex; gap: 11px; font-size: 15px; color: var(--text-2); }
.feature--light { color: #e6e4e0; }
.feature__check { color: var(--accent); font-weight: 800; }

/* ===== Testimonials ===== */
.testimonials__title { max-width: 560px; margin-bottom: 48px; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--hair-08);
  border-radius: 8px;
  padding: 32px;
}
.testimonial__quote { font-size: 16px; line-height: 1.55; margin: 0 0 24px; color: #e6e4e0; }
.testimonial__person { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: repeating-linear-gradient(45deg, #2a2d34 0 8px, #33373f 8px 16px);
}
.testimonial__name { font-weight: 700; font-size: 15px; }
.testimonial__role { font-family: var(--mono); font-size: 12px; color: var(--muted-2); }

/* ===== FAQ ===== */
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px var(--pad-x) 92px;
}
.faq__header { text-align: center; margin-bottom: 44px; }
.faq__header .h2 { font-size: 42px; }
.faq__item { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  font-family: var(--sans);
}
.faq__glyph { font-family: var(--mono); font-size: 24px; color: var(--muted-2); line-height: 1; }
.faq__q[aria-expanded="true"] .faq__glyph { color: var(--accent); }
.faq__a {
  display: none;
  padding: 0 4px 28px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
  color: #a9adb6;
}
.faq__item.is-open .faq__a { display: block; }

/* ===== Contact ===== */
.contact { margin-bottom: 92px; }
.contact__band {
  background: var(--accent);
  border-radius: 10px;
  padding: 72px 48px;
  text-align: center;
}
.contact__title { font-weight: 900; letter-spacing: -0.02em; font-size: 50px; margin: 0 0 18px; color: #fff; line-height: 1.02; }
.contact__sub { font-size: 18px; color: rgba(255,255,255,0.92); max-width: 500px; margin: 0 auto 34px; line-height: 1.5; }
.contact__buttons { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cbtn {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 6px;
  font-weight: 700; font-size: 15px;
  color: #fff;
  transition: background-color .15s ease, color .15s ease;
}
.cbtn--dark { background: var(--bg); padding: 16px 28px; }
.cbtn--dark:hover { background: #fff; color: var(--bg); }
.cbtn--ghost {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 15px 26px;
}
.cbtn--ghost:hover { background: #fff; color: var(--bg); }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--hair-08); }
.footer__inner {
  padding-top: 40px; padding-bottom: 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__badge {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 13px;
}
.footer__name { font-weight: 800; font-size: 15px; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 14px; color: var(--muted); transition: color .15s ease; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { font-family: var(--mono); font-size: 12px; color: var(--faint); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  :root { --section-y: 68px; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px var(--pad-x) 20px;
    background: rgba(15, 17, 21, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hair-08);
    display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__link { padding: 12px 4px; font-size: 16px; }
  .nav__cta { margin-top: 8px; padding: 14px 20px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero__title { font-size: 44px; }
  .hero__media { min-height: 420px; }

  .creds__intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
  .grid--3 { grid-template-columns: 1fr; }

  .plan--popular { transform: none; }

  .h2 { font-size: 34px; }
  .pricing__header .h2 { font-size: 36px; }
  .contact__title { font-size: 36px; }
  .contact__band { padding: 48px 28px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  :root { --pad-x: 20px; }
  .hero__title { font-size: 40px; }
  .hero__buttons { flex-direction: column; align-items: stretch; }
  .hero__buttons .btn { width: 100%; }
  .cbtn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
