:root {
  /* One brand green; every other green is derived from it so they always match
     (and follow the Accent colour set in the admin panel). */
  --accent: #3B9B24;
  --accent-dark: color-mix(in srgb, var(--accent) 80%, black);   /* hover, text on light tint */
  --accent-deep: color-mix(in srgb, var(--accent) 35%, black);   /* dark detail on green */
  --accent-soft: color-mix(in srgb, var(--accent) 12%, transparent); /* tinted backgrounds */
  --accent-line: color-mix(in srgb, var(--accent) 35%, transparent); /* tinted borders */
  --accent-tint: color-mix(in srgb, var(--accent) 25%, white);   /* light green on dark */
  --ink: #0a0a0a;
  --muted: #6b6b6b;
  --line: #ececec;
  --line-soft: rgba(15, 23, 42, .06);
  --card: #f7f7f7;
  --bg: #ffffff;
  --dark: #0B0B0F;
  --radius: 18px;
  --shadow-card: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .05);
  --shadow-card-hover: 0 2px 6px rgba(15, 23, 42, .06), 0 18px 40px rgba(15, 23, 42, .09);
  --section-y: 96px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Geist, ui-sans-serif, system-ui, sans-serif;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.container { width: min(1200px, 100% - 32px); margin-inline: auto; }
