:root {
  --bg: #050505;
  --bg-soft: #090908;
  --surface: #11110f;
  --surface-2: #161510;
  --gold: #d6a21f;
  --gold-bright: #ffd35a;
  --text: #f7f4ea;
  --muted: #b9b3a4;
  --line: rgba(255, 211, 90, 0.2);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(214, 162, 31, 0.12), transparent 32rem),
    radial-gradient(circle at 10% 0%, rgba(255, 211, 90, 0.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  align-items: center;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(240px, 330px) 1fr;
  left: 0;
  padding: 14px clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease;
  z-index: 50;
}

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

.brand {
  align-items: center;
  display: inline-flex;
  gap: 13px;
  justify-self: start;
  min-width: 0;
}

.brand img {
  filter: drop-shadow(0 0 18px rgba(214, 162, 31, 0.42));
  width: 58px;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  color: var(--text);
  font-family: Orbitron, Arial Black, Impact, Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--gold-bright);
  font-family: "Share Tech Mono", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.7vw, 38px);
  justify-self: stretch;
  text-transform: uppercase;
}

.nav a {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  min-height: 40px;
  position: relative;
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold-bright);
}

.nav a.is-active::after {
  background: var(--gold-bright);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.nav .nav-cta {
  margin-left: auto;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: none;
  height: 42px;
  padding: 10px;
  width: 46px;
}

.menu-toggle span {
  background: var(--text);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 100%;
}

.nav-cta,
.btn,
.card-btn {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  min-width: 152px;
}

.nav-cta:hover,
.btn:hover,
.card-btn:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 0 26px rgba(214, 162, 31, 0.18);
  transform: translateY(-2px);
}

.btn.primary,
.primary-card {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-color: transparent;
  color: #080806;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.035);
  color: var(--gold-bright);
}

.section-pad {
  padding: 92px clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 94vh;
  overflow: hidden;
  padding-top: 142px;
  position: relative;
}

.hero-grid {
  background:
    linear-gradient(90deg, rgba(255, 211, 90, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 211, 90, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  inset: 0;
  mask-image: radial-gradient(circle at 48% 18%, black, transparent 72%);
  opacity: 0.55;
  position: absolute;
}

.hero::after {
  background: linear-gradient(180deg, transparent, var(--bg));
  bottom: 0;
  content: "";
  height: 160px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-shell {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
  margin: 0 auto;
  max-width: 1220px;
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-family: Orbitron, Arial Black, Impact, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 22px;
}

h1 span {
  display: block;
}

h2 {
  font-size: 46px;
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-text,
.section-title p,
.service-grid p,
.package-card p,
.process-grid p,
.investor-panel p,
.tier-list p,
.faq-list p,
.contact-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.68;
}

.hero-text {
  font-size: 18px;
  max-width: 580px;
}

.hero-actions,
.trust-row,
.badge-row,
.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.trust-row {
  margin-top: 28px;
}

.trust-row span,
.badge-row span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 13px;
}

.hero-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
  position: relative;
}

.hero-card::before {
  display: none;
}

.hero-card img {
  filter: drop-shadow(0 0 26px rgba(255, 211, 90, 0.22));
  margin: 0 auto;
  position: relative;
  width: min(100%, 360px);
}

.proof-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 34px;
}

.proof-strip div,
.service-grid article,
.package-card,
.process-grid article,
.tier-list article,
.faq-list details,
.lead-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)), var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.proof-strip div {
  padding: 24px;
}

.proof-strip small {
  color: var(--gold-bright);
  display: block;
  font-family: "Share Tech Mono", Consolas, monospace;
  margin-bottom: 18px;
}

