:root {
  --ink: #09142e;
  --navy: #0b1735;
  --navy-soft: #132553;
  --blue: #315cf5;
  --blue-bright: #5c7cff;
  --sky: #eaf0ff;
  --paper: #fbfcff;
  --mist: #f2f5fa;
  --line: #dce3f0;
  --muted: #5d6a84;
  --white: #fff;
  --display: "Satoshi", "Avenir Next", "Helvetica Neue", sans-serif;
  --body: "Satoshi", "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--paper); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.page-shell { width: min(1160px, calc(100% - 64px)); margin: 0 auto; }
.skip-link { position: fixed; top: 12px; left: 16px; z-index: 100; transform: translateY(-160%); background: var(--blue); color: var(--white); padding: 10px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(220, 227, 240, .78); background: rgba(251, 252, 255, .88); backdrop-filter: blur(16px); }
.nav-shell { width: min(1240px, calc(100% - 64px)); height: 76px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-family: var(--body); font-size: 19px; font-weight: 700; letter-spacing: -.025em; }
.brand-mark { display: grid; width: 31px; height: 31px; place-items: center; color: var(--ink); }
.brand-mark svg { display: block; width: 100%; height: 100%; }
.primary-nav, .nav-end, .footer-nav { display: flex; align-items: center; gap: 5px; }
.primary-nav { margin-left: auto; }
.primary-nav a, .footer-nav a { padding: 10px 12px; border-radius: 8px; color: var(--muted); font-size: 13px; font-weight: 500; transition: color .2s ease, background .2s ease; }
.primary-nav a:hover, .footer-nav a:hover { color: var(--ink); background: var(--mist); }
.nav-end { gap: 20px; }
.status-chip { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 11px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.status-chip span { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px var(--sky); }
.text-link, .card-link { color: var(--blue); font-size: 13px; font-weight: 500; transition: color .2s ease, gap .2s ease; }
.text-link:hover, .card-link:hover { color: var(--navy); }

.hero { position: relative; min-height: 710px; display: grid; align-items: center; overflow: hidden; background: var(--paper); }
.hero-glow { position: absolute; inset: -24% -12% auto; height: 600px; background: radial-gradient(ellipse at 67% 38%, rgba(49, 92, 245, .13), transparent 58%); pointer-events: none; }
.hero-grid, .closing-grid { position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(49, 92, 245, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(49, 92, 245, .055) 1px, transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(ellipse at 68% 40%, #000 0%, transparent 69%); pointer-events: none; }
.hero-layout { position: relative; display: grid; grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr); align-items: center; gap: 58px; padding: 102px 0 120px; }
.hero-copy { position: relative; z-index: 1; max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 11px; margin: 0; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .18em; line-height: 1; text-transform: uppercase; }
.eyebrow-line { display: inline-block; width: 31px; height: 2px; background: currentColor; }
.eyebrow-blue { color: var(--blue); }
.eyebrow-soft { color: #b8c8ff; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); }
h1 { max-width: 700px; margin: 25px 0 25px; color: var(--ink); font-size: clamp(48px, 5vw, 72px); font-weight: 700; letter-spacing: -.035em; line-height: .96; }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.hero-lede { max-width: 490px; margin-bottom: 32px; color: var(--muted); font-size: 18px; letter-spacing: -.015em; line-height: 1.62; }
.hero-links { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 49px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); box-shadow: 0 12px 25px rgba(49, 92, 245, .23); }
.button-primary:hover { background: var(--navy); }
.button-quiet { border-color: var(--line); color: var(--ink); }
.button-quiet:hover { border-color: var(--blue); color: var(--blue); }
.button-light { background: var(--white); color: var(--navy); box-shadow: 0 12px 26px rgba(4, 14, 42, .14); }
.button-light:hover { background: var(--sky); color: var(--blue); }
.hero-note { display: inline-flex; align-items: center; gap: 10px; margin: 31px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.pulse-dot, .mini-pulse { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px var(--sky); }
.hero-preview { position: relative; z-index: 1; padding: 18px 4px 18px 16px; }
.preview-shadow { position: absolute; inset: 17px 0 18px 17px; border: 1px solid rgba(49, 92, 245, .28); border-radius: 26px; transform: rotate(4deg); background: var(--sky); }
.preview-card { position: relative; max-width: 540px; padding: 22px; border: 1px solid rgba(9, 20, 46, .1); border-radius: 21px; background: rgba(255,255,255,.94); box-shadow: 0 35px 70px -24px rgba(9, 20, 46, .26); transform: rotate(-2.3deg); }
.preview-topline, .preview-title-row, .event-heading, .event-footer, .metric { display: flex; align-items: center; }
.preview-topline { justify-content: space-between; margin-bottom: 18px; }
.preview-kicker, .metric span, .preview-meta, .preview-footer { color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .095em; text-transform: uppercase; }
.preview-menu { color: #adb8cb; font-weight: 900; letter-spacing: 3px; }
.preview-title-row { justify-content: space-between; gap: 12px; }
.preview-title { margin-bottom: 4px; color: var(--ink); font-family: var(--body); font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.preview-meta { text-transform: none; letter-spacing: 0; font-size: 11px; font-weight: 650; }
.owner-badge, .going-badge, .paid { display: inline-flex; align-items: center; border-radius: 999px; background: var(--sky); color: var(--blue); font-size: 10px; font-weight: 700; }
.owner-badge { padding: 7px 10px; }
.event-card { margin-top: 15px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.event-heading { gap: 11px; }
.event-heading p { margin: 0 0 3px; color: var(--ink); font-family: var(--body); font-size: 14px; font-weight: 700; letter-spacing: -.015em; }
.event-heading span:not(.event-icon) { color: var(--muted); font-size: 10px; font-weight: 650; }
.event-icon { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; background: var(--blue); color: var(--white); }
.event-icon svg { width: 16px; height: 16px; }
.event-footer { gap: 8px; margin-top: 14px; }
.avatar-stack { display: flex; padding-left: 3px; }
.avatar-stack span { display: grid; width: 25px; height: 25px; margin-left: -3px; place-items: center; border: 2px solid var(--paper); border-radius: 50%; background: var(--navy-soft); color: var(--white); font-size: 7px; font-weight: 800; }
.avatar-stack span:nth-child(2) { background: #5675e8; }.avatar-stack span:nth-child(3) { background: #758ef3; }.avatar-stack span:nth-child(4) { background: #ccd8ff; color: var(--blue); }
.event-count { color: var(--muted); font-size: 9px; font-weight: 700; white-space: nowrap; }
.going-badge { gap: 5px; margin-left: auto; padding: 7px 9px; background: var(--ink); color: var(--white); white-space: nowrap; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 11px; }
.metric { position: relative; flex-wrap: wrap; justify-content: space-between; min-height: 68px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; }
.metric span { width: 100%; font-size: 9px; letter-spacing: .05em; }
.metric strong { font-family: var(--body); font-size: 22px; font-weight: 700; letter-spacing: -.025em; }.metric small { color: var(--muted); font-size: 9px; font-weight: 700; }.metric .paid { padding: 4px 6px; background: #e8f7ee; color: #27824a; }
.preview-footer { display: flex; align-items: center; gap: 9px; margin-top: 14px; letter-spacing: .06em; }.mini-pulse { width: 6px; height: 6px; background: #2ca45b; box-shadow: 0 0 0 4px #e6f7ec; }
.scroll-cue { position: absolute; bottom: 28px; left: max(32px, calc((100% - 1160px) / 2)); display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }.scroll-cue span { display: inline-block; width: 30px; height: 1px; background: var(--blue); }

.section-light { background: var(--mist); }.section-paper { background: var(--paper); }.section-navy { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }.section-blue { position: relative; overflow: hidden; background: var(--blue); color: var(--white); }
.story { padding: 124px 0 129px; }.narrow-copy { max-width: 650px; }.story h2, .features h2, .organizers h2, .use-cases h2, .how-it-works h2, .closing h2 { margin: 25px 0 21px; font-size: clamp(44px, 5.7vw, 76px); font-weight: 700; letter-spacing: -.035em; line-height: .96; }.story h2 span, .features h2 span, .organizers h2 span, .use-cases h2 span, .how-it-works h2 span { color: #9caccc; }.section-lede { max-width: 500px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.63; }.scatter-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 62px; }.scatter-card { display: inline-flex; align-items: center; gap: 10px; padding: 14px 17px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); color: var(--muted); font-size: 12px; font-weight: 750; box-shadow: 0 7px 17px rgba(9,20,46,.05); }.scatter-card b { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 7px; background: var(--sky); color: var(--blue); font-size: 14px; }.tilt-left { transform: rotate(-2deg); }.tilt-right { transform: rotate(1.7deg); }

.features { padding: 128px 0 136px; }.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }.section-heading .section-lede { max-width: 360px; margin-bottom: 5px; }.feature-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 14px; margin-top: 65px; }.feature-card { position: relative; min-height: 320px; padding: 25px; border: 1px solid var(--line); border-radius: 19px; background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }.feature-card:hover { transform: translateY(-5px); border-color: rgba(49,92,245,.4); box-shadow: 0 20px 40px -24px rgba(9,20,46,.3); }.feature-number { color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .12em; }.feature-icon { display: grid; width: 48px; height: 48px; margin-top: 44px; place-items: center; border-radius: 14px; background: var(--sky); color: var(--blue); font-family: var(--body); font-size: 26px; font-weight: 700; }.feature-card h3 { margin: 18px 0 8px; color: var(--ink); font-size: 22px; letter-spacing: -.035em; }.feature-card p { max-width: 255px; margin-bottom: 24px; color: var(--muted); font-size: 13px; line-height: 1.58; }.card-link { position: absolute; bottom: 25px; left: 25px; }.feature-dark { border-color: var(--navy); background: var(--navy); }.feature-dark h3, .feature-dark .feature-number { color: var(--white); }.feature-dark p { color: #aebbd8; }.feature-dark .feature-icon { background: #203466; color: #aebdff; }.feature-dark .card-link { color: #aebdff; }

.organizers { padding: 125px 0 130px; }.navy-pattern { position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(circle at 76% 30%, rgba(92,124,255,.8), transparent 25%), linear-gradient(135deg, transparent 0 49%, rgba(255,255,255,.22) 50%, transparent 51%); background-size: 100% 100%, 44px 44px; mask-image: linear-gradient(90deg, #000, transparent 90%); }.organizer-layout { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }.organizers h2 { margin-bottom: 24px; }.organizers .section-lede { color: #aebbd8; }.organizers .button { margin-top: 31px; }.benefit-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }.benefit-list li { display: flex; align-items: center; gap: 19px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(255,255,255,.055); }.benefit-list span { color: #8ca5ff; font-size: 11px; font-weight: 800; letter-spacing: .1em; }.benefit-list strong { color: var(--white); font-size: 14px; letter-spacing: -.015em; }

.use-cases { padding: 125px 0 138px; }.centered { margin: 0 auto; text-align: center; }.centered .eyebrow { justify-content: center; }.centered .section-lede { margin: 0 auto; }.pill-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; max-width: 810px; margin: 57px auto 0; }.pill-cloud span { padding: 12px 17px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); font-size: 12px; font-weight: 750; }.pill-cloud span:nth-child(3n) { border-color: #b9c8ff; background: var(--sky); color: var(--blue); }
.how-it-works { padding: 125px 0 140px; }.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 67px 0 0; padding: 0; list-style: none; }.steps li { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding-top: 21px; border-top: 2px solid var(--blue); }.step-number { color: var(--blue); font-family: var(--body); font-size: 18px; font-weight: 700; letter-spacing: -.025em; }.steps h3 { margin: 1px 0 9px; color: var(--ink); font-size: 21px; letter-spacing: -.035em; }.steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.closing { padding: 135px 0 145px; }.closing-grid { opacity: .22; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); mask-image: radial-gradient(ellipse at 72% 50%, #000, transparent 67%); }.closing-copy { position: relative; text-align: center; }.closing-copy .eyebrow { justify-content: center; }.closing h2 { margin-bottom: 20px; color: var(--white); }.closing h2 em { color: #d3dcff; }.closing-copy > p:not(.eyebrow) { max-width: 420px; margin: 0 auto; color: #d9e1ff; font-size: 16px; line-height: 1.6; }.closing .button { margin-top: 31px; }
.site-footer { padding: 30px 0 23px; background: var(--white); }.footer-layout { display: flex; align-items: center; justify-content: space-between; gap: 28px; }.footer-nav { gap: 2px; }.copyright { margin: 26px 0 0; color: #8b97ac; font-size: 10px; text-align: center; }
.reveal { animation: reveal .75s cubic-bezier(.16,1,.3,1) both; }.reveal-delay { animation-delay: .13s; }
@keyframes reveal { from { opacity: 0; transform: translateY(17px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { animation: none; } .button, .feature-card { transition: none; } }

@media (max-width: 900px) {
  .page-shell, .nav-shell { width: min(100% - 40px, 700px); }
  .primary-nav { display: none; }
  .hero { min-height: 0; }.hero-layout { grid-template-columns: 1fr; gap: 40px; padding: 88px 0 98px; }.hero-copy { max-width: 650px; }.hero-preview { width: min(100%, 500px); margin: 0 auto; padding-left: 14px; }.scroll-cue { left: 20px; }
  .section-heading, .organizer-layout { grid-template-columns: 1fr; display: grid; gap: 24px; }.feature-grid { grid-template-columns: 1fr 1fr; }.feature-wide { grid-column: span 2; }.organizer-layout { gap: 55px; }.steps { gap: 35px; }
}

@media (max-width: 600px) {
  .page-shell, .nav-shell { width: calc(100% - 34px); }.nav-shell { height: 67px; }.nav-end { gap: 0; }.status-chip { font-size: 9px; }.text-link { display: none; }.brand-name { font-size: 18px; }
      h1 { font-size: clamp(45px, 13vw, 58px); }.hero-lede { font-size: 16px; }.hero-layout { padding-top: 75px; }.hero-preview { padding: 15px 4px 20px 7px; }.preview-card { padding: 18px; }.preview-shadow { inset: 10px -1px 13px 7px; }.preview-title { font-size: 18px; }.event-count { display: none; }.going-badge { margin-left: auto; }.story, .features, .organizers, .use-cases, .how-it-works, .closing { padding: 89px 0 96px; }.story h2, .features h2, .organizers h2, .use-cases h2, .how-it-works h2, .closing h2 { font-size: clamp(41px, 12vw, 58px); }.scatter-row { justify-content: flex-start; margin-top: 43px; }.scatter-card { width: 100%; }.tilt-left, .tilt-right { transform: none; }.feature-grid { grid-template-columns: 1fr; margin-top: 44px; }.feature-wide { grid-column: auto; }.feature-card { min-height: 300px; }.organizer-layout { gap: 43px; }.benefit-list li { padding: 15px 14px; }.benefit-list strong { font-size: 12px; }.pill-cloud { justify-content: flex-start; margin-top: 43px; }.pill-cloud span { padding: 10px 13px; font-size: 11px; }.steps { grid-template-columns: 1fr; margin-top: 46px; }.footer-layout { display: grid; gap: 22px; }.footer-nav { flex-wrap: wrap; margin: -7px; }.footer-nav a { padding: 7px; font-size: 11px; }.copyright { padding: 0 18px; line-height: 1.5; }
}
