/* Agiles Social R2.11 — consolidated page system */

:root{
  --brand:#0098DA;
  --brand-deep:#0077AA;
  --brand-accessible:#006D9F;
  --deep:#003B57;
  --ink:#0E1A31;
  --slate:#5B6980;
  --muted:#718099;
  --cloud:#F6F9FC;
  --soft:#F4F9FC;
  --mist:#DDE6EF;
  --warm:#FFF7F2;
  --warm-line:#F6C9B5;
  --orange:#D54408;
  --coral:#F05A28;
  --success:#1AA977;
  --blue-tint:#EEF8FD;
  --white:#FFFFFF;
  --header-height:78px;
  --container:1180px;
  --section-y:96px;
  --radius:24px;
  --radius-sm:16px;
  --shadow-sm:0 12px 32px rgba(15,35,60,.07);
  --shadow:0 24px 64px rgba(15,35,60,.11);
  --ease:cubic-bezier(.2,.75,.25,1);
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-height) + 22px);
}
main section[id],
[id="collaborator-plan"],
[id="aim-plan"]{
  scroll-margin-top:calc(var(--header-height) + 22px);
}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:"Poppins",sans-serif;
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
body.menu-open{
  overflow:hidden;
  touch-action:none;
}
img,svg{display:block;max-width:100%}
button,a{font:inherit}
button{border:0}
a{color:inherit}
.container{
  width:min(var(--container),calc(100% - 48px));
  margin-inline:auto;
}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}
.skip-link{
  position:fixed;
  z-index:3000;
  left:16px;top:12px;
  padding:10px 14px;
  border-radius:10px;
  color:#fff;
  background:var(--deep);
  transform:translateY(-140%);
}
.skip-link:focus{transform:none}
.section{padding-block:var(--section-y)}
.section-soft{background:var(--soft)}
.section-warm{background:var(--warm)}
.section-deep{
  color:#fff;
  background:var(--deep);
}
.eyebrow,
.section-header__eyebrow{
  margin:0 0 12px;
  color:var(--brand-accessible);
  font-size:.73rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.section-header--warm .section-header__eyebrow{color:var(--orange)}
.section-header--dark .section-header__eyebrow{color:#72D7FF}

.section-header{
  --section-title-width:23ch;
  --section-summary-width:62ch;
  width:100%;
  max-width:960px;
  margin:0 0 38px;
  text-align:left;
}
.section-header__title{
  max-width:var(--section-title-width);
  margin:0;
  color:var(--ink);
  font-size:clamp(2rem,3.45vw,3.55rem);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-.034em;
  text-wrap:balance;
}
.section-header__summary{
  max-width:var(--section-summary-width);
  margin:15px 0 0;
  color:var(--slate);
  font-size:clamp(.98rem,1.25vw,1.1rem);
  line-height:1.65;
  letter-spacing:-.004em;
  text-wrap:balance;
}
.section-header--wide{
  --section-title-width:27ch;
  --section-summary-width:64ch;
  max-width:1040px;
}
.section-header--long-summary{
  --section-summary-width:76ch;
}
.section-header--compact-summary{
  --section-summary-width:58ch;
}
.section-header--dark .section-header__title{color:#fff}
.section-header--dark .section-header__summary{color:rgba(255,255,255,.74)}
.section-header--final{margin-bottom:42px}

/* Buttons */
.button{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 20px;
  border:1px solid transparent;
  border-radius:15px;
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
  transition:
    background .18s ease,
    border-color .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}
.button:focus-visible,
.filter-button:focus-visible,
.menu-toggle:focus-visible,
.dialog-close:focus-visible,
.header-login-button:focus-visible,
.nav-mobile-action:focus-visible,
.language-toggle:focus-visible,
.language-option:focus-visible,
.text-action:focus-visible{
  outline:3px solid rgba(0,152,218,.25);
  outline-offset:3px;
}
.button-primary{
  color:#fff;
  background:var(--brand-deep);
  box-shadow:0 12px 28px rgba(0,119,170,.2);
}
.button-primary:hover{background:#006694}
.button-secondary{
  color:var(--brand-accessible);
  border-color:rgba(0,119,170,.25);
  background:#fff;
}
.button-secondary:hover{
  border-color:var(--brand);
  background:var(--blue-tint);
}
.button-light{
  color:var(--deep);
  background:#fff;
}
.button-small{
  min-height:40px;
  padding:9px 15px;
  border-radius:12px;
  font-size:.84rem;
}
.button-full{width:100%}
.button-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.microcopy{
  margin:16px 0 0;
  color:var(--muted);
  font-size:.78rem;
}
.microcopy-light{color:rgba(255,255,255,.67)}

/* Header */
.site-header{
  position:fixed;
  z-index:1000;
  inset:0 0 auto;
  height:var(--header-height);
  border-bottom:1px solid transparent;
  transition:background .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.site-header.is-scrolled{
  border-color:rgba(221,230,239,.9);
  background:rgba(255,255,255,.94);
  box-shadow:0 8px 30px rgba(15,35,60,.06);
  backdrop-filter:blur(18px);
}
.header-inner{
  position:relative;
  width:100%;
  height:100%;
}
.brand{
  position:absolute;
  top:50%;
  left:clamp(22px,2.6vw,52px);
  transform:translateY(-50%);
}
.brand img{
  width:112px;
  height:auto;
}
.site-nav{
  position:absolute;
  top:50%;
  left:50%;
  display:flex;
  align-items:center;
  gap:clamp(13px,1.15vw,22px);
  transform:translate(-50%,-50%);
  white-space:nowrap;
}
.site-nav__link{
  position:relative;
  color:var(--slate);
  font-size:.78rem;
  font-weight:500;
  text-decoration:none;
  white-space:nowrap;
}
.site-nav__link::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-7px;
  height:2px;
  border-radius:999px;
  background:var(--brand);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .18s ease;
}
.site-nav__link:hover::after,
.site-nav__link.is-active::after{
  transform:scaleX(1);
  transform-origin:left;
}
.menu-toggle{
  display:none;
  width:42px;height:42px;
  padding:10px;
  border-radius:12px;
  background:#fff;
}
.menu-toggle span:not(.sr-only){
  display:block;
  width:100%;height:2px;
  margin:4px 0;
  border-radius:999px;
  background:var(--deep);
}


.header-utilities{
  position:absolute;
  top:50%;
  right:clamp(22px,2.6vw,52px);
  display:flex;
  align-items:center;
  gap:14px;
  transform:translateY(-50%);
  white-space:nowrap;
}
.header-login-button,
.nav-mobile-action{
  padding:8px 4px;
  border:0;
  color:var(--slate);
  background:transparent;
  font-size:.78rem;
  font-weight:500;
  cursor:pointer;
}
.header-login-button:hover,
.header-login-button:focus-visible,
.nav-mobile-action:hover,
.nav-mobile-action:focus-visible{
  color:var(--brand-accessible);
}
.header-waitlist-button{
  min-width:136px;
}
.nav-mobile-utilities{display:none}
.language-selector{
  position:relative;
}
.language-toggle{
  min-width:48px;
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:7px;
  padding:8px 3px 7px;
  border:0;
  border-bottom:1px solid rgba(0,119,170,.28);
  color:var(--deep);
  background:transparent;
  font-size:.76rem;
  font-weight:600;
  cursor:pointer;
}
.language-toggle svg{
  width:13px;
  height:13px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:rotate .16s ease;
}
.language-selector.is-open .language-toggle svg{rotate:180deg}
.language-menu{
  position:absolute;
  z-index:1200;
  top:calc(100% + 12px);
  right:0;
  width:286px;
  display:grid;
  gap:8px;
  padding:10px;
  border:1px solid var(--mist);
  border-radius:16px;
  background:#fff;
  box-shadow:0 18px 48px rgba(15,35,60,.18);
}
.language-menu[hidden]{display:none}
.language-option{
  width:100%;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
  padding:12px 14px;
  border:0;
  border-radius:11px;
  color:var(--slate);
  background:transparent;
  text-align:left;
  cursor:pointer;
}
.language-option span{
  min-width:0;
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  align-items:center;
  gap:10px;
}
.language-option b{
  min-width:0;
  color:var(--deep);
}
.language-option small{
  color:var(--muted);
  font-size:.65rem;
  white-space:nowrap;
}
.language-option:hover,
.language-option:focus-visible,
.language-option.is-current{
  color:var(--deep);
  background:var(--blue-tint);
}
.language-option[aria-disabled="true"]{
  opacity:.62;
}

/* Hero */
.hero{
  position:relative;
  min-height:100svh;
  padding:var(--header-height) 0 0;
  overflow:hidden;
  background:#fff;
}
.hero-shell{
  min-height:calc(100svh - var(--header-height));
  display:grid;
  align-content:center;
  padding-block:48px;
}
.hero-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(44px,6vw,82px);
  align-items:center;
}
.hero-copy{
  max-width:none;
  min-width:0;
}
.hero-heading{
  max-width:none;
  margin-bottom:34px;
}
.hero-heading h1{
  max-width:12.8ch;
  margin:0;
  font-size:clamp(3.15rem,4.9vw,4.95rem);
  font-weight:700;
  line-height:1;
  letter-spacing:-.048em;
  text-wrap:balance;
}
.hero-support-line{
  max-width:32ch;
  margin:0;
  color:var(--brand-accessible);
  font-size:clamp(1.12rem,1.75vw,1.45rem);
  font-weight:600;
  line-height:1.35;
  letter-spacing:-.012em;
  text-wrap:balance;
}
.hero-lead{
  max-width:42ch;
  margin:14px 0 0;
  color:var(--slate);
  font-size:clamp(.98rem,1.2vw,1.08rem);
  line-height:1.68;
  letter-spacing:-.004em;
  text-wrap:pretty;
}
.ecosystem-visual{
  min-height:560px;
  display:grid;
  place-items:center;
}
.network-stage{
  position:relative;
  width:min(100%,560px);
  aspect-ratio:1;
}
.network-stage::before,
.network-stage::after{
  content:"";
  position:absolute;
  border:1px solid rgba(0,152,218,.12);
  border-radius:50%;
}
.network-stage::before{inset:7%}
.network-stage::after{inset:24%;border-color:rgba(0,59,87,.08)}
.network-lines{
  position:absolute;
  inset:0;
  width:100%;height:100%;
  opacity:.45;
}
.network-lines line{
  stroke:url(#line-gradient);
  stroke-width:1.3;
  stroke-dasharray:6 12;
  animation:networkDash 48s linear infinite;
}
.network-core{
  position:absolute;
  z-index:3;
  left:50%;top:50%;
  width:106px;height:106px;
  display:grid;
  place-items:center;
  transform:translate(-50%,-50%);
}
.network-core img{
  width:86px;
  opacity:.82;
  filter:none;
}
.core-ring{
  position:absolute;
  inset:-5px;
  border:1px solid rgba(0,119,170,.16);
  border-radius:50%;
}
.core-ring-two{display:none}
.network-node{
  --dx:0px;
  --dy:0px;
  position:absolute;
  z-index:4;
  left:var(--x);
  top:var(--y);
  min-width:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 13px;
  border:1px solid rgba(0,59,87,.11);
  border-radius:999px;
  color:var(--deep);
  background:rgba(255,255,255,.94);
  box-shadow:0 7px 18px rgba(15,35,60,.06);
  font-size:.76rem;
  font-weight:600;
  pointer-events:none;
  transform:translate(calc(-50% + var(--dx)),calc(-50% + var(--dy)));
}

.node-people{--x:50%;--y:24%}
.node-investors{--x:76%;--y:50%}
.node-researchers{--x:50%;--y:76%}
.node-managers{--x:24%;--y:50%}
.node-universities{--x:17%;--y:17%}
.node-industries{--x:83%;--y:17%}
.node-businesses{--x:83%;--y:83%}
.node-startups{--x:17%;--y:83%}

.network-node.orbit-outer{
  border-color:rgba(0,152,218,.16);
  background:rgba(246,252,255,.95);
}
.node-icon{
  width:21px;height:21px;
  color:var(--brand-accessible);
}
.node-icon svg{
  width:100%;height:100%;
  fill:none;stroke:currentColor;
  stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;
}


.problem-card h3,
.ecosystem-pillar-card h3,
.project-card h3,
.final-path-grid h3{
  text-wrap:balance;
}
.problem-card p,
.ecosystem-pillar-card p,
.role-static-card p,
.project-card p,
.final-path-grid p{
  text-wrap:pretty;
}


.problem-card h3,
.ecosystem-pillar-card h3,
.aim-capability-grid strong,
.role-static-card strong,
.project-card h3,
.final-path-grid h3{
  letter-spacing:-.018em;
}

/* Problem */
.problem-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.problem-card{
  min-height:280px;
  padding:30px 28px;
  border:1px solid var(--mist);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.problem-icon{
  width:58px;height:58px;
  display:grid;place-items:center;
  margin-bottom:34px;
  border-radius:18px;
  color:var(--brand-accessible);
  background:var(--blue-tint);
}
.problem-icon svg{
  width:29px;height:29px;
  fill:none;stroke:currentColor;
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}
.problem-card h3{
  margin:0;
  font-size:1.15rem;
  line-height:1.35;
}
.problem-card p{
  margin:14px 0 0;
  color:var(--slate);
  line-height:1.65;
}

/* Ecosystem */
.ecosystem-pillar-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.ecosystem-pillar-card{
  min-height:335px;
  display:flex;
  flex-direction:column;
  padding:29px 28px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:var(--radius);
  background:rgba(255,255,255,.075);
}
.panel-kicker{
  margin:0 0 12px;
  color:rgba(255,255,255,.62);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.13em;
}
.ecosystem-pillar-card h3{
  margin:0;
  color:#fff;
  font-size:1.28rem;
  line-height:1.36;
}
.ecosystem-pillar-card>p:not(.panel-kicker){
  margin:14px 0 0;
  color:rgba(255,255,255,.74);
  font-size:.88rem;
  line-height:1.65;
}
.ecosystem-pillar-tags{
  display:flex;
  flex-wrap:wrap;
  margin-top:auto;
  padding-top:24px;
  color:rgba(255,255,255,.65);
  font-size:.68rem;
  font-weight:600;
}
.ecosystem-pillar-tags span+span::before{
  content:"·";
  margin:0 8px;
  color:rgba(255,255,255,.34);
}

/* AIM */
.aim{position:relative;overflow:hidden}
.aim-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);
  gap:72px;
  align-items:start;
}
.aim-copy .section-header{margin-bottom:0}

.aim-signature{
  margin:26px 0 24px;
  color:#73D5FF;
  font-size:1.15rem;
  font-weight:600;
  line-height:1.35;
}

.aim-copy>.button{margin-top:26px}
.aim-capability-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.aim-capability-grid article{
  min-height:150px;
  padding:22px 21px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,.07);
}
.aim-capability-grid strong{
  color:#fff;
  font-size:1rem;
}
.aim-capability-grid p{
  margin:8px 0 0;
  color:rgba(255,255,255,.7);
  font-size:.8rem;
  line-height:1.55;
}

/* Collaborator */
.collaborator-layout{
  display:block;
}
.collaborator-layout>.section-header{
  margin-bottom:42px;
}
.collaborator-body{
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:start;
}
.collaborator-copy{
  max-width:660px;
}
.collaborator-value-grid{
  display:grid;
  gap:10px;
  margin:26px 0 20px;
}
.collaborator-copy>.button{
  margin-top:0;
}
.collaborator-value-grid article{
  padding:17px 18px;
  border:1px solid var(--mist);
  border-radius:var(--radius-sm);
  background:#fff;
}
.collaborator-value-grid strong{font-size:.9rem}
.collaborator-value-grid p{
  margin:4px 0 0;
  color:var(--slate);
  font-size:.78rem;
  line-height:1.5;
}
.profile-preview-label{
  margin:0 0 8px;
  color:var(--muted);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.landing-social-profile-card{
  overflow:hidden;
  border:1px solid var(--mist);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow);
}
.landing-social-profile-card__cover{
  height:100px;
  background:
    radial-gradient(circle at 86% 20%,rgba(0,152,218,.14),transparent 26%),
    linear-gradient(135deg,#e9f7fd,#f8fcff);
}
.landing-social-profile-card__body{
  position:relative;
  padding:62px 28px 22px;
}
.landing-social-profile-card__avatar-wrap{
  position:absolute;
  top:-50px;left:28px;
  width:100px;height:100px;
  overflow:hidden;
  border:6px solid #fff;
  border-radius:50%;
  background:#dceef8;
  box-shadow:0 12px 28px rgba(15,35,60,.13);
}
.landing-social-profile-card__avatar-image{
  width:100%;height:100%;object-fit:cover;
}
.landing-social-profile-card__identity{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:13px;
}
.landing-social-profile-card__name-row{
  display:flex;align-items:center;gap:9px;
}
.landing-social-profile-card__name{
  margin:0;
  font-size:1.35rem;
}
.landing-social-profile-card__contact-icon{
  width:28px;height:28px;
  display:grid;place-items:center;
  border-radius:9px;
  color:var(--brand-accessible);
  background:var(--blue-tint);
}
.landing-social-profile-card__contact-icon svg{width:16px}
.landing-social-profile-card__owner-badges{
  display:flex;gap:6px;
}
.landing-social-profile-card__owner-badge-fallback{
  width:30px;height:30px;
  display:grid;place-items:center;
  border-radius:9px;
  color:#fff;
  background:var(--brand-deep);
  font-size:.62rem;font-weight:700;
}
.landing-social-profile-card__owner-badge-fallback--alt{background:var(--orange)}
.landing-social-profile-card__meta{
  margin:4px 0;
  color:var(--slate);
  font-size:.82rem;
}
.landing-social-profile-card__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:18px 0;
}
.landing-social-profile-stat{
  padding:13px;
  border:1px solid var(--mist);
  border-radius:14px;
  background:var(--cloud);
  text-align:center;
}
.landing-social-profile-stat strong{
  display:block;
  font-size:1.05rem;
}
.landing-social-profile-stat span{
  color:var(--muted);
  font-size:.68rem;
}
.landing-social-profile-card__footer{
  display:flex;
  justify-content:space-between;
  padding-top:17px;
  border-top:1px solid var(--mist);
  color:var(--muted);
  font-size:.76rem;
}

/* Roles */
.roles-static-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:17px;
}
.role-static-card{
  min-height:175px;
  padding:24px 23px;
  border:1px solid var(--mist);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.role-static-card strong{font-size:1rem}
.role-static-card p{
  margin:10px 0 0;
  color:var(--slate);
  font-size:.82rem;
  line-height:1.58;
}

/* Investor + Projects */
.project-browser{
  overflow:hidden;
  border:1px solid #fed7c2;
  border-radius:28px;
  background:#fff;
  box-shadow:0 26px 65px rgba(194,65,12,.1);
}
.project-toolbar{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:19px 22px;
  border-bottom:1px solid #ffdfcd;
  background:#fffaf7;
}
.project-toolbar>span{
  color:var(--orange);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.project-filters{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.filter-button{
  padding:7px 11px;
  border:1px solid #fed7c2;
  border-radius:999px;
  color:var(--slate);
  background:#fff;
  font-size:.72rem;
  font-weight:600;
  cursor:pointer;
}
.filter-button.is-active{
  color:#fff;
  border-color:var(--orange);
  background:var(--orange);
}
.project-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:stretch;
  gap:22px;
  padding:22px;
}
.project-card{
  position:relative;
  isolation:isolate;
  min-height:470px;
  display:flex;
  flex-direction:column;
  padding:24px;
  overflow:hidden;
  border:1px solid rgba(200,215,231,.9);
  border-radius:24px;
  background:
    radial-gradient(circle at 100% 0,rgba(37,99,235,.08),transparent 15rem),
    linear-gradient(180deg,#fff 0%,#fbfdff 100%);
  box-shadow:0 12px 32px rgba(15,35,60,.07);
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    border-color .28s ease,
    box-shadow .28s ease;
  animation:project-card-enter .52s both;
}
.project-card:nth-child(2){animation-delay:.05s}
.project-card:nth-child(3){animation-delay:.1s}
.project-card:nth-child(4){animation-delay:.15s}
.project-card:nth-child(5){animation-delay:.2s}
.project-card:nth-child(6){animation-delay:.25s}
.project-card::before{
  content:"";
  position:absolute;
  z-index:-1;
  top:-40%;
  left:-62%;
  width:46%;
  height:185%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.78),transparent);
  transform:rotate(18deg);
  transition:left .7s ease;
}
.project-card:hover,
.project-card:focus-within{
  transform:translateY(-7px);
  border-color:rgba(37,99,235,.34);
  box-shadow:0 24px 54px rgba(29,78,216,.13);
}
.project-card:hover::before,
.project-card:focus-within::before{
  left:122%;
}
.project-card-accent{
  position:absolute;
  top:0;
  left:24px;
  right:24px;
  height:3px;
  border-radius:0 0 999px 999px;
  background:linear-gradient(90deg,var(--brand),#38bdf8,#f4b942);
  opacity:.88;
}
.project-card-top{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:5px 0 18px;
  padding-right:92px;
}
.project-status,
.project-priority{
  max-width:100%;
  min-height:30px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 10px;
  overflow:hidden;
  border:1px solid transparent;
  border-radius:999px;
  font-size:.7rem;
  line-height:1;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.project-status{
  color:#1e40af;
  border-color:#bfdbfe;
  background:#eff6ff;
}
.project-priority{
  color:#9a3412;
  border-color:#fed7aa;
  background:#fff7ed;
}
.project-chip-title{
  opacity:.68;
  font-weight:750;
}
.project-chip-value{
  overflow:hidden;
  font-weight:900;
  text-overflow:ellipsis;
}
.project-info{
  position:absolute;
  z-index:4;
  top:18px;
  right:20px;
  min-height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:6px 10px 6px 8px;
  border:1px solid #bfdbfe;
  border-radius:999px;
  color:#1d4ed8;
  background:rgba(239,246,255,.94);
  font:inherit;
  font-size:.68rem;
  font-weight:900;
  line-height:1;
  letter-spacing:.035em;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(37,99,235,.09);
  backdrop-filter:blur(8px);
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    color .2s ease,
    box-shadow .2s ease;
}
.project-info:hover,
.project-info:focus-visible{
  transform:translateY(-2px);
  border-color:#60a5fa;
  color:#1e3a8a;
  background:#dbeafe;
  box-shadow:0 12px 24px rgba(37,99,235,.16);
}
.project-info:focus-visible,
.project-interest:focus-visible{
  outline:3px solid rgba(37,99,235,.25);
  outline-offset:3px;
}
.project-info-icon{
  width:19px;
  height:19px;
  flex:0 0 19px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
}
.project-info-icon svg{
  width:12px;
  height:12px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
}
.project-card-header{
  display:block;
  margin:0;
}
.project-card h3{
  margin:0;
  color:var(--ink);
  font-size:clamp(1.08rem,1.8vw,1.24rem);
  font-weight:900;
  line-height:1.32;
  letter-spacing:-.018em;
  overflow-wrap:anywhere;
}
.project-card-description{
  display:-webkit-box;
  min-height:67px;
  margin:10px 0 20px;
  overflow:hidden;
  color:var(--slate);
  font-size:.86rem;
  line-height:1.56;
  white-space:normal;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}
.project-dates{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) 32px minmax(0,1fr);
  align-items:center;
  gap:8px;
  margin:0 0 16px;
  padding:13px 14px;
  border:1px solid var(--mist);
  border-radius:17px;
  background:rgba(248,250,252,.92);
}
.project-date{
  min-width:0;
  display:flex;
  align-items:center;
  gap:9px;
}
.project-date-start{
  justify-content:flex-start;
  text-align:left;
}
.project-date-end{
  justify-content:flex-end;
  text-align:right;
}
.project-date-icon{
  width:29px;
  height:29px;
  flex:0 0 29px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:#1d4ed8;
  background:#eaf2ff;
}
.project-date-icon svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.75;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.project-date-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.project-date-copy small{
  overflow:hidden;
  color:var(--muted);
  font-size:.64rem;
  font-weight:700;
  line-height:1.25;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.project-date-copy strong{
  overflow:hidden;
  color:var(--ink);
  font-size:.78rem;
  font-weight:900;
  line-height:1.3;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.project-date-line{
  position:relative;
  height:1px;
  background:linear-gradient(90deg,#bfdbfe,#fdba74);
}
.project-date-line::before,
.project-date-line::after{
  content:"";
  position:absolute;
  top:50%;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--brand);
  transform:translateY(-50%);
}
.project-date-line::before{left:0}
.project-date-line::after{
  right:0;
  background:#f4b942;
}
.project-metrics{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:0 0 14px;
}
.project-metric{
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 12px;
  border:1px solid var(--mist);
  border-radius:15px;
  background:#fff;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}
.project-metric:hover{
  transform:translateY(-2px);
  border-color:#bfdbfe;
  background:#eff6ff;
}
.project-metric-icon{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:#1d4ed8;
  background:#eff6ff;
}
.project-metric:nth-child(2) .project-metric-icon{
  color:#c2410c;
  background:#fff7ed;
}
.project-metric-icon svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.75;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.project-metric-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:1px;
}
.project-metric-copy strong{
  color:var(--ink);
  font-size:1.05rem;
  font-weight:900;
  line-height:1.05;
}
.project-metric-copy small{
  overflow:hidden;
  color:var(--muted);
  font-size:.64rem;
  font-weight:700;
  line-height:1.25;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.project-code{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:auto 0 0;
  padding:10px 2px 0;
  border-top:1px dashed #cbd5e1;
}
.project-code span{
  color:var(--muted);
  font-size:.68rem;
  font-weight:700;
}
.project-code strong{
  overflow:hidden;
  color:var(--ink);
  font-size:.72rem;
  font-weight:850;
  text-align:right;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.project-card-actions{
  margin-top:15px;
}
.project-interest{
  position:relative;
  width:100%;
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px 10px 18px;
  overflow:hidden;
  border:1px solid #1d4ed8;
  border-radius:15px;
  color:#fff;
  background:linear-gradient(135deg,#1d4ed8,#2563eb);
  font:inherit;
  font-size:.87rem;
  font-weight:900;
  letter-spacing:.005em;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(37,99,235,.2);
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    opacity .2s ease;
}
.project-interest::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg,transparent 28%,rgba(255,255,255,.2) 46%,transparent 64%);
  transform:translateX(-120%);
  transition:transform .65s ease;
}
.project-interest:hover,
.project-interest:focus-visible{
  transform:translateY(-2px);
  border-color:#1e3a8a;
  background:linear-gradient(135deg,#1e40af,#1d4ed8);
  box-shadow:0 16px 30px rgba(29,78,216,.28);
}
.project-interest:hover::before,
.project-interest:focus-visible::before{
  transform:translateX(120%);
}
.project-interest>span{
  position:relative;
  z-index:1;
}
.project-interest-icon{
  width:30px;
  height:30px;
  flex:0 0 30px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(255,255,255,.16);
  transition:
    transform .2s ease,
    background .2s ease;
}
.project-interest-icon svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.project-interest:hover .project-interest-icon{
  transform:translateX(2px);
  background:rgba(255,255,255,.24);
}
.project-interest.is-celebrating{
  transform:scale(.98);
  animation:project-interest-celebrate .55s ease both;
}
.project-interest:disabled{
  opacity:.78;
  cursor:wait;
}
.project-confetti{
  position:fixed;
  z-index:2147483646;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
}
@keyframes project-card-enter{
  from{
    opacity:0;
    transform:translateY(18px) scale(.985);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}
@keyframes project-interest-celebrate{
  0%{transform:translateY(0) scale(1)}
  45%{
    transform:translateY(-2px) scale(1.035);
    box-shadow:
      0 0 0 10px rgba(56,189,248,.16),
      0 18px 38px rgba(37,99,235,.28);
  }
  100%{transform:translateY(0) scale(1)}
}
.trust-line{
  display:flex;
  align-items:center;
  gap:9px;
  margin:0;
  padding:14px 22px 20px;
  color:var(--muted);
  font-size:.74rem;
}
.trust-line>span{
  width:19px;
  height:19px;
  flex:0 0 19px;
  display:grid;
  place-items:center;
  border:1px solid #fdba94;
  border-radius:50%;
  color:var(--orange);
  font-weight:700;
}
.dialog-description-only{
  position:relative;
  padding:52px 44px 44px;
  background:
    radial-gradient(circle at 100% 0,rgba(37,99,235,.09),transparent 18rem),
    #fff;
}
.dialog-description-only>p{
  margin:0;
  color:var(--ink);
  font-size:clamp(1rem,1.6vw,1.13rem);
  line-height:1.78;
  white-space:pre-line;
  overflow-wrap:anywhere;
}

@media(max-width:560px){
  .project-dates{
    grid-template-columns:1fr;
    gap:12px;
  }
  .project-date-line{
    width:100%;
  }
  .project-date-end{
    justify-content:flex-start;
    text-align:left;
  }
  .project-date-end .project-date-copy{order:2}
  .project-date-end .project-date-icon{order:1}
  .project-metrics{
    grid-template-columns:1fr;
  }
  .dialog-description-only{
    padding:48px 24px 30px;
  }
}

/* Pricing */
.pricing-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:stretch;
  gap:22px;
}
.pricing-card{
  position:relative;
  min-height:0;
  display:flex;
  flex-direction:column;
  padding:22px 24px 20px;
  border:1px solid var(--mist);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.pricing-featured{
  border-color:rgba(0,152,218,.32);
  background:linear-gradient(180deg,#fff,#f7fcff);
}
.popular-badge{
  position:absolute;
  top:14px;right:14px;
  padding:5px 8px;
  border-radius:999px;
  color:var(--brand-accessible);
  background:var(--blue-tint);
  font-size:.58rem;
  font-weight:700;
  text-transform:uppercase;
}
.pricing-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}
.pricing-card-head span{font-weight:700}
.pricing-card-head strong{
  color:var(--muted);
  font-size:.7rem;
}
.price{
  min-height:44px;
  display:flex;
  align-items:baseline;
  gap:4px;
}
.price b{
  font-size:2.45rem;
  line-height:1;
}
.price span,.price small{
  color:var(--muted);
  font-size:.72rem;
}
.pricing-card>p{
  margin:7px 0 0;
  color:var(--slate);
  font-size:.82rem;
  line-height:1.48;
}
.feature-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:6px 18px;
  margin:13px 0 15px;
  padding:0;
  list-style:none;
}
.feature-list li{
  position:relative;
  padding-left:19px;
  color:var(--slate);
  font-size:.76rem;
  line-height:1.4;
}
.feature-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--success);
  font-weight:700;
}
.pricing-card>.button{
  min-height:42px;
  margin-top:0;
  padding:9px 16px;
  border-radius:13px;
  font-size:.84rem;
}
.aim-plan-options{
  margin-top:28px;
}
.aim-plan-options__heading{
  margin-bottom:16px;
}
.aim-plan-options__heading .section-header__eyebrow{
  margin-bottom:7px;
}
.aim-plan-options__heading h3{
  margin:0;
  color:var(--ink);
  font-size:clamp(1.25rem,2vw,1.65rem);
  line-height:1.25;
  letter-spacing:-.025em;
}
.aim-plan-options__grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  align-items:start;
  gap:12px;
}
.aim-plan-accordion{
  min-width:0;
  overflow:hidden;
  border:1px solid var(--brand-deep);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 26px rgba(15,35,60,.07);
}
.aim-plan-accordion--dedicated{
  border-color:var(--brand-accessible);
}
.aim-plan-accordion summary{
  position:relative;
  min-height:58px;
  display:flex;
  align-items:center;
  padding:15px 48px 15px 17px;
  color:#fff;
  background:var(--brand-deep);
  font-size:1rem;
  font-weight:700;
  line-height:1.3;
  cursor:pointer;
  list-style:none;
  transition:background .18s ease;
}
.aim-plan-accordion summary::-webkit-details-marker{
  display:none;
}
.aim-plan-accordion summary::after{
  content:"+";
  position:absolute;
  top:50%;
  right:17px;
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.42);
  border-radius:50%;
  color:#fff;
  font-size:1.05rem;
  font-weight:500;
  line-height:1;
  transform:translateY(-50%);
}
.aim-plan-accordion summary:hover{
  background:#006694;
}
.aim-plan-accordion summary:focus-visible{
  outline:3px solid rgba(0,152,218,.3);
  outline-offset:3px;
}
.aim-plan-accordion[open] summary::after{
  content:"−";
}
.aim-plan-accordion__content{
  padding:4px 16px 16px;
  background:#fff;
}
.aim-plan-accordion dl{
  display:grid;
  gap:13px;
  margin:0;
}
.aim-plan-accordion dl div{
  padding-top:12px;
  border-top:1px solid var(--mist);
}
.aim-plan-accordion dt{
  margin:0 0 4px;
  color:var(--brand-accessible);
  font-size:.6rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.aim-plan-accordion dd{
  margin:0;
  color:var(--slate);
  font-size:.76rem;
  line-height:1.45;
}
@media(max-width:1100px){
  .aim-plan-options__grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:800px){
  .aim-plan-options__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .pricing-card{padding:20px 18px}
  .feature-list{grid-template-columns:1fr;gap:6px}
}
@media(max-width:520px){
  .aim-plan-options__grid{grid-template-columns:1fr}
}

/* Final — Your Next Move */
.final-cta{
  position:relative;
  min-height:720px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:radial-gradient(circle at 50% 50%,#f0faff 0,#fff 56%,#f8fafc 100%);
}
.final-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:890px;
  text-align:center;
}
.final-cta h2{
  max-width:850px;
  margin:0 auto;
  color:var(--ink);
  font-size:clamp(2rem,3.45vw,3.55rem);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-.034em;
  text-wrap:balance;
}
.final-lead{
  max-width:650px;
  min-height:60px;
  margin:20px auto 25px;
  color:var(--slate);
  font-size:1.08rem;
  line-height:1.65;
}
.identity-switch{
  display:inline-flex;
  gap:7px;
  margin-bottom:24px;
  padding:6px;
  border:1px solid var(--mist);
  border-radius:999px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.identity-button{
  padding:9px 16px;
  border:0;
  border-radius:999px;
  color:var(--slate);
  background:transparent;
  font-size:.8rem;
  font-weight:600;
  cursor:pointer;
}
.identity-button:hover{color:var(--deep)}
.identity-button:focus-visible{
  outline:3px solid rgba(0,152,218,.25);
  outline-offset:3px;
}
.identity-button.is-active{
  color:#fff;
  background:var(--deep);
}
.final-waitlist-button{min-width:190px}
.final-brandline{
  margin:25px 0 0;
  color:var(--deep);
  font-weight:600;
}
.final-orbit{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  border:1px solid rgba(0,152,218,.13);
  border-radius:50%;
  pointer-events:none;
}
.final-orbit-one{width:720px;height:720px}
.final-orbit-two{
  width:1020px;
  height:1020px;
  border-style:dashed;
}
@media(max-width:700px){
  .final-cta{min-height:620px}
  .identity-switch{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    border-radius:18px;
  }
  .identity-button{padding-inline:6px}
  .final-orbit-one{width:520px;height:520px}
  .final-orbit-two{width:760px;height:760px}
}

/* Footer */
.site-footer{
  padding:72px 0 24px;
  color:#fff;
  background:#062E43;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr repeat(3,1fr);
  gap:44px;
}
.footer-brand img{
  width:112px;
  height:auto;
  filter:none;
  opacity:1;
}
.footer-brand p{
  max-width:380px;
  color:rgba(255,255,255,.66);
}
.footer-brand span{color:#72D7FF;font-weight:600}
.footer-column h3{margin:0 0 15px;font-size:.84rem}
.footer-column a{
  display:block;
  margin:9px 0;
  color:rgba(255,255,255,.65);
  font-size:.78rem;
  text-decoration:none;
}
.footer-column a:hover{color:#fff}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:52px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.5);
  font-size:.7rem;
}

/* Dialog */
.project-dialog{
  width:min(760px,calc(100% - 28px));
  max-height:min(880px,calc(100svh - 28px));
  padding:0;
  overflow:auto;
  border:0;
  border-radius:25px;
  background:#fff;
  box-shadow:0 32px 90px rgba(15,23,42,.28);
}
.project-dialog::backdrop{
  background:rgba(3,24,36,.68);
  backdrop-filter:blur(5px);
}
.project-dialog-card{position:relative}
.dialog-close{
  position:absolute;
  z-index:3;
  top:19px;right:19px;
  width:43px;height:43px;
  display:grid;place-items:center;
  border:1px solid var(--mist);
  border-radius:50%;
  color:var(--ink);
  background:#fff;
  box-shadow:0 8px 18px rgba(15,23,42,.08);
  cursor:pointer;
}
.project-dialog-card__header{
  padding:35px 34px 29px;
  border-bottom:1px solid var(--mist);
  background:linear-gradient(180deg,#fff,#fffaf7);
}
.project-dialog-card__header h2{
  max-width:650px;
  margin:8px 0 12px;
  font-size:clamp(1.8rem,4vw,2.75rem);
  line-height:1.1;
  letter-spacing:-.04em;
}
.project-dialog-card__header>p:last-child{
  max-width:650px;
  margin:0;
  color:var(--slate);
  line-height:1.62;
}
.project-dialog-card__body{padding:28px 34px 33px}
.project-dialog-facts{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:11px;
  margin:0 0 28px;
}
.project-dialog-facts div{
  padding:15px 16px;
  border:1px solid var(--mist);
  border-radius:15px;
  background:var(--cloud);
}
.project-dialog-facts dt{
  color:var(--muted);
  font-size:.68rem;
}
.project-dialog-facts dd{
  margin:5px 0 0;
  font-weight:700;
}
.project-dialog-card__body h3{margin:0 0 12px}
.project-dialog-card__body ul{
  margin:0;
  padding-left:22px;
  color:var(--slate);
}
.project-dialog-card__body li+li{margin-top:7px}
.project-dialog-card__cta{margin-top:27px}
.project-dialog-card__trust{margin-top:20px;padding:0}


.project-info-dialog{
  position:relative;
  background:#fff;
}
.project-info-dialog__header{
  padding:34px 74px 18px 34px;
}
.project-info-dialog__header h2{
  max-width:650px;
  margin:8px 0 0;
  color:var(--ink);
  font-size:clamp(1.65rem,3.5vw,2.35rem);
  line-height:1.12;
  letter-spacing:-.035em;
}
.project-info-dialog__body{
  padding:0 34px 36px;
}
.project-info-dialog__body p{
  max-width:680px;
  margin:0;
  color:var(--slate);
  font-size:1rem;
  line-height:1.78;
}


body.dialog-open{overflow:hidden}

.waitlist-dialog .site-dialog-eyebrow{
  margin-top:2px;
}
.waitlist-dialog .site-dialog-lead{
  max-width:48ch;
}
.site-dialog{
  width:min(600px,calc(100% - 28px));
  max-height:calc(100svh - 28px);
  padding:0;
  overflow:auto;
  border:0;
  border-radius:26px;
  background:#fff;
  box-shadow:0 32px 90px rgba(6,30,44,.3);
}
.site-dialog::backdrop{
  background:rgba(3,30,43,.68);
  backdrop-filter:blur(8px);
}
.site-dialog-shell{
  position:relative;
  padding:34px;
  background:#fff;
}
.site-dialog-close{
  top:20px;
  right:20px;
}
.site-dialog-eyebrow{
  margin:0 0 12px;
  color:var(--brand-accessible);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.site-dialog h2{
  max-width:15ch;
  margin:0;
  color:var(--deep);
  font-size:clamp(2rem,5vw,3rem);
  line-height:1.05;
  letter-spacing:-.04em;
  text-wrap:balance;
}
.site-dialog-lead{
  max-width:50ch;
  margin:16px 0 0;
  color:var(--slate);
  line-height:1.65;
}
.site-dialog-footnote{
  margin:13px 0 0;
  color:var(--muted);
  font-size:.7rem;
  text-align:center;
}
.waitlist-callout{
  margin:24px 0 20px;
  padding:17px 18px;
  border:1px solid rgba(0,152,218,.2);
  border-radius:17px;
  background:#f3fbff;
}
.waitlist-callout p,
.waitlist-context{
  margin:0;
  color:var(--slate);
  line-height:1.58;
}
.waitlist-context{margin-bottom:24px;font-size:.88rem}

.auth-prototype-note{
  margin:12px 0 0;
  color:var(--muted);
  font-size:.72rem;
  line-height:1.5;
}

.auth-form{
  display:grid;
  gap:15px;
  margin-top:26px;
}
.form-field{
  display:grid;
  gap:7px;
  color:var(--deep);
  font-size:.76rem;
  font-weight:600;
}
.form-field input{
  width:100%;
  min-height:50px;
  padding:12px 14px;
  border:1px solid var(--mist);
  border-radius:13px;
  color:var(--ink);
  background:#fff;
  font:inherit;
  outline:none;
}
.form-field input:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(0,152,218,.12);
}
.form-status{
  min-height:20px;
  margin:0;
  color:var(--muted);
  font-size:.72rem;
  line-height:1.45;
}
.form-status[data-state="notice"]{color:var(--brand-accessible)}
.form-status[data-state="error"]{color:#b23a24}
.text-action{
  justify-self:center;
  padding:5px;
  border:0;
  color:var(--brand-accessible);
  background:transparent;
  font-size:.76rem;
  font-weight:600;
  cursor:pointer;
}
.auth-expiry{
  margin:0;
  color:var(--muted);
  font-size:.7rem;
}
.auth-inline-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

/* Reveal */
.reveal[data-delay="40"]{--delay:40ms}
.reveal[data-delay="50"]{--delay:50ms}
.reveal[data-delay="70"]{--delay:70ms}
.reveal[data-delay="80"]{--delay:80ms}
.reveal[data-delay="100"]{--delay:100ms}
.reveal[data-delay="140"]{--delay:140ms}
.reveal[data-delay="160"]{--delay:160ms}
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:
    opacity .62s var(--ease) var(--delay,0ms),
    transform .62s var(--ease) var(--delay,0ms);
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* Responsive */
@media(max-width:1180px){
  :root{--header-height:70px}
    .hero-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:40px;
  }
  .ecosystem-visual{min-height:480px}
  .aim-grid{
    grid-template-columns:1fr;
    gap:44px;
  }
  .project-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:900px){
  :root{--section-y:80px}
  .hero-grid{
    grid-template-columns:1fr;
    gap:26px;
  }
  .hero-copy{
    max-width:700px;
  }
  .ecosystem-visual{
    min-height:480px;
  }
  .profile-preview{
    justify-self:start;
  }
  .section-header{margin-bottom:34px}
  .problem-grid,
  .ecosystem-pillar-grid,
  .roles-static-grid,
  .final-path-grid{
    grid-template-columns:1fr;
  }
  .problem-card,.role-static-card,.ecosystem-pillar-card,.final-path-grid article{
    min-height:0;
  }
  .project-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr}
  .pricing-card{min-height:0}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr}
  .footer-column:last-child{display:none}
}
@media(max-width:700px){
  .aim-signature{
    margin:21px 0 20px;
    font-size:1.03rem;
  }
  :root{--section-y:64px}
  .container{width:min(100% - 30px,var(--container))}
  .hero-shell{
    min-height:auto;
    padding-block:48px;
  }
  .hero-heading{
    margin-bottom:26px;
  }
  .hero-heading h1{
    max-width:13ch;
    font-size:clamp(2.75rem,12vw,4.35rem);
  }
  .ecosystem-visual{min-height:410px}
  .network-node{
    min-width:96px;
    padding:8px 10px;
    font-size:.65rem;
  }
  .node-icon{width:18px;height:18px}
  .network-core{width:84px;height:84px}
  .network-core img{width:70px}
  .problem-card{padding:25px 22px}
  .aim-capability-grid{grid-template-columns:1fr}
  .landing-social-profile-card__body{padding:58px 21px 20px}
  .landing-social-profile-card__avatar-wrap{
    top:-46px;
    left:20px;
    width:92px;
    height:92px;
  }
  .project-toolbar{
    display:block;
    padding:16px;
  }
  .project-filters{
    width:100%;
    margin-top:13px;
    padding-bottom:3px;
    overflow-x:auto;
    scrollbar-width:none;
  }
  .project-filters::-webkit-scrollbar{display:none}
  .project-grid{padding:15px}
  .project-card{
    min-height:0;
    padding:20px;
  }
  .project-card__footer{
    align-items:stretch;
    flex-direction:column;
    font-size:.64rem;
  }
  .project-details-button{width:100%}
  .pricing-card{padding:20px 18px}
  .footer-grid{grid-template-columns:1fr}
  .footer-column{display:none}
  .footer-bottom{
    display:block;
  }
  .footer-bottom span{display:block;margin-top:6px}
  .project-dialog-card__header,
  .project-dialog-card__body,
  .project-info-dialog__header,
  .project-info-dialog__body{
    padding-left:21px;
    padding-right:21px;
  }
  .project-dialog-facts{grid-template-columns:1fr}
  .project-dialog-card__cta{
    width:100%;
    text-align:center;
  }
}
@media(max-width:430px){
  .ecosystem-visual{min-height:365px}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.001ms;
    animation-iteration-count:1;
    transition-duration:.001ms;
  }
}
@keyframes networkDash{
  to{stroke-dashoffset:-48}
}


/* R2.11.3 integrity repairs */
.section-header__eyebrow--warm{
  color:var(--orange);
}
.profile-preview{
  width:min(100%,390px);
  justify-self:start;
  margin-top:8px;
}
.landing-social-card{
  width:100%;
}
.landing-social-profile-card__owner-badge{
  display:inline-grid;
  place-items:center;
}
.pricing-featured .pricing-card-head{
  min-height:28px;
  padding-right:145px;
}
.footer-placeholder{
  display:block;
  margin:9px 0;
  color:rgba(255,255,255,.42);
  font-size:.78rem;
  cursor:default;
}
@media(max-width:900px){
  .collaborator-body{
    grid-template-columns:1fr;
    gap:34px;
  }
  .profile-preview{
    justify-self:center;
    margin-top:0;
  }
}
@media(max-width:430px){
  .network-stage{
    width:100%;
    max-width:100%;
    transform:none;
  }
  .network-node{
    min-width:88px;
    padding:7px 9px;
    font-size:.59rem;
  }
  .node-icon{
    width:16px;
    height:16px;
  }
  .network-core{
    width:72px;
    height:72px;
  }
  .network-core img{
    width:60px;
    opacity:.78;
    filter:none;
  }
  .pricing-featured .pricing-card-head{
    padding-right:126px;
  }
}
@media(max-width:340px){
  .network-node{
    min-width:80px;
    padding-inline:7px;
    font-size:.55rem;
  }
  .node-icon{
    width:14px;
    height:14px;
  }
}


@media(max-width:700px){
  .section-header__title{
    max-width:22ch;
    font-size:clamp(2rem,9.6vw,3rem);
    line-height:1.08;
    letter-spacing:-.03em;
  }
  .section-header__summary{
    max-width:100%;
    font-size:.98rem;
    text-wrap:pretty;
  }
  .section-header--long-summary,
  .section-header--compact-summary{
    --section-summary-width:100%;
  }
  .hero-support-line{
    max-width:30ch;
  }
  .hero-lead{
    max-width:42ch;
  }
}


@media(max-width:1380px){
  :root{--header-height:70px}
  .brand{left:22px}
  .brand img{width:104px}
  .header-utilities--desktop{display:none}
  .menu-toggle{
    position:absolute;
    top:50%;
    right:18px;
    display:block;
    transform:translateY(-50%);
  }
  .site-nav{
    position:fixed;
    inset:var(--header-height) 0 0;
    width:100%;
    height:calc(100dvh - var(--header-height));
    max-height:none;
    display:grid;
    grid-auto-rows:min-content;
    align-content:start;
    align-items:stretch;
    gap:0;
    padding:clamp(24px,5vw,48px) clamp(24px,8vw,72px) 32px;
    overflow-y:auto;
    overscroll-behavior:contain;
    border:0;
    border-radius:0;
    background:#fff;
    box-shadow:none;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-8px);
    transition:
      opacity .18s ease,
      visibility 0s linear .18s,
      transform .18s ease;
    -webkit-overflow-scrolling:touch;
  }
  .site-nav.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:none;
    transition-delay:0s;
  }
  .site-nav__link{
    padding:15px 8px;
    border-bottom:1px solid var(--mist);
    font-size:clamp(.98rem,2.3vw,1.12rem);
  }
  .site-nav__link:last-of-type{
    border-bottom:0;
    padding-bottom:0;
  }
  .site-nav__link::after{display:none}
  .nav-mobile-utilities{
    display:grid;
    gap:14px;
    margin-top:28px;
    padding-top:24px;
    padding-bottom:max(8px,env(safe-area-inset-bottom));
    border-top:1px solid var(--mist);
  }
  .nav-mobile-action{
    justify-self:start;
    padding:8px;
    font-size:.94rem;
  }
  .nav-mobile-utilities .language-selector{width:100%}
  .nav-mobile-utilities .language-toggle{
    width:100%;
    min-height:44px;
    padding:10px 8px;
  }
  .nav-mobile-utilities .language-menu{
    position:static;
    width:100%;
    margin-top:8px;
    box-shadow:none;
  }
}
@media(max-width:700px){
  .site-dialog-shell{padding:27px 22px 24px}
  .site-dialog-close{top:15px;right:15px}
  .auth-inline-actions{align-items:stretch;flex-direction:column;gap:4px}
}


@media(max-width:1380px){
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2){
    rotate:45deg;
    translate:0 6px;
  }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3){
    opacity:0;
  }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(4){
    rotate:-45deg;
    translate:0 -6px;
  }
  .menu-toggle span:not(.sr-only){
    transition:rotate .16s ease,translate .16s ease,opacity .16s ease;
  }
}


