/* ═══════════════════════════════════════════════════════════════
   brightbud-landing.css
   Styles for brightbud.html (Early Bird landing page).
   Requires brightbud-shared.css for :root tokens and base resets.
   ═══════════════════════════════════════════════════════════════ */

/* ── Image placeholder ─────────────────────────────────────── */
.img-slot {
  background: #EDE8DF;
  border: 2px dashed #C8BFB0;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.img-slot-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 20px; text-align: center; color: var(--ink-mute);
}
.img-slot-icon { width: 28px; height: 28px; opacity: .5; }
.img-slot-label { font-size: 11px; font-weight: 600; line-height: 1.5; max-width: 150px; letter-spacing: .01em; }

/* ── NAV (landing-specific header) ────────────────────────── */
.eb-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.eb-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 80px;
}
.eb-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.eb-logo-mark { height: 52px; width: auto; }
.eb-logo-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.025em; }
.eb-nav-inner { position: relative; }
.eb-nav-links { display: flex; align-items: center; gap: 4px; position: absolute; left: 50%; transform: translateX(-50%); }
.eb-nav-links a { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); text-decoration: none; padding: 6px 12px; border-radius: var(--radius-sm); transition: color .15s, background .15s; }
.eb-nav-links a:hover { color: var(--ink); background: var(--paper-2); }
.eb-nav-actions { display: flex; align-items: center; gap: 10px; }
.eb-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 700;
  text-decoration: none; transition: background .2s;
}
.eb-nav-cta:hover { background: var(--indigo); }
.eb-nav-signin {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: border-color .2s, color .2s;
}
.eb-nav-signin:hover { border-color: var(--ink); }

/* Override .nav-cta from shared — on landing, this is the user-menu trigger wrapper */
.eb-nav .nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; background: none; border: none;
  font: inherit; cursor: pointer; color: var(--ink);
  border-radius: 0;
}

/* ── Section commons ───────────────────────────────────────── */
.eb-section-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); }
.eb-section-title {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700; line-height: 1.1; color: var(--ink); letter-spacing: -.03em;
}
.eb-section-title em { font-style: italic; font-weight: 400; }
.eb-section-body { font-size: 16px; line-height: 1.78; color: var(--ink-soft); }

/* ── HERO ──────────────────────────────────────────────────── */
.eb-hero {
  position: relative; overflow: hidden;
  background: var(--paper); padding: 72px 60px 0;
}
.eb-hero::before {
  content: '';
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, var(--indigo-bg) 0%, transparent 70%);
  top: -200px; right: -120px; z-index: 0;
}
.eb-hero::after {
  content: '';
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--amber-bg) 0%, transparent 70%);
  bottom: 0; left: -80px; z-index: 0;
}
.eb-hero-inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 56px; align-items: center;
}

/* Left column */
.eb-left { display: flex; flex-direction: column; gap: 26px; padding-bottom: 72px; min-width: 0; }
.eb-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--indigo); background: var(--indigo-bg);
  padding: 8px 16px; border-radius: var(--radius-pill); width: fit-content;
}
.eb-h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(50px, 6vw, 80px);
  line-height: 1.0; letter-spacing: -.04em; color: var(--ink);
}
.eb-h1 em { font-style: italic; font-weight: 400; color: var(--indigo); }

.rainbow-line { position: relative; display: inline; }
.rainbow-line::after {
  content: "";
  position: absolute; left: -2%; right: -2%; bottom: 4px; height: 12px;
  background: linear-gradient(to right,
    var(--t-red) 0% 14%, var(--t-orange) 14% 28%, var(--t-yellow) 28% 42%,
    var(--t-green) 42% 57%, var(--t-blue) 57% 71%, var(--t-indigo) 71% 85%, var(--t-purple) 85% 100%
  );
  opacity: .4; border-radius: 6px; z-index: -1;
}
.eb-body { font-size: 17px; line-height: 1.78; color: var(--ink-soft); max-width: 460px; }

