:root {
  color-scheme: dark;
  --bg: #05070b;
  --bg-2: #081018;
  --panel: rgba(11, 18, 27, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #a9b7c6;
  --cyan: #22dff5;
  --coral: #ff5c3f;
  --amber: #ffc857;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.86), rgba(5, 7, 11, 0.42));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 11, 0.9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(247, 251, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(34, 223, 245, 0.38);
  border-radius: 8px;
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.section,
.section-band {
  position: relative;
}

.section {
  padding: 112px 0;
}

.section-band {
  padding: 112px 0;
  overflow: hidden;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding-top: 142px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 28% 78%, rgba(34, 223, 245, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(5, 7, 11, 0.98), rgba(5, 7, 11, 0.82) 36%, rgba(5, 7, 11, 0.22) 68%, rgba(5, 7, 11, 0.54)),
    linear-gradient(180deg, rgba(5, 7, 11, 0.3), rgba(5, 7, 11, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: #d7e3ef;
  font-size: 19px;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), #1596ff);
  color: #041016;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  gap: 12px;
  margin: 58px 0 0;
}

.hero-stats div,
.feature-card,
.steps article,
.benefit-list article,
.trust-grid article,
.pricing-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
}

.hero-stats dt {
  color: var(--text);
  font-size: 24px;
  font-weight: 850;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.intro {
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 92, 63, 0.11), transparent 28%),
    var(--bg);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.premium-layout p,
.download p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.steps article,
.feature-card,
.benefit-list article,
.trust-grid article {
  padding: 24px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--amber);
  font-weight: 900;
}

.steps p,
.feature-card p,
.benefit-list p,
.trust-grid p,
.pricing-panel li {
  color: var(--muted);
}

.feature-band {
  background:
    linear-gradient(180deg, rgba(8, 16, 24, 0.96), rgba(5, 7, 11, 0.98)),
    radial-gradient(circle at 15% 20%, rgba(34, 223, 245, 0.18), transparent 26%);
}

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

.icon-box {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: rgba(34, 223, 245, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 7vw, 92px);
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.premium-band {
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 200, 87, 0.13), transparent 28%),
    linear-gradient(135deg, #071016, #0b121b 55%, #05070b);
}

.premium-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.pricing-panel {
  padding: 30px;
}

.plan-label {
  color: var(--coral) !important;
  font-size: 13px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-panel li {
  position: relative;
  padding-left: 20px;
}

.pricing-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

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

.business-form {
  margin-top: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 6px;
}

.field-wide {
  margin-top: 16px;
}

.field label {
  font-size: 13px;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(34, 223, 245, 0.4);
  outline-offset: 1px;
}

.field input[type="file"] {
  padding: 8px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.business-form button {
  margin-top: 20px;
}

.business-form-status {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.business-form-status.is-error {
  color: var(--coral);
}

.business-form-status.is-success {
  color: var(--cyan);
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.download-band {
  background:
    linear-gradient(90deg, rgba(34, 223, 245, 0.12), rgba(255, 92, 63, 0.12)),
    #071018;
}

.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.download h2 {
  max-width: 660px;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: #030508;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 11, 0.98), rgba(5, 7, 11, 0.78)),
      linear-gradient(180deg, rgba(5, 7, 11, 0.2), rgba(5, 7, 11, 0.94));
  }

  .hero-stats,
  .steps,
  .feature-grid,
  .trust-grid,
  .premium-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .download,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

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

  .site-header {
    padding: 14px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .section,
  .section-band {
    padding: 76px 0;
  }

  .hero {
    min-height: 680px;
    padding-top: 112px;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .premium-layout p,
  .download p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }
}
