@import url("app/design-tokens.css");

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--aqua); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-shell { width: min(100%, var(--main-container-width)); margin: 0 auto; }
.site-header {
  position: var(--header-position);
  top: var(--header-top);
  left: 50%;
  z-index: 50;
  width: min(calc(100% - var(--header-edge-inset)), calc(var(--wide-container-width) - var(--header-edge-inset)));
  height: var(--header-height);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--header-padding);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(245, 242, 236, .82);
  border-color: rgba(10,10,10,.1);
  box-shadow: 0 16px 60px rgba(14, 13, 11, .07);
  backdrop-filter: blur(20px) saturate(140%);
}
.brand { width: var(--logo-width); margin-right: var(--logo-spacing); text-decoration: none; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: var(--navigation-gap); }
.site-nav > a {
  position: relative;
  color: rgba(10,10,10,.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--ink);
  transition: right .25s ease;
}
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white) !important;
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(132px, 15vh, 190px) var(--site-pad) 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: var(--hero-grid-gap);
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 840px;
  height: 840px;
  right: -270px;
  top: -310px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 58%, rgba(112,211,208,.27), rgba(176,145,69,.07) 40%, transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 1px; background: currentColor; }
.eyebrow--dark { color: rgba(245,242,236,.68); }
.eyebrow--light { color: var(--aqua); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 930px;
  margin-bottom: 34px;
  font-size: clamp(4rem, 7vw, 8.65rem);
  line-height: .91;
  letter-spacing: -.073em;
  font-weight: 700;
}
h1 em, h2 em {
  font-family: "Noto Serif Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.045em;
}
h1 em { color: var(--green); }
.hero__intro {
  max-width: 700px;
  margin-bottom: 38px;
  color: var(--text-hero);
  font-size: clamp(1.04rem, 1.4vw, 1.35rem);
  line-height: 1.65;
}
.hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button--dark { background: var(--ink); color: var(--white); box-shadow: 0 14px 32px rgba(0,0,0,.12); }
.button--dark:hover { box-shadow: 0 20px 42px rgba(0,0,0,.19); }
.button--cyan { background: var(--cyan-button); color: var(--white); }
.button--light { background: var(--paper); color: var(--ink); }
.text-link { font-size: 13px; font-weight: 700; text-underline-offset: 7px; }

.hero__visual { min-width: 0; }
.halo-stage {
  position: relative;
  width: min(100%, 650px);
  aspect-ratio: 1;
  margin-left: auto;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: rgba(251,250,247,.45);
  box-shadow: 0 40px 100px rgba(54,46,26,.08), inset 0 0 80px rgba(255,255,255,.75);
  transform-style: preserve-3d;
  will-change: transform;
}
.halo-stage__grid {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  opacity: .5;
  background-image: linear-gradient(rgba(10,10,10,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(10,10,10,.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, black 45%, transparent 75%);
}
.halo-stage::before, .halo-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.halo-stage::before { inset: 11%; border: 1px dashed rgba(176,145,69,.5); animation: spin 28s linear infinite; }
.halo-stage::after { inset: 25%; border: 1px solid rgba(10,10,10,.09); }
.halo-stage__disc {
  position: absolute;
  width: 58%;
  inset: 21%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.74);
  box-shadow: 0 35px 80px rgba(67,54,25,.13), inset 0 1px 0 white;
  backdrop-filter: blur(8px);
  animation: float 7s ease-in-out infinite;
}
.halo-stage__disc img { width: 88%; filter: drop-shadow(0 18px 22px rgba(88,70,26,.12)); }
.orbit { position: absolute; inset: 0; border-radius: 50%; animation: spin 18s linear infinite; }
.orbit i { position: absolute; display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(176,145,69,.08); }
.orbit--one i:nth-child(1) { left: 14%; top: 20%; }
.orbit--one i:nth-child(2) { right: 3%; top: 48%; width: 7px; height: 7px; background: var(--green); }
.orbit--one i:nth-child(3) { left: 30%; bottom: 5%; width: 7px; height: 7px; background: var(--orange); }
.orbit--two { inset: 14%; animation-duration: 12s; animation-direction: reverse; }
.orbit--two i:nth-child(1) { right: 8%; top: 12%; width: 6px; height: 6px; background: var(--aqua); }
.orbit--two i:nth-child(2) { left: 0; bottom: 32%; width: 8px; height: 8px; background: var(--red); }
.signal {
  position: absolute;
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill);
  background: rgba(245,242,236,.83);
  box-shadow: 0 12px 40px rgba(25,20,10,.08);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
  backdrop-filter: blur(10px);
}
.signal--one { top: 16%; left: -3%; }
.signal--two { right: -7%; bottom: 24%; }
.signal--three { bottom: 5%; left: 19%; color: var(--green); }
.hero__footer {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--text-hero-footer);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section-index {
  margin-bottom: 50px;
  color: currentColor;
  opacity: .58;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.manifesto {
  padding: var(--manifesto-section-space) var(--site-pad);
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
  gap: clamp(60px, 10vw, 180px);
  color: var(--paper);
  background: var(--ink);
}
.manifesto > .section-index { grid-column: 1 / -1; margin-bottom: 0; }
.manifesto h2,
.section-heading h2,
.standard h2,
.name-story h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 7.6rem);
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 600;
}
.manifesto h2 em { color: var(--aqua); }
.manifesto__body { align-self: end; padding-bottom: 7px; }
.manifesto__body p {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(245,242,236,.68);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.72;
}
.manifesto__body .manifesto__closing { color: var(--paper); font-weight: 600; }