.eb-pillars { display: flex; gap: 10px; flex-wrap: wrap; }
.eb-pillar-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700;
}
.eb-pillar-tag--indigo { background: var(--indigo-bg); color: var(--indigo); }
.eb-pillar-tag--teal   { background: var(--teal-bg);   color: var(--teal-text); }
.eb-pillar-tag--amber  { background: var(--amber-bg);  color: var(--amber); }

.eb-hero-form { display: flex; gap: 10px; }
.eb-input {
  flex: 1; padding: 16px 20px;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius-md);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.eb-input:focus { border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(74,79,158,.1); }
.eb-input::placeholder { color: var(--ink-mute); }
.eb-btn {
  padding: 16px 26px;
  background: var(--ink); color: #fff;
  border: none; border-radius: var(--radius-pill);
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.eb-btn:hover { background: var(--t-orange); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(42,38,32,.3); }
.eb-btn:active { transform: translateY(0); }
.eb-btn:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }

.eb-perks-ticker {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.eb-perks-ticker::before,
.eb-perks-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 60px; z-index: 2; pointer-events: none;
}
.eb-perks-ticker::before { left: 0;  background: linear-gradient(to right, var(--paper), transparent); }
.eb-perks-ticker::after  { right: 0; background: linear-gradient(to left,  var(--paper), transparent); }
.eb-perks-track {
  display: flex; gap: 0; width: max-content;
  animation: ticker 18s linear infinite;
}
.eb-perks-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.eb-perk {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 0 32px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  white-space: nowrap; border-right: 1px solid var(--line);
}
.eb-perk:last-of-type { border-right: none; }
.eb-perk-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--indigo-bg); color: var(--indigo);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.eb-hero-sub { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-mute); margin-top: -8px; }
.eb-msg { font-size: 13px; padding: 10px 14px; border-radius: var(--radius-sm); }
.eb-msg--error { color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; }
.eb-success-state {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: #ecfdf5; border: 1.5px solid #a7f3d0; border-radius: var(--radius-md);
}
.eb-success-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #059669; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.eb-success-title { font-weight: 700; color: var(--ink); font-size: 15px; }
.eb-success-body  { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

@keyframes eb-spin { to { transform: rotate(360deg); } }
@keyframes float   { 0%,100% { transform: translateY(0); }    50% { transform: translateY(-10px); } }
@keyframes float2  { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-12px) rotate(4deg); } }

