:root {
  --bg: #070704;
  --panel: #10100b;
  --panel-2: #15150f;
  --text: #f5f0df;
  --muted: #b6ad96;
  --quiet: #837966;
  --line: rgba(245, 240, 223, 0.13);
  --gold: #d6b45d;
  --mint: #9fdfbc;
  --blue: #9ebcff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 20% 12%, rgba(214, 180, 93, 0.2), transparent 28rem),
    radial-gradient(circle at 80% 8%, rgba(158, 188, 255, 0.16), transparent 30rem),
    linear-gradient(180deg, #080906 0%, #060705 56%, #0a0a07 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(245, 240, 223, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 223, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

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

::selection {
  background: rgba(214, 180, 93, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
  padding: 0 5vw;
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 4, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-elevated="true"] {
  border-bottom-color: var(--line);
  background: rgba(7, 7, 4, 0.9);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(245, 240, 223, 0.06);
}

.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand span:last-child {
  display: grid;
  gap: 0.18rem;
}

.brand strong {
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand small {
  color: var(--quiet);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  transition: color 160ms ease;
}

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

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.1rem;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.primary-button {
  background: var(--text);
  color: #11110c;
}

.secondary-button {
  background: rgba(245, 240, 223, 0.045);
  color: var(--text);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 180, 93, 0.55);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(245, 240, 223, 0.04);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.section-shell {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 5.5rem 0;
}

.hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 3.5rem;
  align-items: center;
  padding-top: 3rem;
}

.hero-copy,
.section-heading,
.split-copy {
  animation: rise 620ms ease both;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 1.4rem;
  font-size: 5.2rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 680px;
  font-size: 1.22rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.signal-row span,
.tag {
  border: 1px solid var(--line);
  background: rgba(245, 240, 223, 0.045);
  padding: 0.58rem 0.74rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.studio-visual,
.product-orbit {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(245, 240, 223, 0.08), rgba(245, 240, 223, 0.02)),
    radial-gradient(circle at 50% 36%, rgba(214, 180, 93, 0.18), transparent 18rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.studio-visual::before,
.product-orbit::before {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(214, 180, 93, 0.24);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.studio-visual::after,
.product-orbit::after {
  position: absolute;
  inset: 25%;
  content: "";
  border: 1px solid rgba(158, 223, 188, 0.18);
  border-radius: 50%;
  animation: orbit 14s linear infinite reverse;
}

.visual-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 178px;
  transform: translate(-50%, -50%);
}

.visual-core.card-logo {
  display: grid;
  width: 188px;
  height: 148px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(7, 7, 4, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
}

.visual-core.card-logo img {
  width: 138px;
}

.orbit-card {
  position: absolute;
  z-index: 3;
  width: min(240px, 48%);
  border: 1px solid var(--line);
  background: rgba(7, 7, 4, 0.76);
  padding: 1rem;
  backdrop-filter: blur(12px);
  overflow-wrap: anywhere;
}

.orbit-card span {
  display: block;
  color: var(--quiet);
  font-size: 0.78rem;
}

.orbit-card strong {
  display: block;
  margin-top: 0.36rem;
  color: var(--text);
}

.card-a { top: 12%; left: 8%; }
.card-b { right: 7%; top: 32%; }
.card-c { left: 11%; bottom: 12%; }
.card-d { right: 10%; bottom: 10%; }

.proof-strip,
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div,
.outcomes .metric-card {
  padding: 1.35rem 5vw;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child,
.outcomes .metric-card:last-child {
  border-right: 0;
}

.proof-strip strong,
.metric-card strong {
  display: block;
  color: var(--text);
}

.proof-strip span,
.metric-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--quiet);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.pillar-grid,
.venture-grid,
.standards-grid,
.company-list,
.policy-list {
  display: grid;
  gap: 1rem;
}

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

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

article,
.company-card,
.company-list div,
.policy-list section,
.contact-card,
.thesis-panel {
  border: 1px solid var(--line);
  background: rgba(245, 240, 223, 0.045);
}

article,
.company-card,
.company-list div,
.policy-list section,
.thesis-panel {
  padding: 1.35rem;
}

article p,
.company-list span {
  margin-bottom: 0;
  color: var(--quiet);
  font-size: 0.95rem;
}

.icon-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 1.4rem;
  background: var(--gold);
  box-shadow: 0 0 28px rgba(214, 180, 93, 0.68);
}

.venture-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(159, 223, 188, 0.12), rgba(245, 240, 223, 0.045));
}

.venture-logo {
  display: grid;
  min-height: 230px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(7, 7, 4, 0.5);
}

.venture-logo img {
  width: min(240px, 70%);
}

.trust-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 223, 0.035);
}

.trust-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-flow div {
  background: #090a07;
  padding: 1.4rem;
}

.trust-flow span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.company-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 1rem;
}

.contact-section {
  padding: 5rem 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 3rem;
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 2rem;
  background: rgba(245, 240, 223, 0.94);
  color: #11110c;
}

.contact-card p {
  color: #5a5143;
}

.contact-card .eyebrow {
  color: #7a5e14;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  color: #332d24;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 12, 0.16);
  background: #fffdf6;
  color: #11110c;
  padding: 0.86rem 0.9rem;
}

.field-trap {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.4rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 5vw;
  border-top: 1px solid var(--line);
  color: var(--quiet);
}

.site-footer strong {
  display: block;
  color: var(--text);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-hero {
  padding: 7rem 0 4rem;
}

.page-hero h1 {
  font-size: 4.8rem;
}

.notice {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    inset: 76px 5vw auto 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    background: rgba(7, 7, 4, 0.96);
    padding: 1rem;
  }

  .nav[data-open="true"] {
    display: flex;
  }

  .hero,
  .split-section,
  .company-section,
  .contact-card,
  .venture-card.featured {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  h1,
  .page-hero h1 {
    font-size: 4rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.65rem;
    line-height: 1.05;
  }

  .studio-visual,
  .product-orbit {
    min-height: 420px;
  }

  .proof-strip,
  .outcomes,
  .trust-flow,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .outcomes .metric-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
  }

  .brand small {
    display: none;
  }

  .section-shell {
    padding: 4.5rem 0;
  }

  h1,
  .page-hero h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .pillar-grid,
  .venture-grid {
    grid-template-columns: 1fr;
  }

  .venture-card.featured {
    grid-column: auto;
  }

  .orbit-card {
    width: 56%;
  }

  .card-b,
  .card-d {
    right: 5%;
  }

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