.venture { padding: var(--section-space) var(--site-pad); background: var(--paper-bright); }
.section-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: var(--section-heading-gap);
  align-items: end;
  margin-bottom: var(--section-heading-bottom);
}
.section-heading .section-index { margin-bottom: 30px; }
.section-heading h2 em { color: var(--green); }
.venture-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--card-background);
  box-shadow: 0 40px 100px rgba(38,61,64,.08);
}
.venture-card::before {
  content: "";
  position: absolute;
  width: 740px;
  height: 740px;
  left: -280px;
  top: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9,169,223,.17), rgba(9,169,223,.03) 46%, transparent 68%);
}
.venture-card__topline, .venture-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.venture-card__topline { border-bottom: 1px solid var(--line-subtle); }
.live-pill { display: inline-flex; align-items: center; gap: 9px; }
.live-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--live-green); box-shadow: 0 0 0 6px rgba(9,183,106,.11); }
.venture-card__brand {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: var(--venture-card-gap);
  padding: clamp(60px, 8vw, 130px);
}
.venture-card__logo-wrap { display: grid; place-items: center; }
.venture-card__logo-wrap img { width: min(100%, 510px); filter: drop-shadow(0 22px 28px rgba(9,169,223,.12)); }
.venture-card__category { margin-bottom: 22px; color: var(--text-venture-category); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.venture-card__copy h3 { max-width: 720px; margin-bottom: 28px; font-size: clamp(2.2rem, 4vw, 5.1rem); line-height: 1; letter-spacing: -.055em; }
.venture-card__copy > p:not(.venture-card__category) { max-width: 620px; margin-bottom: 34px; color: var(--text-venture); font-size: clamp(1rem, 1.2vw, 1.16rem); line-height: 1.7; }
.venture-card__footer { border-top: 1px solid var(--line-subtle); color: var(--text-venture); }

.standard {
  padding: var(--section-space) var(--site-pad);
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(500px, 1.18fr);
  gap: clamp(70px, 11vw, 190px);
  color: var(--paper);
  background: var(--standard-background);
}
.standard__intro { position: sticky; top: 130px; align-self: start; }
.standard h2 { margin-bottom: 36px; }
.standard h2 em { color: var(--aqua); }
.standard__intro > p:last-child { max-width: 560px; margin-bottom: 0; color: rgba(245,242,236,.66); font-size: 1.06rem; line-height: 1.75; }
.principles { border-top: 1px solid var(--line-inverse); }
.principle {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: var(--principle-gap);
  padding: 46px 0 58px;
  border-bottom: 1px solid var(--line-inverse);
}
.principle__number { padding-top: 9px; color: var(--aqua); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.principle h3 { margin-bottom: 14px; font-size: clamp(1.8rem, 3vw, 3.45rem); line-height: 1.05; letter-spacing: -.045em; font-weight: 600; }
.principle p { max-width: 640px; margin-bottom: 0; color: rgba(245,242,236,.63); font-size: 1rem; line-height: 1.7; }

.name-story {
  min-height: 860px;
  padding: var(--section-space) var(--site-pad);
  display: grid;
  grid-template-columns: minmax(360px, .84fr) minmax(480px, 1.16fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: center;
  background: var(--paper);
}
.name-story__mark { position: relative; display: grid; place-items: center; }
.name-story__mark::before {
  content: "";
  position: absolute;
  width: 115%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,145,69,.13), transparent 67%);
}
.name-story__mark img { position: relative; width: min(100%, 540px); animation: slow-tilt 8s ease-in-out infinite; }
.name-story h2 { margin-bottom: 38px; }
.name-story h2 em { color: var(--green); }
.name-story__copy > p:not(.eyebrow) { max-width: 720px; color: var(--text-name-story); font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.75; }
.name-story__copy strong { color: var(--ink); }

.contact {
  margin: 0 var(--site-pad);
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}
.contact__inner {
  position: relative;
  min-height: 660px;
  padding: clamp(70px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact__inner::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -130px;
  top: -210px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 65%, rgba(112,211,208,.28), rgba(176,145,69,.11) 35%, transparent 68%);
}
.contact h2 { position: relative; z-index: 1; max-width: 1250px; }
.contact h2 em { color: var(--aqua); }
.contact__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 45px;
  border-top: 1px solid var(--line-inverse-soft);
}
.contact__footer p { margin: 0; color: rgba(245,242,236,.62); }

