:root {
  --bg: #0a0b0d;
  --surface: #111318;
  --surface-2: #19141a;
  --text: #f7f4ec;
  --muted: #c2b8a7;
  --dim: #81786c;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d6a84f;
  --gold-2: #f1d27a;
  --blue: #4a7dff;
  --mint: #6ed6b5;
  --coral: #f47f63;
  --ink: #07080a;
  --max: 1160px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(135deg, #0a0b0d 0%, #111318 42%, #161015 70%, #0a0b0d 100%);
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(214, 168, 79, 0.18), transparent 28%),
    linear-gradient(310deg, transparent 52%, rgba(74, 125, 255, 0.16)),
    linear-gradient(180deg, transparent 0%, rgba(10, 11, 13, 0.72) 68%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,0.018) 7px 8px);
  opacity: 0.42;
  mix-blend-mode: screen;
}

body.menu-open {
  overflow: hidden;
}

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

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

.wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 11, 13, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 48%, var(--blue));
  color: #07080a;
  font-weight: 800;
  flex: 0 0 auto;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.55), 0 14px 32px rgba(214, 168, 79, 0.22);
}

.brand span {
  display: block;
  line-height: 1.05;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 270px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-cta {
  margin-left: 6px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: var(--ink);
  background: var(--gold-2);
}

.menu-toggle {
  display: none;
  min-width: 62px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #08090b;
  box-shadow: 0 16px 36px rgba(214, 168, 79, 0.24);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 86px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.hero::before {
  content: "BOTTOM LINE";
  position: absolute;
  top: 24px;
  left: 0;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(4.6rem, 13vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(214, 168, 79, 0.12);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 8.4vw, 7.2rem);
  letter-spacing: -0.065em;
  line-height: 0.86;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--gold), #fff1b8 52%, var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
}

.lede {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.72;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.signal-row span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: #e7dece;
  padding: 9px 11px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.command-stage {
  position: relative;
  min-height: 560px;
}

.hero-media {
  position: relative;
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 48%, rgba(10, 11, 13, 0.42)),
    linear-gradient(90deg, rgba(10, 11, 13, 0.1), transparent 38%);
  pointer-events: none;
}

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

.image-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 2;
  border-radius: 6px;
  background: rgba(10, 11, 13, 0.78);
  backdrop-filter: blur(14px);
}

.image-caption strong {
  line-height: 1.1;
}

.image-caption span {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.command-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255,255,255,0.035)),
    rgba(9, 10, 12, 0.84);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.mini-card {
  position: absolute;
  z-index: 4;
  width: min(260px, 70%);
  padding: 16px;
}

.mini-card span,
.command-board span {
  display: block;
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-card strong,
.command-board strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 1.08rem;
}

.mini-card small,
.command-board p {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.mini-card-top {
  top: 42px;
  left: -46px;
}

.mini-card-bottom {
  right: -34px;
  bottom: 68px;
}

.strip {
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(214, 168, 79, 0.08), rgba(255, 255, 255, 0.035), rgba(110, 214, 181, 0.055));
}

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

.stat {
  padding: 26px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.85rem;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head h2,
.page-hero h1 {
  margin-bottom: 0;
}

.section-head h2 {
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.section-head p,
.narrow {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.024)),
    rgba(13, 14, 17, 0.72);
  padding: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.offer-card,
.offer-detail,
.step-card {
  position: relative;
  overflow: hidden;
}

.offer-card::before,
.offer-detail::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--mint), var(--blue));
}

.offer-card:nth-child(2)::before,
.offer-detail:nth-child(2)::before {
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.offer-card:nth-child(3)::before,
.offer-detail:nth-child(3)::before {
  background: linear-gradient(90deg, var(--coral), var(--gold));
}

.offer-card:nth-child(4)::before,
.offer-detail:nth-child(4)::before {
  background: linear-gradient(90deg, var(--mint), var(--blue));
}

.card.tall {
  min-height: 278px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.card h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.card p,
.card li,
.quote p {
  color: var(--muted);
  line-height: 1.58;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 19px;
}

.kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.panel {
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(214, 168, 79, 0.15), rgba(74, 125, 255, 0.10) 46%, rgba(244, 127, 99, 0.09)),
    var(--surface);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.panel h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.panel p {
  color: var(--muted);
  line-height: 1.68;
}

.page-hero {
  padding: 72px 0 48px;
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: end;
}

.page-hero h1 {
  max-width: 880px;
}

.command-board {
  border: 1px solid rgba(214, 168, 79, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.078), rgba(255,255,255,0.03)),
    rgba(9, 10, 12, 0.7);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.resource-list {
  display: grid;
  gap: 12px;
}

.resource-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(214, 168, 79, 0.08), rgba(255,255,255,0.035));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.resource-item p {
  margin-bottom: 0;
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}

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

label {
  color: #e4ddcf;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 11, 13, 0.76);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
  padding-top: 13px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(214, 168, 79, 0.74);
  box-shadow: 0 0 0 4px rgba(214, 168, 79, 0.11);
}

.notice {
  display: none;
  border: 1px solid rgba(110, 214, 181, 0.38);
  border-radius: 8px;
  background: rgba(110, 214, 181, 0.10);
  color: var(--text);
  padding: 12px 14px;
  line-height: 1.45;
}

.final-cta {
  border: 1px solid rgba(214, 168, 79, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(214, 168, 79, 0.18), rgba(74, 125, 255, 0.10) 54%, rgba(244, 127, 99, 0.12)),
    rgba(9, 10, 12, 0.82);
  padding: clamp(24px, 5vw, 46px);
  box-shadow: var(--shadow);
}

.portrait-panel {
  transform: none;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 34px 0 44px;
  color: var(--muted);
}

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

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
}

.socials a:hover {
  color: var(--text);
  border-color: rgba(214, 168, 79, 0.45);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 16px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(10, 11, 13, 0.97);
  }

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

  .nav-links a {
    padding: 15px 4px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    padding-inline: 12px;
  }

  .hero,
  .feature,
  .grid-2,
  .page-hero-split {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    display: grid;
  }

  .command-stage {
    min-height: auto;
  }

  .mini-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 22px, var(--max));
  }

  .hero {
    padding-top: 50px;
  }

  .hero::before {
    top: 10px;
  }

  .brand small {
    max-width: 190px;
  }

  .hero-actions .btn,
  .action-row .btn,
  form .btn {
    width: 100%;
  }

  .grid-3,
  .grid-4,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat:first-child {
    border-top: 0;
  }

  .image-caption,
  .resource-item,
  .footer-inner {
    display: grid;
  }

  .image-caption {
    position: static;
    border-radius: 0;
    border-width: 1px 0 0;
  }

}
