:root {
  --bg: #071224;
  --bg-soft: #0b1728;
  --surface: #0f1c31;
  --surface-2: #13233a;
  --text: #f8fafc;
  --muted: #c4cedb;
  --muted-2: #8fa0b5;
  --line: rgba(226, 232, 240, 0.14);
  --line-strong: rgba(226, 232, 240, 0.22);
  --gold: #e5aa4e;
  --gold-dark: #c8862f;
  --gold-soft: rgba(229, 170, 78, 0.13);
  --white-card: #ffffff;
  --white-text: #111827;
  --white-muted: #526173;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a:hover {
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 52px;
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.25;
}

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

label {
  color: var(--text);
  font-weight: 700;
}

input,
select,
textarea {
  color: #111827;
  background: #ffffff;
  border: 1px solid #cbd5e1 !important;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 18px 64px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 24px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 18, 36, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header-inner,
.page-grid {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
}

.site-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #ffffff;
  flex: 0 0 auto;
}

.logo-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-title {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
}

.brand-title span {
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 13px;
}

.desktop-nav,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  flex: 1;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  justify-content: center;
  gap: 24px;
  color: #d7deea;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 2px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-actions {
  gap: 12px;
}

.nav-login,
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.nav-login,
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-color: var(--line-strong);
}

.nav-login:hover,
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(229, 170, 78, 0.42);
}

.nav-cta,
.btn-primary {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: #081326;
  border-color: rgba(229, 170, 78, 0.72);
  box-shadow: 0 10px 24px rgba(229, 170, 78, 0.18);
}

.nav-cta:hover,
.btn-primary:hover {
  filter: brightness(1.04);
}

.mobile-menu {
  display: none;
}

.section-band {
  padding: 78px 0;
}

.muted-band {
  background: #09162a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero {
  padding-top: 72px;
  background:
    radial-gradient(900px 460px at 16% 8%, rgba(229, 170, 78, 0.14), transparent 62%),
    radial-gradient(780px 420px at 84% 16%, rgba(73, 99, 141, 0.2), transparent 60%),
    linear-gradient(180deg, #071224 0%, #0a1629 100%);
}

.hero-grid,
.two-column,
.section-heading,
.faq-layout,
.final-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 16px;
  max-width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(229, 170, 78, 0.35);
  border-radius: 999px;
  background: rgba(229, 170, 78, 0.08);
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 0;
  color: #d6deea;
  font-size: 19px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 14px;
}

.free-plan-note {
  max-width: 610px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(229, 170, 78, 0.34);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  background: rgba(229, 170, 78, 0.09);
  color: #e7edf7;
  font-size: 14px;
  line-height: 1.55;
}

.screenshot-frame,
.step-card,
.notify-card,
.audience-grid article,
.onboarding-list li,
.faq-list details,
.final-cta-box {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(19, 35, 58, 0.98), rgba(13, 27, 47, 0.98));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.screenshot-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(64, 94, 140, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.screenshot-frame:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 170, 78, 0.34);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.36),
    0 0 54px rgba(64, 94, 140, 0.23);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-shot img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.wide-shot {
  grid-column: auto;
}

.premium-shot {
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.38),
    0 0 58px rgba(229, 170, 78, 0.14);
}

.hero-shot {
  align-self: stretch;
}

.section-heading {
  align-items: start;
  margin-bottom: 30px;
}

.section-heading p,
.two-column p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
}

.steps-grid,
.notify-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}

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

.notify-grid,
.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card,
.notify-card,
.audience-grid article {
  padding: 22px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #081326;
  font-weight: 900;
}

.step-card p,
.notify-card p,
.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 24px;
  color: #d6deea;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list summary {
  padding: 16px;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.onboarding-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.onboarding-list li {
  padding: 17px;
}

.onboarding-list strong,
.onboarding-list span {
  display: block;
}

.onboarding-list strong {
  color: #ffffff;
}

.onboarding-list span {
  margin-top: 4px;
  color: var(--muted);
}

.final-cta {
  padding-top: 54px;
}

.final-cta-box {
  padding: 34px;
}

.final-cta-box p {
  margin-bottom: 0;
}

.final-cta-box .btn {
  justify-self: end;
}

.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  background: #06101f;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-2);
}

.footer-grid a {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 44px;
  }

  .site-header-inner {
    gap: 18px;
  }

  .brand {
    min-width: 210px;
  }

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .nav-login,
  .nav-cta {
    padding-left: 13px;
    padding-right: 13px;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    min-height: 42px;
    padding: 10px 13px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-panel {
    position: absolute;
    right: 24px;
    top: 70px;
    display: grid;
    gap: 8px;
    width: min(292px, calc(100vw - 48px));
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: #0b1728;
    box-shadow: var(--shadow);
  }

  .mobile-menu-panel a {
    padding: 11px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
  }

  .mobile-menu-panel .nav-cta {
    color: #081326;
  }

  .hero-grid,
  .two-column,
  .section-heading,
  .faq-layout,
  .final-cta-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-shot {
    max-width: 640px;
  }

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

  .final-cta-box .btn {
    justify-self: stretch;
  }
}
