  :root{
    --ink:#102A43;
    --ink-soft:#1C4060;
    --band:#0A75A8;
    --band-soft:#085D87;
    --teal:#1C95AE;
    --teal-deep:#085D87;
    --linen:#FFFDF6;
    --linen-deep:#FFF3D6;
    --paper:#FFFFFF;
    --brass:#FFC83D;
    --brass-light:#FFE08A;
    --cream:#FFFFFF;
    --line:rgba(16,42,67,0.12);
    --line-light:rgba(255,255,255,0.22);
    --shadow:0 18px 40px rgba(16,42,67,0.16);
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--linen);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces',serif;
    font-weight:600;
    letter-spacing:-0.01em;
    margin:0;
  }
  .mono{
    font-family:'IBM Plex Mono',monospace;
    letter-spacing:0.02em;
  }
  .eyebrow{
    font-family:'IBM Plex Mono',monospace;
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:0.16em;
    color:var(--teal-deep);
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
  }
  .eyebrow::before{
    content:"";
    width:22px;
    height:1px;
    background:var(--brass);
  }
  a{color:inherit;}
  img{max-width:100%;display:block;}
  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  @media (max-width:640px){
    .wrap{padding:0 20px;}
  }

  /* ---------- ANNOUNCEMENT BAR ---------- */
  .announce-bar{
    background:var(--band);
    text-align:center;
    padding:9px 16px;
  }
  .announce-bar a{
    color:var(--brass-light);
    text-decoration:none;
    font-family:'IBM Plex Mono',monospace;
    font-size:12px;
    letter-spacing:0.03em;
    display:inline-block;
  }
  .announce-bar a:hover{color:var(--cream);}
  @media (max-width:640px){
    .announce-bar a{font-size:11px;}
  }

  /* ---------- NAV ---------- */
  header.nav{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(239,230,212,0.86);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 32px;
    max-width:1180px;
    margin:0 auto;
  }
  .logo{
    font-family:'Fraunces',serif;
    font-weight:700;
    font-size:20px;
    letter-spacing:-0.01em;
    display:flex;
    align-items:center;
    gap:9px;
  }
  .logo-mark{
    width:28px;height:28px;border-radius:7px;
    background:linear-gradient(150deg,var(--teal),var(--teal-deep));
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .logo-mark svg{display:block;}
  nav.links{
    display:flex;
    align-items:center;
    gap:28px;
    font-size:14px;
    font-weight:500;
  }
  nav.links a{
    text-decoration:none;
    color:var(--ink-soft);
    transition:color .2s;
    position:relative;
  }
  nav.links a:hover{color:var(--teal-deep);}
  nav.links a.nav-investor-link{
    color:var(--teal-deep);
    font-weight:600;
    padding-left:20px;
    border-left:1px solid var(--line);
  }
  .nav-right{display:flex;align-items:center;gap:14px;}
  .nav-cta{
    background:var(--band);
    color:var(--cream);
    padding:10px 20px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    white-space:nowrap;
    transition:background .2s, transform .2s;
  }
  .nav-cta:hover{background:var(--teal-deep);transform:translateY(-1px);}
  .nav-toggle{
    display:none;background:none;border:none;cursor:pointer;
    padding:6px;flex-direction:column;gap:5px;
  }
  .nav-toggle span{display:block;width:22px;height:2px;background:var(--ink);transition:transform .25s, opacity .25s;}
  .nav-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .nav-toggle.active span:nth-child(2){opacity:0;}
  .nav-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
  @media (max-width:860px){
    nav.links{
      display:flex;
      position:absolute;
      top:100%;left:0;right:0;
      flex-direction:column;
      align-items:flex-start;
      gap:0;
      background:var(--linen);
      border-bottom:1px solid var(--line);
      max-height:0;
      overflow:hidden;
      transition:max-height .3s ease;
    }
    nav.links.open{max-height:420px;}
    nav.links a{
      width:100%;
      padding:14px 32px;
      border-bottom:1px solid var(--line);
    }
    nav.links a.nav-investor-link{border-left:none;padding-left:32px;}
    .nav-toggle{display:flex;}
  }
  @media (max-width:420px){
    .logo{font-size:16px;gap:7px;}
    .nav-cta{padding:9px 14px;font-size:12px;}
  }


  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding:96px 0 80px;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-200px;right:-220px;
    width:560px;height:560px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,200,61,0.18), transparent 70%);
    pointer-events:none;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:64px;
    align-items:center;
  }
  @media (max-width:980px){
    .hero-grid{grid-template-columns:1fr;gap:48px;}
  }
  .hero h1{
    font-size:clamp(38px,5.4vw,64px);
    line-height:1.04;
    color:var(--ink);
  }
  .hero h1 em{
    font-style:italic;
    color:var(--teal-deep);
  }
  .hero p.lede{
    font-size:18px;
    line-height:1.6;
    color:#3A4B45;
    max-width:480px;
    margin:24px 0 32px;
  }
  .hero-actions{display:flex;gap:14px;flex-wrap:wrap;align-items:center;}
  .btn-primary{
    background:var(--teal-deep);
    color:var(--cream);
    border:none;
    padding:15px 26px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    text-decoration:none;
    display:inline-flex;align-items:center;gap:8px;
    transition:transform .2s, background .2s;
  }
  .btn-primary:hover{transform:translateY(-2px);background:var(--band);}
  .btn-secondary{
    background:transparent;
    color:var(--ink);
    border:1.5px solid var(--ink);
    padding:13.5px 24px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    text-decoration:none;
    display:inline-flex;align-items:center;gap:8px;
    transition:transform .2s, background .2s, color .2s;
  }
  .btn-secondary:hover{transform:translateY(-2px);background:var(--band);color:var(--cream);}
  .btn-ghost{
    color:var(--ink);
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    border-bottom:1px solid var(--brass);
    padding-bottom:3px;
  }
  .hero-stats{
    display:flex;
    gap:36px;
    margin-top:48px;
    padding-top:28px;
    border-top:1px solid var(--line);
  }
  .hero-stats .stat-num{
    font-family:'Fraunces',serif;
    font-size:28px;
    font-weight:600;
    color:var(--teal-deep);
  }
  .hero-stats .stat-label{
    font-size:12px;
    color:#5C6B65;
    margin-top:2px;
  }

  /* ---------- PASSBOOK (signature element) ---------- */
  .passbook{
    background:var(--band);
    border-radius:18px;
    padding:28px 26px 22px;
    box-shadow:var(--shadow);
    color:var(--cream);
    position:relative;
    border:1px solid rgba(255,224,138,0.25);
  }
  .passbook-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:18px;
    padding-bottom:16px;
    border-bottom:1px dashed var(--line-light);
  }
  .passbook-head .pb-title{
    font-family:'Fraunces',serif;
    font-size:17px;
    font-weight:600;
  }
  .passbook-head .pb-sub{
    font-size:11px;
    color:#D6E2DC;
    margin-top:4px;
    font-family:'IBM Plex Mono',monospace;
    text-transform:uppercase;
    letter-spacing:0.1em;
  }
  .pb-badge{
    width:38px;height:38px;
    border-radius:50%;
    border:1.5px solid var(--brass-light);
    display:flex;align-items:center;justify-content:center;
    font-family:'Fraunces',serif;
    font-size:14px;
    color:var(--brass-light);
    flex-shrink:0;
  }
  .pb-rows{
    display:flex;
    flex-direction:column;
    gap:0;
    min-height:248px;
  }
  .pb-row-header, .pb-row{
    display:grid;
    grid-template-columns:0.9fr 1fr 1fr 1.1fr;
    gap:8px;
    padding:10px 0;
    font-family:'IBM Plex Mono',monospace;
    font-size:12.5px;
  }
  .pb-row-header{
    color:#E8F6FF;
    font-size:10.5px;
    text-transform:uppercase;
    letter-spacing:0.08em;
    border-bottom:1px solid rgba(255,255,255,0.12);
  }
  .pb-row{
    border-bottom:1px solid rgba(255,255,255,0.08);
    opacity:0;
    transform:translateY(6px);
    animation:pbIn .5s ease forwards;
  }
  .pb-row .credit{color:var(--brass-light);}
  .pb-row .balance{color:var(--cream);font-weight:600;}
  @keyframes pbIn{ to{opacity:1;transform:translateY(0);} }
  .pb-stamp{
    position:absolute;
    width:64px;height:64px;
    border:2px solid var(--brass-light);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    transform:rotate(-14deg) scale(0.6);
    opacity:0;
    font-family:'IBM Plex Mono',monospace;
    font-size:9px;
    color:var(--brass-light);
    text-align:center;
    line-height:1.2;
    text-transform:uppercase;
    pointer-events:none;
    right:18px;
    bottom:64px;
  }
  .pb-stamp.show{
    animation:stampIn .6s cubic-bezier(.2,1.4,.4,1) forwards;
  }
  @keyframes stampIn{
    0%{opacity:0;transform:rotate(-14deg) scale(2.2);}
    60%{opacity:1;transform:rotate(-14deg) scale(0.92);}
    100%{opacity:0.92;transform:rotate(-14deg) scale(1);}
  }
  .pb-footer{
    margin-top:18px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,0.12);
    display:flex;
    justify-content:space-between;
    align-items:baseline;
  }
  .pb-footer .label{font-size:11px;color:#D6E2DC;font-family:'IBM Plex Mono',monospace;text-transform:uppercase;letter-spacing:0.08em;}
  .pb-footer .amount{font-family:'Fraunces',serif;font-size:26px;color:var(--brass-light);font-weight:600;}
  .pb-disclaimer{
    margin-top:14px;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,0.12);
    font-size:9px;
    line-height:1.45;
    color:#BFD3CA;
  }

  /* ---------- SECTION SHELLS ---------- */
  section{padding:96px 0;}
  .section-head{
    max-width:620px;
    margin-bottom:56px;
  }
  .section-head h2{
    font-size:clamp(28px,3.6vw,40px);
    line-height:1.12;
  }
  .section-head p{
    font-size:16px;
    line-height:1.6;
    color:#46554F;
    margin-top:16px;
  }
  .band-dark{
    background:var(--band);
    color:var(--cream);
  }
  .band-dark .section-head p{color:#E2EBE6;}
  .band-dark .eyebrow{color:var(--brass-light);}
  .band-dark .eyebrow::before{background:var(--brass-light);}

  /* ---------- PATHWAY TO OWNERSHIP TEASER ---------- */
  .advantage-section{padding:0 0 96px;}
  .advantage-card{
    background:var(--band);
    color:var(--cream);
    border:1px solid rgba(255,224,138,0.3);
    border-radius:20px;
    padding:48px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
  }
  @media (max-width:920px){
    .advantage-card{grid-template-columns:1fr;padding:36px 28px;}
  }
  .advantage-copy h2{
    font-size:clamp(26px,3.2vw,34px);
    line-height:1.14;
    margin:14px 0 18px;
  }
  .advantage-copy p{
    font-size:15.5px;
    line-height:1.65;
    color:#ECF2EE;
    margin:0 0 22px;
    max-width:480px;
  }
  .advantage-card .eyebrow{color:var(--brass-light);}
  .advantage-card .eyebrow::before{background:var(--brass-light);}
  .advantage-card .btn-ghost{color:var(--cream);border-color:var(--brass-light);}
  .advantage-points{display:flex;flex-direction:column;gap:22px;}
  .advantage-point{display:flex;gap:14px;align-items:flex-start;}
  .ap-dot{
    width:9px;height:9px;border-radius:50%;
    background:var(--brass-light);
    margin-top:7px;flex-shrink:0;
  }
  .advantage-point b{
    display:block;font-size:14.5px;font-weight:600;color:var(--cream);margin-bottom:4px;
  }
  .advantage-point p{
    font-size:13px;line-height:1.5;color:#D6E2DC;margin:0;
  }

  /* ---------- WHY TAMPA ---------- */
  .why-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:16px;
    overflow:hidden;
  }
  @media (max-width:920px){
    .why-grid{grid-template-columns:repeat(2,1fr);}
  }
  @media (max-width:560px){
    .why-grid{grid-template-columns:1fr;}
  }
  .why-card{
    background:var(--paper);
    padding:28px 22px;
  }
  .why-num{
    font-family:'IBM Plex Mono',monospace;
    font-size:12px;
    color:var(--brass);
    margin-bottom:14px;
  }
  .why-card h3{
    font-family:'Fraunces',serif;
    font-size:17px;
    font-weight:600;
    line-height:1.25;
    margin-bottom:10px;
  }
  .why-card p{
    font-size:13px;
    line-height:1.55;
    color:#5C6B65;
    margin:0;
  }

  /* ---------- AMENITIES (room dossier) ---------- */
  .dossier{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:0;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
  }
  @media (max-width:860px){
    .dossier{grid-template-columns:1fr;}
  }
  .dossier-visual{
    background:linear-gradient(160deg,var(--teal),var(--teal-deep));
    padding:40px;
    color:var(--cream);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:340px;
  }
  .dossier-visual .tag{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.7);
  }
  .dossier-visual .room-name{
    font-family:'Fraunces',serif;
    font-size:34px;
    margin-top:14px;
    line-height:1.1;
  }
  .dossier-visual .specs{
    display:flex;
    gap:24px;
    margin-top:30px;
    font-family:'IBM Plex Mono',monospace;
    font-size:13px;
  }
  .dossier-visual .specs div b{
    display:block;
    font-family:'Fraunces',serif;
    font-size:22px;
    font-weight:600;
  }
  .dossier-list{
    padding:36px 40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
  }
  @media (max-width:520px){
    .dossier-list{grid-template-columns:1fr;}
  }
  .dossier-list .item{
    padding:14px 12px 14px 0;
    border-bottom:1px solid var(--line);
    font-size:14.5px;
    display:flex;
    align-items:flex-start;
    gap:10px;
  }
  .dossier-list .item::before{
    content:"";
    width:6px;height:6px;
    border-radius:50%;
    background:var(--brass);
    margin-top:7px;
    flex-shrink:0;
  }

  /* ---------- PATHWAY / CALCULATOR ---------- */
  .pathway-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
  }
  @media (max-width:920px){
    .pathway-grid{grid-template-columns:1fr;gap:44px;}
  }
  .step{
    display:flex;
    gap:18px;
    padding:24px 0;
    border-top:1px solid var(--line-light);
  }
  .step:first-child{border-top:none;padding-top:0;}
  .step .num{
    font-family:'IBM Plex Mono',monospace;
    font-size:13px;
    color:var(--brass-light);
    padding-top:3px;
    flex-shrink:0;
    width:26px;
  }
  .step h3{
    font-size:18px;
    font-weight:600;
    color:var(--cream);
    margin-bottom:6px;
  }
  .step p{font-size:14.5px;line-height:1.6;color:#E2EBE6;margin:0;}

  .calc{
    background:var(--band-soft);
    border:1px solid rgba(255,224,138,0.25);
    border-radius:18px;
    padding:32px;
  }
  .calc-title{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:#D6E2DC;
    margin-bottom:22px;
  }
  .calc-row{margin-bottom:24px;}
  .calc-row label{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    color:var(--cream);
    margin-bottom:10px;
  }
  .calc-row label .val{
    font-family:'IBM Plex Mono',monospace;
    color:var(--brass-light);
  }
  input[type=range]{
    -webkit-appearance:none;
    width:100%;
    height:3px;
    background:rgba(255,255,255,0.18);
    border-radius:2px;
    outline:none;
  }
  input[type=range]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:17px;height:17px;
    border-radius:50%;
    background:var(--brass-light);
    border:3px solid var(--band-soft);
    cursor:pointer;
    box-shadow:0 0 0 1px rgba(255,224,138,0.4);
  }
  input[type=range]::-moz-range-thumb{
    width:17px;height:17px;
    border-radius:50%;
    background:var(--brass-light);
    border:3px solid var(--band-soft);
    cursor:pointer;
  }
  .calc-output{
    margin-top:28px;
    padding-top:24px;
    border-top:1px dashed rgba(255,255,255,0.18);
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
  }
  .calc-output .lbl{font-size:12.5px;color:#D6E2DC;font-family:'IBM Plex Mono',monospace;text-transform:uppercase;letter-spacing:0.08em;}
  .calc-output .big{
    font-family:'Fraunces',serif;
    font-size:38px;
    color:var(--brass-light);
    font-weight:600;
    margin-top:6px;
  }
  .calc-note{
    font-size:10.5px;
    color:#BFD3CA;
    margin-top:16px;
    line-height:1.5;
  }

  /* ---------- WHO IT'S FOR ---------- */
  .chips{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
  }
  .chip{
    background:var(--paper);
    border:1px solid var(--line);
    padding:18px 22px;
    border-radius:14px;
    font-size:15px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:10px;
    flex:1 1 220px;
  }
  .chip .dot{width:8px;height:8px;border-radius:50%;background:var(--teal);flex-shrink:0;}

  /* ---------- LOCATIONS ---------- */
  .location-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    background:var(--band-soft);
    border:1px solid rgba(255,224,138,0.25);
    border-radius:18px;
    overflow:hidden;
    min-height:380px;
  }
  @media (max-width:860px){
    .location-card{grid-template-columns:1fr;min-height:auto;}
  }
  .location-details{
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .loc-status{
    display:inline-block;
    width:fit-content;
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.08em;
    background:var(--teal);
    color:var(--cream);
    padding:6px 12px;
    border-radius:20px;
    margin-bottom:18px;
  }
  .location-details h3{
    font-family:'Fraunces',serif;
    font-size:28px;
    font-weight:600;
    color:var(--cream);
    margin-bottom:8px;
  }
  .loc-address{
    font-size:13px;
    color:var(--brass-light);
    margin-bottom:18px;
  }
  .location-details p{
    font-size:14.5px;
    line-height:1.65;
    color:#E2EBE6;
    margin:0 0 24px;
    max-width:420px;
  }
  .location-map{
    min-height:280px;
    background:var(--linen-deep);
  }
  .location-map iframe{
    width:100%;
    height:100%;
    min-height:280px;
    display:block;
    filter:saturate(0.85);
  }

  .coming-soon{margin-top:48px;}
  .coming-soon-label{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:#BFD3CA;
    margin-bottom:18px;
  }
  .coming-soon-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
  }
  @media (max-width:760px){
    .coming-soon-grid{grid-template-columns:repeat(2,1fr);}
  }
  .cs-card{
    border:1px dashed rgba(255,255,255,0.22);
    border-radius:14px;
    padding:22px 18px;
    display:flex;
    align-items:center;
    gap:14px;
    font-size:14px;
    color:#E2EBE6;
  }
  .cs-card .cs-pin{
    width:34px;height:34px;
    border-radius:50%;
    border:1px solid rgba(255,224,138,0.4);
    color:var(--brass-light);
    display:flex;align-items:center;justify-content:center;
    font-family:'Fraunces',serif;
    font-size:16px;
    flex-shrink:0;
  }
  .cs-card em{
    font-style:normal;
    color:#BFD3CA;
    font-size:12px;
    display:block;
    margin-top:2px;
  }

  /* ---------- PARTNERS ---------- */
  .partner-card{
    display:flex;
    align-items:center;
    gap:28px;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:18px;
    padding:36px 40px;
  }
  @media (max-width:600px){
    .partner-card{flex-direction:column;align-items:flex-start;text-align:left;}
  }
  .partner-mark{
    width:64px;height:64px;
    border-radius:14px;
    background:linear-gradient(150deg,var(--teal),var(--teal-deep));
    color:var(--cream);
    font-family:'Fraunces',serif;
    font-weight:600;
    font-size:20px;
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .partner-type{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.08em;
    color:var(--teal-deep);
    margin-bottom:6px;
  }
  .partner-info h3{
    font-family:'Fraunces',serif;
    font-size:22px;
    font-weight:600;
    margin-bottom:8px;
  }
  .partner-info p{
    font-size:14.5px;
    line-height:1.6;
    color:#46554F;
    margin:0 0 16px;
    max-width:520px;
  }
  .partners-note{
    margin-top:24px;
    font-size:13px;
    color:#5C6B65;
  }
  footer{
    background:var(--band);
    color:var(--cream);
    padding:90px 0 40px;
  }
  .footer-cta{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:50px;
    padding-bottom:64px;
    border-bottom:1px solid rgba(255,255,255,0.12);
  }
  @media (max-width:860px){
    .footer-cta{grid-template-columns:1fr;}
  }
  .footer-cta h2{
    font-size:clamp(28px,3.6vw,42px);
    line-height:1.12;
    max-width:480px;
  }
  .footer-cta h2 em{font-style:italic;color:var(--brass-light);}
  .footer-cta p{color:#E2EBE6;margin-top:16px;max-width:420px;line-height:1.6;}
  .waitlist-card{
    background:var(--band-soft);
    border:1px solid rgba(255,224,138,0.3);
    border-radius:14px;
    padding:28px;
  }
  .wl-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  @media (max-width:480px){
    .wl-row{grid-template-columns:1fr;}
  }
  .wl-field{margin-bottom:16px;}
  .wl-field label{
    display:block;
    font-size:12.5px;
    color:#E2EBE6;
    margin-bottom:7px;
  }
  .wl-field label span{color:#BFD3CA;}
  .wl-field input,
  .wl-field select,
  .wl-field textarea{
    width:100%;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.16);
    border-radius:8px;
    color:var(--cream);
    padding:11px 13px;
    font-family:'Inter',sans-serif;
    font-size:14px;
    outline:none;
    transition:border-color .2s;
  }
  .wl-field input:focus,
  .wl-field select:focus,
  .wl-field textarea:focus{
    border-color:var(--brass-light);
  }
  .wl-field textarea{resize:vertical;}
  .wl-field input::placeholder,
  .wl-field textarea::placeholder{color:#6B7972;}
  .waitlist-card > button{
    width:100%;
    background:var(--brass-light);
    color:var(--ink);
    border:none;
    border-radius:8px;
    padding:14px;
    font-weight:600;
    font-size:14.5px;
    cursor:pointer;
    transition:background .2s;
  }
  .waitlist-card > button:hover{background:var(--cream);}
  .waitlist-card .form-note{margin-top:14px;margin-bottom:0;}
  .form-note{font-size:12px;color:#BFD3CA;margin-top:12px;}
  .footer-links{
    display:flex;
    gap:64px;
    flex-wrap:wrap;
    padding:40px 0;
    border-bottom:1px solid rgba(255,255,255,0.12);
  }
  .footer-link-group{display:flex;flex-direction:column;gap:11px;}
  .flg-label{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.08em;
    color:#BFD3CA;
    margin-bottom:4px;
  }
  .footer-link-group a{
    color:#ECF2EE;
    text-decoration:none;
    font-size:14px;
    transition:color .2s;
  }
  .footer-link-group a:hover{color:var(--brass-light);}
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    flex-wrap:wrap;
    gap:24px;
    padding-top:36px;
  }
  .footer-tagline{
    font-family:'Fraunces',serif;
    font-style:italic;
    font-size:18px;
    color:var(--brass-light);
  }
  .footer-legal{
    font-size:12px;
    color:#BFD3CA;
    max-width:560px;
    line-height:1.6;
  }
  .reveal{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .7s ease, transform .7s ease;
  }
  .reveal.in{opacity:1;transform:translateY(0);}

  /* ---------- SUBPAGE HERO (Investors / Founder) ---------- */
  .subpage-hero{
    background:var(--band);
    color:var(--cream);
    padding:88px 0 80px;
    position:relative;
    overflow:hidden;
  }
  .subpage-hero::before{
    content:"";
    position:absolute;
    top:-180px;right:-200px;
    width:520px;height:520px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,200,61,0.16), transparent 70%);
    pointer-events:none;
  }
  .subpage-hero .eyebrow{color:var(--brass-light);}
  .subpage-hero .eyebrow::before{background:var(--brass-light);}
  .subpage-hero h1{
    font-size:clamp(34px,4.8vw,54px);
    line-height:1.06;
    max-width:760px;
  }
  .subpage-hero p.lede{
    font-size:17px;
    line-height:1.6;
    color:#ECF2EE;
    max-width:580px;
    margin:22px 0 32px;
  }
  .subpage-hero .hero-actions{display:flex;gap:14px;flex-wrap:wrap;}
  .subpage-hero .btn-primary{background:var(--brass-light);color:var(--ink);}
  .subpage-hero .btn-primary:hover{background:var(--cream);}
  .subpage-hero .btn-secondary{border-color:rgba(255,255,255,0.4);color:var(--cream);}
  .subpage-hero .btn-secondary:hover{background:var(--cream);color:var(--ink);}

  /* ---------- PRO FORMA / STAT GRID ---------- */
  .biz-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:16px;
    overflow:hidden;
  }
  @media (max-width:920px){.biz-grid{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:560px){.biz-grid{grid-template-columns:1fr;}}

  .proforma-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
  }
  @media (max-width:760px){.proforma-grid{grid-template-columns:1fr;}}
  .proforma-card{
    background:var(--band-soft);
    border:1px solid rgba(255,224,138,0.25);
    border-radius:16px;
    padding:30px 26px;
  }
  .proforma-card .pf-label{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.08em;
    color:#D6E2DC;
    margin-bottom:14px;
  }
  .proforma-card .pf-value{
    font-family:'Fraunces',serif;
    font-size:34px;
    font-weight:600;
    color:var(--brass-light);
    margin-bottom:10px;
  }
  .proforma-card .pf-note{
    font-size:13px;
    line-height:1.5;
    color:#E2EBE6;
    margin:0;
  }
  .proforma-disclaimer{
    margin-top:20px;
    font-size:10.5px;
    color:#BFD3CA;
    line-height:1.5;
  }

  /* ---------- EXPANSION TIMELINE ---------- */
  .timeline{position:relative;}
  .tl-row{
    display:grid;
    grid-template-columns:90px 1fr 140px;
    gap:20px;
    align-items:center;
    padding:22px 0;
    border-bottom:1px solid var(--line);
  }
  .tl-row:first-child{border-top:1px solid var(--line);}
  @media (max-width:680px){
    .tl-row{grid-template-columns:60px 1fr;}
    .tl-row .tl-status{display:none;}
  }
  .tl-year{font-family:'Fraunces',serif;font-size:15px;color:var(--teal-deep);}
  .tl-main b{font-family:'Fraunces',serif;font-weight:600;font-size:18px;}
  .tl-main span{display:block;font-size:13.5px;color:#5C6B65;margin-top:3px;}
  .tl-status{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.06em;
    padding:6px 12px;
    border-radius:20px;
    text-align:center;
    justify-self:end;
  }
  .tl-status.active{background:var(--teal);color:var(--cream);}
  .tl-status.planned{background:transparent;border:1px solid var(--line);color:#5C6B65;}

  /* ---------- EXIT LIST ---------- */
  .exit-list{display:flex;flex-direction:column;gap:0;}
  .exit-row{
    display:grid;
    grid-template-columns:48px 1fr;
    gap:18px;
    padding:22px 0;
    border-bottom:1px solid var(--line);
  }
  .exit-row:first-child{border-top:1px solid var(--line);}
  .exit-row .exit-num{
    font-family:'IBM Plex Mono',monospace;
    font-size:12px;
    color:var(--brass);
  }
  .exit-row h3{
    font-family:'Fraunces',serif;
    font-size:17px;
    font-weight:600;
    margin-bottom:6px;
  }
  .exit-row p{font-size:14px;line-height:1.55;color:#46554F;margin:0;}

  /* ---------- INVESTOR CONTACT ---------- */
  .investor-contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
  }
  @media (max-width:860px){.investor-contact-grid{grid-template-columns:1fr;}}
  .investor-contact-grid .deck-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px;}

  /* ---------- FOUNDER PAGE ---------- */
  .founder-layout{
    display:grid;
    grid-template-columns:0.8fr 1.2fr;
    gap:56px;
    align-items:start;
  }
  @media (max-width:860px){.founder-layout{grid-template-columns:1fr;}}
  .founder-portrait{
    aspect-ratio:4/5;
    border-radius:18px;
    background:linear-gradient(160deg,var(--teal),var(--teal-deep));
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--cream);
  }
  .founder-portrait .fp-initials{
    font-family:'Fraunces',serif;
    font-size:72px;
    font-weight:600;
    opacity:0.9;
  }
  .founder-bio p{
    font-size:15.5px;
    line-height:1.7;
    color:#3A4B45;
    margin:0 0 18px;
  }
  .founder-creds{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:28px;
  }
  @media (max-width:520px){.founder-creds{grid-template-columns:1fr;}}
  .cred-chip{
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:12px;
    padding:16px 18px;
    font-size:14px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:10px;
  }
  .cred-chip .dot{width:7px;height:7px;border-radius:50%;background:var(--brass);flex-shrink:0;}

  @media (prefers-reduced-motion:reduce){
    *{animation:none !important; transition:none !important;}
  }