.accent { color: var(--accent); }

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 100; background: var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; transition: transform .8s cubic-bezier(.77,0,.18,1);
}
#loader.done { transform: translateY(-100%); }
.loader-hey { font-size: 14px; opacity: .85; margin-bottom: 10px; }
.loader-brand { font-size: clamp(44px, 9vw, 96px); font-weight: 800; letter-spacing: -.04em; color: var(--accent-tint); }
.loader-brand .dot { color: var(--accent-deep); }
.loader-bar { width: min(220px, 60vw); height: 2px; background: rgba(255,255,255,.3); margin-top: 30px; border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: #fff; transition: width .15s linear; }
.loader-pct { font-size: 11px; margin-top: 10px; opacity: .8; font-variant-numeric: tabular-nums; }

/* ---------- Nav ---------- */
.nav-wrap { position: fixed; top: 12px; left: 0; right: 0; z-index: 50; display: flex; justify-content: center; padding-inline: 16px; }
.nav {
  width: min(1200px, 100%); display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 16px; padding: 10px 12px 10px 20px;
  box-shadow: 0 6px 30px rgba(0,0,0,.05);
}
.logo { font-weight: 800; font-size: 19px; letter-spacing: -.03em; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { font-size: 13.5px; color: var(--muted); padding: 8px 12px; border-radius: 10px; position: relative; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--ink); background: #f3f3f3; }
.nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-links a.active::after { content: ''; position: absolute; left: 50%; bottom: 1px; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); transform: translateX(-50%); }
.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s; }
.nav-wrap.open .burger span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-wrap.open .burger span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; font-weight: 600; transition: transform .2s, background .2s, box-shadow .2s; white-space: nowrap; }
.btn:active { transform: scale(.97); }
.btn-sm { padding: 10px 16px; font-size: 13.5px; }
.btn-lg { padding: 15px 24px; font-size: 15px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px var(--accent-soft), inset 0 -2px 0 rgba(0,0,0,.12); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: #fff; border: 1px solid var(--line); }
.btn-ghost:hover { background: #f5f5f5; }

/* ---------- Chips ---------- */
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent-line); background: var(--accent-soft); padding: 6px 12px; border-radius: 999px; }
.chip-li { color: #0a66c2; border-color: rgba(10,102,194,.3); background: rgba(10,102,194,.07); }
.chip-dark { color: var(--accent-tint); border-color: color-mix(in srgb, var(--accent-tint) 30%, transparent); background: color-mix(in srgb, var(--accent-tint) 8%, transparent); }
.badge-solid { display: inline-block; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 12px; border-radius: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 130px 0 70px; overflow: hidden; border-bottom: 1px solid var(--accent-soft); }
/* 40px line grid, faded out from the top-right corner, with a few accent squares that drift around */
.grid-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
  fill: rgba(156, 163, 175, .3); stroke: rgba(156, 163, 175, .3); color: var(--accent);
  -webkit-mask-image: radial-gradient(760px circle at 100% 0, #fff, transparent);
  mask-image: radial-gradient(760px circle at 100% 0, #fff, transparent);
}
.grid-bg .grid-squares { overflow: visible; }
.grid-bg .grid-squares rect { opacity: 0; animation: gridSquare 4s ease-in-out infinite; }
@keyframes gridSquare { 0%, 100% { opacity: 0; } 35%, 65% { opacity: .1; } }
@media (prefers-reduced-motion: reduce) { .grid-bg .grid-squares rect { animation: none; opacity: .1; } }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hero-title { font-size: clamp(42px, 6.2vw, 78px); line-height: .98; letter-spacing: -.045em; font-weight: 800; margin: 22px 0 22px; }
.rotator { position: relative; display: inline-block; white-space: nowrap; min-height: 1em; }
.rot-sizer { visibility: hidden; }
.rot-live { position: absolute; inset: 0; white-space: nowrap; }
.hero-sub { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 460px; }
.hero-ctas { display: flex; gap: 12px; margin: 28px 0 22px; flex-wrap: wrap; }
.proof { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); background: #fff; border-radius: 999px; padding: 6px 14px 6px 6px; font-size: 13px; font-weight: 500; }
.proof-avatars { display: flex; }
.proof-avatars span { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; background-size: cover; background-position: center; }
.proof-avatars span:first-child { margin-left: 0; }
.stars { color: var(--accent); letter-spacing: 1px; font-size: 12px; }
.proof-arrow { color: var(--muted); }

.hero-stage { display: flex; flex-direction: column; align-items: center; }
.phones { position: relative; width: 100%; height: 520px; }
.phone {
  position: absolute; top: 0; left: 50%; width: 270px; height: 480px; border-radius: 28px; overflow: hidden;
  background: #111; box-shadow: 0 30px 60px rgba(0,0,0,.18); border: 5px solid #fff;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .7s, filter .7s;
}
.phone video, .phone img { width: 100%; height: 100%; object-fit: cover; }
.phone[data-pos="0"] { transform: translateX(-50%) scale(1); z-index: 3; }
.phone[data-pos="-1"] { transform: translateX(-118%) scale(.84) rotate(-6deg); z-index: 2; opacity: .55; filter: blur(2px); }
.phone[data-pos="1"] { transform: translateX(18%) scale(.84) rotate(6deg); z-index: 2; opacity: .55; filter: blur(2px); }
.phone .views { position: absolute; left: 12px; bottom: 12px; background: rgba(0,0,0,.55); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: 999px; backdrop-filter: blur(6px); display: flex; gap: 6px; align-items: center; }
.phone .views small { opacity: .7; font-weight: 400; }
.phone .mute { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.9); color: #111; font-size: 13px; display: grid; place-items: center; }
.placeholder-media { width: 100%; height: 100%; display: grid; place-items: center; text-align: center; color: rgba(255,255,255,.85); font-size: 13px; padding: 20px; }
.phone-controls { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.circle-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 20px; line-height: 1; display: grid; place-items: center; transition: background .2s; }
.circle-btn:hover { background: #f3f3f3; }
.dots { display: flex; gap: 6px; }
.dots button { width: 8px; height: 6px; border-radius: 4px; background: #d7d7d7; transition: width .3s, background .3s; }
.dots button.on { width: 24px; background: var(--accent); }

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; padding-inline: 16px; }
.section-head.row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.section-head.row > div:first-child { max-width: 640px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.035em; line-height: 1.05; font-weight: 800; margin: 16px 0 12px; }
.section-head h2.big { font-size: clamp(34px, 5vw, 58px); }
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.arrows { display: flex; gap: 8px; }

/* Creators */
.creator-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.creator-card { border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); border-radius: var(--radius); padding: 8px; background: #fff; transition: transform .3s, box-shadow .3s; display: block; }
.creator-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.creator-img { position: relative; aspect-ratio: 1 / .95; border-radius: 12px; overflow: hidden; background-size: cover; background-position: center; display: grid; place-items: center; font-size: 42px; font-weight: 800; color: rgba(255,255,255,.9); }
.creator-img .arrow { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.9); color: #111; font-size: 14px; display: grid; place-items: center; }
.creator-body { padding: 14px 8px 10px; }
.creator-body small { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.creator-body h3 { font-size: 21px; letter-spacing: -.02em; margin: 6px 0 12px; }
.creator-body .num { color: var(--accent); font-weight: 800; font-size: 22px; }
.creator-body .num small { color: var(--muted); font-size: 11px; font-weight: 400; letter-spacing: 0; text-transform: none; margin-left: 4px; }

/* Spotlight */
.spotlight { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: center; }
.spot-media { aspect-ratio: 9/14; border-radius: 22px; overflow: hidden; background: linear-gradient(160deg,#1f2a1b,#0b0b0f); position: relative; }
.spot-media video, .spot-media img { width: 100%; height: 100%; object-fit: cover; }
.spot-copy h2 { font-size: clamp(32px, 4.5vw, 54px); letter-spacing: -.04em; line-height: 1.02; font-weight: 800; margin: 18px 0 24px; }
.spot-copy blockquote { font-size: 20px; line-height: 1.55; color: #333; margin-bottom: 28px; }
.spot-person { display: flex; gap: 12px; align-items: center; }
.spot-person strong { display: block; }
.spot-person small { color: var(--muted); }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: #ddd center/cover; flex-shrink: 0; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 15px; }

/* Reviews marquee */
.marquee { overflow: hidden; padding: 14px 0; /* room for the card shadows */ mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 16px; width: max-content; animation: marquee 60s linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.review { width: 340px; background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.review-head { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }
.review-head .avatar { width: 34px; height: 34px; font-size: 12px; }
.review p { font-size: 14px; line-height: 1.6; color: #444; flex: 1; }
.review small { color: var(--muted); font-size: 11.5px; text-align: right; }

/* Portfolio */
.thumb { position: relative; border-radius: 14px; overflow: hidden; background-size: cover; background-position: center; cursor: pointer; }
.thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55)); }
.play { position: absolute; z-index: 2; left: 50%; top: 50%; width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.92); transform: translate(-50%,-50%); display: grid; place-items: center; color: #111; transition: transform .3s; }
.thumb:hover .play { transform: translate(-50%,-50%) scale(1.1); }
.thumb-meta { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 14px; color: #fff; }
.thumb-meta small { font-size: 11px; opacity: .8; text-transform: uppercase; letter-spacing: .08em; }
.thumb-meta h3 { font-size: 17px; letter-spacing: -.01em; margin-top: 4px; }
.podcast-feature .thumb { aspect-ratio: 21/9; border-radius: 22px; }
@media (max-width: 680px) { .podcast-feature .thumb { aspect-ratio: 16/9; } }
.podcast-feature .thumb-meta h3 { font-size: clamp(20px, 3vw, 30px); }
.podcast-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; margin-top: 14px; }
.podcast-list .thumb { aspect-ratio: 16/9; }
.h-scroll { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px max(16px, calc((100% - 1200px) / 2)) 16px; scrollbar-width: none; }
.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll .thumb { flex: 0 0 240px; aspect-ratio: 9/16; scroll-snap-align: start; border-radius: 20px; }
.long-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.long-grid .thumb { aspect-ratio: 16/9; }

/* Repurposing */
.repurpose { background: var(--dark); color: #fff; border-radius: 28px; padding: clamp(32px, 6vw, 70px); position: relative; overflow: hidden; }
.repurpose::before { content: ''; position: absolute; width: 500px; height: 500px; right: -150px; top: -200px; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 45%, transparent), transparent 70%); }
.repurpose h2 { position: relative; font-size: clamp(34px, 5vw, 62px); letter-spacing: -.04em; line-height: 1; margin: 20px 0 18px; font-weight: 800; }
.repurpose p { position: relative; color: #b5b5bb; max-width: 620px; line-height: 1.65; font-size: 16px; }
.platforms { position: relative; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.platforms span { border: 1px solid rgba(255,255,255,.15); padding: 10px 16px; border-radius: 999px; font-size: 14px; background: rgba(255,255,255,.04); }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service { border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); border-radius: 22px; padding: 30px; background: #fff; transition: border-color .3s, transform .3s, box-shadow .3s; }
.service:hover { border-color: var(--accent-line); box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.service small { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service h3 { font-size: 26px; letter-spacing: -.03em; margin: 10px 0; }
.service p { color: var(--muted); line-height: 1.6; }
.service ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.service li { font-size: 13px; background: var(--accent-soft); color: var(--accent-dark); padding: 6px 12px; border-radius: 999px; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 0; font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.faq-q .plus { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s, background .3s, color .3s; }
.faq-item.open .plus { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-a > div { overflow: hidden; color: var(--muted); line-height: 1.65; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > div { padding-bottom: 22px; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; border: 1px solid var(--line); border-radius: 28px; padding: clamp(24px, 5vw, 56px); background: radial-gradient(circle at 0% 0%, var(--accent-soft), transparent 50%), #fff; }
.contact-copy h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.035em; line-height: 1.05; margin: 16px 0 14px; font-weight: 800; }
.contact-copy p { color: var(--muted); line-height: 1.6; }
.contact-email { display: inline-block; margin-top: 24px; font-weight: 600; border-bottom: 2px solid var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 500; color: #333; }
.contact-form input, .contact-form select, .contact-form textarea { font: inherit; font-size: 15px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.contact-form .btn { align-self: flex-start; }
.hp { position: absolute; left: -9999px; }
.contact-right { min-width: 0; }
.contact-tabs { display: inline-flex; gap: 4px; padding: 4px; background: #f3f3f3; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 16px; }
.contact-tabs[hidden] { display: none; }
.contact-tabs button { padding: 9px 16px; border-radius: 9px; font-size: var(--fs-ui); font-weight: 600; color: var(--muted); transition: background .2s, color .2s, box-shadow .2s; }
.contact-tabs button[aria-selected="true"] { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.calendar-panel { position: relative; height: 680px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.calendar-panel[hidden] { display: none; }
.calendar-panel iframe { position: relative; z-index: 1; width: 100%; height: 100%; border: 0; }
.calendar-loading { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-size: var(--fs-ui); }
.contact-form[hidden] { display: none; }
@media (max-width: 680px) { .calendar-panel { height: 620px; margin-inline: -8px; } }
.form-status { font-size: 14px; min-height: 20px; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: #c62828; }

/* Footer */
.footer { background: var(--dark); color: #fff; padding: 70px 0 40px; text-align: center; margin-top: 40px; }
.footer-brand { font-size: clamp(48px, 12vw, 150px); font-weight: 900; letter-spacing: -.05em; line-height: 1; }
.footer-blurb { color: #9a9aa2; margin-top: 16px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-nav a { color: #c8c8cf; font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.socials { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; font-size: 13px; font-weight: 600; }
.socials a:hover { background: var(--accent); border-color: var(--accent); }
.copyright { color: #6c6c74; font-size: 13px; margin-top: 30px; }

/* Chat */
.chat-fab { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: flex; align-items: center; gap: 12px; }
.chat-bubble { background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.1); padding: 10px 14px; border-radius: 14px; font-size: 13px; font-weight: 500; }
.chat-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(0,0,0,.18); }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(4px); }
.modal-body { position: relative; width: min(1000px, 100%); }
.modal-body.vertical { width: min(380px, 100%); }
.modal-frame { aspect-ratio: 16/9; background: #000; border-radius: 16px; overflow: hidden; }
.modal-body.vertical .modal-frame { aspect-ratio: 9/16; max-height: 85vh; }
.modal-frame iframe, .modal-frame video { width: 100%; height: 100%; border: 0; }
.modal-close { position: absolute; top: -44px; right: 0; color: #fff; font-size: 32px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links, .nav > .book-call { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; flex-direction: column; position: absolute; top: 70px; left: 16px; right: 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 10px; box-shadow: 0 20px 50px rgba(0,0,0,.1); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .25s, transform .25s; }
  .nav-wrap.open .mobile-menu { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-menu a { padding: 12px 14px; border-radius: 10px; font-weight: 500; }
  .mobile-menu a.btn { margin-top: 6px; color: #fff; }
  .hero-inner { grid-template-columns: 1fr; }
  .creator-grid { grid-template-columns: repeat(3, 1fr); }
  .spotlight { grid-template-columns: 280px 1fr; gap: 36px; }
  .long-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap, .contact { grid-template-columns: 1fr; gap: 30px; }
  :root { --section-y: 72px; }
}
@media (max-width: 680px) {
  :root { --section-y: 56px; }
  /* Tighter hero on phones: less space above the headline, full-width buttons,
     and smaller reel phones so the whole hero fits in roughly one screen. */
  .hero { padding: 92px 0 36px; }
  .hero-inner { gap: 24px; }
  .hero-title { margin: 14px 0 12px; }
  .hero-ctas { margin: 18px 0 14px; gap: 10px; }
  .hero-ctas .btn { flex: 1; padding-inline: 12px; }
  .phones { height: 360px; }
  .phone { width: 184px; height: 330px; border-width: 4px; border-radius: 24px; }
  .phone[data-pos="-1"] { transform: translateX(-112%) scale(.82) rotate(-6deg); }
  .phone[data-pos="1"] { transform: translateX(12%) scale(.82) rotate(6deg); }
  .phone-controls { margin-top: 0; }
  .creator-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight { grid-template-columns: 1fr; }
  .spot-media { max-width: 300px; }
  .long-grid, .service-grid, .field-row { grid-template-columns: 1fr; }
  .review { width: 280px; }
  .h-scroll .thumb { flex-basis: 200px; }
  .section-head.row { flex-direction: column; align-items: flex-start; }
  .chat-bubble { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Typography scale ----------
   Sizes interpolate between a 375px phone and a 1280px desktop. */
:root {
  --fs-display: clamp(38px, calc(31.87px + 1.635vw), 52.8px);
  --fs-h2: clamp(31.68px, calc(22.93px + 2.334vw), 52.8px);
  --fs-h2-sm: clamp(26.4px, calc(19.84px + 1.75vw), 42.24px);
  --fs-h3: clamp(21.12px, calc(18.93px + .583vw), 26.4px);
  --fs-stat: clamp(17.6px, calc(16.14px + .389vw), 21.12px);
  --fs-body: clamp(14.08px, calc(13.35px + .194vw), 15.84px);
  --fs-body-sm: clamp(12.32px, calc(11.59px + .194vw), 14.08px);
  --fs-card: clamp(12.32px, calc(11.96px + .097vw), 13.2px);
  --fs-ui: 12.32px;
  --fs-label: 10.56px;
  --fs-micro: 9.68px;
  --fs-tag: 8.8px;
}
.hero-title, .section-head h2, .spot-copy h2, .repurpose h2, .contact-copy h2,
.creator-body h3, .service h3, .footer-brand, .logo { font-weight: 700; letter-spacing: -.04em; }

.logo { font-size: 21.12px; }
.nav-links a { font-size: var(--fs-ui); font-weight: 500; }
.btn-sm { font-size: var(--fs-ui); }
.btn-lg { font-size: var(--fs-body-sm); }
.badge-solid { font-size: 7.92px; letter-spacing: .12em; }
.chip { font-size: var(--fs-label); font-weight: 400; letter-spacing: .1em; }

.hero-title { font-size: var(--fs-display); line-height: 1.05; }
.hero-sub { font-size: var(--fs-body); line-height: 1.625; }
.proof { font-size: var(--fs-ui); font-weight: 600; }
.phone .views { font-size: var(--fs-ui); font-weight: 700; }
.phone .views small { font-size: 11px; }

.section-head h2, .section-head h2.big, .repurpose h2, .contact-copy h2 { font-size: var(--fs-h2); line-height: 1.25; }
.section-head p, .repurpose p, .contact-copy p { font-size: var(--fs-body); line-height: 1.56; }
.section-head.center p { font-size: var(--fs-body-sm); }

.creator-body small { font-size: var(--fs-tag); font-weight: 400; letter-spacing: .1em; }
.creator-body h3 { font-size: var(--fs-h3); line-height: 1.25; }
.creator-body .num { font-size: var(--fs-stat); font-weight: 700; letter-spacing: -.04em; }
.creator-body .num small { font-size: var(--fs-label); letter-spacing: 0; }

.spot-copy h2 { font-size: var(--fs-h2-sm); line-height: 1.25; }
.spot-copy blockquote { font-size: var(--fs-body); line-height: 1.625; }
.spot-person strong { font-size: 14.08px; font-weight: 600; }
.spot-person small { font-size: var(--fs-label); }

.review-head { font-size: var(--fs-ui); font-weight: 600; }
.review p { font-size: var(--fs-card); line-height: 1.625; }
.review small { font-size: var(--fs-micro); }

.thumb-meta small { font-size: 10px; letter-spacing: .18em; }
.thumb-meta h3 { font-size: var(--fs-ui); font-weight: 700; letter-spacing: -.04em; }
.podcast-feature .thumb-meta h3 { font-size: var(--fs-h3); }

.platforms span { font-size: var(--fs-body); }
.service small { font-size: var(--fs-micro); font-weight: 400; letter-spacing: .2em; }
.service h3 { font-size: var(--fs-h3); line-height: 1.2; }
.service p { font-size: var(--fs-card); line-height: 1.625; }
.service li { font-size: var(--fs-ui); }

.faq-q { font-size: 16px; font-weight: 500; }
.faq-a > div { font-size: var(--fs-ui); line-height: 1.625; }

.contact-form label { font-size: var(--fs-ui); }
.contact-form input, .contact-form select, .contact-form textarea { font-size: 14.08px; }
.contact-email { font-size: var(--fs-body); }
.form-status { font-size: var(--fs-ui); }

.footer-brand { font-size: 26.4px; line-height: 1.2; }
.footer-blurb, .footer-nav a { font-size: var(--fs-ui); }
.copyright { font-size: var(--fs-label); }
.chat-bubble { font-size: var(--fs-ui); }

/* ---------- Live dot (nav + board) ---------- */
.live-dot { position: relative; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-left: 6px; vertical-align: middle; }
.live-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: livePulse 1.8s ease-out infinite; }
@keyframes livePulse { from { transform: scale(1); opacity: .7; } to { transform: scale(2.8); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .live-dot::after { animation: none; } }

/* ---------- Sub-pages ---------- */
.page-hero { padding: 150px 0 64px; }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-title { font-size: var(--fs-display); line-height: 1.05; letter-spacing: -.04em; font-weight: 700; margin: 18px 0 16px; }
.page-sub { color: var(--muted); font-size: var(--fs-body); line-height: 1.625; max-width: 560px; }
.page-empty { min-height: 40vh; display: grid; place-items: center; align-content: center; gap: 20px; text-align: center; color: var(--muted); padding: 60px 16px; }
.page-empty-inline { border: 1px dashed var(--line); border-radius: 16px; padding: 28px; text-align: center; color: var(--muted); font-size: var(--fs-body-sm); }
.page-cta { text-align: center; display: flex; flex-direction: column; align-items: center; }
.page-cta p { margin-bottom: 26px; }

/* Board */
.live-badge { display: inline-flex; align-items: center; gap: 2px; margin-left: 14px; vertical-align: middle; font-size: var(--fs-label); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 5px 10px 5px 6px; border-radius: 999px; }
.live-badge .live-dot { margin: 0 4px 0 2px; }
.board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.board-card { border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); border-radius: 18px; padding: 20px; background: #fff; display: flex; flex-direction: column; gap: 8px; }
.board-card-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 6px; }
.board-card h3 { font-size: 18px; letter-spacing: -.02em; }
.board-client { color: var(--muted); font-size: var(--fs-ui); }
.board-platform { font-size: var(--fs-label); color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 999px; }
.status-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-pill.is-active { color: var(--accent-dark); background: var(--accent-soft); }
.status-pill.is-review { color: #a16207; background: rgba(234,179,8,.14); }
.status-pill.is-done { color: #52525b; background: #f1f1f1; }
.progress { height: 6px; background: #f1f1ef; border-radius: 4px; overflow: hidden; margin-top: 8px; }
.progress span { display: block; height: 100%; background: var(--accent); border-radius: 4px; }
.progress-label { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }
.feed-day { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line); }
.feed-date { font-size: var(--fs-body-sm); font-weight: 600; display: flex; align-items: center; gap: 8px; align-self: start; }
.feed-date span { font-size: 11px; color: var(--muted); background: #f3f3f3; border-radius: 999px; padding: 2px 8px; }
.feed-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.feed-item { display: flex; gap: 12px; align-items: center; border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); background: #fff; border-radius: 14px; padding: 10px; transition: border-color .2s, box-shadow .2s; }
a.feed-item:hover { border-color: var(--accent); }
.feed-thumb { width: 64px; aspect-ratio: 16/10; border-radius: 8px; flex-shrink: 0; background: #111 center / cover; color: #fff; display: grid; place-items: center; font-size: 12px; }
.feed-item small { font-size: 10.56px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.feed-item h4 { font-size: var(--fs-ui); font-weight: 600; margin-top: 2px; }

/* Careers */
.careers-wrap { max-width: 880px; }
.roles { display: flex; flex-direction: column; gap: 12px; }
.role { border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); border-radius: 18px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.role.open { border-color: var(--accent-line); }
.role-head { width: 100%; text-align: left; display: grid; grid-template-columns: 1fr auto; grid-template-areas: "team plus" "title plus" "meta plus"; gap: 4px 16px; padding: 22px 24px; align-items: center; }
.role-team { grid-area: team; font-size: var(--fs-label); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.role-title { grid-area: title; font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
.role-meta { grid-area: meta; font-size: var(--fs-ui); color: var(--muted); }
.role .plus { grid-area: plus; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; }
.role.open .plus { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.role-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.role-body > div { overflow: hidden; padding: 0 24px; }
.role.open .role-body { grid-template-rows: 1fr; }
.role.open .role-body > div { padding-bottom: 24px; }
.role-body p { font-size: var(--fs-body-sm); line-height: 1.7; color: #333; margin-bottom: 12px; }
.role-summary { font-weight: 500; }
.role-body .btn { margin-top: 8px; }

@media (max-width: 680px) {
  .page-hero { padding: 120px 0 44px; }
  .feed-day { grid-template-columns: 1fr; gap: 12px; }
  .live-badge { margin-left: 8px; }
}

/* ---------- Founder ---------- */
.founder { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: center; }
.founder-photo {
  aspect-ratio: 4 / 5; border-radius: 24px; background: #eee center / cover no-repeat;
  display: grid; place-items: center; color: rgba(255,255,255,.9);
  font-size: 88px; font-weight: 800; letter-spacing: -.04em;
  box-shadow: 0 24px 60px rgba(0,0,0,.10);
}
.founder-copy h2 { font-size: var(--fs-h2); line-height: 1.15; font-weight: 700; letter-spacing: -.04em; margin: 16px 0 6px; }
.founder-role { color: var(--muted); font-size: var(--fs-body); font-weight: 500; margin-bottom: 20px; }
.founder-bio p { font-size: var(--fs-body); line-height: 1.7; color: #333; margin-bottom: 14px; }
.founder-highlights { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.founder-highlights:empty { display: none; }
.founder-highlights li { font-size: var(--fs-ui); background: var(--accent-soft); color: var(--accent-dark); padding: 7px 14px; border-radius: 999px; font-weight: 500; }
.founder-links { display: flex; gap: 10px; flex-wrap: wrap; }
.founder-links:empty { display: none; }
.founder-links a { font-size: var(--fs-ui); font-weight: 600; padding: 10px 16px; border: 1px solid var(--line); border-radius: 12px; transition: border-color .2s, color .2s; }
.founder-links a:hover { border-color: var(--accent); color: var(--accent); }
.footer-founder { color: #9a9aa2; font-size: var(--fs-ui); margin-top: 8px; }
.footer-founder a { color: #fff; font-weight: 600; }
.footer-founder a:hover { color: var(--accent); }
@media (max-width: 1024px) { .founder { grid-template-columns: 300px 1fr; gap: 36px; } }
@media (max-width: 680px) {
  .founder { grid-template-columns: 1fr; }
  .founder-photo { max-width: 320px; width: 100%; font-size: 64px; }
}
