:root {
  --bg: #08080b;
  --bg-deep: #030304;
  --surface: rgba(247, 245, 240, 0.055);
  --line: rgba(247, 245, 240, 0.13);
  --line-soft: rgba(247, 245, 240, 0.075);
  --text: #f7f5f0;
  --muted: #aaa69d;
  --muted-2: #76736c;
  --gold: #d4af37;
  --gold-light: #f0d37b;
  --gold-dark: #8f671f;
  --gold-soft: rgba(212, 175, 55, 0.22);
  --max: 1440px;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--bg); }

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 46%, rgba(212, 175, 55, 0.05), transparent 36%),
    radial-gradient(circle at 66% 68%, rgba(143, 103, 31, 0.05), transparent 30%),
    linear-gradient(145deg, var(--bg-deep) 0%, var(--bg) 48%, #0b0b0e 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { color: var(--bg); background: var(--gold-light); }

a { color: inherit; }

a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
  border-radius: 4px;
}

.ambient {
  position: fixed;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.ambient-one {
  top: -18rem;
  right: 8vw;
  background: var(--gold);
  opacity: 0.09;
}

.ambient-two {
  bottom: -24rem;
  right: -6rem;
  background: var(--gold-dark);
  opacity: 0.06;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.shell {
  width: min(100%, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 84px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  isolation: isolate;
}

.site-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
}

.brand,
.parent-link,
.text-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  object-fit: cover;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.18));
}

.lockup { display: grid; gap: 4px; }

.lockup strong {
  font-family: "Playfair Display", "Iowan Old Style", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  line-height: 1;
}

.lockup small {
  color: var(--gold);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.parent-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.parent-link svg,
.text-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.parent-link:hover,
.text-link:hover { color: var(--gold-light); }
.parent-link:hover svg { transform: translate(2px, -2px); }
.text-link:hover svg { transform: translateX(3px); }

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 116px);
  padding: clamp(70px, 10vh, 126px) 0;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.08), 0 0 18px rgba(212, 175, 55, 0.6);
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Playfair Display", "Iowan Old Style", Georgia, serif;
  font-size: clamp(3.4rem, 5.2vw, 4.9rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.047em;
  text-wrap: balance;
}

h1 em { color: var(--gold-light); font-weight: 500; }

.h1-line { display: block; }

@media (min-width: 1051px) {
  .h1-line { white-space: nowrap; }
}

.intro {
  max-width: 680px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.launch-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.status-pill {
  min-height: 46px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(212,175,55,.07), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 40px rgba(0,0,0,.14);
  color: var(--text);
  font-size: 0.83rem;
  letter-spacing: 0.025em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.85);
  animation: pulse 2.4s ease-in-out infinite;
}

.visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.visual::before {
  content: "";
  position: absolute;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), rgba(240, 211, 123, 0.03) 38%, transparent 68%);
  filter: blur(4px);
}

