: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(--muted);
  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;
}

.intent-hero {
  min-height: 560px;
  padding-top: 5rem;
}

.intent-hero .hero-copy {
  max-width: 900px;
}

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

.intent-grid article,
.faq-grid article,
.boundary-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(245, 240, 223, 0.035);
}

.intent-grid article p,
.faq-grid article p,
.boundary-card p {
  margin-bottom: 0;
}

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

.intent-flow article {
  min-height: 210px;
  padding: 1.5rem;
  background: var(--panel);
}

.intent-flow span {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: var(--quiet);
  font-size: 0.86rem;
}

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

@media (max-width: 820px) {
  .intent-grid,
  .faq-grid,
  .intent-flow {
    grid-template-columns: 1fr;
  }

  .intent-flow article {
    min-height: 0;
  }
}

.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;
}

.visual-core.card-logo.agentknow-core {
  width: 164px;
  height: 164px;
  border: 0;
  border-radius: 36px;
  background: transparent;
}

.visual-core.card-logo.agentknow-core img {
  width: 164px;
  border-radius: 36px;
}

.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%; }
.card-e { right: 5%; top: 8%; }

.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-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.venture-identity h3 {
  margin: 0.85rem 0 0;
}

.venture-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 18px;
}

.venture-icon.remaster-icon {
  object-fit: contain;
  padding: 0.3rem;
  border: 1px solid rgba(168, 85, 247, 0.28);
  background: radial-gradient(circle, rgba(100, 108, 255, 0.18), rgba(7, 7, 4, 0.7));
}

.remaster-venture-card {
  background: linear-gradient(145deg, rgba(100, 108, 255, 0.1), rgba(236, 72, 153, 0.06));
}

.venture-icon.desimixtape-icon {
  object-fit: contain;
  padding: 0.3rem;
  border: 1px solid rgba(239, 32, 48, 0.34);
  background: #3d3d3d;
}

.desimixtape-venture-card {
  background: linear-gradient(145deg, rgba(239, 32, 48, 0.11), rgba(197, 29, 49, 0.05));
}

.venture-icon.incorpo-icon {
  object-fit: contain;
  border: 1px solid rgba(83, 45, 201, 0.3);
  background: #faf7ef;
}

.incorpo-venture-card {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(83, 45, 201, 0.11), rgba(139, 92, 246, 0.05));
}

.venture-categories {
  display: grid;
  gap: 1.35rem;
  margin-top: 3rem;
}