/* Right column */
.eb-hero-right {
  position: relative; align-self: stretch;
  display: flex; align-items: center; padding-bottom: 72px;
}
.eb-hero-img-wrap {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 28px; overflow: hidden; position: relative; z-index: 1;
  box-shadow: 0 24px 64px -16px rgba(74,79,158,.22);
}
.eb-hero-img-wrap .img-slot { width: 100%; height: 100%; border-radius: 0; border: none; background: #E0DACE; }

/* Floating decorations */
.eb-deco { position: absolute; z-index: 2; animation: float 4s ease-in-out infinite; }
.eb-deco-blob  { border-radius: 50%; background: var(--amber-bg); width: 72px; height: 72px; top: 12px; right: -24px; animation-delay: 0s; }
.eb-deco-blob2 { border-radius: 50%; background: var(--teal-bg);  width: 52px; height: 52px; bottom: 140px; left: -20px; animation-delay: .9s; }
.eb-deco-star  { font-size: 36px; line-height: 1; color: var(--amber); top: 42%; right: -36px; animation: float2 3.5s ease-in-out infinite; animation-delay: .4s; }
.eb-deco-pill  { padding: 9px 16px; background: #fff; border-radius: var(--radius-pill); font-size: 12.5px; font-weight: 700; color: var(--indigo); box-shadow: var(--shadow-sm); bottom: 140px; right: -20px; animation-delay: 1.2s; white-space: nowrap; }
.eb-deco-pencil { top: -22px; left: 28%; animation: float2 4.5s ease-in-out infinite; animation-delay: .6s; }
.eb-deco-plane  { top: 28%; right: -48px; animation: float 5.5s ease-in-out infinite; animation-delay: 1.8s; }

.eb-count-badge {
  position: absolute; bottom: 88px; left: -20px; z-index: 3;
  background: #fff; border-radius: var(--radius);
  padding: 12px 16px; box-shadow: 0 4px 20px rgba(42,38,32,.12);
  display: flex; align-items: center; gap: 10px;
}
.eb-count-avatars { display: flex; }
.eb-count-avatar  { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; }
.eb-count-avatar:first-child { margin-left: 0; }
.eb-count-text { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.eb-count-sub  { font-size: 11px; color: var(--ink-mute); font-weight: 500; }

/* ── STATS STRIP ───────────────────────────────────────────── */
.eb-stats { background: var(--t-amber); padding: 40px 60px; }
.eb-stats-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.eb-stat {
  display: flex; flex-direction: column; gap: 5px;
  align-items: center; text-align: center; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.eb-stat:last-child { border-right: none; }
.eb-stat-num   { font-family: var(--serif); font-size: 50px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -.03em; }
.eb-stat-label { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; letter-spacing: .02em; }

/* ── WAVE DIVIDER ──────────────────────────────────────────── */
.eb-wave-sep { display: block; width: 100%; line-height: 0; margin-bottom: -2px; }
.eb-wave-sep svg { display: block; width: 100%; height: 56px; }

/* ── ACTIVITY SHOWCASE ─────────────────────────────────────── */
.eb-showcase { background: var(--paper); padding: 96px 60px; }
.eb-showcase-inner { max-width: 1240px; margin: 0 auto; }
.eb-showcase-head { margin-bottom: 52px; display: flex; flex-direction: column; gap: 12px; }
.eb-act-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 28px; }
.eb-act-card {
  border-radius: var(--radius-xl); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .25s, box-shadow .25s;
}
.eb-act-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(42,38,32,.13); }
.eb-act-cards .eb-act-card:nth-child(2) { transform: translateY(-28px); box-shadow: 0 24px 56px rgba(42,38,32,.16); z-index: 1; }
.eb-act-cards .eb-act-card:nth-child(2):hover { transform: translateY(-34px); box-shadow: 0 32px 64px rgba(42,38,32,.2); }
.eb-act-cards .eb-act-card:nth-child(2) .eb-act-card-media { height: 280px; }
.eb-act-card-media { height: 230px; position: relative; overflow: hidden; }
.eb-act-card-media { background-size: cover; background-position: center center; background-repeat: no-repeat; }
.eb-act-card-media .img-slot { width: 100%; height: 100%; border-radius: 0; border: none; }
.eb-act-card--indigo .eb-act-card-media { background-color: var(--indigo); }
.eb-act-card--indigo .img-slot { background: rgba(255,255,255,.1); }
.eb-act-card--indigo .img-slot-inner { color: rgba(255,255,255,.65); }
.eb-act-card--teal   .eb-act-card-media { background-color: var(--teal); }
.eb-act-card--teal   .img-slot { background: rgba(255,255,255,.1); }
.eb-act-card--teal   .img-slot-inner { color: rgba(255,255,255,.65); }
.eb-act-card--amber  .eb-act-card-media { background-color: var(--amber); }
.eb-act-card--amber  .img-slot { background: rgba(255,255,255,.1); }
.eb-act-card--amber  .img-slot-inner { color: rgba(255,255,255,.65); }
.eb-act-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 12px; border-radius: 20px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(0,0,0,.38); color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.eb-act-card-body  { padding: 22px 22px 26px; }
.eb-act-card-title { font-family: var(--serif); font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -.02em; }
.eb-act-card-desc  { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.eb-how {
  background: #fff;
  background-image: repeating-linear-gradient(
    to bottom, transparent 0px, transparent 31px,
    rgba(228,220,201,.45) 31px, rgba(228,220,201,.45) 32px
  );
  padding: 96px 60px; position: relative;
}
.eb-how-inner { max-width: 1240px; margin: 0 auto; }
.eb-how-inner::before {
  content: '';
  position: absolute; top: -96px; bottom: -96px; left: -36px;
  width: 2px; background: rgba(200,70,58,.15); pointer-events: none;
}
.eb-how-header { text-align: center; display: flex; flex-direction: column; gap: 12px; align-items: center; margin-bottom: 52px; }
/* ── HOW IT WORKS: COUNTER-SCROLL SPLIT PANEL ──────────────── */
.eb-how-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-template-rows: 480px;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* LEFT: text column */
.eb-how-text-col {
  display: flex; flex-direction: column;
  height: 480px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.eb-how-text-wrap { flex: 1; min-height: 0; overflow: hidden; position: relative; }
.eb-how-text-track {
  display: flex; flex-direction: column;
  transition: transform .72s cubic-bezier(.76,0,.24,1);
}
.eb-how-pane {
  height: 408px; /* 480px total − 72px footer */
  flex-shrink: 0;
  padding: 44px 36px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 14px;
}
.eb-how-pane-num {
  font-family: var(--serif); font-size: 13px; font-weight: 700;
  color: var(--t-orange); letter-spacing: .06em;
}
.eb-how-pane-title {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--ink); line-height: 1.25; margin: 0;
}
.eb-how-pane-desc {
  font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0;
}
.eb-how-text-footer {
  height: 72px; flex-shrink: 0;
  display: flex; align-items: center; gap: 16px;
  padding: 0 36px;
  border-top: 1px solid var(--line);
}
.eb-how-dots { display: flex; gap: 8px; flex-shrink: 0; }
.eb-how-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); border: none; cursor: pointer; padding: 0;
  transition: background .25s, transform .25s;
}
.eb-how-dot--active { background: var(--t-orange); transform: scale(1.25); }
.eb-how-prog-bar {
  flex: 1; height: 2px; background: var(--line);
  border-radius: 1px; overflow: hidden;
}
.eb-how-prog-fill { height: 100%; width: 0; background: var(--t-orange); border-radius: 1px; }
.eb-how-pause {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: none; border: 1.5px solid var(--line);
  color: var(--ink-mute); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s, background .2s;
}
.eb-how-pause:hover { border-color: var(--t-orange); color: var(--t-orange); background: rgba(232,154,74,.07); }

/* RIGHT: screenshot column */
.eb-how-screen-col {
  height: 480px; overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(42,38,32,.06), 0 32px 80px -20px rgba(42,38,32,.22);
}
.eb-how-screen-track {
  display: flex; flex-direction: column;
  transition: transform .72s cubic-bezier(.76,0,.24,1);
  transform: translateY(-75%);
}
.eb-how-screen-item { height: 480px; flex-shrink: 0; }
.eb-how-screen-img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top; }