@media(max-width:700px){
  .aim-grid{
    gap:32px;
  }
  .aim-capability-grid{
    gap:10px;
  }
  .aim-capability-grid article{
    min-height:0;
    padding:17px 18px;
    border-radius:14px;
  }
  .aim-capability-grid strong{
    font-size:.96rem;
  }
  .aim-capability-grid p{
    margin-top:6px;
    font-size:.76rem;
    line-height:1.48;
  }
}

/* R2.12.6 — illustrative project actions */
.project-info{
  min-width:62px;
  gap:0;
  padding:8px 12px;
  text-align:center;
}
.project-info-icon{display:none}
.project-interest{
  border-color:#213349;
  background:#213349;
  box-shadow:0 12px 24px rgba(33,51,73,.22);
  cursor:default;
  pointer-events:none;
  user-select:none;
}
.project-interest::before{display:none}
.project-interest:hover,
.project-interest:focus-visible{
  transform:none;
  border-color:#213349;
  background:#213349;
  box-shadow:0 12px 24px rgba(33,51,73,.22);
}
.project-interest:hover .project-interest-icon{
  transform:none;
  background:rgba(255,255,255,.16);
}

/* R2.12.7 — mobile viewport containment */
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}
main,
.site-header,
.site-footer,
.section,
.container,
.header-inner{
  min-width:0;
  max-width:100%;
}
main{overflow-x:hidden}
@supports (overflow:clip){
  html,
  body,
  main{overflow-x:clip}
}
.problem-grid,
.ecosystem-pillar-grid,
.aim-grid,
.collaborator-body,
.roles-contribution-layout,
.project-grid,
.pricing-grid,
.aim-plan-options__grid,
.footer-grid{
  min-width:0;
}
.problem-card,
.ecosystem-pillar-card,
.aim-copy,
.aim-capabilities,
.collaborator-copy,
.profile-preview,
.roles-contribution-cards,
.contribution-orbit-shell,
.project-card,
.pricing-card,
.aim-plan-accordion{
  min-width:0;
  max-width:100%;
}
.section-header__title,
.section-header__summary,
.problem-card,
.ecosystem-pillar-card,
.project-card,
.pricing-card,
.site-dialog,
.project-dialog{
  overflow-wrap:anywhere;
}
@media(max-width:1380px){
  .site-nav{
    max-width:100vw;
    overflow-x:hidden;
  }
}