.venture-category {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.venture-category-heading,
.venture-category-grid {
  background: rgba(9, 9, 6, 0.96);
}

.venture-category-heading {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.65rem;
}

.venture-category-heading::after {
  position: absolute;
  inset: auto 1.65rem 0 1.65rem;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.venture-category:nth-child(2) .venture-category-heading::after {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.venture-category:nth-child(3) .venture-category-heading::after {
  background: linear-gradient(90deg, #a855f7, #22d3ee, transparent);
}

.venture-category:nth-child(4) .venture-category-heading::after {
  background: linear-gradient(90deg, #34d399, #f472b6, transparent);
}

.category-number {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.venture-category:nth-child(2) .category-number {
  color: var(--blue);
}

.venture-category:nth-child(3) .category-number {
  color: #a855f7;
}

.venture-category:nth-child(4) .category-number {
  color: #34d399;
}

.venture-category-heading h3 {
  margin: 0.8rem 0 0.75rem;
  font-size: 1.55rem;
  line-height: 1.08;
}

.venture-category-heading p:last-child {
  margin-bottom: 0;
  color: var(--quiet);
  font-size: 0.92rem;
}

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

.venture-category-grid.single {
  grid-template-columns: 1fr;
}

.portfolio-venture {
  display: flex;
  min-width: 0;
  min-height: 286px;
  flex-direction: column;
  border: 0;
  background: rgba(245, 240, 223, 0.035);
}

.portfolio-venture .cta-row {
  margin-top: auto;
  padding-top: 1.2rem;
}

.venture-icon.venture-icon-wide {
  width: 104px;
  object-fit: contain;
  border-radius: 0;
}

.venture-icon.tarooba-icon {
  width: 116px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 16px;
  background: #e0f2fe;
}

.tarooba-venture-card {
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.1), rgba(244, 114, 182, 0.06));
}

.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;
}

.remaster-page {
  --gold: #a855f7;
  --mint: #22d3ee;
  --blue: #646cff;
}

.remaster-page::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(100, 108, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 82% 10%, rgba(236, 72, 153, 0.16), transparent 28rem),
    linear-gradient(180deg, #080810 0%, #06060b 56%, #09070d 100%);
}

.visual-core.card-logo.remaster-core {
  width: 190px;
  height: 190px;
  border-color: rgba(168, 85, 247, 0.28);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 45%, rgba(100, 108, 255, 0.23), transparent 62%),
    rgba(7, 7, 12, 0.86);
  box-shadow: 0 0 70px rgba(100, 108, 255, 0.2);
}

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

.remaster-page .product-orbit {
  background:
    linear-gradient(145deg, rgba(100, 108, 255, 0.1), rgba(236, 72, 153, 0.04)),
    radial-gradient(circle at 50% 46%, rgba(34, 211, 238, 0.12), transparent 19rem);
}

.remaster-page .product-orbit::before {
  border-color: rgba(168, 85, 247, 0.28);
}

.remaster-page .product-orbit::after {
  border-color: rgba(34, 211, 238, 0.2);
}

.remaster-page .icon-dot {
  background: linear-gradient(135deg, #646cff, #a855f7 52%, #ec4899);
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.62);
}

.remaster-page .primary-button,
.remaster-page .header-cta {
  border-color: transparent;
  background: linear-gradient(135deg, #646cff, #a855f7 55%, #ec4899);
  color: #fff;
}

.remaster-page .trust-flow span {
  color: #22d3ee;
}

.desimixtape-page {
  --gold: #ef2030;
  --mint: #f4a2ab;
  --blue: #c51d31;
}

.desimixtape-page::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(239, 32, 48, 0.24), transparent 30rem),
    radial-gradient(circle at 82% 10%, rgba(197, 29, 49, 0.14), transparent 28rem),
    linear-gradient(180deg, #0b090a 0%, #070607 56%, #0e090a 100%);
}

.visual-core.card-logo.desimixtape-core {
  width: 210px;
  height: 210px;
  border-color: rgba(239, 32, 48, 0.34);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 45%, rgba(239, 32, 48, 0.2), transparent 64%),
    #3d3d3d;
  box-shadow: 0 0 72px rgba(239, 32, 48, 0.2);
}

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

.desimixtape-page .product-orbit {
  background:
    linear-gradient(145deg, rgba(239, 32, 48, 0.11), rgba(197, 29, 49, 0.04)),
    radial-gradient(circle at 50% 46%, rgba(244, 162, 171, 0.1), transparent 19rem);
}

.desimixtape-page .product-orbit::before {
  border-color: rgba(239, 32, 48, 0.3);
}

.desimixtape-page .product-orbit::after {
  border-color: rgba(244, 162, 171, 0.2);
}

.desimixtape-page .icon-dot {
  background: linear-gradient(135deg, #ef2030, #c51d31 62%, #f4a2ab);
  box-shadow: 0 0 28px rgba(239, 32, 48, 0.58);
}

.desimixtape-page .primary-button,
.desimixtape-page .header-cta {
  border-color: transparent;
  background: linear-gradient(135deg, #ef2030, #c51d31);
  color: #fff;
}

.desimixtape-page .trust-flow span {
  color: #f4a2ab;
}

.desimixtape-page .contact-card .eyebrow {
  color: #9b1727;
}

.desimixtape-page .notice {
  border-left-color: #ef2030;
}

.incorpo-page {
  --gold: #6d3bd1;
  --mint: #c4b5fd;
  --blue: #8b5cf6;
}

.incorpo-page::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(109, 59, 209, 0.24), transparent 30rem),
    radial-gradient(circle at 82% 10%, rgba(139, 92, 246, 0.15), transparent 28rem),
    linear-gradient(180deg, #09070e 0%, #07060b 56%, #0d0914 100%);
}

.visual-core.card-logo.incorpo-core {
  width: 214px;
  height: 214px;
  border-color: rgba(109, 59, 209, 0.34);
  border-radius: 40px;
  background: #faf7ef;
  box-shadow: 0 0 76px rgba(109, 59, 209, 0.23);
}

.visual-core.card-logo.incorpo-core img {
  width: 178px;
  border-radius: 24px;
}

.incorpo-page .product-orbit {
  background:
    linear-gradient(145deg, rgba(109, 59, 209, 0.12), rgba(139, 92, 246, 0.04)),
    radial-gradient(circle at 50% 46%, rgba(196, 181, 253, 0.11), transparent 19rem);
}

.incorpo-page .product-orbit::before {
  border-color: rgba(109, 59, 209, 0.3);
}

.incorpo-page .product-orbit::after {
  border-color: rgba(196, 181, 253, 0.2);
}

.incorpo-page .icon-dot {
  background: linear-gradient(135deg, #532dc9, #6d3bd1 58%, #a78bfa);
  box-shadow: 0 0 28px rgba(109, 59, 209, 0.62);
}

.incorpo-page .primary-button,
.incorpo-page .header-cta {
  border-color: transparent;
  background: linear-gradient(135deg, #532dc9, #6d3bd1 60%, #8b5cf6);
  color: #fff;
}

.incorpo-page .trust-flow span {
  color: #c4b5fd;
}

.incorpo-page .contact-card .eyebrow {
  color: #532dc9;
}

.incorpo-page .notice {
  border-left-color: #6d3bd1;
}

@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,
  .venture-category {
    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,
  .venture-category-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;
  }
}