/* ── PARENT SUPPORT ────────────────────────────────────────── */
.eb-support { background: var(--paper-2); padding: 96px 60px; }
.eb-support-inner { max-width: 1240px; margin: 0 auto; }
.eb-support-hd {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end; margin-bottom: 48px;
}
.eb-support-hd-left { display: flex; flex-direction: column; gap: 14px; }
.eb-support-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--t-teal); }
.eb-support-title { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 46px); font-weight: 700; line-height: 1.1; letter-spacing: -.03em; color: var(--ink); }
.eb-support-title em { font-style: italic; font-weight: 400; color: var(--t-amber); }
.eb-support-body  { font-size: 15px; line-height: 1.8; color: var(--ink-soft); padding-bottom: 4px; }
.eb-support-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 200px 200px;
  gap: 16px;
}
/* Masonry placement */
.eb-support-pillar:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.eb-support-pillar:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.eb-support-pillar:nth-child(3) { grid-area: 1 / 3 / 3 / 4; }
.eb-support-pillar:nth-child(4) { grid-area: 2 / 2 / 4 / 3; }
.eb-support-pillar:nth-child(5) { grid-area: 3 / 1 / 4 / 2; }
.eb-support-pillar:nth-child(6) { grid-area: 3 / 3 / 4 / 4; }
.eb-support-pillar {
  border-radius: var(--radius-xl); padding: 22px 22px 24px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .25s, box-shadow .25s;
}
.eb-support-pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.eb-ped-blob { position: absolute; pointer-events: none; opacity: .3; }
.eb-ped-tag {
  position: absolute; top: 18px; left: 18px;
  padding: 5px 12px; border-radius: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(0,0,0,.13); color: rgba(0,0,0,.6);
}
.eb-ped-name {
  font-family: var(--serif); font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700; line-height: 1.15; letter-spacing: -.02em;
  color: rgba(0,0,0,.82); position: relative; z-index: 1;
}
.eb-ped-name em { font-style: italic; font-weight: 400; display: block; }
.eb-ped-desc { font-size: 13px; line-height: 1.6; color: rgba(0,0,0,.55); margin-top: 8px; position: relative; z-index: 1; }