/* R2.12.8 — Wait List modal fits the mobile viewport without scrolling */
@media(max-width:700px){
  .waitlist-dialog{
    width:min(600px,calc(100% - 20px));
    max-width:calc(100vw - 20px);
    max-height:calc(100svh - 20px);
    margin:auto;
    overflow:hidden;
    border-radius:20px;
  }
  @supports(height:100dvh){
    .waitlist-dialog{
      max-height:calc(100dvh - 20px);
    }
  }
  .waitlist-dialog .waitlist-dialog__shell{
    padding:18px 17px 15px;
  }
  .waitlist-dialog .site-dialog-close{
    top:10px;
    right:10px;
    width:34px;
    height:34px;
  }
  .waitlist-dialog .site-dialog-eyebrow{
    margin:0 40px 5px 0;
    font-size:.62rem;
    line-height:1.2;
  }
  .waitlist-dialog h2{
    max-width:none;
    margin-right:34px;
    font-size:clamp(1.42rem,6.6vw,1.9rem);
    line-height:1.04;
  }
  .waitlist-dialog .site-dialog-lead{
    max-width:none;
    margin-top:8px;
    font-size:.79rem;
    line-height:1.4;
  }
  .waitlist-dialog .waitlist-callout{
    margin:11px 0 9px;
    padding:10px 11px;
    border-radius:13px;
  }
  .waitlist-dialog .waitlist-callout p,
  .waitlist-dialog .waitlist-context{
    font-size:.76rem;
    line-height:1.38;
  }
  .waitlist-dialog .waitlist-context{
    margin-bottom:11px;
  }
  .waitlist-dialog .button{
    min-height:42px;
    padding:9px 14px;
    border-radius:12px;
    font-size:.82rem;
  }
  .waitlist-dialog .site-dialog-footnote{
    margin-top:8px;
    font-size:.64rem;
    line-height:1.3;
  }
}

