﻿/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOUNDATION
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { overflow-wrap: break-word; word-wrap: break-word; }

:root {
  --paper:   #FAFAF7;
  --paper2:  #F3F2EC;
  --paper3:  #ECEAE2;
  --ink:     #111009;
  --ink2:    #3A3830;
  --ink3:    #78756C;
  --ink4:    #ABA89F;
  --teal:    #3CBFCF;
  --teal2:   #1E9BAD;
  --teal3:   #136B78;
  --tealfg:  rgba(60,191,207,0.10);
  --tealbd:  rgba(60,191,207,0.22);
  --tealbd2: rgba(60,191,207,0.50);

  /* liquid glass */
  --g0:  rgba(255,255,255,0.44);
  --g1:  rgba(255,255,255,0.68);
  --gb:  rgba(255,255,255,0.80);
  --gs:  0 2px 24px rgba(17,16,9,0.06), 0 0 0 1px rgba(255,255,255,0.72) inset;
  --gsh: 0 14px 48px rgba(30,155,173,0.12), 0 0 0 1px rgba(255,255,255,0.90) inset;
  --blur: blur(24px) saturate(1.7);

  --r: 14px;
  --max: 1180px;

  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PAGES
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pg { display: none; }
.pg.active { display: block; }
#p-home .email-section { display: none; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   LIQUID GLASS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lg {
  background: var(--g0);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--gb);
  box-shadow: var(--gs);
  border-radius: var(--r);
  transition: background .3s, box-shadow .3s, border-color .3s, transform .35s;
}
.lg.hover:hover {
  background: var(--g1);
  box-shadow: var(--gsh);
  border-color: rgba(60,191,207,0.36);
  transform: translateY(-4px);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   LAYOUT
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.w { max-width: var(--max); margin: 0 auto; padding: 0 64px; position: relative; z-index: 2; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TYPE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 300;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal2);
}

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; }

.d1 { font-size: clamp(36px, 7.5vw, 110px); font-weight: 600; line-height: .93; letter-spacing: -.04em; color: var(--ink); }
.d2 { font-size: clamp(28px, 4.8vw, 70px);  font-weight: 600; line-height: .97; letter-spacing: -.035em; color: var(--ink); }
.d3 { font-size: clamp(20px, 3vw, 40px);    font-weight: 500; line-height: 1.10; letter-spacing: -.02em;  color: var(--ink); }
.d4 { font-size: clamp(17px, 2vw, 26px);    font-weight: 500; line-height: 1.20; letter-spacing: -.015em; color: var(--ink); }

.italic  { font-style: italic; }
.accent  { color: var(--teal2); }
.muted   { color: var(--ink3); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.body-xl { font-size: 18px; font-weight: 400; line-height: 1.82; color: var(--ink2); letter-spacing: .005em; }
.body-lg { font-size: 16px; font-weight: 400; line-height: 1.85; color: var(--ink2); letter-spacing: .007em; }
.body    { font-size: 14px; font-weight: 400; line-height: 1.80; color: var(--ink2); letter-spacing: .01em; }
.body-sm { font-size: 12px; font-weight: 400; line-height: 1.72; color: var(--ink3); letter-spacing: .01em; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BUTTONS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-p {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper); background: var(--ink);
  padding: 13px 26px; border: none; border-radius: 3px; cursor: pointer;
  transition: background .22s, transform .18s;
  text-decoration: none;
}
.btn-p:hover { background: var(--teal2); transform: translateY(-1px); }

.btn-g {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  padding: 12px 26px; border: 1px solid rgba(17,16,9,.18); border-radius: 3px; cursor: pointer;
  transition: border-color .22s, background .22s, transform .18s;
}
.btn-g:hover { border-color: var(--teal2); color: var(--teal2); transform: translateY(-1px); }

.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper); background: var(--teal2);
  padding: 13px 28px; border: none; border-radius: 3px; cursor: pointer;
  transition: background .22s, transform .18s;
  box-shadow: 0 3px 16px rgba(30,155,173,.26);
}
.btn-teal:hover { background: var(--teal3); transform: translateY(-1.5px); box-shadow: 0 8px 28px rgba(30,155,173,.34); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BADGES
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal2); padding: 5px 12px; border-radius: 2px;
  background: rgba(60,191,207,.09); border: 1px solid rgba(60,191,207,.28);
}
.badge-live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal2); animation: blink 2.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.badge-soon {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink4); padding: 5px 12px; border-radius: 2px;
  background: rgba(17,16,9,.05); border: 1px solid rgba(17,16,9,.12);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FADE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fu { opacity: 0; transform: translateY(20px); transition: opacity .72s cubic-bezier(.22,1,.36,1), transform .72s cubic-bezier(.22,1,.36,1); }
