:root {
  color-scheme: dark;
  --bg: #04100d;
  --bg-deep: #020605;
  --surface: rgba(12, 21, 18, 0.86);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --text: #f8f2e4;
  --muted: #d2c8af;
  --quiet: #969982;
  --gold: #f0c250;
  --gold-2: #bd8d2c;
  --green: #1f4b3f;
  --green-bright: #69b293;
  --line: rgba(240, 194, 80, 0.36);
  --line-soft: rgba(248, 242, 228, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --max: 1180px;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.25rem;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(31, 75, 63, 0.46), transparent 34rem),
    var(--bg-deep);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(240, 194, 80, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 194, 80, 0.03) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.skip-link {
  position: fixed;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 40;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--bg-deep);
  color: var(--gold);
  font-weight: 760;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin: 0.85rem auto 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(2, 6, 5, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.brand,
.header-action,
.menu-toggle,
.nav-links a,
.button {
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.12rem;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.55rem 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--gold);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 720;
  cursor: pointer;
}

.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 720;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  border-color: var(--gold);
  background: rgba(240, 194, 80, 0.1);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 7rem 1rem 3rem;
  background: var(--bg-deep);
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.92;
  filter: brightness(1.42) saturate(1.12) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 5, 0.98), rgba(2, 6, 5, 0.84) 40%, rgba(2, 6, 5, 0.2) 68%, rgba(2, 6, 5, 0.02)),
    linear-gradient(180deg, rgba(2, 6, 5, 0.1), rgba(2, 6, 5, 0.54));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.hero h1 {
  width: min(820px, 100%);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.9rem, 7.2vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  width: min(690px, 100%);
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.28vw, 1.2rem);
  line-height: 1.64;
}

.hero .proof-cue {
  width: min(600px, 100%);
  margin-top: 1rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--gold);
  color: var(--quiet);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0 1.15rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 760;
}

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

.button-primary {
  border: 1px solid rgba(240, 194, 80, 0.84);
  background: linear-gradient(180deg, #f5cf68, #c9932b);
  color: #080806;
  box-shadow: 0 14px 40px rgba(240, 194, 80, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(240, 194, 80, 0.09);
}

section {
  padding: clamp(4.25rem, 7vw, 5.5rem) 1rem;
}

section[id] {
  scroll-margin-top: 6.25rem;
}

.problem-section,
.services-section,
.audience-section,
.process-section,
.offers-section,
.why-section,
.service-visual-split,
.ecosystem-section,
.founder-section,
.contact-section,
.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.problem-section,
.audience-section,
.why-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 3rem;
  align-items: stretch;
}

.section-copy h2,
.section-heading h2,
.ecosystem-section h2,
.founder-section h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  line-height: 1;
}

.section-copy p,
.section-heading p,
.ecosystem-section p,
.founder-section p,
.contact-section p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.problem-list,
.service-grid,
.offer-grid,
.belief-list,
.audience-list {
  display: grid;
  gap: 1rem;
}

.problem-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: stretch;
  grid-auto-rows: 1fr;
}

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

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

.service-visual-split {
  display: grid;
  grid-template-columns: minmax(19rem, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(3.25rem, 5vw, 4.25rem);
}

.service-visual-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 4vw, 3rem);
}

.service-visual-reverse .section-copy {
  order: 2;
  justify-self: start;
  max-width: 28rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--gold);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.visual-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02)),
    rgba(5, 10, 8, 0.86);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.service-visual-split > .visual-frame {
  justify-self: end;
  width: min(100%, 38rem);
}

.service-visual-split > .section-copy {
  max-width: 33rem;
}

.browser-bar {
  display: flex;
  gap: 0.42rem;
  align-items: center;
  height: 2rem;
  padding: 0 0.8rem;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
}

.browser-bar span {
  display: grid;
  border-radius: 50%;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
  opacity: 0.9;
}

.browser-bar-compact {
  height: 1.55rem;
}

.browser-bar-compact span {
  width: 0.45rem;
  height: 0.45rem;
}

.visual-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.service-visual-split > .visual-frame img {
  max-height: 22rem;
  object-fit: contain;
}

.visual-frame figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.visual-frame.compact img {
  aspect-ratio: 16 / 11;
}

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

