@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #10111b;
  --paper: #f4f0e7;
  --white: #fffdf8;
  --coral: #ff5647;
  --acid: #d9ff62;
  --blue: #4c6fff;
  --muted: #b7b3aa;
  --line: rgba(16, 17, 27, .16);
  --max: 1240px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  z-index: 30;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; width: 100%; }
p { margin: 0 0 1.25rem; }
h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.055em; line-height: .98; margin: 0; }
h1 { font-size: clamp(4rem, 10vw, 9.4rem); font-weight: 800; }
h2 { font-size: clamp(3rem, 7vw, 6.4rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.3rem); font-weight: 700; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.eyebrow { font-size: .78rem; letter-spacing: .16em; font-weight: 700; text-transform: uppercase; }
.eyebrow::before { content: "●"; color: var(--coral); margin-right: .55rem; }
.display-line { display: block; }
.display-line.offset { margin-left: clamp(0px, 10vw, 160px); }
.display-line.stroke { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.lead { max-width: 780px; font-size: clamp(1.3rem, 2.3vw, 2rem); line-height: 1.35; letter-spacing: -.025em; }
.button {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .82rem 1.25rem;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button::after { content: "↗"; font-size: 1.15rem; }
.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); background: var(--acid); }
.button.light { border-color: var(--white); color: var(--white); }
.button.light:hover { color: var(--ink); border-color: var(--ink); }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 24px 0;
}
.site-header.on-dark { background: var(--white); }
.site-header .inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-lockup { width: 184px; height: auto; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); }
.nav a { text-decoration: none; font-weight: 600; font-size: .9rem; }
.nav a:not(.button):hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.menu-toggle { display: none; background: none; border: 0; font: inherit; font-weight: 700; }

.hero { min-height: 100svh; display: grid; align-items: end; padding: 150px 0 60px; position: relative; }
.hero-copy { position: relative; z-index: 2; }
.hero p { max-width: 620px; margin: 2.5rem 0 0 auto; font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.4; }
.hero-orb { position: absolute; right: -7vw; top: 10vh; width: clamp(240px, 34vw, 520px); aspect-ratio: 1; border-radius: 50%; background: var(--acid); filter: blur(.2px); }
.hero-orb::before { content: "BUSINESS / PEOPLE / MOMENTUM"; position: absolute; inset: 18%; display: grid; place-items: center; text-align: center; font-weight: 800; font-size: clamp(1rem, 2vw, 1.8rem); transform: rotate(9deg); }
.hero-stamp { display: inline-flex; border: 2px solid var(--ink); border-radius: 99px; padding: .55rem 1rem; transform: rotate(-4deg); margin: 0 0 1.8rem 4px; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--white); }

.ticker { overflow: hidden; background: var(--ink); color: var(--white); padding: 18px 0; transform: rotate(-1deg) scale(1.02); }
.ticker-track { white-space: nowrap; width: max-content; animation: ticker 24s linear infinite; font-family: "Manrope"; font-weight: 800; font-size: clamp(1.2rem, 2vw, 1.8rem); }
.ticker span { color: var(--acid); margin: 0 1.4rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(90px, 12vw, 170px) 0; }
.section-head { display: grid; grid-template-columns: .7fr 2fr; gap: 3rem; align-items: start; margin-bottom: 4rem; }
.section-head p { margin: 0; }
.dark { background: var(--ink); color: var(--white); }
.coral { background: var(--coral); }
.acid { background: var(--acid); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.manifesto { position: relative; }
.manifesto h2 { max-width: 1080px; }
.manifesto .lead { margin: 3rem 0 0 auto; }
.manifesto-quote { border-top: 2px solid currentColor; margin-top: 5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 2rem; font-weight: 700; }

.show-card { min-height: 610px; border-radius: var(--radius); overflow: hidden; position: relative; background: #222; color: white; }
.show-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .7s ease; }
.show-card:hover img { transform: scale(1.04); }
.show-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 15%, rgba(10,10,16,.86) 100%); }
.show-content { position: absolute; z-index: 2; inset: auto 32px 30px; }
.show-content h3 { font-size: clamp(2.3rem, 4vw, 4rem); }
.show-content p { max-width: 500px; margin: 1rem 0 1.5rem; }
.show-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.2rem; }
.pill { border: 1px solid rgba(255,255,255,.45); border-radius: 99px; padding: .35rem .65rem; font-size: .73rem; font-weight: 700; backdrop-filter: blur(8px); }

