:root {
  --ink: #16151d;
  --muted: #5f5d6c;
  --paper: #fbfaf8;
  --surface: #ffffff;
  --line: #e7e3ed;
  --purple: #6634e8;
  --magenta: #e72c8b;
  --orange: #ff8445;
  --teal: #00b7b0;
  --lime: #b4eb3c;
  --blue: #243d9b;
  --gradient: linear-gradient(115deg, var(--purple), var(--magenta) 54%, var(--orange));
  --gradient-soft: linear-gradient(135deg, #f3edff, #fff1f7 52%, #fff5ec);
  --font-head: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --space-xs: .5rem; --space-sm: .8rem; --space-md: 1.25rem; --space-lg: 2rem; --space-xl: 4rem; --space-2xl: 7rem;
  --radius-sm: 12px; --radius-md: 22px; --radius-lg: 34px;
  --shadow-sm: 0 8px 22px rgba(28, 18, 53, .07); --shadow-md: 0 18px 50px rgba(62, 27, 108, .13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); line-height: 1.65; }
body, button, input, select, textarea { font-size: 1rem; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 2.5rem)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; padding: .75rem 1rem; background: var(--ink); color: #fff; z-index: 20; }
.skip-link:focus { left: 1rem; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(251,250,248,.9); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(231,227,237,.8); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1.25rem; }
.brand-lockup, .footer-brand-lockup { display: inline-flex; min-height: 48px; align-items: center; gap: .65rem; text-decoration: none; font-weight: 900; letter-spacing: -.03em; line-height: 1.05; }
.brand-lockup img { width: 48px; height: 48px; display: block; }
.brand-lockup > span, .footer-brand-lockup > span { display: block; font-family: var(--font-head); font-size: 1.2rem; letter-spacing: -.025em; color: var(--ink); }
.brand-copy strong { display: block; font-family: var(--font-head); font-size: 1.02rem; letter-spacing: .015em; }
.brand-lockup small, .footer-brand-lockup small { display: block; color: var(--purple); font-family: var(--font-body); font-size: .64rem; font-weight: 750; letter-spacing: .02em; margin-top: .18rem; }
.brand-copy em { display: block; max-width: 260px; margin-top: .22rem; color: var(--muted); font-family: var(--font-body); font-size: .58rem; font-style: normal; font-weight: 650; line-height: 1.25; letter-spacing: .005em; }
.site-nav { display: flex; align-items: center; gap: .15rem; }
.site-nav a { padding: .5rem .42rem; text-decoration: none; font-family: var(--font-body); font-size: .78rem; letter-spacing: -.01em; font-weight: 750; color: #45414e; border-radius: 10px; white-space: nowrap; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--purple); background: #f0eaff; }
.nav-toggle { display: none; border: 0; background: transparent; font: inherit; font-weight: 800; padding: .6rem; }
.hero { position: relative; overflow: hidden; color: #fff; background: var(--gradient); padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem); }
.hero::after { content: ""; position: absolute; width: 380px; height: 380px; right: -110px; top: -150px; border: 70px solid rgba(255,255,255,.16); border-radius: 50%; }
.hero .container { position: relative; z-index: 1; }
.page-inner .hero { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3.2rem, 6vw, 5rem); }
.page-inner .hero h1 { max-width: 780px; font-size: clamp(2.35rem, 5.5vw, 4.7rem); }
.eyebrow { text-transform: none; letter-spacing: .04em; font-weight: 750; font-size: .82rem; opacity: .9; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.08; letter-spacing: -.035em; margin: 0 0 1rem; }
h1 { max-width: 920px; font-size: clamp(2.7rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.35rem; }
.hero p { max-width: 760px; font-size: clamp(1.1rem, 2vw, 1.3rem); color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; border: 0; border-radius: 999px; padding: .85rem 1.2rem; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(29, 16, 56, .2); }
.btn-primary { background: #fff; color: var(--purple); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-gradient { background: var(--gradient); color: #fff; }
.btn-ghost { border: 1px solid rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.1); }
.section { padding: var(--space-2xl) 0; }
.section-tight { padding: var(--space-xl) 0; }
.section-soft { background: var(--gradient-soft); }
.section-dark { background: #171525; color: #fff; }
.section-intro { max-width: 730px; margin-bottom: 2.7rem; }
.section-intro p, .prose p { color: var(--muted); font-size: 1.08rem; }
.section-intro { position: relative; }
.section-intro::before { content: ""; display: block; width: 3.2rem; height: .25rem; margin-bottom: 1.15rem; border-radius: 999px; background: var(--gradient); }
.letter { max-width: 820px; padding: clamp(4.5rem, 9vw, 7rem) 0; }
.letter-section { padding: 0 0 clamp(3.5rem, 7vw, 5.5rem); margin-bottom: clamp(3.5rem, 7vw, 5.5rem); border-bottom: 1px solid var(--line); }
.letter-section:last-child { border-bottom: 0; margin-bottom: 0; }
.letter-section:first-child::before { content: ""; display: block; width: 3.2rem; height: .25rem; margin-bottom: 1.35rem; border-radius: 999px; background: var(--gradient); }
.letter-section h2 { max-width: 22ch; margin-bottom: 1.45rem; font-size: clamp(1.8rem, 3.3vw, 2.65rem); }
.letter-section > p, .letter-section > ul { max-width: 68ch; color: var(--muted); font-size: 1.06rem; line-height: 1.78; }
.letter-section > p { margin-top: 0; margin-bottom: 1.25rem; }
.letter-section > ul { margin-top: .4rem; margin-bottom: 1.45rem; }
.letter-section .grid-3 { max-width: 100%; margin: 2.6rem 0 2.2rem; gap: 1rem; }
.letter-section .card { padding: 1.35rem; }
.letter-section .card p { font-size: .96rem; line-height: 1.58; }
.letter-close { margin-top: 2.8rem; padding: clamp(1.8rem, 5vw, 3.5rem); border-radius: var(--radius-md); background: var(--gradient-soft); border: 1px solid #eee3f7; }
.letter-close h2 { color: var(--purple); }
.letter-close p { max-width: 60ch; }
.signature { margin-top: 2.4rem !important; padding-top: 1.4rem; border-top: 1px solid rgba(102,52,232,.18); }
.letter-newsletter { margin-top: clamp(2.5rem, 6vw, 4rem); padding: clamp(1.5rem, 4vw, 2.6rem); border-radius: var(--radius-md); background: #171525; color: #fff; box-shadow: var(--shadow-md); }
.letter-newsletter h3 { max-width: 20ch; margin-top: .45rem; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.letter-newsletter > p { max-width: 54ch; color: rgba(255,255,255,.76); }
.newsletter-fields { display: flex; align-items: end; gap: .8rem; margin-top: 1.4rem; }
.newsletter-fields .form-group { flex: 1; margin: 0; }
.letter-newsletter label { color: rgba(255,255,255,.86); font-size: .88rem; }
.letter-newsletter input { border-color: rgba(255,255,255,.22); }
.newsletter-note { margin: .75rem 0 0; color: rgba(255,255,255,.55) !important; font-size: .82rem !important; }
.letter-newsletter .form-status { color: var(--lime); }
.section-dark p { color: rgba(255,255,255,.76); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card p { color: var(--muted); margin-bottom: 0; }
.membership-grid .card { min-height: 100%; display: flex; flex-direction: column; }
.membership-grid .category-cta { align-self: flex-start; margin-top: auto; }
.membership-model { max-width: 900px; }
.community-links { line-height: 2; }
.community-links a { color: var(--purple); font-weight: 800; text-underline-offset: .2em; }
.community-note { margin-top: 1rem; color: var(--muted); font-size: .9rem; }
.legal-notice { padding: clamp(1.4rem, 4vw, 2.3rem); border-left: 4px solid var(--magenta); border-radius: var(--radius-sm); background: #fff7fb; box-shadow: var(--shadow-sm); }
.legal-notice h2 { margin-top: .5rem; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.legal-notice p:last-child { margin-bottom: 0; }
.legal-note { margin-top: 1rem; padding: .9rem 1rem; border-radius: 10px; background: #fff7fb; color: var(--muted); font-size: .9rem; }
.legal-status { width: min(1160px, calc(100% - 2.5rem)); margin: 1.25rem auto 0; padding: .85rem 1rem; border: 1px solid #e8dff2; border-radius: 10px; background: #fff; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.legal-status strong { color: var(--purple); }
.ai-card { min-height: 100%; background: linear-gradient(160deg, #fff 0%, #fff7fb 100%); }
.ai-approach { background: linear-gradient(135deg, #fff7fb 0%, #f2efff 100%); }
.number { width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--gradient); font-weight: 900; margin-bottom: 1.3rem; }
.pill { display: inline-block; background: #e9f9d0; color: #3b5e00; border-radius: 999px; padding: .3rem .7rem; font-size: .82rem; font-weight: 800; }
.feature-list, .check-list { padding: 0; list-style: none; }
.feature-list li, .check-list li { position: relative; padding: .55rem 0 .55rem 1.7rem; }
.feature-list li::before, .check-list li::before { content: "✦"; position: absolute; left: 0; color: var(--magenta); font-weight: 900; }
.cta-section { margin: 0 auto; width: min(1120px, calc(100% - 2rem)); border-radius: var(--radius-lg); overflow: hidden; color: #fff; background: var(--gradient); padding: clamp(2.3rem, 6vw, 5rem); position: relative; }
.cta-section p { color: rgba(255,255,255,.88); max-width: 600px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.stat { border-top: 2px solid rgba(255,255,255,.35); padding-top: .8rem; }
.stat strong { display: block; font-size: 2rem; line-height: 1; }
.form-card { background: #fff; border-radius: var(--radius-md); padding: clamp(1.3rem, 4vw, 2.2rem); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 800; margin-bottom: .35rem; }
input, select, textarea { width: 100%; border: 1px solid #d9d3e1; border-radius: 10px; padding: .8rem .9rem; background: #fff; color: var(--ink); font: inherit; }
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus, .btn:focus, a:focus, button:focus { outline: 3px solid rgba(0,183,176,.45); outline-offset: 2px; }
.form-status { margin-top: 1rem; color: #126d42; font-weight: 800; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger { display: flex; justify-content: space-between; gap: 1rem; width: 100%; padding: 1.2rem 0; border: 0; background: none; color: inherit; text-align: left; font: inherit; font-weight: 800; cursor: pointer; }
.accordion-trigger span:last-child { color: var(--magenta); font-size: 1.4rem; }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel p { color: var(--muted); margin: 0 0 1.2rem; }
.site-footer { background: #111018; color: #fff; padding: 3.5rem 0 1.5rem; }
.footer-brand-lockup { color: var(--ink); background: #fff; border-radius: 14px; padding: .55rem .8rem; box-shadow: 0 8px 24px rgba(0,0,0,.16); }
.footer-brand-lockup img { width: 42px; height: 42px; display: block; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
.site-footer h3 { margin-bottom: .8rem; color: #fff; font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; }
.site-footer .footer-links a { width: fit-content; padding: .12rem 0; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
.site-footer .footer-links a:hover { border-color: var(--magenta); }
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { display: grid; gap: .3rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 2.5rem; padding-top: 1.2rem; font-size: .9rem; color: rgba(255,255,255,.55); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav { display: flex; visibility: hidden; opacity: 0; transform: translateY(-8px); pointer-events: none; position: absolute; top: 76px; left: 0; right: 0; padding: .8rem 1rem 1rem; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); flex-direction: column; align-items: stretch; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .site-nav.open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: .75rem; }
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .brand-copy em { max-width: 190px; font-size: .55rem; }
  .stat-row { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
  .letter { width: min(100% - 2rem, 680px); padding: 3.8rem 0 4.8rem; }
  .letter-section { padding-bottom: 3.2rem; margin-bottom: 3.2rem; }
  .letter-section h2 { max-width: none; font-size: clamp(1.75rem, 8vw, 2.35rem); line-height: 1.12; }
  .letter-section > p, .letter-section > ul { font-size: 1rem; line-height: 1.7; }
  .letter-section .grid-3 { margin: 2rem 0 1.8rem; }
  .letter-close { margin-top: 2rem; padding: 1.5rem; }
  .newsletter-fields { display: grid; gap: .8rem; align-items: stretch; }
  .newsletter-fields .btn { width: 100%; }
  .letter-newsletter { border-radius: var(--radius-sm); }
  .membership-grid, .membership-model { gap: .85rem; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

/* Membership registration flow */
.category-cta { margin-top: 1.15rem; font-size: .84rem; padding: .65rem .85rem; }
.registration-explainer { background: linear-gradient(135deg, #fff 0%, #fff6fb 52%, #f2efff 100%); border: 1px solid #eadff4; }
.registration-explainer h2 { max-width: 18ch; margin-top: .45rem; }
.registration-explainer p { max-width: 70ch; color: var(--muted); }
.registration-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.registration-form-card { border: 1px solid var(--line); }
.registration-form-card h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.form-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field-note { color: var(--muted); font-size: .78rem; font-weight: 500; }
fieldset { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin: 1.4rem 0; }
legend { padding: 0 .4rem; font-weight: 850; }
.check-option { display: block; margin: .8rem 0; color: var(--muted); font-size: .92rem; line-height: 1.45; }
.check-option input { width: auto; margin: 0 .45rem .15rem 0; vertical-align: middle; accent-color: var(--purple); }
.check-option a { color: var(--purple); font-weight: 750; }
.process-list { margin: 1rem 0 1.2rem; padding-left: 1.35rem; color: var(--muted); }
.process-list li { padding: .32rem 0; }
.registration-side { display: grid; gap: 1rem; position: sticky; top: 100px; }
.card-accent { background: linear-gradient(150deg, #fff 0%, #fff4fb 60%, #f2efff 100%); }
.member-card-preview { display: grid; gap: .28rem; margin: 1.2rem 0; padding: 1.2rem; min-height: 175px; border-radius: 18px; color: #fff; background: var(--gradient); box-shadow: 0 16px 34px rgba(102, 52, 232, .25); }
.member-card-preview strong { font-family: var(--font-head); font-size: 1.35rem; }
.member-card-preview span:not(.member-card-mark) { font-size: .9rem; opacity: .86; }
.member-card-preview small { margin-top: auto; opacity: .78; }
.member-card-mark { font-weight: 950; letter-spacing: .08em; }
.registration-side .card p { font-size: .93rem; }
@media (max-width: 820px) {
  .registration-layout { grid-template-columns: 1fr; }
  .registration-side { position: static; }
}
@media (max-width: 560px) {
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .registration-form-card { padding: 1.1rem; }
}
.letter-hero { padding: clamp(3.6rem, 7vw, 6.8rem) 0 clamp(3.8rem, 7vw, 6.2rem); }
.letter-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 360px); gap: clamp(2rem, 8vw, 7rem); align-items: center; }
.letter-hero-copy { max-width: 720px; }
.letter-hero-copy h1 { max-width: 10ch; margin-top: .7rem; font-size: clamp(3.2rem, 7vw, 6.1rem); letter-spacing: -.065em; }
.letter-hero-copy > p { max-width: 620px; margin-top: 1.5rem; }
.letter-hero-author { display: grid; gap: .18rem; margin-top: 2.3rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.3); max-width: 430px; }
.letter-hero-author strong { font-family: var(--font-head); font-size: 1.15rem; letter-spacing: -.02em; }
.letter-hero-author span { color: rgba(255,255,255,.76); font-size: .92rem; }
.author-links { display: flex; flex-wrap: wrap; gap: .8rem 1.25rem; margin-top: .65rem; }
.author-links a { color: #fff; font-size: .88rem; font-weight: 800; text-underline-offset: .22em; }
.author-links a:hover { color: var(--lime); }
.letter-portrait { position: relative; margin: 0; justify-self: end; width: min(100%, 340px); }
.letter-portrait::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; border: 1px solid rgba(255,255,255,.45); border-radius: 32px; transform: rotate(-5deg); }
.letter-portrait img { position: relative; display: block; width: 100%; aspect-ratio: 1; object-fit: cover; border: 8px solid rgba(255,255,255,.9); border-radius: 28px; box-shadow: 0 24px 70px rgba(30, 10, 70, .28); }
.letter-portrait figcaption { position: relative; margin: .8rem 0 0 .4rem; color: rgba(255,255,255,.76); font-size: .75rem; letter-spacing: .04em; }
.letter-kicker { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 2.4rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .82rem; letter-spacing: .03em; }
.letter-kicker .eyebrow { color: var(--purple); }
.letter-section:first-of-type h2 { font-size: clamp(2.2rem, 4.2vw, 3.5rem); }
.letter-section:first-of-type > p:first-of-type { color: var(--ink); font-family: var(--font-head); font-size: 1.28rem; line-height: 1.4; }
.letter-section .signature a { color: var(--purple); font-weight: 800; text-underline-offset: .2em; }
@media (max-width: 820px) {
  .letter-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .letter-hero-copy h1 { max-width: 12ch; }
  .letter-portrait { justify-self: start; width: min(72vw, 290px); }
  .letter-kicker { align-items: flex-start; flex-direction: column; gap: .25rem; }
}
.linkedin-link { display: inline-flex; align-items: center; gap: .38rem; }
.linkedin-icon { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; color: currentColor; }
.linkedin-link:hover .linkedin-icon { color: var(--lime); }

/* Early-stage launch and founder visibility */
.founder-home-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(220px, .85fr); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.founder-home-copy h2 { max-width: 15ch; }
.founder-home blockquote { margin: 2rem 0 1.5rem; max-width: 35ch; font-family: var(--font-head); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.25; letter-spacing: -.03em; }
.founder-home-portrait { justify-self: center; max-width: 310px; }
.founder-home-portrait img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; border: 7px solid rgba(255,255,255,.9); border-radius: 28px; box-shadow: 0 22px 60px rgba(0,0,0,.25); }
.founder-home-portrait > span { display: block; margin-top: .85rem; color: #fff; font-family: var(--font-head); font-weight: 800; }
.founder-home-portrait small { color: rgba(255,255,255,.7); font-family: var(--font-body); font-weight: 500; }
.cta-disclaimer { margin-top: 1.5rem; max-width: 70ch; color: rgba(255,255,255,.74) !important; font-size: .82rem !important; }
.updates-panel { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 2rem; margin-top: 2rem; padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.updates-panel h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.updates-panel p { color: var(--muted); }
.updates-form .form-grid-2 { gap: .8rem; }
.updates-form .check-option { color: var(--muted); font-size: .88rem; }
.updates-form .check-option a { color: var(--purple); font-weight: 800; }
.updates-note { font-size: .8rem; margin: .8rem 0 0; }
.footer-status { width: min(1160px, calc(100% - 2.5rem)); margin: 2rem auto 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55); font-size: .78rem; line-height: 1.55; }
.footer-legal-links { margin-top: .7rem; color: rgba(255,255,255,.62); font-size: .82rem; }
.footer-legal-links a { color: rgba(255,255,255,.75); text-decoration: underline; text-underline-offset: .15em; }
@media (max-width: 820px) { .founder-home-grid, .updates-panel { grid-template-columns: 1fr; } .founder-home-portrait { justify-self: start; width: min(72vw, 280px); } }


/* 2026 London creative-scene visual refresh */
.image-feature { position: relative; z-index: 2; margin-top: -2.4rem; margin-bottom: 1rem; }
.image-feature-compact { margin-top: 0; margin-bottom: 0; padding: 0 0 1rem; }
.image-frame { overflow: hidden; border: 1px solid rgba(255,255,255,.7); border-radius: clamp(18px, 3vw, 34px); background: #171525; box-shadow: 0 24px 70px rgba(30, 18, 63, .18); }
.image-frame img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 7; object-fit: cover; filter: saturate(1.08) contrast(1.03); }
.image-feature-compact .image-frame { width: min(860px, 100%); margin-left: auto; }
.image-feature-compact .image-frame img { aspect-ratio: 4 / 2.55; }
.footer-legal-links { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem .5rem; width: min(1160px, calc(100% - 2.5rem)); margin: 1.6rem auto 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.62); font-size: .82rem; }
.footer-legal-links a { color: rgba(255,255,255,.82); text-decoration: underline; text-underline-offset: .15em; }
.footer-legal-links a:hover { color: #fff; }
@media (max-width: 820px) {
  .image-feature { margin-top: -1.35rem; }
  .image-frame { border-radius: 20px; }
  .image-frame img, .image-feature-compact .image-frame img { aspect-ratio: 4 / 3; }
  .footer-legal-links { width: min(100% - 2rem, 680px); margin-top: 1.25rem; }
}


/* Graphic-design refinement: the first homepage image supports the story without overpowering it. */
.image-feature-hero { margin: 0 auto; padding: 1.5rem 0 .5rem; }
.image-feature-hero .image-frame { width: min(1020px, calc(100% - 2rem)); margin: 0 auto; border-radius: 24px; }
.image-feature-hero .image-frame img { aspect-ratio: 16 / 5; max-height: 330px; object-position: center 48%; }
.image-feature-hero + .legal-status { margin-top: 1.25rem; }
.founder-home-portrait { max-width: 410px; }
.founder-home-portrait img { display: block; width: 100%; max-height: 300px; object-fit: cover; object-position: center 42%; border-radius: 24px; }
@media (max-width: 820px) {
  .image-feature-hero { padding-top: 1rem; }
  .image-feature-hero .image-frame { width: min(100% - 2rem, 680px); border-radius: 18px; }
  .image-feature-hero .image-frame img { aspect-ratio: 16 / 8; max-height: 250px; }
}

/* Live onboarding forms */
.form-status.is-pending { color: var(--purple); }
.form-status.is-success { color: #126d42; }
.form-status.is-error { color: #9f1d3f; }
button[disabled] { opacity: .65; cursor: wait; }
fieldset { border: 1px solid var(--line); border-radius: 12px; padding: 1rem; margin: 1.2rem 0; }
fieldset legend { padding: 0 .35rem; font-weight: 800; }
.check-option { display: block; margin: .75rem 0; color: var(--muted); }
.check-option input { width: auto; margin-right: .55rem; accent-color: var(--purple); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; border: 0 !important; padding: 0 !important; }
.registration-layout { align-items: start; }

/* Launch-readiness: branded responsive error page */
.error-page { min-height: 100vh; background: var(--paper); color: var(--ink); }
.error-main { min-height: calc(100vh - 88px); display: grid; place-items: center; padding: clamp(2rem, 7vw, 6rem) 0; background: var(--gradient); }
.error-card { width: min(720px, calc(100% - 2rem)); padding: clamp(2rem, 6vw, 4.5rem); border-radius: 28px; background: rgba(255,255,255,.96); box-shadow: 0 28px 90px rgba(27,10,62,.24); }
.error-card h1 { max-width: 10ch; margin: .6rem 0 1rem; font-size: clamp(2.7rem, 7vw, 5.4rem); line-height: .98; letter-spacing: -.065em; }
.error-card p:not(.eyebrow) { max-width: 48ch; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
@media (max-width: 560px) { .error-card { border-radius: 20px; padding: 2rem 1.25rem; } .error-card h1 { font-size: clamp(2.45rem, 13vw, 4rem); } }
