:root {
  color-scheme: dark;
  --black: #000000;
  --charcoal: #111111;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.095);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(212, 175, 55, 0.42);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --soft: rgba(255, 255, 255, 0.42);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.16);
  --gold-glow: 0 0 34px rgba(212, 175, 55, 0.34);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 8%, rgba(212, 175, 55, 0.11), transparent 31%),
    linear-gradient(180deg, #000000 0%, #080808 42%, #000000 100%);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.site-header {
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--gold), #7f6420);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  box-shadow: var(--gold-glow);
  color: #080704;
  display: inline-flex;
  font-size: 0.74rem;
  height: 34px;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.9rem;
  font-weight: 800;
}

nav a,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 180ms ease;
}

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

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  isolation: isolate;
  min-height: 96vh;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 86px;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  filter: grayscale(1) brightness(0.45) contrast(1.18);
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
  opacity: 0.72;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.36) 76%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 82% 28%, rgba(212, 175, 55, 0.16), transparent 28%),
    linear-gradient(0deg, #000000 0%, transparent 36%);
  z-index: -2;
}

.hero-content {
  color: var(--white);
  max-width: 790px;
  padding-top: 4vh;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  margin-bottom: 24px;
  max-width: 860px;
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.82);
}

h2 {
  font-size: clamp(2.05rem, 4.4vw, 4.15rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  max-width: 690px;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: scale(1.02);
}

.button svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 20px;
}

.primary {
  background: linear-gradient(135deg, var(--gold), #f0d36d);
  box-shadow: var(--gold-glow);
  color: #080704;
}

.primary:hover {
  box-shadow: 0 0 44px rgba(212, 175, 55, 0.48);
}

.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--white);
}