.fu.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .06s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .18s; }
.d4 { transition-delay: .24s; }
.d5 { transition-delay: .30s; }
.d6 { transition-delay: .36s; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAV
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(250,250,247,.78);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 1px 0 rgba(17,16,9,.05);
}
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600; letter-spacing: -.03em;
  color: var(--ink); cursor: pointer; text-decoration: none;
}
.nav-wordmark em { font-style: italic; color: var(--teal2); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 9px;
  font-weight: 300; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink3); cursor: pointer; text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.on { color: var(--ink); }
.hbg { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hbg span { display: block; width: 20px; height: 1.5px; background: var(--ink); }
.mob { display: none; position: fixed; top: 62px; left: 0; right: 0; z-index: 490;
  background: rgba(250,250,247,.97); backdrop-filter: blur(20px);
  padding: 20px 28px 28px; flex-direction: column;
  border-bottom: 1px solid rgba(17,16,9,.07); }
.mob.open { display: flex; }
.mob a { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink3); text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid rgba(17,16,9,.06); cursor: pointer; }
.mob a:hover { color: var(--ink); }
.mob .mbtn { margin-top: 16px; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PROTEIN IMAGE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes proteinSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
#protein {
  position: absolute;
  top: 50%; right: 4vw;
  width: 44vw; max-width: 580px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: normal;
  transform: translateY(-50%);
  transform-origin: center center;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(17,16,9,0.10), 0 8px 24px rgba(17,16,9,0.06), 0 0 0 1px rgba(255,255,255,0.6);
}
@keyframes proteinFloat {
  0%   { transform: translateY(-50%) scale(1); }
  50%  { transform: translateY(-52%) scale(1.02); }
  100% { transform: translateY(-50%) scale(1); }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BACKGROUND MOLECULAR CANVAS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#bgmol {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .75;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME â€” HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.home-hero {
  min-height: auto;
  display: flex; align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

/* large ambient gradient behind protein */
.home-hero::before {
  content: '';
  position: absolute; z-index: 0;
  top: -10%; right: -5%; width: 65%; height: 120%;
  background: radial-gradient(ellipse 70% 80% at 70% 40%,
    rgba(60,191,207,.16) 0%,
    rgba(30,155,173,.06) 50%,
    transparent 75%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 3;
  padding: 0 0 40px 64px;
  max-width: 58%;
}

.hero-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(160px, 22vw, 320px);
  font-weight: 300; line-height: .85;
  color: rgba(17,16,9,.04);
  letter-spacing: -.06em;
  position: absolute;
  top: 50%; right: 48%; transform: translateY(-60%);
  z-index: 0; pointer-events: none;
  user-select: none;
}

.hero-eyebrow { margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::after { content: ''; flex: 0 0 40px; height: 1px; background: var(--teal2); opacity: .5; }

.hero-h { margin-bottom: 32px; }
.hero-sub { max-width: 400px; margin-bottom: 52px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* protein canvas label */
.protein-label {
  position: absolute; bottom: 48px; right: 64px;
  z-index: 3; text-align: right;
}
.protein-label .pl-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-style: italic; color: var(--teal2);
  letter-spacing: .04em; margin-bottom: 2px;
}
.protein-label .pl-meta {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .10em; text-transform: uppercase; color: var(--ink4);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HOME â€” TICKER
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ticker-bar {
  border-top: 1px solid rgba(17,16,9,.07);
  border-bottom: 1px solid rgba(17,16,9,.07);
  padding: 0; height: 44px; overflow: hidden;
  position: relative; z-index: 2;
  background: var(--paper2);
}
.ticker-track {
  display: flex; align-items: center; height: 100%;
  animation: tick 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 40px; white-space: nowrap;
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink4);
}
.ticker-item .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--teal2); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HOME â€” INTRO SPLIT
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.intro-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; position: relative; z-index: 2;
  border-bottom: 1px solid rgba(17,16,9,.07);
}
.intro-l {
  padding: 100px 64px 100px 64px;
  border-right: 1px solid rgba(17,16,9,.07);
}
.intro-r { padding: 100px 64px 100px 64px; }