@media(max-width:700px) and (max-height:700px){
  .waitlist-dialog .waitlist-dialog__shell{
    padding:15px 15px 12px;
  }
  .waitlist-dialog .site-dialog-close{
    top:8px;
    right:8px;
    width:32px;
    height:32px;
  }
  .waitlist-dialog .site-dialog-eyebrow{
    margin-right:36px;
    margin-bottom:4px;
  }
  .waitlist-dialog h2{
    margin-right:32px;
    font-size:clamp(1.32rem,6vw,1.7rem);
  }
  .waitlist-dialog .site-dialog-lead{
    margin-top:7px;
    font-size:.74rem;
    line-height:1.34;
  }
  .waitlist-dialog .waitlist-callout{
    margin:9px 0 7px;
    padding:8px 9px;
  }
  .waitlist-dialog .waitlist-callout p,
  .waitlist-dialog .waitlist-context{
    font-size:.72rem;
    line-height:1.32;
  }
  .waitlist-dialog .waitlist-context{
    margin-bottom:8px;
  }
  .waitlist-dialog .button{
    min-height:39px;
    padding-block:8px;
    font-size:.78rem;
  }
  .waitlist-dialog .site-dialog-footnote{
    display:none;
  }
}

@media(max-width:700px) and (max-height:560px){
  .waitlist-dialog{
    width:min(600px,calc(100% - 14px));
    max-width:calc(100vw - 14px);
    max-height:calc(100svh - 14px);
    border-radius:17px;
  }
  @supports(height:100dvh){
    .waitlist-dialog{
      max-height:calc(100dvh - 14px);
    }
  }
  .waitlist-dialog .waitlist-dialog__shell{
    padding:12px 13px 10px;
  }
  .waitlist-dialog .site-dialog-close{
    top:6px;
    right:6px;
    width:30px;
    height:30px;
  }
  .waitlist-dialog .site-dialog-eyebrow,
  .waitlist-dialog .waitlist-context{
    display:none;
  }
  .waitlist-dialog h2{
    margin-right:30px;
    font-size:clamp(1.18rem,5.4vw,1.45rem);
    line-height:1.02;
  }
  .waitlist-dialog .site-dialog-lead{
    margin-top:6px;
    font-size:.69rem;
    line-height:1.27;
  }
  .waitlist-dialog .waitlist-callout{
    margin:7px 0;
    padding:7px 8px;
    border-radius:11px;
  }
  .waitlist-dialog .waitlist-callout p{
    font-size:.68rem;
    line-height:1.26;
  }
  .waitlist-dialog .button{
    min-height:36px;
    padding:7px 11px;
    border-radius:10px;
    font-size:.74rem;
  }
}
