@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500&family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --color-bg: #0f1419;
  --color-surface: #171e26;
  --color-surface-2: #1f2933;
  --color-text: #e9eef3;
  --color-muted: #a9b4c0;
  --color-accent: #f2a900;
  --color-accent-2: #31c48d;
  --color-danger: #e25555;
  --color-border: #2d3a47;
  --container-width: 1200px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% -10%, rgba(49, 196, 141, 0.2), transparent 36%),
    radial-gradient(circle at 90% 0%, rgba(242, 169, 0, 0.16), transparent 42%),
    linear-gradient(165deg, #0f1419 0%, #121922 45%, #0d1117 100%);
  color: var(--color-text);
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.55;
}

::selection {
  color: #0b1117;
  background: var(--color-accent);
}

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

p {
  margin: 0;
  color: var(--color-muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

main {
  position: relative;
  overflow: clip;
}

.site-container {
  width: min(var(--container-width), 100% - 48px);
  margin: 0 auto;
}

.top-stripe {
  padding: 10px 0;
  border-bottom: 1px solid rgba(242, 169, 0, 0.25);
  background: rgba(15, 20, 25, 0.78);
  backdrop-filter: blur(8px);
}

.top-stripe p {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f9d475;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(45, 58, 71, 0.8);
  background: rgba(15, 20, 25, 0.85);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 14px 0;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    conic-gradient(from 190deg, rgba(242, 169, 0, 0.95), rgba(49, 196, 141, 0.92), rgba(242, 169, 0, 0.95));
  box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.2);
}

.brand-copy {
  min-width: 0;
}

.brand-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  display: block;
  margin-top: 2px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-current {
  color: var(--color-text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(23, 30, 38, 0.9);
  color: var(--color-text);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #131820;
  background: linear-gradient(125deg, #f2a900, #ffca5f);
  box-shadow: 0 10px 26px rgba(242, 169, 0, 0.35);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 15px 32px rgba(242, 169, 0, 0.4);
}

.button-secondary {
  border-color: var(--color-border);
  color: var(--color-text);
  background: rgba(31, 41, 51, 0.65);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(242, 169, 0, 0.55);
  background: rgba(31, 41, 51, 0.96);
}

.hero {
  padding: var(--space-7) 0 var(--space-6);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-5);
  align-items: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-2);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  margin-bottom: var(--space-3);
}

.hero p {
  max-width: 58ch;
  font-size: clamp(17px, 2.1vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-4);
}

.hero-proof {
  margin-top: var(--space-2);
  font-size: 14px;
  font-weight: 600;
  color: #d0d7df;
}

.hero-panel {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(49, 196, 141, 0.28);
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, rgba(23, 30, 38, 0.95), rgba(23, 30, 38, 0.74));
  box-shadow: var(--shadow-lg);
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  border: 1px solid rgba(49, 196, 141, 0.22);
  pointer-events: none;
}

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.kpi-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(45, 58, 71, 0.85);
  background: rgba(31, 41, 51, 0.72);
}

.kpi-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}

.kpi-label {
  margin-top: 4px;
  font-size: 13px;
  color: var(--color-muted);
}

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

.section-title {
  max-width: 18ch;
  font-size: clamp(30px, 4.2vw, 48px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-2);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}

.section-intro {
  max-width: 60ch;
  font-size: 18px;
}

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

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

.card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 58, 71, 0.9);
  background: linear-gradient(180deg, rgba(23, 30, 38, 0.9), rgba(23, 30, 38, 0.7));
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(49, 196, 141, 0.8), rgba(242, 169, 0, 0.85));
  opacity: 0.7;
}

.card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.card h4 {
  font-size: 21px;
  margin-bottom: 10px;
}

.card p + p {
  margin-top: 12px;
}

.card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--color-muted);
}

.card li + li {
  margin-top: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(49, 196, 141, 0.4);
  background: rgba(49, 196, 141, 0.13);
  font-size: 12px;
  font-weight: 700;
  color: #8ce9c4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price {
  margin-top: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--color-accent);
}

.note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-muted);
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.step-no {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(242, 169, 0, 0.45);
  background: rgba(242, 169, 0, 0.14);
  font-family: 'IBM Plex Mono', monospace;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffd273;
  font-size: 14px;
  font-weight: 700;
}

.about-quote {
  padding: 18px 20px;
  border-radius: 16px;
  border-left: 4px solid var(--color-accent);
  background: rgba(31, 41, 51, 0.72);
  color: #dce5ee;
  font-size: 19px;
}

.faq-item {
  border: 1px solid rgba(45, 58, 71, 0.95);
  border-radius: 16px;
  background: rgba(23, 30, 38, 0.82);
  padding: 18px;
}

.faq-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.cta-panel {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 34px;
  border: 1px solid rgba(242, 169, 0, 0.5);
  background:
    linear-gradient(135deg, rgba(242, 169, 0, 0.17), rgba(49, 196, 141, 0.17)),
    rgba(23, 30, 38, 0.86);
  box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.cta-panel p {
  margin-top: 12px;
  font-size: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.table-wrap {
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(45, 58, 71, 0.95);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(45, 58, 71, 0.9);
  text-align: left;
  vertical-align: top;
}

th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c0c9d2;
  background: rgba(31, 41, 51, 0.82);
}

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

td strong {
  color: var(--color-text);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cfd8e2;
}

.form-field input,
.form-field textarea,
.form-field select {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(15, 20, 25, 0.94);
  color: var(--color-text);
  font: inherit;
  padding: 12px 13px;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
  outline: 2px solid rgba(242, 169, 0, 0.45);
  outline-offset: 2px;
  border-color: rgba(242, 169, 0, 0.55);
}

.form-note {
  margin-top: 10px;
  font-size: 13px;
}

.footer {
  margin-top: var(--space-7);
  border-top: 1px solid rgba(45, 58, 71, 0.9);
  padding: 26px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-links {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-text);
}

.text-link {
  color: #fdd37a;
  text-decoration: underline;
  text-decoration-color: rgba(253, 211, 122, 0.4);
  text-underline-offset: 2px;
}

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

.warning {
  border-left: 4px solid var(--color-danger);
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(226, 85, 85, 0.1);
  color: #f4c5c5;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
  }

  .section-title {
    max-width: none;
  }

  .hero-panel {
    padding: 22px;
  }
}

@media (max-width: 860px) {
  .site-container {
    width: min(var(--container-width), 100% - 30px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(15, 20, 25, 0.98);
    border-bottom: 1px solid rgba(45, 58, 71, 0.9);
    padding: 8px 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-links .button {
    width: 100%;
    border-radius: 0;
    padding: 14px 24px;
  }

  .nav-links .button {
    justify-content: flex-start;
    margin-top: 8px;
    border-left: 0;
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .top-stripe p {
    font-size: 11px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero p,
  .section-intro,
  .cta-panel p {
    font-size: 16px;
  }

  .card,
  .cta-panel {
    padding: 20px;
  }

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