.principles { counter-reset: principle; }
.principle { border-top: 2px solid var(--ink); padding: 24px 0 52px; position: relative; }
.principle::before { counter-increment: principle; content: "0" counter(principle); font-size: .75rem; font-weight: 700; }
.principle h3 { margin: 2rem 0 1rem; }
.principle p { max-width: 350px; }

.team-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.person { grid-column: span 6; position: relative; margin-bottom: 3rem; }
.person:nth-child(even) { margin-top: 100px; }
.person-image { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: #ddd; }
.person-image img { height: 100%; object-fit: cover; object-position: center top; filter: saturate(.85) contrast(1.03); transition: transform .6s ease, filter .4s; }
.person:hover img { transform: scale(1.035); filter: saturate(1); }
.person h3 { margin-top: 1.2rem; }
.role { font-weight: 700; color: var(--coral); margin: .4rem 0 .7rem; }
.person p { max-width: 540px; font-size: 1rem; }

.page-hero { padding: 190px 0 90px; min-height: 70svh; display: flex; align-items: end; position: relative; }
.page-hero h1 { max-width: 1120px; }
.page-hero .lead { margin: 3rem 0 0 auto; }
.number-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid currentColor; margin-top: 5rem; }
.number { padding: 2rem 1rem 0 0; }
.number strong { display: block; font-family: "Manrope"; font-size: clamp(2.2rem, 5vw, 5rem); letter-spacing: -.06em; }
.number span { font-size: .9rem; }
.story-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; }
.story-grid .big { font-size: clamp(2rem, 4vw, 3.8rem); font-family: "Manrope"; letter-spacing: -.045em; line-height: 1.08; }
.story-copy p { font-size: 1.15rem; }
.vision-band { padding: clamp(80px, 12vw, 150px) 0; overflow: hidden; }
.vision-band h2 { max-width: 1100px; }

.cta { padding: 80px 0; }
.cta-inner { border-radius: var(--radius); background: var(--blue); color: var(--white); padding: clamp(36px, 7vw, 90px); display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.cta h2 { font-size: clamp(2.8rem, 6vw, 5.5rem); max-width: 800px; }
.site-footer { background: var(--ink); color: var(--white); padding: 75px 0 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 90px; }
.footer-top h2 { font-size: clamp(3rem, 7vw, 6rem); }
.footer-brand-mark { width: 66px; height: 66px; margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--acid); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px; display: flex; justify-content: space-between; gap: 2rem; font-size: .75rem; color: #aaa; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 820px) {
  body { font-size: 16px; }
  .wrap { width: min(calc(100% - 30px), var(--max)); }
  .brand-lockup { width: 160px; }
  .menu-toggle { display: block; position: relative; z-index: 22; }
  .nav { display: none; position: fixed; inset: 0; background: var(--acid); padding: 110px 28px 40px; flex-direction: column; align-items: flex-start; z-index: 21; }
  .nav.open { display: flex; }
  .nav a { font-family: "Manrope"; font-size: 2rem; }
  .nav .button { font-size: 1rem; margin-top: 1rem; }
  .hero { min-height: 820px; padding-bottom: 80px; }
  .hero-orb { right: -120px; top: 100px; width: 330px; opacity: .78; }
  .hero p { margin-left: 0; }
  .section-head, .story-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .show-card { min-height: 520px; }
  .team-grid { display: block; }
  .person, .person:nth-child(even) { margin: 0 0 60px; }
  .number-row { grid-template-columns: 1fr; }
  .number { border-bottom: 1px solid currentColor; padding-bottom: 1.5rem; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}

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