:root {
  --ink: #0d100f;
  --paper: #f0f1eb;
  --muted: #aeb5ad;
  --line: rgba(240, 241, 235, 0.15);
  --acid: #d8ff4f;
  --mint: #9dffd7;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 83% 9%, rgba(157, 255, 215, 0.08), transparent 27rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.04em; }
.brand img { width: 31px; height: 31px; object-fit: contain; }
.site-header nav { display: flex; gap: 30px; color: #c8cec8; font-size: 13px; }
.site-header nav a, .footer-links a { transition: color .2s ease; }
.site-header nav a:hover, .footer-links a:hover { color: var(--acid); }
.header-action { justify-self: end; font-size: 12px; text-transform: uppercase; letter-spacing: .11em; border-bottom: 1px solid #6d756f; }

.hero { min-height: 760px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 58px; padding-block: 88px 100px; }
.eyebrow, .section-index, .product-kind { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 18px var(--acid); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(65px, 8vw, 116px); line-height: .86; letter-spacing: -0.075em; margin: 38px 0 42px; font-weight: 600; }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; color: var(--acid); letter-spacing: -0.035em; }
.hero-intro { max-width: 610px; color: #b9c0ba; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 24px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; transition: transform .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--acid); }
.button-light { color: var(--ink); background: var(--paper); }
.text-link { font-size: 13px; color: #c5cbc6; }
.text-link span, .product-links span { color: var(--acid); }

.signal-field { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1; justify-self: end; }
.signal-field::before { content: ""; position: absolute; inset: 5%; border: 1px solid rgba(216,255,79,.12); border-radius: 50%; box-shadow: inset 0 0 80px rgba(157,255,215,.04); }
.signal-orbit { position: absolute; border: 1px solid rgba(240,241,235,.18); border-radius: 50%; animation: spin 24s linear infinite; }
.signal-orbit::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; top: 50%; right: -5px; background: var(--acid); box-shadow: 0 0 18px var(--acid); }
.orbit-one { inset: 15%; }
.orbit-two { inset: 0; border-style: dashed; animation-direction: reverse; animation-duration: 38s; }
.orbit-two::after { background: var(--mint); box-shadow: 0 0 18px var(--mint); }
.signal-core { position: absolute; inset: 27%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 17px; padding: 24px; background: var(--paper); color: var(--ink); transform: rotate(-8deg); }
.signal-core img { width: 76%; height: auto; }
.signal-core span { font-size: 10px; letter-spacing: .16em; }
.signal-note { position: absolute; font-size: 9px; letter-spacing: .19em; color: #9ca39d; }
.note-a { left: -4%; top: 27%; transform: rotate(-90deg); }
.note-b { right: -3%; top: 46%; transform: rotate(90deg); }
.note-c { bottom: 4%; left: 44%; }
@keyframes spin { to { transform: rotate(360deg); } }

.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 15px 0; color: #818982; font-size: 10px; letter-spacing: .19em; }
.marquee div { width: max-content; display: flex; gap: 24px; align-items: center; animation: marquee 28s linear infinite; }
.marquee i { color: var(--acid); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding-block: 140px; }
.section-heading { display: grid; grid-template-columns: 180px 1fr 270px; gap: 30px; align-items: end; margin-bottom: 76px; }
.section-heading h2 { font-size: clamp(46px, 6vw, 78px); line-height: .96; letter-spacing: -.065em; margin: 0; }
.section-heading > p:last-child { color: #929a93; margin: 0; }
.product-card { position: relative; min-height: 490px; display: grid; grid-template-columns: 74px 1fr 1.05fr; gap: 40px; align-items: center; padding: 58px; border: 1px solid var(--line); overflow: hidden; }
.product-card + .product-card { margin-top: 24px; }
.pinlist-card { background: #171b19; }
.studio-card { color: var(--ink); background: var(--paper); }
.product-number { align-self: start; color: #7e867f; font-family: var(--serif); font-size: 20px; }
.product-copy { position: relative; z-index: 2; }
.product-copy h3 { font-size: clamp(52px, 7vw, 84px); letter-spacing: -.07em; line-height: 1; margin-bottom: 24px; }
.product-copy > p:not(.product-kind) { max-width: 480px; color: #aeb5af; }
.studio-card .product-copy > p:not(.product-kind) { color: #535a55; }
.product-links { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; font-size: 12px; font-weight: 700; }
.pinlist-visual, .flow-visual { position: relative; min-height: 360px; }
.app-tile { position: absolute; width: 220px; height: 124px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(240,241,235,.08); border: 1px solid rgba(240,241,235,.18); backdrop-filter: blur(14px); box-shadow: 0 24px 50px rgba(0,0,0,.28); }
.app-tile span { font-size: 10px; letter-spacing: .17em; color: var(--muted); }
.app-tile strong { font-size: 28px; letter-spacing: -.05em; }
.tile-a { top: 23px; left: 10%; transform: rotate(-6deg); }
.tile-b { top: 118px; right: 3%; transform: rotate(8deg); background: var(--acid); color: var(--ink); }
.tile-b span { color: #555c3e; }
.tile-c { bottom: 16px; left: 17%; transform: rotate(2deg); }
.scan-line { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, var(--acid), transparent); box-shadow: 0 0 18px var(--acid); animation: scan 4s ease-in-out infinite; }
@keyframes scan { 0%,100% { transform: translateY(-130px); opacity: .2; } 50% { transform: translateY(130px); opacity: 1; } }
.flow-node { position: absolute; z-index: 2; min-width: 104px; padding: 13px 16px; border: 1px solid #929991; background: var(--paper); font-size: 9px; letter-spacing: .18em; }
.node-a { left: 0; top: 46%; }
.node-b { left: 37%; top: 16%; border-color: #68836e; background: var(--mint); }
.node-c { right: 0; top: 52%; color: var(--paper); background: var(--ink); }
.flow-visual svg { position: absolute; inset: 25% 0 auto; width: 100%; height: 180px; }
.flow-visual path { fill: none; stroke: #202521; stroke-width: 1.4; stroke-dasharray: 5 7; }

.principles { border-block: 1px solid var(--line); background: #111412; }
.principle-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.principle-grid .section-heading { display: block; margin: 0; }
.principle-grid .section-heading h2 { margin-top: 48px; }
.principle-list { list-style: none; padding: 0; margin: 0; }
.principle-list li { display: grid; grid-template-columns: 58px 1fr; gap: 30px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.principle-list li:first-child { border-top: 1px solid var(--line); }
.principle-list li > span { color: var(--acid); font-family: var(--serif); }
.principle-list h3 { font-size: 21px; margin-bottom: 8px; letter-spacing: -.03em; }
.principle-list p { color: #8e968f; margin: 0; }

.company { min-height: 620px; display: flex; flex-direction: column; justify-content: center; }
.company-statement { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; margin-top: 70px; }
.company-statement h2 { margin: 0; font-family: var(--serif); font-size: clamp(54px, 8vw, 102px); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.company-statement p { color: #a8afa9; }
.company-statement .button { margin-top: 28px; }

.site-footer { padding: 76px 0 24px; background: var(--acid); color: var(--ink); }
.site-footer .brand img { filter: grayscale(1) brightness(.28); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.footer-brand { font-size: 25px; }
.footer-grid > div > p { margin-top: 20px; color: #50583b; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links p { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #69714e; margin-bottom: 8px; }
.footer-links a { font-weight: 600; font-size: 14px; }
.footer-links a:hover { color: #4e5b00; }
.footer-base { display: flex; justify-content: space-between; gap: 30px; margin-top: 70px; padding-top: 22px; border-top: 1px solid rgba(13,16,15,.22); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 1; transform: none; animation: rise-in .8s cubic-bezier(.2,.8,.2,1) both; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
}

/* Legal pages */
.legal-page { background: var(--paper); color: var(--ink); }
.legal-page .noise { opacity: .025; }
.legal-page .site-header { border-color: rgba(13,16,15,.14); }
.legal-page .brand img { filter: none; }
.legal-page .site-header nav { color: #555c57; }
.legal-page .header-action { border-color: #7d857e; }
.legal-shell { width: min(820px, calc(100% - 48px)); margin-inline: auto; }
.legal-hero { padding: 110px 0 80px; border-bottom: 1px solid rgba(13,16,15,.16); }
.legal-kicker { font-size: 11px; letter-spacing: .17em; text-transform: uppercase; color: #667066; }
.legal-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(68px, 10vw, 118px); line-height: .9; letter-spacing: -.06em; margin: 28px 0; }
.legal-hero p { max-width: 640px; color: #545d56; font-size: 18px; }
.legal-meta { display: flex; gap: 24px; margin-top: 34px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #717a72; }
.legal-content { padding: 80px 0 120px; }
.legal-summary { padding: 28px; margin-bottom: 70px; color: #344037; background: #e2e7dc; border-left: 3px solid #5d7200; }
.legal-content section { scroll-margin-top: 30px; padding: 34px 0; border-top: 1px solid rgba(13,16,15,.14); }
.legal-content section:first-of-type { border-top: 0; }
.legal-content h2 { font-size: 27px; line-height: 1.2; letter-spacing: -.04em; margin-bottom: 20px; }
.legal-content h3 { margin-top: 28px; font-size: 16px; }
.legal-content p, .legal-content li { color: #4e5750; }
.legal-content ul { padding-left: 20px; }
.legal-content a { text-decoration: underline; text-decoration-color: #7b9100; text-underline-offset: 4px; }
.legal-callout { margin-top: 24px; padding: 24px; background: #111412; color: var(--paper); }
.legal-callout p, .legal-callout li { color: #c2c9c2; }
.legal-callout h3 { margin-top: 0; color: var(--acid); }
.legal-page .site-footer { padding-top: 48px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 72px 90px; }
  .signal-field { width: min(420px, 90vw); justify-self: center; margin-top: 30px; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .section-heading > p:last-child { max-width: 400px; }
  .product-card { grid-template-columns: 50px 1fr; padding: 40px; }
  .pinlist-visual, .flow-visual { grid-column: 2; min-height: 320px; }
  .principle-grid, .company-statement { grid-template-columns: 1fr; gap: 70px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .shell, .legal-shell { width: min(100% - 28px, 1180px); }
  .site-header { height: 76px; }
  .header-action { display: none; }
  h1 { font-size: 59px; }
  .hero { padding-top: 58px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .signal-field { width: 310px; }
  .section { padding-block: 94px; }
  .product-card { grid-template-columns: 1fr; gap: 18px; padding: 28px 22px; }
  .product-number { margin-bottom: 18px; }
  .pinlist-visual, .flow-visual { grid-column: 1; min-height: 290px; }
  .app-tile { width: 175px; height: 105px; }
  .app-tile strong { font-size: 23px; }
  .product-links { flex-direction: column; gap: 12px; }
  .principle-grid { gap: 54px; }
  .company-statement { margin-top: 48px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; gap: 8px; }
  .legal-hero { padding-top: 76px; }
  .legal-meta { flex-direction: column; gap: 6px; }
}

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