:root {
  --navy: #061827;
  --deep-blue: #082b4d;
  --blue-card: #0b2338;
  --cyan: #18d4ff;
  --cyan-deep: #00aeef;
  --cyan-soft: rgba(24, 212, 255, 0.14);
  --gold: #ffd84d;
  --gold-deep: #f4b400;
  --gold-soft: rgba(255, 216, 77, 0.16);
  --white: #ffffff;
  --soft-white: #f4f8fb;
  --text-soft: #dce7f2;
  --text-muted: #9fb3c8;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 22px;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 24, 39, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
  letter-spacing: 0.1px;
}

.logo {
  width: 96px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.brand span {
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #061827 !important;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(255, 216, 77, 0.22);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 76px;
  background:
    radial-gradient(circle at 82% 16%, rgba(24, 212, 255, 0.18), transparent 34%),
    radial-gradient(circle at 18% 24%, rgba(255, 216, 77, 0.08), transparent 24%),
    linear-gradient(135deg, #061827 0%, #071f35 45%, #04101c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 212, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 212, 255, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.hero-copy {
  padding-top: 0;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 900;
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.05rem, 4.1vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 720px;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  font-weight: 800;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.28;
  margin-bottom: 10px;
  font-weight: 800;
}

.hero-subheading {
  font-size: clamp(1.03rem, 1.7vw, 1.2rem);
  color: var(--text-soft);
  max-width: 720px;
  margin-bottom: 18px;
  font-weight: 500;
}

.trust-line {
  display: inline-flex;
  padding: 12px 16px;
  border: 1px solid rgba(255, 216, 77, 0.35);
  background: var(--gold-soft);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border 0.15s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #061827;
  box-shadow: 0 12px 30px rgba(255, 216, 77, 0.24);
}

.button.secondary {
  border-color: rgba(255, 216, 77, 0.34);
  background: rgba(255, 216, 77, 0.08);
  color: var(--white);
}

.hero-card {
  padding: 34px;
  background: linear-gradient(145deg, rgba(11, 35, 56, 0.9), rgba(4, 16, 28, 0.82));
  border: 1px solid rgba(24, 212, 255, 0.28);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  align-self: start;
  margin-top: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 28px;
}

.hero-card h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  margin-bottom: 10px;
}

.hero-card p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* SECTIONS */

.section {
  padding: 78px 0;
  background: var(--navy);
  scroll-margin-top: 22px;
}

.section.alt {
  background: #081e33;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p,
.two-column p,
.cta-box p {
  color: var(--text-soft);
  font-size: 1.05rem;
  font-weight: 500;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* VIDEO */

.video-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: #000;
  box-shadow: var(--shadow);
  max-width: 920px;
  margin: 0 auto;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 216, 77, 0.08);
  color: var(--text-soft);
  border-radius: 14px;
}

.video-note {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* CARDS */

.cards-list {
  display: grid;
  gap: 14px;
}

.mini-card,
.step-card,
.business-grid div,
.faq-list details {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.mini-card {
  padding: 18px 20px;
  font-weight: 800;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #061827;
  font-weight: 900;
}

.step-card p {
  color: var(--text-soft);
  margin-bottom: 0;
}

/* LISTS */

.tick-list,
.cross-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.tick-list li,
.cross-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text-soft);
  font-weight: 700;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--gold);
  font-weight: 900;
}

.cross-list li::before {
  content: "•";
  position: absolute;
  left: 22px;
  color: var(--gold);
  font-weight: 900;
}

.warning-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 216, 77, 0.08), transparent 28%),
    #061827;
}

.trust-box {
  padding: 18px;
  background: rgba(255, 216, 77, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.22);
  border-radius: 18px;
  font-weight: 800;
  color: var(--white) !important;
}

/* BUSINESS TYPES */

.business-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.business-grid div {
  min-height: 82px;
  padding: 18px;
  text-align: center;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA */

.cta-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 216, 77, 0.16), transparent 34%),
    #071f35;
}

.cta-box {
  text-align: center;
  max-width: 850px;
  padding: 52px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 216, 77, 0.22);
  box-shadow: var(--shadow);
}

.cta-box .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--white);
}

.faq-list p {
  color: var(--text-soft);
  margin: 12px 0 0;
}

/* FOOTER */

.footer {
  padding: 34px 0;
  background: #04101c;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.footer p {
  margin: 0 0 6px;
}

/* MOBILE */

@media (max-width: 900px) {
  html {
    scroll-padding-top: 18px;
  }

  .section {
    scroll-margin-top: 18px;
  }

  .nav {
    min-height: 84px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 40px 0 58px;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 28px;
    min-height: auto;
  }

  .hero-logo {
    width: 100%;
  }

  .steps-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-grid div {
    min-height: 72px;
  }

  .section {
    padding: 62px 0;
  }

  .trust-line {
    border-radius: 18px;
  }

  .button {
    width: 100%;
  }

  .cta-box {
    padding: 34px 22px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .logo {
    width: 74px;
    height: auto;
  }

  .hero-logo {
    width: 100%;
  }

  .hero-subheading,
  .section-heading p,
  .two-column p,
  .cta-box p {
    font-size: 1rem;
  }
}