.emblem {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(44vw, 640px);
  aspect-ratio: 1;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(circle, #000 58%, transparent 88%);
  mask-image: radial-gradient(circle, #000 58%, transparent 88%);
}

.shard-wrap {
  position: relative;
  width: min(14vw, 190px);
  aspect-ratio: 0.78;
  transform: rotate(-8deg) rotateY(-12deg);
  animation: drift 8s ease-in-out infinite;
  filter: drop-shadow(0 55px 58px rgba(0,0,0,.55));
}

.shard {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(50% 0%, 88% 19%, 100% 61%, 70% 100%, 18% 84%, 0 39%, 22% 12%);
  background:
    linear-gradient(122deg, transparent 0 24%, rgba(255,255,255,.12) 25%, transparent 27% 49%, rgba(212,175,55,.26) 50%, transparent 53%),
    linear-gradient(220deg, rgba(240,211,123,.15), transparent 34%),
    conic-gradient(from 200deg at 48% 40%, #08080b, #16161a, #09090c, #1d1d23, #08080b, #151519, #0a0a0d);
  border: 1px solid rgba(247,245,240,.12);
  box-shadow:
    inset 20px 12px 60px rgba(255,255,255,.045),
    inset -35px -25px 80px rgba(0,0,0,.7),
    0 0 80px rgba(212,175,55,.10);
}

.shard::before,
.shard::after {
  content: "";
  position: absolute;
  inset: -10%;
  clip-path: polygon(50% 0%, 76% 39%, 56% 100%, 28% 56%);
  border-left: 1px solid rgba(247,245,240,.12);
  background: linear-gradient(125deg, rgba(255,255,255,.055), transparent 45%);
  transform: rotate(13deg);
}

.shard::after {
  clip-path: polygon(12% 15%, 74% 0%, 100% 74%, 38% 100%);
  border-left: 0;
  border-top: 1px solid rgba(212,175,55,.18);
  background: linear-gradient(210deg, rgba(143,103,31,.10), transparent 50%);
  transform: rotate(-6deg);
}

.shard-glint {
  position: absolute;
  width: 140%;
  height: 25%;
  top: -18%;
  left: -50%;
  transform: rotate(-28deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  filter: blur(9px);
  animation: glint 7.5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(247, 245, 240, 0.085);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-a {
  width: min(39vw, 530px);
  height: min(22vw, 300px);
}

.orbit-b {
  width: min(31vw, 425px);
  height: min(42vw, 570px);
  transform: rotate(31deg);
  border-color: rgba(212, 175, 55, 0.12);
}

.node {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.node-one { top: 19%; right: 9%; }
.node-two { left: 4%; bottom: 28%; width: 5px; height: 5px; background: var(--gold); }
.node-three { right: 21%; bottom: 8%; width: 4px; height: 4px; opacity: .7; }

.node-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(247,245,240,.2), transparent);
}

.line-one { width: 34%; top: 24%; right: 12%; transform: rotate(138deg); }
.line-two { width: 29%; left: 8%; bottom: 30%; transform: rotate(-24deg); }

.site-footer {
  min-height: 106px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-soft);
}

.principles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.principles i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
}

.site-footer p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.6;
  text-align: right;
}

@keyframes pulse {
  0%, 100% { transform: scale(.9); opacity: .75; }
  50% { transform: scale(1.22); opacity: 1; }
}

@keyframes drift {
  0%, 100% { transform: rotate(-8deg) rotateY(-12deg) translateY(0); }
  50% { transform: rotate(-5deg) rotateY(-7deg) translateY(-12px); }
}

@keyframes glint {
  0%, 20% { transform: translate(-55%, -40%) rotate(-28deg); opacity: 0; }
  44% { opacity: .65; }
  62%, 100% { transform: translate(90%, 360%) rotate(-28deg); opacity: 0; }
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 68px 0 42px;
  }
  .hero-copy { max-width: 830px; text-align: left; }
  h1 { font-size: clamp(3.4rem, 6vw, 4.9rem); }
  .visual {
    min-height: min(80vw, 600px);
    margin-top: 0;
  }
  .shard-wrap { width: min(15vw, 172px); }
  .emblem { width: min(72vw, 540px); }
}

@media (max-width: 820px) {
  .shell { padding-inline: 24px; }
  .site-header { min-height: 88px; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 68px 0 42px;
  }
  .hero-copy { text-align: left; }
  .visual {
    min-height: min(80vw, 600px);
  }
  .shard-wrap { width: min(24vw, 205px); }
  .emblem { width: min(72vw, 540px); }
  .orbit-a { width: min(84vw, 500px); height: min(47vw, 280px); }
  .orbit-b { width: min(65vw, 390px); height: min(87vw, 520px); }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .site-footer p { text-align: left; }
}

@media (max-width: 520px) {
  .brand { gap: 10px; }
  .brand-mark { width: 32px; height: 32px; }
  .lockup strong { font-size: .78rem; letter-spacing: .14em; }
  .lockup small { font-size: .44rem; letter-spacing: .2em; }
  .parent-link { font-size: 0; gap: 0; }
  .parent-link::before { content: "Growth Capital"; font-size: .68rem; letter-spacing: .1em; }
  .parent-link svg { margin-left: 8px; }
  .eyebrow { margin-bottom: 23px; font-size: .65rem; letter-spacing: .13em; }
  h1 { font-size: clamp(3.35rem, 17vw, 4.6rem); line-height: .95; }
  .intro { margin-top: 28px; font-size: 1rem; line-height: 1.62; }
  .launch-row { align-items: flex-start; flex-direction: column; gap: 20px; }
  .status-pill { min-height: 43px; padding-inline: 14px; font-size: .76rem; }
  .visual { min-height: min(100vw, 460px); }
  .shard-wrap { width: min(24vw, 96px); }
  .emblem { width: min(96vw, 440px); }
  .principles { gap: 9px; font-size: .61rem; letter-spacing: .09em; }
}

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