:root {
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --bg-elevated: #171717;
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-soft: #d1d5db;
  --accent: #7c3aed;
  --accent-hover: #a78bfa;
  --gold: #d8b64c;
  --silver: #d8dce3;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(216, 182, 76, 0.34);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --max: 1180px;
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.07), transparent 28rem),
    linear-gradient(90deg, rgba(216, 182, 76, 0.04), transparent 18rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(124, 58, 237, 0.42);
}

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

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(216, 182, 76, 0.32);
  box-shadow: 0 0 26px rgba(216, 182, 76, 0.12);
  object-fit: cover;
}

.brand-mark {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 0.96rem;
  font-weight: 760;
}

.brand-domain {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: color 160ms ease, background 160ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

body.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span::before {
  opacity: 0;
}

body.menu-open .menu-toggle span::after {
  transform: translateY(-2px) rotate(90deg);
}

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

.section {
  padding: 88px 0;
}

.section.compact {
  padding: 56px 0;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(11, 11, 11, 0.22), rgba(11, 11, 11, 0.95) 68%),
    radial-gradient(circle at 84% 22%, rgba(216, 182, 76, 0.12), transparent 24rem);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  gap: 44px;
  align-items: center;
  padding: 58px 0 54px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(216, 182, 76, 0.26);
  border-radius: 999px;
  background: rgba(216, 182, 76, 0.07);
  color: #f3d77b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

h1,
.page-title {
  max-width: 860px;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.22;
}

.lead {
  max-width: 720px;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

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

.accent-text {
  color: var(--accent-hover);
}

.metal-text {
  background: linear-gradient(92deg, #ffffff 0%, #c9c9c9 28%, #f4d874 58%, #9d7929 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 840px;
}

.signal {
  min-height: 98px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.signal strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.signal span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

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

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #5b21b6);
  color: var(--text);
  box-shadow: 0 16px 42px rgba(124, 58, 237, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(167, 139, 250, 0.46);
  color: var(--accent-hover);
}

.text-link {
  color: var(--accent-hover);
  font-weight: 700;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-strip span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-hover);
  content: "";
}

.panel,
.lead-form-card,
.pricing-card,
.founder-card,
.result-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.027));
  box-shadow: var(--shadow);
}

.lead-form-card {
  padding: 22px;
}

.form-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-head p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.lead-form {
  display: grid;
  gap: 12px;
}

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

.field label {
  color: var(--text-soft);
  font-size: 0.83rem;
  font-weight: 650;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  outline: 0;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(167, 139, 250, 0.78);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.16);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(156, 163, 175, 0.72);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  transform: translateY(2px);
}

.form-error,
.form-success {
  min-height: 20px;
  color: #fca5a5;
  font-size: 0.86rem;
}

.form-success {
  color: #86efac;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.56fr);
  gap: 36px;
  align-items: start;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.section-head.center {
  justify-items: center;
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-card,
.feature-card {
  min-height: 214px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.card-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(216, 182, 76, 0.35);
  border-radius: 50%;
  color: #f4d874;
  font-weight: 800;
}

.process-card p,
.feature-card p,
.pricing-card p,
.founder-card p,
.result-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.packages {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 26px;
}

.pricing-card.featured {
  border-color: rgba(216, 182, 76, 0.38);
  background: linear-gradient(180deg, rgba(216, 182, 76, 0.105), rgba(255, 255, 255, 0.035));
}

.badge {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(216, 182, 76, 0.3);
  border-radius: 999px;
  color: #f4d874;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price strong {
  font-size: 2.6rem;
  line-height: 1;
}

.price span {
  color: var(--text-muted);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--text-soft);
}

.check-list li::before {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.18);
  color: var(--accent-hover);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.automation-panel {
  padding: 30px;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
}

.automation-step {
  min-height: 132px;
  padding: 20px;
  background: #101010;
}

.automation-step span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-hover);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.automation-step strong {
  display: block;
  margin-bottom: 8px;
}

.automation-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.results-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0f0f0f;
}

.result-card {
  min-height: 190px;
  padding: 24px;
  box-shadow: none;
}

.result-card .slot {
  width: 100%;
  height: 78px;
  margin-bottom: 18px;
  border: 1px dashed rgba(216, 182, 76, 0.34);
  border-radius: var(--radius);
  background: rgba(216, 182, 76, 0.04);
}

.founder-card {
  min-height: 300px;
  padding: 26px;
}

.founder-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.founder-initial {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 182, 76, 0.32);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: #f4d874;
  font-weight: 900;
}

.founder-role {
  color: var(--accent-hover);
  font-size: 0.86rem;
  font-weight: 780;
}

.page-hero {
  padding: 86px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero .lead {
  margin-top: 20px;
}

.legal {
  max-width: 860px;
  display: grid;
  gap: 26px;
}

.legal h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.legal p,
.legal li {
  color: var(--text-muted);
}

.legal ul {
  margin: 0;
  padding-left: 20px;
}

.thank-you {
  min-height: calc(100svh - 76px);
  display: grid;
  place-items: center;
  padding: 76px 0;
}

.thank-you-panel {
  max-width: 760px;
  padding: 38px;
  text-align: center;
}

.thank-you-panel .brand-logo {
  width: 82px;
  height: 82px;
  margin: 0 auto 26px;
}

.footer {
  border-top: 1px solid var(--border);
  background: #070707;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(130px, 0.35fr));
  gap: 28px;
  margin: 0 auto;
  padding: 46px 0;
}

.footer p,
.footer a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer a:hover {
  color: var(--accent-hover);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-title {
  color: var(--text);
  font-weight: 800;
}

.subfooter {
  width: min(100% - 32px, var(--max));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.86rem;
}

.consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(420px, calc(100% - 36px));
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 15, 15, 0.96);
  box-shadow: var(--shadow);
}

.consent-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(11, 11, 11, 0.98);
  }

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

  .nav-links a {
    min-height: 48px;
    border-radius: var(--radius);
  }

  .menu-toggle {
    display: grid;
  }

  .nav-actions .button {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 54px;
  }

  .hero-points,
  .grid-3,
  .grid-2,
  .automation-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .nav,
  .footer-inner,
  .subfooter {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 66px 0;
  }

  .page-hero {
    padding: 60px 0 42px;
  }

  .brand-domain {
    display: none;
  }

  .hero-grid {
    gap: 28px;
  }

  .lead-form-card,
  .pricing-card,
  .founder-card,
  .process-card,
  .feature-card,
  .result-card,
  .automation-panel,
  .thank-you-panel {
    padding: 20px;
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .button {
    padding: 0 14px;
  }

  .trust-strip {
    display: grid;
  }
}

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