.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400; font-style: italic;
  line-height: 1.45; letter-spacing: -.01em;
  color: var(--ink);
  border-left: 2px solid var(--teal2);
  padding-left: 24px;
  margin-bottom: 40px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HOME â€” AGENTS GRID
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.agents-section {
  padding: 120px 0;
  position: relative; z-index: 2;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 64px; gap: 40px; flex-wrap: wrap;
}
.section-header h2 { max-width: 480px; }
.section-header > p { max-width: 340px; }
.agents-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.agent-card {
  padding: 40px 36px;
  position: relative; overflow: hidden;
  min-width: 0;
}
.agent-card.primary { grid-row: span 1; }
.agent-icon-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--tealbd);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  background: var(--tealfg);
}
.agent-icon-ring svg { width: 24px; height: 24px; }
.agent-name { font-size: 26px; font-weight: 600; letter-spacing: -.02em; margin: 10px 0 4px; }
.agent-domain { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink4); margin-bottom: 16px; }
.agent-blurb { font-size: 14px; font-weight: 400; line-height: 1.75; color: var(--ink2); margin-top: 14px; letter-spacing: .01em; }

/* corner number */
.agent-card-num {
  position: absolute; top: 28px; right: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; font-weight: 300;
  color: rgba(17,16,9,.05);
  line-height: 1; letter-spacing: -.04em;
  pointer-events: none; user-select: none;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HOME â€” VALUES STRIP
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.values-strip {
  background: var(--paper2);
  border-top: 1px solid rgba(17,16,9,.07);
  border-bottom: 1px solid rgba(17,16,9,.07);
  padding: 80px 0;
  position: relative; z-index: 2;
}
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.value-item {
  padding: 40px 48px;
  border-right: 1px solid rgba(17,16,9,.07);
  min-width: 0;
}
.value-item:last-child { border-right: none; }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300;
  color: rgba(60,191,207,.18); line-height: 1; margin-bottom: 16px;
  letter-spacing: -.04em;
}
.value-title { font-size: 20px; font-weight: 500; letter-spacing: -.015em; margin-bottom: 12px; }
.value-body { font-size: 14px; font-weight: 400; line-height: 1.78; color: var(--ink2); letter-spacing: .01em; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HOME â€” EMAIL
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.email-section {
  padding: 120px 0;
  position: relative; z-index: 2;
  overflow: hidden;
}
.email-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(60,191,207,.08) 0%, transparent 70%);
}
.email-inner {
  text-align: center; position: relative; z-index: 2;
}
.email-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 600; letter-spacing: -.035em;
  line-height: 1; margin-bottom: 18px;
}
.email-form {
  display: flex; margin: 40px auto 0; max-width: 420px;
  border-radius: 4px; overflow: hidden;
  background: var(--g0); backdrop-filter: var(--blur);
  border: 1px solid var(--gb);
  box-shadow: var(--gs);
}
.email-inp {
  flex: 1; padding: 14px 20px; border: none; background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink);
  outline: none;
}
.email-inp::placeholder { color: var(--ink4); }
.email-btn {
  padding: 14px 22px; background: var(--teal2); color: var(--paper); border: none;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background .2s; flex-shrink: 0;
}
.email-btn:hover { background: var(--teal3); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOOTER
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  border-top: 1px solid rgba(17,16,9,.07);
  padding: 60px 0 36px;
  position: relative; z-index: 2;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
  border-bottom: 1px solid rgba(17,16,9,.06);
  padding-bottom: 48px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; letter-spacing: -.03em;
  cursor: pointer; margin-bottom: 12px;
}
.footer-brand em { font-style: italic; color: var(--teal2); }
.footer-tagline { font-size: 13px; font-weight: 400; color: var(--ink3); line-height: 1.65; max-width: 220px; letter-spacing: .01em; }
.footer-col h5,
.footer-col h2 { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink4); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; font-weight: 400; color: var(--ink3); text-decoration: none; cursor: pointer; margin-bottom: 8px; transition: color .2s; letter-spacing: .01em; }
.footer-col a:hover { color: var(--teal2); }
.footer-btm { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .10em; text-transform: uppercase; color: var(--ink4); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OSMO PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.osmo-hero {
  padding: 140px 0 96px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(17,16,9,.07);
}
.osmo-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 55% 70% at 85% 35%, rgba(60,191,207,.14) 0%, transparent 65%),
              radial-gradient(ellipse 40% 50% at 10% 80%, rgba(30,155,173,.09) 0%, transparent 60%);
}
.osmo-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* execution panel */
.exec-panel { padding: 28px; border-radius: 16px; }
.exec-label {
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal2);
  margin-bottom: 14px;
}
.exec-label::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal2); animation: blink 2.4s ease-in-out infinite; }
.exec-query {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-style: italic; color: var(--ink2);
  margin-bottom: 18px; line-height: 1.55;
  padding-left: 14px; border-left: 2px solid rgba(60,191,207,.3);
}
.trace { display: flex; flex-direction: column; gap: 8px; }
.tr {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 8px;
  background: rgba(255,255,255,.36); border: 1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
}
.tr-d { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tr-m { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--teal2); min-width: 100px; font-weight: 300; }
.tr-t { font-size: 12px; color: var(--ink2); flex: 1; font-weight: 400; letter-spacing: .01em; }
.tr-ok { font-family: 'DM Mono', monospace; font-size: 10px; color: #3DB87A; flex-shrink: 0; }
.exec-result {
  margin-top: 14px; padding: 12px 14px; border-radius: 8px;
  background: rgba(60,191,207,.07); border: 1px solid rgba(60,191,207,.20);
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--teal2); letter-spacing: .04em;
}

