:root {
  --black: #030303;
  --black-2: #070707;
  --white: #ffffff;
  --white-soft: #f3f3f0;
  --muted: #b9b7b0;
  --muted-2: #85837d;
  --gold: #d7a84b;
  --gold-light: #f4d994;
  --gold-deep: #8e6425;
  --line: rgba(255, 255, 255, 0.12);
  --gold-line: rgba(215, 168, 75, 0.34);
  --panel: rgba(255, 255, 255, 0.055);
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --container: min(1180px, calc(100% - 32px));
  --ease: cubic-bezier(.2, .8, .2, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #020202 0%, #070707 42%, #030303 100%);
  background-size: 64px 64px, 64px 64px, auto;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #100b04;
  background: var(--gold-light);
  font-weight: 900;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(3, 3, 3, 0.76);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(244, 217, 148, 0.48);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(215, 168, 75, 0.16);
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-line {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 760;
  white-space: nowrap;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}

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

.btn-gold {
  color: #100b04;
  background: linear-gradient(135deg, #fff2ba, var(--gold-light) 28%, var(--gold) 68%, #a6752d);
  box-shadow: 0 18px 38px rgba(215, 168, 75, 0.22);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.btn-large {
  min-height: 54px;
  padding-inline: 22px;
  font-size: 1rem;
}

.btn-arrow {
  transition: transform 180ms ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 118px 0 34px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 18%, rgba(244, 217, 148, 0.17), transparent 30%),
    radial-gradient(circle at 78% 42%, rgba(215, 168, 75, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.2), rgba(3, 3, 3, 0.92));
  background-size: 180% 180%, 150% 150%, auto;
  content: "";
  animation: shimmer 11s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 25%;
  background: linear-gradient(180deg, transparent, rgba(3, 3, 3, 0.88));
  content: "";
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.56;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines span {
  position: absolute;
  top: -32%;
  left: var(--x);
  width: 1px;
  height: 38vh;
  background: linear-gradient(180deg, transparent, rgba(244, 217, 148, 0.38), transparent);
  opacity: 0.7;
  transform: rotate(29deg);
  animation: linefall var(--speed) linear infinite;
  animation-delay: var(--delay);
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(3.7rem, 12vw, 10.5rem);
  line-height: 0.84;
  letter-spacing: -0.04em;
}

.hero-title-line {
  display: block;
}

.hero-title-gold {
  background: linear-gradient(110deg, #fff, #f8dc95 44%, #d2a247 72%, #fff);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldtext 5s ease-in-out infinite alternate;
}

.hero-subtitle {
  width: min(760px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  line-height: 1.72;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-proof {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(18px);
}

.proof-item {
  padding: 18px;
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #060606;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 34px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2,
.call-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5.5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.lead,
.section-head p,
.card p,
.call-copy p {
  color: var(--muted);
  line-height: 1.72;
}

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

.card {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 217, 148, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 168, 75, 0.15), transparent 54%);
  opacity: 0;
  content: "";
  transition: opacity 220ms ease;
}

.card:hover::before {
  opacity: 1;
}

.card-number {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 950;
}

.card h3 {
  position: relative;
  margin: 58px 0 14px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1;
}

.card p {
  position: relative;
  margin-bottom: 0;
}

.call-section {
  min-height: 78svh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.3), rgba(3, 3, 3, 0.92)),
    linear-gradient(112deg, transparent 0 24%, rgba(244, 217, 148, 0.18) 38%, transparent 56%);
}

.call-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(215, 168, 75, 0.11), transparent 38%),
    rgba(255, 255, 255, 0.042);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.call-copy {
  padding: clamp(26px, 5vw, 56px);
}

.call-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.call-meta {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.call-meta span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.call-meta b {
  color: var(--gold-light);
}

.call-card {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  min-height: 460px;
  border-left: 1px solid var(--line);
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(244, 217, 148, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(3, 3, 3, 0.62);
}

.call-logo {
  width: min(240px, 70%);
  margin-bottom: 10px;
  border: 1px solid rgba(244, 217, 148, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.call-number {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 950;
  line-height: 1;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  color: var(--muted-2);
  background: #020202;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes shimmer {
  from {
    background-position: 0% 50%, 100% 50%, 0 0;
  }

  to {
    background-position: 100% 50%, 0% 50%, 0 0;
  }
}

@keyframes linefall {
  from {
    transform: translate3d(-10vw, -24vh, 0) rotate(29deg);
  }

  to {
    transform: translate3d(24vw, 112vh, 0) rotate(29deg);
  }
}

@keyframes goldtext {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@media (max-width: 860px) {
  .desktop-cta {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 6.5rem);
  }

  .hero-proof {
    position: static;
    width: var(--container);
    margin: 44px auto 0;
    grid-template-columns: 1fr;
  }

  .section-head,
  .approach-grid,
  .call-shell {
    grid-template-columns: 1fr;
  }

  .call-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .brand-line,
  .nav-phone {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .call-meta span,
  .footer-inner {
    display: grid;
  }
}