/* ── WHO IT'S FOR ──────────────────────────────────────────── */
.eb-who { background: var(--paper); padding: 96px 60px; border-top: 1px solid var(--line); }
.eb-who-inner { max-width: 1240px; margin: 0 auto; }
.eb-who-hd {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end; margin-bottom: 56px;
}
.eb-who-hd-left  { display: flex; flex-direction: column; gap: 14px; }
.eb-who-hd-right { font-size: 15px; line-height: 1.78; color: var(--ink-soft); padding-bottom: 6px; }
.eb-who-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.eb-who-card {
  background: #fff; border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.eb-who-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(42,38,32,.1); }
.eb-who-card-header { height: 160px; position: relative; display: flex; align-items: center; justify-content: center; }
.eb-who-card--indigo .eb-who-card-header { background: var(--grid-lines), var(--indigo-bg); background-size: 14px 14px, 14px 14px, auto; }
.eb-who-card--teal   .eb-who-card-header { background: var(--grid-lines), var(--teal-bg);   background-size: 14px 14px, 14px 14px, auto; }
.eb-who-card--amber  .eb-who-card-header { background: var(--grid-lines), var(--amber-bg);  background-size: 14px 14px, 14px 14px, auto; }
.eb-who-photo {
  width: 96px; height: 96px; border-radius: 50%;
  border: 4px solid #fff; overflow: hidden;
  box-shadow: 0 4px 16px rgba(42,38,32,.12);
  position: absolute; bottom: -24px;
}
.eb-who-photo .img-slot { width: 100%; height: 100%; border-radius: 50%; border: none; background: #D8D2C8; }
.eb-who-photo .img-slot-inner { gap: 0; padding: 6px; }
.eb-who-card-body  { padding: 36px 22px 26px; text-align: center; }
.eb-who-card-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.eb-who-card-desc  { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ── BOTTOM CTA ────────────────────────────────────────────── */
.eb-cta {
  background: var(--t-amber); padding: 96px 60px;
  position: relative; overflow: hidden; text-align: center;
}
.eb-cta::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.04); top: -240px; right: -80px;
}
.eb-cta::after {
  content: ''; position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,.04); bottom: -100px; left: 20px;
}
.eb-cta-inner    { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.eb-cta-eyebrow  { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.eb-cta-title    { font-family: var(--serif); font-size: clamp(34px, 4vw, 54px); font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -.035em; margin-bottom: 16px; }
.eb-cta-title em { font-style: italic; font-weight: 400; }
.eb-cta-body     { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 36px; }
.eb-cta-form {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto 14px;
}
.eb-cta-input {
  flex: 1; padding: 16px 20px;
  background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.2); border-radius: var(--radius-md);
  font-family: var(--sans); font-size: 15px; color: #fff; outline: none;
  transition: border-color .2s, background .2s;
}
.eb-cta-input::placeholder { color: rgba(255,255,255,.4); }
.eb-cta-input:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.15); }
.eb-cta-btn {
  padding: 16px 28px; background: #fff; color: var(--t-amber);
  border: none; border-radius: var(--radius-pill);
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.eb-cta-btn:hover { background: var(--paper); color: var(--t-orange); transform: translateY(-2px); }
.eb-cta-note { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 6px; }

/* Footer styles live in brightbud-shared.css → .site-footer */

/* ── STEP 2 — Profile completion panel ─────────────────────── */
.eb-step2 {
  display: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.eb-step2--open {
  max-height: 640px;
  opacity: 1;
}
.eb-step2-head {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px 18px;
  background: #ecfdf5; border: 1.5px solid #a7f3d0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-bottom: none;
}
.eb-step2-check {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: #059669; color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.eb-step2-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.eb-step2-sub   { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

.eb-step2-names {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 18px 22px;
  background: #fff; border: 1.5px solid var(--line); border-top: none;
}
.eb-step2-input { margin: 0; }

.eb-step2-role-wrap {
  padding: 16px 22px;
  background: #fff; border: 1.5px solid var(--line); border-top: none;
}
.eb-step2-label {
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 10px;
}
.eb-role-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.eb-role-card {
  --rc: var(--t-indigo); --rt: var(--tint-indigo);
  display: inline-flex; align-items: center;
  padding: 8px 14px 8px 30px;
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  cursor: pointer; position: relative;
  font-family: var(--sans); white-space: nowrap;
  transition: border-color .15s, background .15s;
}
.eb-role-card::before {
  content: ''; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--rc);
}
.eb-role-card:nth-child(1) { --rc: var(--t-indigo); --rt: var(--tint-indigo); }
.eb-role-card:nth-child(2) { --rc: var(--t-teal);   --rt: var(--tint-teal); }
.eb-role-card:nth-child(3) { --rc: var(--t-orange);  --rt: var(--tint-orange); }
.eb-role-card:nth-child(4) { --rc: var(--t-green);   --rt: var(--tint-green); }
.eb-role-card:nth-child(5) { --rc: var(--t-purple);  --rt: var(--tint-purple); }
.eb-role-card:hover        { border-color: var(--rc); background: var(--rt); }
.eb-role-card--selected    { border-color: var(--rc); background: var(--rt); box-shadow: 0 0 0 3px color-mix(in srgb, var(--rc) 15%, transparent); }
.eb-role-label { font-size: 13px; font-weight: 600; color: var(--ink-soft); line-height: 1; transition: color .15s; }
.eb-role-card--selected .eb-role-label { color: var(--ink); }

.eb-consent-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 16px 22px;
  background: #fff; border: 1.5px solid var(--line); border-top: none;
  cursor: pointer;
}
.eb-consent-check {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
  accent-color: var(--indigo); cursor: pointer;
}
.eb-consent-row { text-transform: none; letter-spacing: 0; }
.eb-consent-text {
  font-size: 12.5px; line-height: 1.6; color: var(--ink-soft);
}
.eb-consent-required {
  display: inline-block;
  font-size: 10.5px; font-weight: 600;
  color: var(--t-orange); background: rgba(232,154,74,.12);
  border-radius: 4px; padding: 1px 6px;
  margin-left: 4px; vertical-align: middle;
  text-transform: none; letter-spacing: 0;
}

.eb-step2-btn {
  width: 100%; border-radius: 0 0 var(--radius-pill) var(--radius-pill);
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — tablet (≤900px)
   ═══════════════════════════════════════════════════════════ */
@media(max-width:900px) {
  .eb-hero    { padding: 56px 36px 0; }
  .eb-hero-inner { grid-template-columns: 1fr 340px; gap: 36px; }
  .eb-stats   { padding: 40px 36px; }
  .eb-showcase { padding: 72px 36px; }
  .eb-how     { padding: 72px 36px; }
  .eb-support { padding: 72px 36px; }
  .eb-who     { padding: 72px 36px; }
  .eb-cta     { padding: 72px 36px; }
  .eb-support-pillars { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .eb-support-pillar { justify-content: flex-start; padding-top: 52px; }
  .eb-support-pillar:nth-child(1),
  .eb-support-pillar:nth-child(2),
  .eb-support-pillar:nth-child(3),
  .eb-support-pillar:nth-child(4),
  .eb-support-pillar:nth-child(5),
  .eb-support-pillar:nth-child(6) { grid-area: auto; min-height: auto; }
  .eb-who-cards { grid-template-columns: repeat(2, 1fr); }
  .eb-act-cards { grid-template-columns: repeat(2, 1fr); }
  .eb-act-cards .eb-act-card:nth-child(2) { transform: none; box-shadow: var(--shadow-xs); }
  .eb-act-cards .eb-act-card:nth-child(2) .eb-act-card-media { height: 230px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — mobile (≤760px)
   ═══════════════════════════════════════════════════════════ */
@media(max-width:760px) {
  /* NAV */
  .eb-nav-inner { padding: 0 16px; height: 60px; }
  .eb-logo-mark { height: 38px; }
  /* hide desktop nav links and sign-in slot — they move to mobile drawer */
  .eb-nav-links { display: none; }
  #header-auth  { display: none; }
  /* keep Join CTA visible on mobile but make it compact */
  .eb-nav-cta   { padding: 8px 14px; font-size: 12px; }

  /* STEP 2 */
  .eb-step2--open { max-height: 900px; }
  .eb-step2-names {
    grid-template-columns: 1fr;
    padding: 16px 16px;
  }
  .eb-step2-role-wrap { padding: 14px 16px; }
  .eb-consent-row     { padding: 14px 16px; }
  .eb-step2-head      { padding: 16px 16px 14px; }
  /* success state on mobile */
  .eb-success-state   { align-items: flex-start; }

  /* HERO */
  .eb-hero { padding: 36px 20px 0; }
  .eb-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .eb-hero-right { display: none; }
  .eb-left { padding-bottom: 36px; gap: 20px; }
  .eb-h1   { font-size: clamp(38px, 10vw, 56px); }
  .eb-body { font-size: 15.5px; max-width: 100%; }
  .eb-hero-form { flex-direction: column; gap: 10px; }
  .eb-btn  { width: 100%; justify-content: center; }

  /* STATS */
  .eb-stats { padding: 0 20px; }
  .eb-stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .eb-stat { padding: 28px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .eb-stat:nth-child(1),
  .eb-stat:nth-child(2) { border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
  .eb-stat:nth-child(3) { grid-column: 1 / -1; border-bottom: none; border-right: none; }
  .eb-stat-num { font-size: 38px; }

  /* SHOWCASE */
  .eb-showcase { padding: 48px 20px; }
  .eb-showcase-head { margin-bottom: 32px; }
  .eb-act-cards { grid-template-columns: 1fr; gap: 16px; padding-bottom: 0; }
  .eb-act-cards .eb-act-card:nth-child(2) { transform: none; box-shadow: var(--shadow-xs); }
  .eb-act-cards .eb-act-card:nth-child(2) .eb-act-card-media { height: 230px; }

  /* HOW IT WORKS */
  .eb-how { padding: 48px 20px; }
  .eb-how-inner::before { display: none; }
  .eb-how-split { grid-template-columns: 1fr; grid-template-rows: auto; gap: 16px; }
  .eb-how-text-col { height: 372px; }
  .eb-how-pane { height: 300px; padding: 28px 20px; }
  .eb-how-screen-col { height: 260px; order: -1; }
  .eb-how-screen-item { height: 260px; }


  /* PARENT SUPPORT */
  .eb-support { padding: 48px 20px; }
  .eb-support-hd { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .eb-support-pillars { grid-template-columns: 1fr; grid-template-rows: auto; }
  .eb-support-pillar { justify-content: flex-start; padding-top: 52px; }
  .eb-support-pillar:nth-child(1),
  .eb-support-pillar:nth-child(2),
  .eb-support-pillar:nth-child(3),
  .eb-support-pillar:nth-child(4),
  .eb-support-pillar:nth-child(5),
  .eb-support-pillar:nth-child(6) { grid-area: auto; min-height: auto; }

  /* WHO IT'S FOR */
  .eb-who { padding: 48px 20px; }
  .eb-who-hd { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .eb-who-cards { grid-template-columns: 1fr; gap: 16px; }

  /* CTA */
  .eb-cta { padding: 52px 20px; }
  .eb-cta-form  { flex-direction: column; gap: 10px; max-width: 100%; }
  .eb-cta-input { width: 100%; box-sizing: border-box; }
  .eb-cta-btn   { width: 100%; justify-content: center; }

}

/* ══════════════════════════════════════════════════════════
   EARLY BIRD REGISTRATION MODAL
   ══════════════════════════════════════════════════════════ */
.eb-reg-overlay {
  position: fixed; inset: 0;
  background: rgba(42,38,32,.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 16px;
}
.eb-reg-overlay.visible { display: flex; }

.eb-reg-panel {
  position: relative;
  width: 100%; max-width: 520px;
  box-shadow: 0 32px 80px -20px rgba(42,38,32,.35), 0 0 0 1px rgba(42,38,32,.07);
  animation: eb-panel-in .25s cubic-bezier(.23,1,.32,1) both;
}
.eb-reg-body {
  background: #fff;
  border-radius: 28px;
  max-height: 92vh;
  overflow-y: auto;
}
.eb-reg-tape {
  position: absolute;
  top: -11px;
  height: 22px;
  opacity: .82;
  border-radius: 2px;
  z-index: 1;
}
.eb-reg-tape-left  { left: 64px;  width: 84px;  background: #F5DD9D; transform: rotate(-2deg); }
.eb-reg-tape-right { right: 72px; width: 98px;  background: #A8D5D3; transform: rotate(1.5deg); }
@keyframes eb-panel-in {
  from { opacity: 0; transform: scale(.96) translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.eb-reg-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 0;
}
.eb-reg-head-brand { display: flex; align-items: center; gap: 10px; }
.eb-reg-head-badge {
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(245,158,11,.14); color: #b45309;
  border: 1.5px solid rgba(245,158,11,.28);
}
.eb-reg-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(42,38,32,.12); background: #fff;
  display: grid; place-items: center;
  color: #5A5147; cursor: pointer;
  transition: border-color .15s, color .15s;
  flex-shrink: 0;
}
.eb-reg-close:hover { border-color: #5A5147; color: #2A2620; }
.eb-reg-close svg { width: 14px; height: 14px; }

.eb-reg-step { padding: 24px 28px 32px; }

.eb-reg-icon { margin-bottom: 20px; text-align: center; }
.eb-reg-icon-badge {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--tint-orange); color: var(--t-orange);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(232,154,74,.1);
}
.eb-reg-title {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 28px; font-weight: 700;
  letter-spacing: -.025em; line-height: 1.1;
  color: #2A2620; margin: 0 0 10px; text-align: center;
}
.eb-reg-sub {
  font-size: 15px; line-height: 1.6; color: #5A5147;
  margin: 0 0 22px; text-align: center;
}
.eb-reg-form {
  display: flex; flex-direction: column; gap: 10px;
}
.eb-reg-submit-btn { width: 100%; justify-content: center; }
.eb-reg-note {
  font-size: 12px; color: #8A7F71;
  text-align: center; margin-top: 12px;
}
.eb-reg-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.eb-reg-success .eb-success-icon { font-size: 48px; margin-bottom: 16px; }
.eb-reg-success .eb-success-title { font-size: 22px; margin-bottom: 10px; }

@media(max-width:600px){
  .eb-reg-overlay { align-items: flex-end; padding: 0; }
  .eb-reg-panel { max-height: 96vh; }
  .eb-reg-body { border-radius: 24px 24px 0 0; max-height: 96vh; }
  .eb-reg-tape { display: none; }
  .eb-reg-step { padding: 20px 20px 28px; }
  .eb-reg-title { font-size: 22px; }
}