.service-visual-reverse .visual-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.service-visual-reverse .visual-frame.compact img {
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: top center;
}

.problem-list article,
.service-grid article,
.offer-grid article,
.process-track article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.067), rgba(255, 255, 255, 0.026));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.problem-list article,
.service-grid article,
.offer-grid article {
  padding: 1.25rem;
}

.problem-list article,
.audience-list li,
.belief-list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-grid span,
.process-track span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.problem-list h3,
.service-grid h3,
.offer-grid h3,
.process-track h3 {
  margin: 0;
  font-size: 1.05rem;
}

.service-grid h3,
.process-track h3 {
  margin-top: 0.65rem;
}

.problem-list p,
.service-grid p,
.offer-grid p,
.process-track p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.audience-list,
.belief-list {
  align-self: stretch;
  grid-auto-rows: 1fr;
  padding: 0;
  margin: 0;
  list-style: none;
}

.audience-list li,
.belief-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid rgba(105, 178, 147, 0.34);
  border-radius: var(--radius);
  background: rgba(31, 75, 63, 0.34);
}

.audience-list li::before,
.belief-list li::before {
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.process-section {
  width: 100%;
  max-width: none;
  border-block: 1px solid var(--line-soft);
}

.process-section .section-heading,
.process-track {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.process-track article {
  padding: 1.2rem;
}

.ecosystem-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(240, 194, 80, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 194, 80, 0.11), transparent 45%),
    linear-gradient(180deg, rgba(31, 75, 63, 0.42), rgba(255, 255, 255, 0.03));
}

.ecosystem-section .button {
  white-space: nowrap;
}

.founder-section {
  padding-top: 3rem;
}

.founder-note {
  width: min(840px, 100%);
  padding-left: 1.4rem;
  border-left: 2px solid var(--gold);
}

.contact-section {
  text-align: center;
  padding-top: 4rem;
}

.contact-section p {
  width: min(660px, 100%);
  margin-inline: auto;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 3rem;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line-soft);
  color: var(--quiet);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.footer-promise {
  max-width: 620px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.footer-meta {
  margin-top: 0.8rem !important;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.55rem 1rem;
}

.site-footer nav h2 {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--muted);
}

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

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

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    display: grid;
    width: min(22rem, calc(100vw - 1rem));
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(2, 6, 5, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.35rem);
    visibility: hidden;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    min-height: 2.9rem;
    display: flex;
    align-items: center;
    border-radius: 6px;
    font-size: 0.96rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .problem-section,
  .audience-section,
  .why-section,
  .service-visual-split,
  .service-visual-reverse,
  .ecosystem-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .offer-grid,
  .process-track,
  .visual-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-visual-reverse .section-copy {
    order: 0;
  }

  .ecosystem-section .button {
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 1rem);
    margin-top: 0.5rem;
    padding: 0.55rem;
  }

  .brand span:last-child {
    max-width: 9.6rem;
    line-height: 1.15;
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    min-height: 2.75rem;
    padding-inline: 0.7rem;
  }

  .hero {
    min-height: 92svh;
    padding-inline: 0.75rem;
    padding-top: 5.8rem;
    padding-bottom: 2rem;
  }

  .hero-visual {
    object-position: 64% center;
    opacity: 0.42;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 6, 5, 0.97), rgba(2, 6, 5, 0.54)),
      linear-gradient(180deg, rgba(2, 6, 5, 0.18), rgba(2, 6, 5, 0.82));
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 3.5rem);
    line-height: 0.96;
  }

  .hero p {
    margin-top: 1.05rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-top: 1.15rem;
  }

  .button {
    width: 100%;
  }

  .hero .proof-cue {
    margin-top: 0.8rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  section {
    padding-block: 4rem;
  }

  .problem-section,
  .services-section,
  .audience-section,
  .offers-section,
  .why-section,
  .service-visual-split,
  .ecosystem-section,
  .founder-section,
  .contact-section,
  .site-footer,
  .process-section .section-heading,
  .process-track {
    width: calc(100% - 1.25rem);
  }

  .problem-list,
  .service-grid,
  .offer-grid,
  .process-track,
  .visual-pair {
    grid-template-columns: 1fr;
  }

  .service-visual-reverse .visual-pair {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
