:root {
  --bg: #08090c;
  --bg-soft: #10131a;
  --panel: #151a23;
  --panel-strong: #1d2430;
  --text: #f8fafc;
  --muted: #b8bfcc;
  --subtle: #818a99;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #f8b81f;
  --gold-soft: #ffd76a;
  --gold-dark: #9d6811;
  --danger: #f43f5e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(248, 184, 31, 0.16), transparent 34rem),
    linear-gradient(180deg, #0b0d12 0%, var(--bg) 46%, #050608 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 12, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(248, 184, 31, 0.55);
  background: linear-gradient(145deg, #231904, #f8b81f);
  color: #090909;
  font-family: Oswald, Impact, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.site-nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(248, 184, 31, 0.76);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #111;
  box-shadow: 0 12px 32px rgba(248, 184, 31, 0.2);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: rgba(248, 184, 31, 0.7);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: calc(100vh - 80px);
  padding-top: 54px;
  padding-bottom: 58px;
}

.hero h1,
.section-heading h2,
.setup-section h2,
.legal-note h2 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 7vw, 86px);
}

.hero-subhead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

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

.support-text {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--subtle);
  font-size: 14px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #050608;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sample-url {
  position: absolute;
  left: 20px;
  bottom: 18px;
  max-width: calc(100% - 40px);
  padding: 10px 14px;
  border: 1px solid rgba(248, 184, 31, 0.65);
  background: rgba(5, 6, 8, 0.82);
  color: var(--gold);
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 900;
}

.intro-strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  margin: 0;
  color: var(--gold);
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.setup-section h2,
.legal-note h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.section-heading p,
.setup-section p,
.legal-note p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.step-card,
.feature-grid article,
.price-card,
.support-card,
.lead-form,
.legal-note {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.step-card {
  grid-column: span 2;
  min-height: 320px;
  padding: 26px;
}

.step-card:nth-child(4),
.step-card:nth-child(5) {
  grid-column: span 3;
}

.step-number {
  color: var(--gold);
  font-family: Oswald, Impact, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

h3 {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.22;
}

.step-card p,
.feature-grid p,
.price-card li,
.support-card p {
  color: var(--muted);
}

.step-card ul,
.price-card ul,
.setup-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.step-card li,
.price-card li,
.setup-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
}

.step-card li::before,
.price-card li::before,
.setup-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.feature-band {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(248, 184, 31, 0.08), rgba(255, 255, 255, 0.02));
  border-block: 1px solid var(--line);
}

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

.feature-grid article {
  min-height: 220px;
  padding: 24px;
}

.feature-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 20px;
  background: var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.price-card.popular {
  border-color: rgba(248, 184, 31, 0.7);
  background: linear-gradient(180deg, rgba(248, 184, 31, 0.16), rgba(255, 255, 255, 0.04));
}

.popular-label {
  align-self: flex-start;
  margin: 0 0 18px;
  padding: 7px 10px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 4px;
  color: var(--gold);
  font-family: Oswald, Impact, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.button-full {
  width: 100%;
  margin-top: auto;
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px 30px;
}

.support-card h3,
.support-card p {
  margin: 0;
}

.support-card p {
  margin-top: 6px;
}

.setup-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: start;
}

.setup-section .button {
  margin-top: 28px;
}

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

.setup-list li {
  margin: 0;
  padding: 18px 18px 18px 40px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 700;
}

.setup-list li::before {
  left: 18px;
  top: 26px;
}

.reserve-section {
  width: min(960px, calc(100% - 40px));
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 8, 0.82);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(248, 184, 31, 0.16);
}

.full-field,
.form-button {
  grid-column: 1 / -1;
}

.form-note {
  margin: 16px 0 0;
  color: var(--subtle);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.legal-note {
  padding: 34px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 5px;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .setup-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand {
    white-space: normal;
  }

  .site-header .button {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 60px 0;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-actions,
  .support-card,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .sample-url {
    position: static;
    max-width: none;
    border-inline: 0;
    border-bottom: 0;
  }

  .steps,
  .feature-grid,
  .pricing-grid,
  .setup-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card:nth-child(4),
  .step-card:nth-child(5) {
    grid-column: auto;
    min-height: auto;
  }

  .feature-grid article {
    min-height: auto;
  }

  .form-button,
  .full-field {
    grid-column: auto;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