.proof-strip strong {
  color: var(--text);
  display: block;
  font-family: Orbitron, Arial, sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  gap: clamp(30px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.section-heading {
  max-width: 680px;
}

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

.service-grid article {
  min-height: 230px;
  padding: 24px;
}

.service-grid .service-wide {
  grid-column: 1 / -1;
  min-height: 180px;
}

.service-grid span,
.process-grid span {
  color: var(--gold-bright);
  display: block;
  font-family: "Share Tech Mono", Consolas, monospace;
  font-weight: 700;
  margin-bottom: 38px;
}

.package-section {
  background:
    linear-gradient(180deg, rgba(255, 211, 90, 0.035), transparent),
    var(--bg-soft);
  border-block: 1px solid rgba(255, 211, 90, 0.1);
}

.section-title {
  margin: 0 auto 42px;
  max-width: 830px;
  text-align: center;
}

.package-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1240px;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  position: relative;
}

.package-card.featured {
  border-color: rgba(255, 211, 90, 0.58);
  box-shadow: 0 0 34px rgba(214, 162, 31, 0.12);
}

.package-card.custom {
  background:
    linear-gradient(180deg, rgba(255, 211, 90, 0.07), rgba(255, 255, 255, 0.014)),
    var(--surface);
}

.popular-badge {
  background: var(--gold-bright);
  border-radius: 999px;
  color: #090806;
  font-size: 11px;
  font-weight: 900;
  padding: 7px 10px;
  position: absolute;
  right: 16px;
  text-transform: uppercase;
  top: 16px;
}

.package-top {
  margin-bottom: 22px;
}

.package-top span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.price {
  color: var(--gold-bright);
  font-family: "Share Tech Mono", Consolas, monospace;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 18px;
}

ul {
  color: #ded8c9;
  line-height: 1.85;
  margin: 18px 0 24px;
  padding-left: 20px;
}

.card-btn {
  margin-top: auto;
  width: 100%;
}

.process-section {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.process-grid {
  display: grid;
  gap: 16px;
}

.process-grid article {
  padding: 24px;
}

.process-grid span {
  margin-bottom: 18px;
}

.investor-section {
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 162, 31, 0.14), transparent 26rem),
    #080807;
  border-block: 1px solid rgba(255, 211, 90, 0.12);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.investor-panel {
  background: linear-gradient(160deg, rgba(255, 211, 90, 0.1), rgba(255, 255, 255, 0.02)), var(--surface-2);
  border: 1px solid rgba(255, 211, 90, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 44px);
}

.badge-row {
  margin: 26px 0;
}

.tier-list {
  display: grid;
  gap: 16px;
}

.tier-list article {
  padding: 26px;
}

.tier-list .price {
  margin-bottom: 8px;
}

.faq-section {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  list-style-position: outside;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact-section {
  align-items: start;
  display: grid;
  gap: clamp(28px, 7vw, 88px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
}

.direct-contact {
  margin-top: 28px;
}

.direct-contact a {
  border-bottom: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
}

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

input,
select,
textarea {
  background: #080807;
  border: 1px solid rgba(255, 211, 90, 0.2);
  border-radius: 6px;
  color: var(--text);
  font: inherit;
  letter-spacing: 0;
  min-height: 50px;
  padding: 13px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-bright);
  outline: none;
}

.full {
  width: 100%;
}

.form-note {
  font-size: 13px;
  margin-bottom: 0;
}

.floating-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: 6px;
  bottom: 18px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
  color: #080806;
  display: none;
  font-size: 13px;
  font-weight: 900;
  padding: 14px 18px;
  position: fixed;
  right: 18px;
  text-transform: uppercase;
  z-index: 45;
}

.site-footer {
  border-top: 1px solid rgba(255, 211, 90, 0.14);
  color: var(--muted);
  padding: 34px clamp(18px, 5vw, 72px);
  text-align: center;
}

.site-footer img {
  filter: drop-shadow(0 0 14px rgba(214, 162, 31, 0.18));
  margin: 0 auto 10px;
  width: 128px;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    align-items: stretch;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 14px 18px 24px;
    position: fixed;
    right: 0;
    top: 82px;
  }

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

  .nav a {
    border-bottom: 1px solid rgba(255, 211, 90, 0.12);
    padding: 16px 0;
  }

  .nav .nav-cta {
    margin-left: 0;
    margin-top: 14px;
  }

  .hero-shell,
  .split-section,
  .process-section,
  .investor-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 560px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 46px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .nav {
    top: 70px;
  }

  .section-pad {
    padding: 64px 16px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-actions .btn,
  .contact-section .btn,
  .investor-panel .btn {
    width: 100%;
  }

  .service-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-cta {
    display: inline-flex;
  }
}