.site-footer { padding: 100px var(--site-pad) 34px; }
.site-footer__brand {
  display: grid;
  grid-template-columns: minmax(230px, 350px) minmax(280px, 500px);
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.site-footer__brand p { margin: 0; color: var(--text-footer); font-size: 1.05rem; line-height: 1.65; }
.site-footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--footer-column-gap); padding: 66px 0; }
.site-footer__links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.site-footer__links span { margin-bottom: 8px; color: var(--text-footer-label); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__links a { font-size: 14px; font-weight: 600; text-decoration: none; }
.site-footer__links a:hover { text-decoration: underline; text-underline-offset: 5px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--text-footer-bottom); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-13px) rotate(1deg); } }
@keyframes slow-tilt { 0%,100% { transform: rotate(-1.5deg) translateY(0); } 50% { transform: rotate(1.5deg) translateY(-8px); } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero__copy { max-width: 1000px; }
  .hero__visual { width: min(78vw, 620px); margin: 40px auto 0; }
  .manifesto, .standard, .name-story { grid-template-columns: 1fr; }
  .manifesto { gap: 70px; }
  .standard__intro { position: static; }
  .section-heading { grid-template-columns: 1fr; }
  .venture-card__brand { grid-template-columns: 1fr; }
  .venture-card__logo-wrap img { width: min(70%, 430px); }
  .name-story__mark { order: 2; width: min(75vw, 540px); margin: 0 auto; }
}

@media (max-width: 760px) {
  .site-header { top: var(--header-top); height: var(--header-height); width: calc(100% - var(--header-edge-inset)); padding: var(--header-padding); background: rgba(245,242,236,.86); border-color: rgba(10,10,10,.08); backdrop-filter: blur(18px); }
  .brand { width: var(--logo-width); }
  .menu-button {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
  }
  .menu-button__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-button__lines { width: 17px; height: 12px; position: relative; }
  .menu-button__lines i { position: absolute; left: 0; width: 17px; height: 1px; background: white; transition: transform .25s ease, top .25s ease; }
  .menu-button__lines i:first-child { top: 2px; }
  .menu-button__lines i:last-child { top: 9px; }
  .menu-button[aria-expanded="true"] .menu-button__lines i:first-child { top: 6px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-button__lines i:last-child { top: 6px; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    padding: 120px 28px 38px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a { padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 1.35rem; }
  .site-nav .nav-cta { margin-top: 28px; justify-content: space-between; padding: 18px 22px; border: 0; font-size: 14px; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: auto; padding-top: 128px; }
  h1 { font-size: clamp(3.5rem, 18vw, 5.8rem); }
  .hero__intro { font-size: 1rem; }
  .hero__visual { width: 94vw; margin-left: -7vw; }
  .signal--one { left: 2%; }
  .signal--two { right: 0; }
  .hero__footer { display: none; }
  .manifesto h2, .section-heading h2, .standard h2, .name-story h2, .contact h2 { font-size: clamp(3rem, 15vw, 5rem); }
  .manifesto { padding-top: 100px; padding-bottom: 110px; }
  .section-index { margin-bottom: 34px; }
  .venture-card__brand { min-height: 0; padding: 58px 25px 70px; }
  .venture-card__logo-wrap img { width: min(90%, 360px); }
  .venture-card__copy h3 { font-size: 2.4rem; }
  .venture-card__topline, .venture-card__footer { padding: 18px; }
  .standard { padding-top: 100px; padding-bottom: 100px; }
  .principle { grid-template-columns: 42px 1fr; gap: var(--principle-gap); padding: 36px 0 44px; }
  .name-story { min-height: auto; }
  .contact { margin: 0 12px; }
  .contact__inner { min-height: 620px; padding: 60px 24px 34px; }
  .contact__footer { align-items: stretch; flex-direction: column; }
  .button { width: 100%; justify-content: space-between; }
  .site-footer { padding-top: 80px; }
  .site-footer__brand { grid-template-columns: 1fr; padding-bottom: 55px; }
  .site-footer__brand img { width: min(100%, 330px); }
  .site-footer__links { grid-template-columns: 1fr 1fr; }
  .site-footer__links > div:last-child { grid-column: 1 / -1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header { position: absolute; }
  .hero { min-height: 950px; }
}