/* osmo steps */
.how-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 56px;
}
.how-card {
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.how-card-visual {
  width: 100%;
  height: 220px;
  background: #F3F2EC;
  border-bottom: 1px solid rgba(17,16,9,.05);
  overflow: hidden;
}
.how-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}
.how-card-img.structures {
  object-fit: cover;
  object-position: center;
}
.how-card-copy { padding: 22px 26px 26px; }
.steps-section { padding: 96px 0; border-bottom: 1px solid rgba(17,16,9,.07); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(17,16,9,.07); margin-top: 52px; }
.step-cell {
  padding: 44px 36px; background: var(--paper);
  transition: background .3s;
  min-width: 0;
}
.step-cell:hover { background: var(--paper2); }
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300; letter-spacing: -.04em;
  color: rgba(60,191,207,.22); line-height: 1; margin-bottom: 18px;
}
.step-title { font-size: 18px; font-weight: 500; letter-spacing: -.015em; margin-bottom: 10px; }
.step-body { font-size: 14px; font-weight: 400; line-height: 1.75; color: var(--ink2); letter-spacing: .01em; }

/* models */
.models-section { padding: 88px 0; border-bottom: 1px solid rgba(17,16,9,.07); }
.model-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.model-chip {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 18px; border-radius: 4px;
  background: var(--g0); backdrop-filter: var(--blur);
  border: 1px solid var(--gb); box-shadow: var(--gs);
  cursor: default; transition: background .2s, border-color .2s;
}
.model-chip:hover { background: var(--g1); border-color: rgba(60,191,207,.35); }
.model-chip strong { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--teal2); font-weight: 400; }
.model-chip span { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink4); }