.secondary:hover {
  border-color: var(--line-strong);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.hero-stats div,
.hero-dashboard,
.feature-card,
.process-grid article,
.proof-hero-card,
.proof-ring-card,
.proof-mini-card,
.rubric,
.offer-stack article,
.price-band,
.audience-list p,
.intake-form,
details,
.note {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  border-radius: 8px;
  min-width: 132px;
  padding: 14px 16px;
}

.hero-stats dt {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-stats dd {
  color: var(--muted);
  margin: 0;
}

.hero-dashboard {
  border-radius: 8px;
  box-shadow: var(--shadow);
  justify-self: end;
  max-width: 390px;
  min-height: 480px;
  padding: 24px;
  position: relative;
  width: 100%;
}

.hero-dashboard::before {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
  content: "";
  height: 1px;
  left: 16px;
  position: absolute;
  right: 16px;
  top: 0;
}

.dashboard-header,
.dashboard-note {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.dashboard-header span,
.dashboard-note span,
.metric-bars span,
.mini-score span,
.title-sample span {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dashboard-header strong {
  color: var(--gold);
  font-size: 2rem;
}

.radial {
  align-items: center;
  background:
    radial-gradient(circle at center, #090909 0 56%, transparent 57%),
    conic-gradient(var(--gold) calc(var(--score) * 1%), rgba(255, 255, 255, 0.1) 0);
  border-radius: 50%;
  display: grid;
  height: 190px;
  justify-content: center;
  margin: 34px auto;
  place-items: center;
  width: 190px;
}

.radial span {
  color: var(--white);
  font-size: 4rem;
  font-weight: 900;
}

.metric-bars {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.metric-bars div {
  display: grid;
  gap: 8px;
}

.metric-bars i,
.rubric i {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
  position: relative;
}

.metric-bars i::after,
.rubric i::after {
  background: linear-gradient(90deg, var(--gold), #fff0a6);
  border-radius: inherit;
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: var(--value);
}

.dashboard-note {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding-top: 20px;
}

.dashboard-note b {
  color: var(--white);
}

.section {
  padding: clamp(80px, 10vw, 126px) clamp(18px, 5vw, 72px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1160px;
}

.split {
  align-items: start;
  display: grid;
  gap: clamp(30px, 6vw, 86px);
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
}

.problem {
  background: linear-gradient(180deg, #000000, var(--charcoal));
  border-top: 1px solid var(--line);
  color: var(--white);
}

.problem p:not(.eyebrow),
.process-section p,
.proof-section p,
.sprint-section p,
.score-section p,
.request-section p,
.faq p,
.feature-card p {
  color: var(--muted);
}

.problem p:not(.eyebrow) {
  font-size: 1.12rem;
}

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

.process-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.12), transparent 24%),
    #050505;
  border-top: 1px solid var(--line);
}

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

.process-grid article {
  border-radius: 8px;
  min-height: 220px;
  padding: 22px;
  position: relative;
}

.process-grid article span {
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 54px;
}

.process-grid article h3 {
  margin-bottom: 12px;
}

.proof-section {
  background:
    linear-gradient(180deg, #050505, #000000),
    radial-gradient(circle at 78% 18%, rgba(212, 175, 55, 0.15), transparent 28%);
  border-top: 1px solid var(--line);
}

.proof-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
}

.proof-copy {
  max-width: 620px;
}

.proof-note {
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: var(--muted);
  margin-top: 28px;
  padding: 18px;
}

.proof-note strong {
  color: var(--white);
}

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

.proof-hero-card,
.proof-ring-card,
.proof-mini-card {
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.proof-hero-card::before,
.proof-ring-card::before,
.proof-mini-card::before {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.74), transparent);
  content: "";
  height: 1px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.proof-hero-card {
  grid-column: span 2;
  min-height: 318px;
}

.proof-ring-card {
  min-height: 310px;
}

.proof-mini-card {
  min-height: 145px;
}

.proof-dashboard span,
.proof-dashboard .bar-row span {
  color: var(--soft);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-hero-card > span,
.proof-ring-card > span,
.proof-mini-card > span {
  margin-bottom: 20px;
}

.proof-dashboard strong {
  color: var(--gold);
  display: block;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  margin-bottom: 14px;
}

.proof-hero-card > strong {
  font-size: clamp(4.2rem, 9vw, 7rem);
}

.comparison-bars {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.bar-row {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 74px minmax(120px, 1fr) 74px;
}

.bar-row i {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  display: block;
  height: 16px;
  overflow: hidden;
  position: relative;
}

.bar-row i::after {
  animation: chart-grow 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), var(--gold), #fff1a8);
  border-radius: inherit;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.52);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: var(--bar);
}

.bar-row.before i::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.48));
  box-shadow: none;
}

.bar-row b {
  color: var(--white);
  font-size: 0.95rem;
  text-align: right;
}

.traffic-ring {
  align-items: center;
  animation: pulse-glow 2.6s ease-in-out infinite;
  background:
    radial-gradient(circle at center, #080808 0 56%, transparent 57%),
    conic-gradient(var(--gold) calc(var(--share) * 1%), rgba(255, 255, 255, 0.1) 0);
  border-radius: 50%;
  display: grid;
  height: 170px;
  justify-content: center;
  margin: 8px auto 24px;
  place-items: center;
  width: 170px;
}

.traffic-ring strong {
  color: var(--white);
  font-size: 2.35rem;
  margin: 0;
}

@keyframes chart-grow {
  from {
    width: 0;
  }

  to {
    width: var(--bar);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }

  50% {
    box-shadow: 0 0 38px rgba(212, 175, 55, 0.22);
  }
}

.bento-grid {
  display: grid;
  gap: 16px;
  grid-auto-rows: minmax(218px, auto);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  border-radius: 8px;
  min-height: 214px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  background: var(--panel-strong);
  border-color: var(--line-strong);
  transform: translateY(-4px) scale(1.01);
}

.feature-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.feature-card-wide {
  grid-column: span 2;
}

.icon {
  align-items: center;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  color: var(--gold);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.icon svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}

.mini-score,
.title-sample {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 7px;
  margin-top: 28px;
  padding-top: 20px;
}

.mini-score strong,
.title-sample strong {
  color: var(--gold);
}

.score-section,
.sprint-section,
.request-section,
.faq {
  background: #050505;
  border-top: 1px solid var(--line);
}

.sprint-section {
  background:
    linear-gradient(180deg, #050505, #000000),
    radial-gradient(circle at 22% 12%, rgba(212, 175, 55, 0.16), transparent 28%);
}

.sprint-grid {
  align-items: start;
  display: grid;
  gap: clamp(30px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
}

.price-band {
  border-radius: 8px;
  display: grid;
  gap: 8px;
  margin-top: 30px;
  max-width: 360px;
  padding: 22px;
}

.price-band span {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-band strong {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.offer-stack {
  display: grid;
  gap: 16px;
}

.offer-stack article {
  border-radius: 8px;
  padding: 24px;
}

.offer-stack ul {
  color: var(--muted);
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.offer-stack li {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 16px 1fr;
}

.offer-stack li::before {
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.42);
  content: "";
  height: 6px;
  margin-top: 9px;
  width: 6px;
}

.rubric {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 10px;
}

.rubric div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(140px, 1fr) minmax(100px, 0.7fr) auto;
  padding: 16px 12px;
}

.rubric div:last-child {
  border-bottom: 0;
}

.rubric span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.rubric strong {
  color: var(--gold);
  font-size: 0.9rem;
  white-space: nowrap;
}

.audience {
  background:
    radial-gradient(circle at 18% 10%, rgba(212, 175, 55, 0.12), transparent 24%),
    #000000;
  border-top: 1px solid var(--line);
  color: var(--white);
}

.audience-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-list p {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  margin: 0;
  min-height: 112px;
  padding: 20px;
}

.request-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 70px);
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
}

.note {
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: var(--muted);
  margin-top: 28px;
  padding: 18px;
}

.note strong {
  color: var(--white);
}

.intake-form {
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
}

.intake-form label {
  color: rgba(255, 255, 255, 0.84);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 8px;
}

input,
select {
  appearance: none;
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  min-height: 48px;
  padding: 10px 12px;
  width: 100%;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

input:focus,
select:focus,
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.45);
  outline-offset: 3px;
}

.form-button {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
  width: 100%;
}

.hidden {
  display: none;
}

details {
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 22px;
}

summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
}

summary::marker {
  color: var(--gold);
}

details p {
  margin: 12px 0 0;
  max-width: 760px;
}

.site-footer {
  align-items: center;
  background: #000000;
  border-top: 1px solid var(--line);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer p {
  font-weight: 900;
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.thanks-page {
  background:
    radial-gradient(circle at 70% 15%, rgba(212, 175, 55, 0.14), transparent 28%),
    var(--black);
  color: var(--white);
}

.thanks {
  display: grid;
  gap: clamp(58px, 10vw, 120px);
  min-height: 100vh;
  padding: clamp(24px, 5vw, 64px);
}

.thanks .brand {
  color: var(--white);
}

.thanks section {
  max-width: 850px;
}

.thanks p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 680px;
}

.fade-up,
.section-inner {
  animation: fade-up 680ms ease both;
}

.delay-1 {
  animation-delay: 140ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-dashboard {
    justify-self: start;
    max-width: 520px;
    min-height: auto;
  }

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

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

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

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

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    font-size: 0.86rem;
    justify-content: space-between;
    width: 100%;
  }

  .hero {
    padding-top: 150px;
  }

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

  .hero-stats div {
    flex: 1 1 100%;
  }

  .bento-grid,
  .process-grid,
  .proof-dashboard,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .proof-hero-card {
    grid-column: auto;
  }

  .bar-row {
    grid-template-columns: 1fr;
  }

  .bar-row b {
    text-align: left;
  }

  .feature-card-large,
  .feature-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .rubric div {
    grid-template-columns: 1fr auto;
  }

  .rubric i {
    grid-column: 1 / -1;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
