:root {
  --navy: #0a0a0a;
  --blue: #f26522;
  --gold: #f26522;
  --cream: #f5f5ee;
  --light: #f5f5ee;
  --muted: #666663;
  --text: #1a1a1a;
  --border: #e3e0d6;
  --white: #ffffff;
  --slate-light: #d4d4d0;
  --slate-dim: #8f8f8a;
  --teal: #0d9488;
  --gold-dark: #d9541a;
  --shadow: 0 2px 10px rgba(10, 10, 10, 0.05);
  --ink: #0a0a0a;
  --accent: #f26522;
  --font-sans: Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; }
html { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 245, 238, .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display:flex; align-items:center; justify-content:space-between; min-height:72px; }
.brand { display:flex; align-items:center; gap:12px; font-weight:800; color:var(--navy); }
.brand-mark { display:grid; place-items:center; width:40px; height:40px; border-radius:8px; background:var(--gold); color:#fff; font-weight:700; letter-spacing:.04em; font-family: var(--font-sans); }
.brand-text { font-size: .96rem; color: var(--ink); font-weight:600; font-family: var(--font-sans); }
.nav { display:flex; gap:26px; align-items:center; font-weight:500; font-size:.92rem; font-family: var(--font-sans); }
.nav a { color: var(--ink); }
.nav a:hover { color: var(--accent); }
.nav-cta { background: var(--gold); color:#fff !important; padding:10px 18px; border-radius:6px; font-weight:600; }
.mobile-menu { display:none; border:0; background:transparent; font-size:26px; color:var(--ink); width:44px; height:44px; align-items:center; justify-content:center; border-radius:8px; cursor:pointer; }
.mobile-menu:active { background:rgba(10,10,10,.06); }
h1, h2, h3 { line-height:1.12; margin:0 0 16px; color:var(--navy); font-family: var(--font-serif); font-weight:600; }
.button { display:inline-flex; align-items:center; justify-content:center; border-radius:6px; padding:13px 22px; font-weight:700; border:1px solid transparent; cursor:pointer; transition:.2s ease; }
.button.primary { background:var(--navy); color:#fff; }
.button.secondary { background:white; color:var(--navy); border-color:var(--navy); }
.button.small { padding:10px 14px; font-size:.9rem; }
.button.full { width:100%; margin-top:16px; }
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-arrow { margin-left:8px; font-weight:900; }
.microcopy { color:var(--slate-dim); font-size:.9rem; margin-top:18px; }
.hero-cue { display:flex; align-items:center; gap:14px; color:#e2e8f0; }
.section { padding:76px 0; }
.section-heading { margin-bottom:28px; }
.section-heading.split { display:flex; justify-content:space-between; align-items:flex-end; gap:22px; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); font-family: var(--font-serif); font-weight:600; letter-spacing:-.01em; }
.center { text-align:center; }
.muted { color:var(--muted); }
.card-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:20px; }
.card-grid.three { grid-template-columns:repeat(3, 1fr); }
.info-card, .startup-card, .insight-card, .offer-card, .tabs { background:white; border:1px solid var(--border); border-radius:10px; padding:22px; box-shadow: var(--shadow); }
.info-card h3, .startup-card h3, .insight-card h3, .offer-card h3 { font-size:1.25rem; }

.info-card { position:relative; padding-top:38px; }
.pillar-num { position:absolute; top:20px; left:22px; font-family:'IBM Plex Mono', monospace; font-size:.72rem; font-weight:700; letter-spacing:.06em; color:var(--accent); }

/* About / stat grid removed — superseded by .about-editorial section below */

/* Wave dividers between sections */
.wave-divider { width:100%; overflow:hidden; line-height:0; background:var(--divider-bg, transparent); }
.wave-divider svg { display:block; width:100%; height:64px; }
.wave-divider path.fill { fill:var(--divider-fill, var(--white)); }
.wave-divider path.hairline { fill:none; stroke:var(--gold); stroke-width:1.5; opacity:.45; }

/* Editorial board / reviewers — YC-style full-bleed photo card, name/role/description overlaid on image */
.team-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:36px; }
.team-card { background:none; border:none; border-radius:0; overflow:visible; box-shadow:none; }
.team-photo {
  position:relative;
  aspect-ratio:4/5;
  border-radius:10px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  background:linear-gradient(135deg, var(--tint1), var(--tint2));
}
.team-photo::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(circle at 75% 20%, rgba(255,255,255,.16), transparent 55%);
}
.team-photo::after {
  content:'';
  position:absolute; left:0; right:0; bottom:0; height:78%;
  background:linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.72) 40%, transparent 100%);
}
.team-avatar {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:7rem; color:rgba(255,255,255,.14);
  letter-spacing:-.02em;
}
.team-photo-text { position:relative; z-index:1; padding:24px; width:100%; }
.team-photo-text h3 { font-family:var(--font-serif); font-weight:600; font-size:1.6rem; color:#fff; margin:0 0 4px; line-height:1.2; }
.team-photo-text .team-role { font-family:var(--font-sans); color:rgba(255,255,255,.85); font-weight:400; font-size:.95rem; margin:0 0 14px; }
.team-photo-text .team-desc { font-family:var(--font-sans); color:rgba(255,255,255,.92); font-weight:300; font-size:.92rem; line-height:1.45; margin:0; }
.filters { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:12px; margin:22px 0; }
.startup-card-head { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.avatar { width:44px; height:44px; border-radius:50%; background:#0f172a; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.8rem; flex-shrink:0; }
.muted.small { font-size:.8rem; }
.tag.funding { background:#ecfdf5; color:#065f46; }
.card-link { display:inline-block; margin-top:12px; font-size:.85rem; color:#0f172a; font-weight:700; }
.empty-state { grid-column:1/-1; padding:40px; text-align:center; color:var(--muted); background:white; border:1px dashed var(--border); border-radius:10px; }
.empty-state a { color:#0f172a; font-weight:700; }
input, select, textarea { width:100%; border:1px solid var(--border); border-radius:8px; padding:13px 14px; font:inherit; background:white; }
textarea { min-height:110px; resize:vertical; }
.startup-count { font-weight:800; color:var(--blue); margin:0 0 18px; }
.tags { display:flex; flex-wrap:wrap; gap:8px; margin:16px 0; }
.tag, .badge { background:#f0f0eb; color:var(--ink); border-radius:999px; padding:6px 10px; font-size:.78rem; font-weight:800; }
.tag.gold { background:#fffbeb; color:#92400e; }
.startup-card p { margin-bottom:12px; }
.support { font-size:.92rem; color:#475569; border-top:1px solid var(--border); padding-top:12px; margin-top:14px; }
.card-link.small { font-size:.78rem; margin-top:2px; }
/* Ecosystem donut widget (scroll-linked reveal) — YC-style: black/white/orange, sharp corners */
#ecosystem {
  --eco-ink: #0a0a0a;
  --eco-orange: #f26625;
  --eco-c1: #0a0a0a;
  --eco-c2: #262626;
  --eco-c3: #404040;
  --eco-c4: #5c5c5c;
  --eco-c5: #8a5a34;
  --eco-c6: #b8621f;
  --eco-c7: #d9691c;
  --eco-c8: var(--eco-orange);
  --eco-c9: #ff8f45;
  --eco-mono: ui-monospace, "SFMono-Regular", "IBM Plex Mono", Menlo, Consolas, monospace;
}
.eco-search { background:white; border:1.5px solid var(--eco-ink); border-radius:4px; padding:14px 18px; margin-bottom:24px; }
.eco-search input { border:none; outline:none; width:100%; font-size:1rem; font-family:var(--eco-mono); color:var(--eco-ink); background:transparent; }
.eco-search input::placeholder { color:var(--slate-dim); }
.eco-scroll-track { position:relative; }
.eco-chart-sticky { position:sticky; top:88px; padding-top:8px; }
.eco-chart-row { display:flex; gap:44px; align-items:center; flex-wrap:wrap; }
.eco-donut-wrap { position:relative; width:420px; height:420px; flex:0 0 auto; display:flex; align-items:center; justify-content:center; }
.eco-donut-wrap svg { width:100%; height:100%; overflow:visible; }
.eco-segment { cursor:pointer; transition:filter .2s ease; }
.eco-segment:hover, .eco-segment.active { filter:brightness(1.2) drop-shadow(0 0 6px rgba(242,102,37,.45)); }
.eco-center-label { position:absolute; text-align:center; pointer-events:none; }
.eco-center-label .num { font-family:var(--eco-mono); font-size:3.4rem; font-weight:800; color:var(--eco-ink); line-height:1; }
.eco-center-label .cap { font-family:var(--eco-mono); font-size:.7rem; letter-spacing:.08em; color:var(--eco-orange); font-weight:700; margin-top:8px; }
.eco-info-card { flex:1 1 360px; background:white; border:1.5px solid var(--eco-ink); border-radius:10px; padding:28px; min-height:320px; align-self:stretch; }
.eco-info-card .hint { color:var(--muted); font-size:.98rem; }
.eco-info-head { display:flex; align-items:center; gap:12px; margin-bottom:14px; padding-bottom:14px; border-bottom:1.5px solid var(--eco-ink); }
.eco-info-head .dot { width:14px; height:14px; border-radius:2px; flex:0 0 auto; }
.eco-info-head .title { font-weight:800; font-size:1.15rem; color:var(--eco-ink); }
.eco-info-count { font-family:var(--eco-mono); color:var(--eco-orange); font-size:.8rem; font-weight:700; letter-spacing:.03em; text-transform:uppercase; margin-bottom:18px; }
.eco-org-list { list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.eco-org-list li { background:white; border:1px solid var(--border); border-radius:3px; padding:11px 14px; font-size:.88rem; display:flex; justify-content:space-between; gap:10px; }
.eco-org-list li span.role { font-family:var(--eco-mono); color:var(--eco-orange); font-size:.72rem; white-space:nowrap; text-transform:uppercase; }
.eco-search-results { list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.eco-search-results li { background:white; border:1px solid var(--border); border-radius:3px; padding:11px 14px; font-size:.88rem; }
.eco-search-results li b { display:block; color:var(--eco-ink); }
.eco-search-results li span { font-family:var(--eco-mono); color:var(--eco-orange); font-size:.72rem; text-transform:uppercase; }
.eco-legend { display:flex; flex-wrap:wrap; gap:10px 18px; margin-top:26px; }
.eco-legend .item { display:flex; align-items:center; gap:8px; font-family:var(--eco-mono); font-size:.76rem; color:#4b5563; opacity:.35; transition:opacity .3s ease; }
.eco-legend .item.on { opacity:1; }
.eco-legend .sw { width:10px; height:10px; border-radius:2px; }
@media (prefers-reduced-motion: reduce) { .eco-segment { transition:none; } }
.insight-featured { display:grid; grid-template-columns:1.05fr 1fr; gap:26px; align-items:stretch; margin-bottom:40px; }
.insight-featured-media { position:relative; border-radius:12px; min-height:260px; padding:22px; display:flex; align-items:flex-end; box-shadow:var(--shadow); overflow:hidden; background:linear-gradient(135deg, var(--tint1), var(--tint2)); }
.insight-featured-media::after { content:''; position:absolute; inset:0; background:radial-gradient(circle at 80% 15%, rgba(255,255,255,.22), transparent 55%); }
.featured-tag { position:relative; z-index:1; font-weight:900; letter-spacing:.06em; text-transform:uppercase; font-size:.72rem; color:white; background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.3); padding:8px 14px; border-radius:999px; }
.insight-featured-content { background:white; border:1px solid var(--border); border-radius:12px; padding:28px; box-shadow:var(--shadow); display:flex; flex-direction:column; justify-content:center; }
.insight-featured-content h3 { font-size:1.4rem; margin:0 0 10px; }
.insight-subheading { font-size:1.1rem; margin:0 0 20px; color:var(--navy); }

.insight-card { padding:0; overflow:hidden; display:flex; flex-direction:column; }
.insight-thumb { height:140px; padding:14px; display:flex; align-items:flex-end; background:linear-gradient(135deg, var(--tint1), var(--tint2)); }
.insight-thumb span { background:rgba(15,23,42,.5); color:white; font-size:.7rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; padding:6px 10px; border-radius:999px; }
.insight-card-body { padding:20px; }
.insight-card-body h3 { font-size:1.1rem; }

.insight-meta { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.insight-card h3 { margin:0 0 8px; }
.insight-card .tags { margin:14px 0; }
.insight-footer { display:flex; align-items:center; justify-content:space-between; gap:10px; border-top:1px solid var(--border); padding-top:14px; margin-top:6px; }
.read-more { background:transparent; border:0; padding:0; font-weight:800; color:var(--navy); cursor:pointer; font-size:.88rem; font-family:inherit; }
.read-more:hover { color:var(--blue); text-decoration:underline; }

/* Knowledge & News style layout: left stack / center feature / right list */
.insight-yc-grid { display:grid; grid-template-columns:220px 1.4fr 260px; gap:32px; align-items:start; }

.insight-yc-left { display:flex; flex-direction:column; gap:20px; }
.insight-mini-card { display:block; text-align:left; background:transparent; border:0; padding:0; cursor:pointer; font-family:inherit; width:100%; }
.insight-mini-thumb { border-radius:10px; height:100px; background:linear-gradient(135deg, var(--tint1), var(--tint2)); box-shadow:var(--shadow); margin-bottom:10px; }
.insight-mini-title { display:block; font-weight:700; font-size:.92rem; line-height:1.4; color:var(--text); }
.insight-mini-card:hover .insight-mini-title { color:var(--blue); text-decoration:underline; }

.insight-yc-center-media { position:relative; border-radius:10px; min-height:280px; padding:20px; display:flex; align-items:flex-end; box-shadow:var(--shadow); overflow:hidden; background:linear-gradient(135deg, var(--tint1), var(--tint2)); }
.insight-yc-center-media::after { content:''; position:absolute; inset:0; background:radial-gradient(circle at 80% 15%, rgba(255,255,255,.22), transparent 55%); }
.insight-yc-center-body { padding-top:18px; }
.insight-yc-center-body h3 { font-size:1.3rem; margin:0 0 10px; }
.insight-yc-center-body p { color:var(--muted); margin:0 0 16px; }
.insight-yc-center-body .insight-footer { border-top:0; padding-top:0; margin-top:0; }

.insight-yc-right-heading { font-family:'IBM Plex Mono', monospace; text-transform:uppercase; letter-spacing:.04em; font-weight:700; font-style:normal; font-size:.82rem; margin:0 0 14px; color:var(--accent); }
.insight-yc-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; }
.insight-yc-list li { border-top:1px solid var(--border); padding:14px 0; }
.insight-yc-list li:first-child { border-top:0; padding-top:0; }
.insight-yc-list-link { display:block; text-align:left; background:transparent; border:0; padding:0; font-weight:700; font-size:.92rem; line-height:1.45; color:var(--text); cursor:pointer; font-family:inherit; }
.insight-yc-list-link:hover { color:var(--blue); text-decoration:underline; }

@media (max-width: 980px) {
  .insight-yc-grid { grid-template-columns:1fr 1fr; }
  .insight-yc-center { grid-column:1 / -1; order:-1; }
  .insight-yc-left { flex-direction:row; }
  .insight-yc-left .insight-mini-card { flex:1; }
}
@media (max-width: 640px) {
  .insight-yc-grid { grid-template-columns:1fr; }
  .insight-yc-left { flex-direction:column; }
}

.modal-overlay { position:fixed; inset:0; background:rgba(15,23,42,.62); display:none; align-items:center; justify-content:center; padding:24px; z-index:1000; }
.modal-overlay.open { display:flex; }
.modal { background:white; border-radius:14px; max-width:640px; width:100%; max-height:85vh; overflow-y:auto; padding:34px; box-shadow:0 24px 60px rgba(10,10,10,.25); position:relative; }
.modal-close { position:absolute; top:18px; right:18px; width:36px; height:36px; border-radius:50%; border:1px solid var(--border); background:var(--light); font-size:16px; cursor:pointer; }
.modal-meta { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.modal h3 { margin:0 0 18px; font-size:1.5rem; max-width:480px; }
.modal-body p { margin:0 0 14px; }
.modal-tags { margin-top:20px; }
.modal-demo-note { margin-top:18px; border-top:1px solid var(--border); padding-top:14px; }

.sponsor-intro { max-width:740px; margin:0 auto 44px; }
.sponsor-grid-main { display:grid; grid-template-columns:1.3fr .9fr; gap:32px; align-items:start; margin-bottom:40px; }
.sponsor-benefits h3 { color:var(--navy); margin:0 0 16px; }
.benefit-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; }
.benefit-card h4 { color:var(--navy); margin:0 0 8px; font-size:.95rem; }

.event-list { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:24px; }
.event-type { align-self:start; }

/* Event countdown card */
.event-countdown-card {
  background:white; border:1px solid var(--border); border-radius:10px; overflow:hidden;
  box-shadow:var(--shadow); display:flex; flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
}
.event-countdown-card:hover { transform:translateY(-6px); box-shadow:0 22px 48px rgba(15,23,42,.14); }

.ecc-media { position:relative; height:180px; overflow:hidden; }
.ecc-media img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease; }
.event-countdown-card:hover .ecc-media img { transform:scale(1.08); }
.ecc-media-fade { position:absolute; inset:0; background:linear-gradient(to top, rgba(15,23,42,.45), transparent 60%); }
.ecc-type-badge { position:absolute; top:14px; left:14px; }
.ecc-urgent-badge { position:absolute; top:14px; right:14px; background:#ef4444; color:white; font-size:.7rem; font-weight:800; letter-spacing:.02em; text-transform:uppercase; padding:6px 12px; border-radius:999px; }

.ecc-body { padding:22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.ecc-body h3 { margin:0; font-size:1.15rem; }
.ecc-desc { margin:0; }

.ecc-meta { display:flex; flex-wrap:wrap; gap:16px; color:var(--muted); font-size:.85rem; margin:2px 0 4px; }
.ecc-meta span { display:inline-flex; align-items:center; gap:6px; }
.ecc-meta svg { flex-shrink:0; }

.ecc-countdown-label { display:flex; align-items:center; gap:6px; font-size:.85rem; font-weight:700; color:var(--muted); }
.ecc-countdown-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:8px; margin-bottom:4px; }
.ecc-unit { background:var(--light); border:1px solid var(--border); border-radius:8px; padding:10px 4px; text-align:center; }
.ecc-unit-value { font-weight:800; font-size:1.1rem; font-variant-numeric:tabular-nums; color:var(--navy); }
.ecc-unit-label { font-size:.68rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.03em; }
@keyframes ecc-pulse { 0%, 100% { opacity:1; transform:scale(1); } 50% { opacity:.65; transform:scale(1.12); } }
.ecc-pulse { animation:ecc-pulse 1s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .ecc-pulse { animation:none; } }

.ecc-started { text-align:center; padding:10px 0; }
.ecc-started-title { font-weight:800; color:#16a34a; font-size:1.05rem; }

.ecc-cta { margin-top:auto; background:#111827; color:white; border-color:#111827; }
.ecc-cta:hover { background:#000000; border-color:#000000; }
.sponsor { background:var(--cream); color:var(--text); }
.sponsor h2, .sponsor h3 { color:var(--ink); font-family:var(--font-serif); font-style:normal; font-weight:600; letter-spacing:-.01em; }
.sponsor p { color:var(--muted); font-family:var(--font-sans); }
.sponsor .button, .sponsor .badge, .sponsor li { font-family:var(--font-sans); }
.check-list { list-style:none; padding:0; margin:24px 0 0; }
.check-list li { margin:10px 0; padding-left:26px; position:relative; }
.check-list li:before { content:"—"; position:absolute; left:0; top:0; color:var(--navy); font-weight:700; }
.offer-card { background:white; border:1px solid var(--border); }
.offer-card h3 { font-size:2.4rem; color:var(--navy); font-style:normal; font-weight:600; font-family:var(--font-serif); }
.sponsor .button.primary { background:var(--navy); color:white; border-color:var(--navy); }
.sponsor .button.primary:hover { background:#000; border-color:#000; }

.benefit-card { position:relative; padding-top:34px; }
.benefit-num { font-family:var(--font-mono); font-size:.78rem; font-weight:700; color:var(--slate-dim); position:absolute; top:0; left:0; letter-spacing:.02em; }
.benefit-card h4 { border-top:1px solid var(--border); padding-top:10px; margin-top:8px; font-family:var(--font-sans); }

/* Founding Partner logo mosaic */
.partner-mosaic { margin:0 0 40px; }
.partner-mosaic-head { text-align:center; max-width:640px; margin:0 auto 30px; }
.partner-mosaic-head h3 { font-size:1.6rem; margin:0 0 12px; }
.partner-mosaic-head .badge { background:#f0f0eb; color:var(--ink); border:1px solid transparent; font-family:var(--font-sans); font-weight:700; font-size:.7rem; text-transform:uppercase; letter-spacing:.02em; }
.mosaic-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; max-width:900px; margin:0 auto; }
.mosaic-tile { background:white; border:1px solid var(--border); border-radius:10px; padding:26px 20px; display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; box-shadow:var(--shadow); transition:transform .2s ease, border-color .2s ease; }
.mosaic-tile:hover { transform:translateY(-4px); border-color:var(--slate-dim); }
.mosaic-tile.offset-b { transform:translateY(-14px); }
.mosaic-tile.offset-b:hover { transform:translateY(-18px); }
.mosaic-tile.offset-c { transform:translateY(8px); }
.mosaic-tile.offset-c:hover { transform:translateY(4px); }
.mosaic-mark { width:52px; height:52px; border-radius:8px; background:var(--cream); border:1px solid var(--border); color:var(--navy); display:grid; place-items:center; font-family:var(--font-mono); font-weight:700; font-size:.95rem; letter-spacing:.02em; }
.mosaic-name { font-family:var(--font-sans); font-weight:700; color:var(--navy); font-size:1.02rem; }
.mosaic-tag { font-family:var(--font-mono); font-size:.72rem; letter-spacing:.03em; text-transform:uppercase; font-weight:700; color:var(--accent); }
.mosaic-tile.open { background:transparent; border:1.5px dashed var(--slate-light); box-shadow:none; }
.mosaic-tile.open .mosaic-mark { background:transparent; border:1.5px dashed var(--slate-light); color:var(--slate-dim); }
.mosaic-tile.open .mosaic-name { color:var(--slate-dim); }
.mosaic-tile.open .mosaic-tag { color:var(--slate-dim); }
#submit { background:var(--cream); }
#submit h2 { font-family:var(--font-serif); font-style:normal; font-weight:600; letter-spacing:-.01em; color:var(--ink); font-size:clamp(2rem, 3.4vw, 2.6rem); line-height:1.15; margin:0 0 16px; }
#submit .button.primary { background:var(--navy); color:white; border-color:var(--navy); }
#submit .button.primary:hover { background:#000; border-color:#000; }
.form-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:34px; align-items:start; }
.tab-buttons { display:flex; gap:8px; margin-bottom:18px; flex-wrap:wrap; }
.tab-btn { border:1px solid var(--border); background:white; padding:10px 14px; border-radius:6px; cursor:pointer; font-weight:800; }
.tab-btn.active { background:var(--navy); color:white; border-color:var(--navy); }
.form-panel { display:none; }
.hp-field { position:absolute; left:-9999px; top:-9999px; opacity:0; pointer-events:none; } 
.form-panel.active { display:grid; gap:14px; }
label { display:grid; gap:6px; font-weight:800; color:#334155; }
.submission-log { margin-top:20px; display:grid; gap:10px; }
.log-item { background:#ecfdf5; border:1px solid #bbf7d0; color:#166534; padding:12px; border-radius:8px; font-weight:700; }

/* Validation-ready form states */
input.invalid, select.invalid, textarea.invalid { border-color:#dc2626; background:#fef2f2; }
input.invalid:focus, select.invalid:focus, textarea.invalid:focus { outline-color:#dc2626; }
.field-error { display:none; color:#dc2626; font-size:.82rem; font-weight:700; }
.field-error.visible { display:block; }
@keyframes shake-invalid { 10%, 90% { transform: translateX(-1px); } 20%, 80% { transform: translateX(2px); } 30%, 50%, 70% { transform: translateX(-3px); } 40%, 60% { transform: translateX(3px); } }
.shake { animation: shake-invalid .4s; }

/* Success / error banners shown after a submit attempt */
.form-message { padding:13px 16px; border-radius:8px; font-weight:700; font-size:.92rem; }
.form-message[hidden] { display:none; }
.form-message.success { background:#ecfdf5; border:1px solid #bbf7d0; color:#166534; }
.form-message.error { background:#fef2f2; border:1px solid #fecaca; color:#991b1b; }
.footer { background:#020617; color:var(--slate-light); padding:38px 0; }
.footer-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.footer p { margin:6px 0 0; color:var(--slate-dim); }
@media (max-width: 820px) {
  .mobile-menu { display:flex; }
  .nav { position:absolute; top:72px; left:0; right:0; background:var(--cream); border-bottom:1px solid var(--border); padding:12px 20px 20px; flex-direction:column; align-items:stretch; gap:2px; display:none; box-shadow:0 16px 30px rgba(15,23,42,.18); max-height:calc(100vh - 72px); overflow-y:auto; }
  .nav.open { display:flex; }
  .nav a { color:var(--text); padding:13px 4px; border-bottom:1px solid var(--border); width:100%; }
  .nav a:last-child { border-bottom:0; }
  .nav-cta { text-align:center; margin-top:6px; }
  .form-grid, .sponsor-grid-main { grid-template-columns:1fr; }
  .card-grid.three { grid-template-columns:1fr; }
  .wave-divider svg { height:40px; }
  .filters { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .section-heading.split { align-items:flex-start; flex-direction:column; }
  .eco-chart-row { flex-direction:column; align-items:center; }
  .eco-donut-wrap { width:320px; height:320px; }
  .eco-info-card { width:100%; }
  .eco-chart-sticky { position:static; }
  .benefit-grid { grid-template-columns:1fr; }
  .mosaic-grid { grid-template-columns:1fr; max-width:340px; }
  .mosaic-tile, .mosaic-tile.offset-b, .mosaic-tile.offset-c { transform:none; }
  .mosaic-tile:hover, .mosaic-tile.offset-b:hover, .mosaic-tile.offset-c:hover { transform:translateY(-3px); }
  .modal { padding:26px; }
  .insight-featured { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:24px; }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 32px); }
  .hero { padding:56px 0 44px; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .section { padding:52px 0; }
  .card-grid.three { grid-template-columns:1fr; }
  .brand-text { font-size:.86rem; color: white;}
  .brand-mark { width:38px; height:38px; }
  .modal { padding:20px; border-radius:12px; }
  .modal h3 { font-size:1.25rem; }
  .mosaic-grid { max-width:100%; }
  .sponsor-benefits h3 { font-size:1.15rem; }
  .offer-card h3 { font-size:1.9rem; }
  .button, .tab-btn, input, select, textarea { font-size:16px; }
  .eco-donut-wrap { width:280px; height:280px; }
}

.hero {
  background: var(--cream);
  padding: 64px 0 0;
  text-align: center;
}
.hero-head { max-width: 900px; }
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 40px;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--ink); }
.hero h1 sup {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  vertical-align: super;
  color: var(--muted);
  margin-left: 2px;
}

.hero-gallery {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 6px;
}
.hero-gallery::-webkit-scrollbar { display: none; }
.hero-gallery-img {
  flex: 0 0 clamp(220px, 22vw, 340px);
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
}
.hero-gallery-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-cite {
  max-width: 460px;
  margin: 40px auto 0;
  text-align: left;
}
.hero-cite p {
  font-family: var(--font-serif);
  font-size: .98rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 6px;
}
.hero-cite p em { font-style: italic; }
.hero-cite-src {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--slate-dim);
}

.hero-intro {
  max-width: 720px;
  margin: 96px auto 0;
  text-align: left;
}

.hero-stats {
  max-width: 720px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}
.hero-stats-source {
  max-width: 720px;
  margin: 16px auto 0;
  font-family: var(--font-sans);
  font-size: .74rem;
  color: var(--slate-dim);
  text-align: left;
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
}

.hero-cue {
  display: block;
  text-align: center;
  color: var(--slate-dim);
  font-size: 1.4rem;
  margin: 56px 0 20px;
}
.hero .microcopy.center { text-align: center; }

.feature-eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  padding-top: 3rem;
  margin: 0;
}

.feature-source {
  text-align: center;
  font-family: var(--font-sans);
  font-size: .74rem;
  color: var(--slate-dim);
  margin: -1rem 0 0;
}

.feature-story {
  display: flex;
  gap: 4rem;
  padding: 4rem 2rem 10vh;
}

.feature-sticky {
  position: sticky;
  top: 15vh;
  height: fit-content;
  flex: 1.1;
}

.feature-card {
  background: var(--white, #fff);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: opacity 0.35s ease;

  /* pop-in starting state */
  transform: translateY(40px) scale(0.94);
  opacity: 0;
}

.feature-card.in-view {
  animation: cardPopIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cardPopIn {
  0% {
    transform: translateY(40px) scale(0.94);
    opacity: 0;
  }
  60% {
    transform: translateY(-6px) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.feature-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent, #f26522);
  margin-bottom: 0.75rem;
}

.feature-card h3 { margin: 0 0 0.75rem; }
.feature-card p { margin: 0; color: #555; }

.feature-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-item {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: #d4d4d0;
  padding: 8vh 0;
  transition: color 0.35s ease, font-weight 0.25s ease;
  cursor: default;
}

.feature-item.active {
  color: var(--ink, #1a1a1a);
  font-weight: 700;
}

@media (max-width: 768px) {
  .feature-story { flex-direction: column; }
  .feature-sticky { position: static; }
}

.feature {
  background: var(--cream); 
}

.feature-cta {
  text-align: center;
  padding: 2rem 2rem 6rem;
}

.feature-cta-link {
  font-family: 'IBM Plex Mono', monospace;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--accent, #f26522);
  text-decoration: none;
}

.feature-cta-link:hover {
  text-decoration: underline;
}

.about-dropcap {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1.4rem;
}

.dropcap-letter {
  float: left;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 600;
  color: var(--accent);
  padding-right: 0.5rem;
  padding-top: 0.3rem;
}

.about-body {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 900px) {
  .about-dropcap, .about-body {
    font-size: 1.15rem;
  }
}

.section.light {
  padding: 6rem 2rem; /* match about-editorial's vertical rhythm */
  background-color: var(--cream);
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-style: normal;
  letter-spacing: -.01em;
  font-size: 2.2rem;
  font-weight: 600;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.info-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-right: 1px solid rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
}

.info-card:last-child {
  border-right: none;
}

.pillar-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 1rem;
}

.info-card p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

@media (max-width: 900px) {
  .card-grid.three {
    grid-template-columns: 1fr;
  }
  .info-card {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .info-card:last-child {
    border-bottom: none;
  }
}

/* Platform pillars — tabbed feature showcase */
.pillars .section-heading.center { max-width: 640px; margin-left: auto; margin-right: auto; }
.pillars .section-heading.center .badge { margin-bottom: 14px; }
.pillars .section-heading.center h2 { margin-bottom: 10px; }

.pillars-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 0;
}
.pillars-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .92rem;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.pillars-tab svg { width: 17px; height: 17px; flex-shrink: 0; }
.pillars-tab:hover { color: var(--ink); }
.pillars-tab.active { background: white; color: var(--ink); box-shadow: var(--shadow); }

.pillars-panel-wrap {
  margin: 32px auto 0;
  max-width: 1080px;
  background: #ece9dd;
  border-radius: 20px;
  padding: 40px;
}
.pillars-panel { display: none; }
.pillars-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pillars-panel-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.pillars-panel-copy .badge { background: white; }
.pillars-panel-copy h3 { margin: 0; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.pillars-panel-copy p { font-family: var(--font-sans); font-weight: 300; color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin: 0; }
.pillars-panel-media { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; }
.pillars-panel-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 860px) {
  .pillars-panel-wrap { padding: 24px; border-radius: 16px; }
  .pillars-panel.active { grid-template-columns: 1fr; gap: 28px; }
  .pillars-panel-media { order: -1; }
  .pillars-tabs { gap: 8px; }
  .pillars-tab { padding: 10px 14px; font-size: .86rem; }
}

/* Ecosystem map — orbiting category icons around a rotating particle sphere */
.orbit-ecosystem .section-heading.center { max-width: 560px; margin: 0 auto; }
.orbit-ecosystem .section-heading.center .badge { margin-bottom: 14px; }
.orbit-ecosystem .section-heading.center h2 { margin-bottom: 10px; }

.orbit-stage {
  position: relative;
  width: 100%;
  height: 340px;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .orbit-stage { height: 460px; }
}

.orbit-sphere {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 2;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  border-radius: 50%;
  border: 1px solid var(--border);
}
.orbit-ring-1 { width: 210px; height: 210px; }
.orbit-ring-2 { width: 300px; height: 300px; }
.orbit-ring-3 { width: 390px; height: 390px; }
.orbit-ring-4 { width: 480px; height: 480px; }
@media (min-width: 768px) {
  .orbit-ring-1 { width: 280px; height: 280px; }
  .orbit-ring-2 { width: 400px; height: 400px; }
  .orbit-ring-3 { width: 520px; height: 520px; }
  .orbit-ring-4 { width: 640px; height: 640px; }
}

.orbit-icon {
  position: absolute;
  top: 0;
  left: 50%;
  height: 50%;
  margin-left: -19px;
  transform-origin: bottom center;
  display: flex;
  justify-content: center;
  animation: orbit-cw var(--duration, 20s) linear infinite;
}
.orbit-icon.orbit-icon-ccw { animation-name: orbit-ccw; }

.orbit-icon-bubble {
  width: 38px;
  height: 38px;
  margin-top: -19px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  color: var(--eco-color, var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  animation: counter-cw var(--duration, 20s) linear infinite;
}
.orbit-icon-bubble.orbit-icon-bubble-ccw { animation-name: counter-ccw; }
.orbit-icon-bubble svg { width: 17px; height: 17px; }

@keyframes orbit-cw {
  from { transform: rotate(var(--start-angle)); }
  to   { transform: rotate(calc(var(--start-angle) + 360deg)); }
}
@keyframes orbit-ccw {
  from { transform: rotate(var(--start-angle)); }
  to   { transform: rotate(calc(var(--start-angle) - 360deg)); }
}
@keyframes counter-cw {
  from { transform: rotate(var(--counter-offset)); }
  to   { transform: rotate(calc(var(--counter-offset) - 360deg)); }
}
@keyframes counter-ccw {
  from { transform: rotate(var(--counter-offset)); }
  to   { transform: rotate(calc(var(--counter-offset) + 360deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-icon, .orbit-icon-bubble { animation: none; }
}

.orbit-legend {
  list-style: none;
  margin: 28px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}
.orbit-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--muted);
}
.orbit-legend .sw { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }

.orbit-source {
  text-align: center;
  font-family: var(--font-sans);
  font-size: .76rem;
  color: var(--slate-dim);
  margin: 16px 0 0;
}
.orbit-source em { font-style: italic; }

@media (max-width: 520px) {
  .orbit-stage { height: 300px; }
  .orbit-ring-1 { width: 160px; height: 160px; }
  .orbit-ring-2 { width: 230px; height: 230px; }
  .orbit-ring-3 { width: 300px; height: 300px; }
  .orbit-ring-4 { width: 370px; height: 370px; }
  .orbit-icon { margin-left: -16px; }
  .orbit-icon-bubble { width: 32px; height: 32px; margin-top: -16px; }
  .orbit-icon-bubble svg { width: 14px; height: 14px; }
}

/* Founding Partners — auto-scrolling marquee of partner cards */
.partner-marquee-section { margin: 0 0 40px; }
.partner-marquee-head { max-width: 640px; margin: 0 auto 40px; display: flex; flex-direction: column; align-items: center; }
.partner-marquee-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  margin-bottom: 18px;
}
.partner-marquee-icon svg { width: 22px; height: 22px; }
.partner-marquee-heading { position: relative; display: inline-block; margin-bottom: 14px; }
.partner-marquee-doodle { position: absolute; top: -18px; right: -34px; width: 60px; height: auto; color: var(--border); z-index: -1; }
.partner-marquee-head p { color: var(--muted); }

.partner-marquee-wrap { position: relative; overflow: hidden; }
.partner-marquee-fade { position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.partner-marquee-fade.fade-l { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.partner-marquee-fade.fade-r { right: 0; background: linear-gradient(to left, var(--cream), transparent); }

.partner-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: partner-marquee 26s linear infinite;
}
.partner-marquee-wrap:hover .partner-marquee-track { animation-play-state: paused; }
@keyframes partner-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track { animation: none; }
}

.partner-card { width: 190px; flex-shrink: 0; display: flex; flex-direction: column; gap: 14px; }
.partner-card-mark {
  aspect-ratio: 1;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, var(--tint1, #0a0a0a), var(--tint2, #3a3a37));
  box-shadow: var(--shadow);
}
.partner-card-mark.open {
  background: transparent;
  border: 1.5px dashed var(--slate-light);
  color: var(--slate-dim);
}
.partner-card-body h3 { font-size: 1.02rem; margin: 0 0 6px; font-family: var(--font-sans); font-weight: 700; }
.partner-card-tag { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .03em; text-transform: uppercase; font-weight: 700; color: var(--accent); }
.partner-card-tag.open { color: var(--slate-dim); }

@media (max-width: 640px) {
  .partner-marquee-doodle { display: none; }
  .partner-card { width: 150px; }
  .partner-card-mark { font-size: 1.3rem; }
}

/* Founding Partner offer — single highlighted pricing card */
.pricing-section { max-width: 460px; margin: 0 auto; }
.pricing-section-head { text-align: center; margin-bottom: 28px; }
.pricing-section-head h3 { margin-bottom: 8px; }
.pricing-section-head p { margin: 0; }

.pricing-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(10, 10, 10, .28);
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 60%, transparent 100%);
  pointer-events: none;
}

.pricing-card-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.pricing-card-tier {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 18px;
}

.pricing-card-price {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-serif);
  color: #fff;
  margin-bottom: 6px;
}
.pricing-card-currency { font-size: 1.6rem; font-weight: 600; color: var(--accent); }
.pricing-card-num { font-size: 3.2rem; font-weight: 600; line-height: 1; color: var(--accent); font-variant-numeric: tabular-nums; }
.pricing-card-period { font-family: var(--font-sans); font-size: .95rem; color: rgba(255,255,255,.6); }

.pricing-card-desc { position: relative; font-family: var(--font-sans); font-size: .92rem; color: rgba(255,255,255,.68); margin: 0 0 26px; }

.pricing-card-features { position: relative; list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  line-height: 1.4;
}
.pricing-card-features svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--accent); }

.pricing-card-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  padding: 15px 22px;
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pricing-card-cta svg { width: 16px; height: 16px; transition: transform .2s ease; }
.pricing-card-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.pricing-card-cta:hover svg { transform: translateX(2px); }

@media (max-width: 520px) {
  .pricing-card { padding: 28px; }
  .pricing-card-num { font-size: 2.5rem; }
}