/* features */
.features-section { padding: 88px 0; border-bottom: 1px solid rgba(17,16,9,.07); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.feat {
  padding: 36px 32px; border-radius: var(--r);
}
.feat-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; color: rgba(60,191,207,.25);
  margin-bottom: 14px; line-height: 1;
}
.feat-title { font-size: 17px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 8px; }
.feat-body { font-size: 14px; font-weight: 400; line-height: 1.80; color: var(--ink2); letter-spacing: .01em; overflow-wrap: break-word; word-break: break-word; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AGENTS PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.agents-hero { padding: 140px 0 88px; border-bottom: 1px solid rgba(17,16,9,.07); position: relative; overflow: hidden; }
.agents-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 55% 65% at 80% 30%, rgba(60,191,207,.12) 0%, transparent 65%); }
.agents-full { padding: 80px 0; }
.agent-full-card {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  align-items: start; gap: 64px;
  padding: 52px 0; border-bottom: 1px solid rgba(17,16,9,.07);
}
.agent-full-card:last-child { border-bottom: none; }
.afc-left .afc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 300; letter-spacing: -.05em;
  color: rgba(60,191,207,.14); line-height: 1; margin-bottom: 16px;
}
.afc-name-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 600; letter-spacing: -.03em; color: var(--ink);
  line-height: 1; margin-bottom: 6px;
}
.afc-domain-tag { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink4); }
.afc-body { padding-top: 8px; }
.afc-desc { font-size: 14px; font-weight: 400; line-height: 1.85; color: var(--ink2); margin-bottom: 24px; letter-spacing: .01em; }
.afc-right { padding-top: 12px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-hero { padding: 140px 0 88px; border-bottom: 1px solid rgba(17,16,9,.07); position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 50% 60% at 18% 50%, rgba(60,191,207,.12) 0%, transparent 65%); }
.about-body { padding: 80px 0; }
.about-block { padding: 52px 48px; border-radius: 16px; margin-bottom: 14px; }
.team-section {
  padding: 8px 0 104px;
  border-bottom: 1px solid rgba(17,16,9,.07);
  position: relative;
}
.team-wrap { max-width: 980px; }
.team-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .75fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}
.team-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--teal2);
  display: block;
  margin-bottom: 14px;
}
.team-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
  color: var(--ink);
}
.team-copy {
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink2);
  letter-spacing: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.team-card {
  padding: 16px 16px 22px;
  border-radius: 16px;
  overflow: hidden;
}
.team-photo-frame {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper3);
  border: 1px solid rgba(17,16,9,.06);
}
.team-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
}
.team-meta {
  padding: 20px 8px 0;
  text-align: center;
}
.team-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 8px;
}
.team-role {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--ink3);
}
.faq-list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(17,16,9,.08); padding: 0; }
.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink3);
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after { content: '-'; color: var(--teal2); }
.faq-answer {
  padding: 0 0 28px;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink2);
}
.ab-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal2); margin-bottom: 16px; display: block; }
.ab-h { font-size: 36px; font-weight: 600; letter-spacing: -.025em; margin-bottom: 24px; line-height: 1.1; }
.ab-body { font-size: 15px; font-weight: 400; line-height: 1.92; color: var(--ink2); max-width: 680px; letter-spacing: .007em; }
.ab-body p { margin-bottom: 14px; }
.ab-body p:last-child { margin-bottom: 0; }
.legal-hero {
  padding: 132px 0 54px;
  border-bottom: 1px solid rgba(17,16,9,.07);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 42% 70% at 15% 50%, rgba(60,191,207,.12), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.48), transparent);
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.legal-pill {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 8px 11px;
  border: 1px solid rgba(17,16,9,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.46);
}
.legal-body {
  padding: 72px 0 96px;
  border-bottom: 1px solid rgba(17,16,9,.07);
}
.legal-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.legal-aside {
  position: sticky;
  top: 92px;
  padding: 22px;
  border-radius: 16px;
}
.legal-aside h3 {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 14px;
}
.legal-aside a {
  display: block;
  padding: 9px 0;
  font-size: 13px;
  color: var(--ink3);
  text-decoration: none;
  border-bottom: 1px solid rgba(17,16,9,.06);
  cursor: pointer;
}
.legal-card {
  padding: 44px 48px;
  border-radius: 18px;
  margin-bottom: 18px;
}
.legal-card h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.legal-card p,
.legal-card li {
  font-size: 15px;
  line-height: 1.82;
  color: var(--ink2);
  letter-spacing: .006em;
}
.legal-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}
.legal-card li { margin-bottom: 8px; }
.legal-note {
  padding: 18px 20px;
  border-left: 3px solid var(--teal2);
  background: rgba(60,191,207,.07);
  border-radius: 10px;
  margin-top: 16px;
}
.principles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 24px; }
.principle { padding: 28px; border-radius: 12px; }
.principle h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; letter-spacing: -.015em; margin-bottom: 10px; }
.principle p { font-size: 14px; font-weight: 400; line-height: 1.75; color: var(--ink2); letter-spacing: .01em; }
.founder-card { max-width: 660px; margin: 64px auto 0; padding: 48px; border-radius: 16px; text-align: center; position: relative; z-index: 2; }
.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; font-style: italic;
  color: var(--ink); line-height: 1.75; margin-bottom: 22px;
  letter-spacing: -.01em;
}
.founder-attr { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink4); }
.closing-section { padding: 120px 0; text-align: center; position: relative; z-index: 2; }
.closing-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px,5vw,66px); font-weight: 600; letter-spacing: -.04em; color: var(--ink); line-height: 1.0; margin-bottom: 16px; }
.closing-s { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--teal2); margin-bottom: 48px; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MODAL
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(250,250,247,.62);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.overlay.open { display: flex; }
.modal { width: 100%; max-width: 450px; padding: 52px 46px; border-radius: 18px; position: relative; }
.modal-x { position: absolute; top: 18px; right: 18px; width: 30px; height: 30px; background: rgba(60,191,207,.08); border: 1px solid rgba(60,191,207,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 12px; color: var(--ink3); transition: background .2s; }
.modal-x:hover { background: rgba(60,191,207,.18); }
.modal-h { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; letter-spacing: -.025em; color: var(--ink); margin-bottom: 8px; }
.modal-s { font-size: 14px; font-weight: 400; color: var(--ink2); margin-bottom: 30px; line-height: 1.65; letter-spacing: .01em; }
.modal-inp { width: 100%; padding: 14px 16px; border-radius: 6px; margin-bottom: 10px; background: rgba(255,255,255,.55); border: 1.5px solid rgba(60,191,207,.20); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; backdrop-filter: blur(6px); }
.modal-inp:focus { border-color: var(--teal2); box-shadow: 0 0 0 3px rgba(60,191,207,.10); }
.modal-inp::placeholder { color: var(--ink4); }
.modal-btn { width: 100%; padding: 13px; background: var(--teal2); color: var(--paper); border: none; border-radius: 6px; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: background .2s, transform .15s; margin-top: 4px; box-shadow: 0 3px 14px rgba(30,155,173,.24); }
.modal-btn:hover { background: var(--teal3); transform: translateY(-1px); }
.modal-body { transition: opacity .3s; }
.modal-body.hide { opacity: 0; pointer-events: none; }
.modal-ok { display: none; text-align: center; padding: 14px 0; }
.modal-ok.show { display: block; }
.ok-icon { font-size: 44px; margin-bottom: 12px; }
.ok-h { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -.02em; }
.ok-s { font-size: 14px; font-weight: 400; color: var(--ink2); line-height: 1.65; letter-spacing: .01em; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media(max-width: 1000px) {
  :root { --max: 100%; }
  .w { padding: 0 40px; }
  .site-nav { padding: 0 40px; }
  .hero-content { max-width: 55%; padding: 0 0 72px 40px; }
  #protein {
    position: absolute;
    width: 38vw; max-width: 400px;
    right: 3vw;
    opacity: 0.85;
  }
  .intro-split { grid-template-columns: 1fr; }
  .intro-l { border-right: none; border-bottom: 1px solid rgba(17,16,9,.07); }
  .agents-grid { grid-template-columns: 1fr; }
  .osmo-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .how-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(17,16,9,.07); }
  .agent-full-card { grid-template-columns: 1fr 1fr; gap: 36px; }
  .afc-right { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .protein-label { display: none; }
}
@media(max-width: 768px) {
  .w { padding: 0 20px; }
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta-desk { display: none; }
  .hbg { display: flex; }

  /* Hero */
  .home-hero { flex-direction: column; align-items: stretch; padding-top: 80px; }
  .hero-content { max-width: 100%; padding: 0 16px 24px; order: 1; }
  .hero-sub { max-width: 100%; margin-bottom: 32px; }
  .hero-number { display: none; }
  #protein {
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 70vw; max-width: 280px;
    margin: 0 auto 24px;
    display: block;
    opacity: 0.9;
    order: 2;
  }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns .btn-p, .hero-btns .btn-g, .hero-btns .btn-teal { width: 100%; justify-content: center; }

  /* Typography overrides â€” headings big, body small for hierarchy */
  .d1 { font-size: 52px !important; line-height: .95 !important; }
  .d2 { font-size: 34px !important; }
  .d3 { font-size: 24px !important; }
  .d4 { font-size: 18px !important; }
  .body-xl { font-size: 16px !important; line-height: 1.75 !important; }
  .body-lg { font-size: 15px !important; line-height: 1.75 !important; }
  .body { font-size: 14px !important; }
  .body-sm { font-size: 12px !important; }
  .hero-sub { font-size: 15px !important; line-height: 1.7 !important; }
  .intro-l .body { font-size: 16px !important; line-height: 1.8 !important; }
  .agent-blurb { font-size: 14px !important; }
  .afc-desc { font-size: 14px !important; }
  .ab-body { font-size: 14px !important; }
  .value-body { font-size: 13px !important; }
  .step-body { font-size: 13px !important; }
  .feat-body { font-size: 13px !important; }
  .principle p { font-size: 13px !important; }
  .exec-query { font-size: 14px !important; }
  .footer-tagline { font-size: 12px !important; }
  .email-h { font-size: clamp(32px, 8vw, 48px); }
  .closing-h { font-size: clamp(34px, 8vw, 48px); }
  .closing-s { font-size: 18px; }
  .ab-h { font-size: clamp(28px, 7vw, 36px); }
  .afc-name-big { font-size: clamp(32px, 8vw, 42px); }
  .afc-left .afc-num { font-size: 52px; }
  .agent-name { font-size: 24px; }
  .agent-card-num { font-size: 44px; }
  .value-num { font-size: 40px; }
  .value-title { font-size: 20px; }
  .step-n { font-size: 42px; }
  .step-title { font-size: 18px; }
  .feat-mark { font-size: 26px; }
  .feat-title { font-size: 17px; }
  .modal-h { font-size: 28px; }
  .ok-h { font-size: 22px; }
  .founder-quote { font-size: 18px; }
  .principle h4 { font-size: 18px; }
  .footer-brand { font-size: 20px; }
  .intro-quote { font-size: 18px !important; }

  /* Section spacing */
  .osmo-hero { padding: 100px 0 60px; }
  .agents-hero { padding: 100px 0 60px; }
  .about-hero { padding: 100px 0 60px; }
  .agents-section { padding: 72px 0; }
  .email-section { padding: 72px 0; }
  .closing-section { padding: 72px 0; }
  .steps-section { padding: 60px 0; }
  .features-section { padding: 60px 0; }
  .models-section { padding: 60px 0; }
  .agents-full { padding: 48px 0; }
  .about-body { padding: 48px 0; }
  .team-section { padding: 0 0 72px; }
  .values-strip { padding: 48px 0; }
  .intro-l { padding: 48px 20px; }
  .intro-r { padding: 48px 20px; }
  .section-header { display: block; margin-bottom: 40px; }
  .section-header div, .section-header p { max-width: 100% !important; }
  .section-header h2 { max-width: 100% !important; }
  .section-header > p { margin-top: 16px; }

  /* All grids â†’ 1 column */
  .intro-split { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: 1fr; }
  .osmo-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .how-card-grid { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
  .how-card-visual { height: clamp(220px, 64vw, 300px); }
  .how-card-copy { padding: 22px 22px 26px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 18px; }
  .team-head { grid-template-columns: 1fr; gap: 16px; align-items: start; margin-bottom: 28px; }
  .team-title { font-size: 32px; }
  .team-copy { font-size: 14px; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(17,16,9,.07); }
  .agent-full-card { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .afc-right { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid .footer-brand-col { grid-column: 1; }
  .principles-grid { grid-template-columns: 1fr; }

  /* Forms */
  .email-form { flex-direction: column; max-width: 320px; margin-left: auto; margin-right: auto; }
  .email-inp { padding: 14px 16px; }
  .email-btn { padding: 14px; }

  /* Cards & blocks */
  .about-block { padding: 28px 20px; }
  .team-card { padding: 14px 14px 20px; }
  .team-name { font-size: 28px; }
  .founder-card { padding: 28px 20px; }
  .modal { padding: 32px 20px; }
  .step-cell { padding: 28px 20px; }
  .feat { padding: 28px 24px; }
  .value-item { padding: 28px 20px; }
  .agent-card { padding: 28px 24px; }
  .principle { padding: 24px 20px; }
  .exec-panel { padding: 20px; }
}
@media(max-width: 480px) {
  .w { padding: 0 16px; }
  .site-nav { padding: 0 16px; }
  .hero-content { padding: 0 16px 20px; }
  #protein { width: 80vw; max-width: 240px; }
  .d1 { font-size: 44px !important; }
  .d2 { font-size: 28px !important; }
  .d3 { font-size: 20px !important; }
  .d4 { font-size: 17px !important; }
  .body-xl { font-size: 15px !important; }
  .body-lg { font-size: 14px !important; }
  .body { font-size: 13px !important; }
  .hero-sub { font-size: 14px !important; }
  .intro-l .body { font-size: 15px !important; }
  .email-form { max-width: 280px; }
  .email-h { font-size: 32px; }
  .closing-h { font-size: 34px; }
  .ab-h { font-size: 28px; }
  .team-title { font-size: 28px; }
  .team-name { font-size: 25px; }
  .afc-name-big { font-size: 30px; }
  .modal-h { font-size: 26px; }
}

/* Mobile layout hardening for inline grids and cards */
@media(max-width: 768px) {
  *, *::before, *::after { box-sizing: border-box; }
  html, body { width: 100%; overflow-x: hidden; }
  img, canvas, svg, video { max-width: 100%; }

  .section-header {
    display: block !important;
    margin-bottom: 40px !important;
  }
  .section-header > div,
  .section-header > p,
  .section-header h2 {
    max-width: 100% !important;
  }
  .section-header > p {
    margin-top: 16px !important;
  }

  .intro-split,
  .agents-grid,
  .osmo-hero-grid,
  .steps-grid,
  .features-grid,
  .values-grid,
  .principles-grid,
  .footer-grid,
  .agent-full-card,
  .w > div[style*="grid-template-columns"],
  section div[style*="grid-template-columns"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  section div[style*="height:200px"],
  section canvas[style*="height:200px"] {
    width: 100% !important;
    height: clamp(150px, 42vw, 200px) !important;
  }

  .value-item,
  .agent-card,
  .feat,
  .principle,
  .about-block,
  .founder-card,
  .exec-panel,
  .lg,
  div[style*="padding:40px"],
  div[style*="padding:22px 26px 26px"] {
    max-width: 100% !important;
  }

  .model-row,
  div[style*="flex-wrap:wrap"] {
    gap: 8px !important;
  }
  .model-chip {
    flex: 1 1 100%;
    min-width: 0;
  }
  .faq-question { font-size: 19px; gap: 16px; }
  .faq-answer { font-size: 14px; }
  .legal-hero { padding: 104px 0 46px; }
  .legal-body { padding: 46px 0 72px; }
  .legal-shell { grid-template-columns: 1fr; gap: 24px; }
  .legal-aside { position: static; padding: 18px; }
  .legal-card { padding: 28px 22px; }
  .legal-card p,
  .legal-card li { font-size: 14px; }
}

@media(max-width: 480px) {
  section { max-width: 100%; }
  .home-hero { padding-top: 78px; padding-bottom: 28px; }
  .ticker-item { padding: 0 24px; }
  .how-card-visual { height: clamp(210px, 70vw, 270px); }
  .how-card-copy { padding-left: 20px; padding-right: 20px; }
  .section-header { gap: 12px !important; }
  section div[style*="margin-bottom:56px"] { margin-bottom: 36px !important; }

  .intro-l,
  .intro-r,
  .value-item,
  .agent-card,
  .feat,
  .principle,
  .about-block,
  .founder-card,
  .exec-panel,
  div[style*="padding:40px"],
  div[style*="padding:22px 26px 26px"] {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

