/* ==========================================================================
   SALON HUDDLE — public marketing site
   Shares the app's palette (ink navy / lime / warm white) so the brand reads
   as one product, with a display face (Manrope) for headlines to give the
   marketing site its own, more editorial, voice than the working app.
   ========================================================================== */

:root {
  --ink: #0B1F3B;
  --ink-soft: #16294A;
  --ink-softer: #22375c;
  --lime: #C8FF00;
  --lime-dim: #B3E600;
  --warm-white: #F8F7F4;
  --cream: #FBF9F4;
  --soft-grey: #E2E6EB;
  --slate: #6B7A8F;
  --slate-light: #9FB0C7;
  --white: #FFFFFF;

  --cat-colour: #7A5AC8;
  --cat-highlights: #C99A1E;
  --cat-balayage: #D2694E;
  --cat-cutting: #2D5BA8;
  --cat-blowdry: #1C9A8C;
  --cat-brows: #C8507A;
  --cat-treatments: #3E9B5F;
  --cat-rituals: #8AA800;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-s: 0 1px 2px rgba(11, 31, 59, 0.06), 0 1px 1px rgba(11, 31, 59, 0.04);
  --shadow-m: 0 10px 24px rgba(11, 31, 59, 0.10), 0 2px 8px rgba(11, 31, 59, 0.06);
  --shadow-l: 0 24px 60px rgba(11, 31, 59, 0.20), 0 6px 16px rgba(11, 31, 59, 0.10);
  --shadow-device: 0 40px 80px -20px rgba(11, 31, 59, 0.35), 0 14px 30px -10px rgba(11, 31, 59, 0.22);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Manrope", var(--font);
  --container: 1180px;
  --transition: 200ms ease;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .float { animation: none !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--warm-white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
h1, h2, h3, h4, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--lime); color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; text-wrap: balance; letter-spacing: -0.01em; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(200,255,0,0.25); flex: none; }
.eyebrow.on-dark { color: var(--lime); }
.eyebrow.on-dark::before { background: var(--white); box-shadow: 0 0 0 3px rgba(255,255,255,0.18); }

/* ---------- buttons ---------- */
.btn {
  border: none; border-radius: var(--radius-full); cursor: pointer;
  font-weight: 800; font-size: 15.5px; letter-spacing: -0.005em;
  padding: 15px 26px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 17px 30px; font-size: 16.5px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-primary { background: var(--lime); color: var(--ink); box-shadow: var(--shadow-m); }
.btn-primary:hover { background: var(--lime-dim); transform: translateY(-1px); box-shadow: var(--shadow-l); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--soft-grey); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-outline.on-dark { color: var(--white); border-color: rgba(255,255,255,0.28); }
.btn-outline.on-dark:hover { border-color: var(--white); }
.btn-ghost { background: var(--soft-grey); color: var(--ink); }
.btn-ghost:hover { background: #d7dce4; }
.btn-block { width: 100%; }

/* ---------- a11y helpers ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--white);
  padding: 12px 18px; border-radius: 10px; font-weight: 800; font-size: 14px; transition: top var(--transition);
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2.5px solid var(--ink); outline-offset: 2px; }
.on-dark:focus-visible { outline-color: var(--lime); }

/* ---------- nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 247, 244, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled { border-color: var(--soft-grey); box-shadow: 0 2px 16px rgba(11,31,59,0.05); }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 18px; flex: none; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 11px; background: var(--ink);
  display: grid; place-items: center; color: var(--lime); font-family: var(--font-display); font-weight: 900; font-size: 18px; flex: none;
}
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14.5px; font-weight: 700; color: var(--ink-soft); }
.nav-links a { padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color var(--transition), color var(--transition); }
.nav-links a:hover { border-color: var(--lime); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.nav-login { font-size: 14px; font-weight: 800; color: var(--ink-soft); border-bottom: 2px solid var(--soft-grey); padding-bottom: 2px; }
.nav-login:hover { border-color: var(--ink); }
.nav-burger { display: none; background: var(--soft-grey); border-radius: 10px; width: 40px; height: 40px; align-items: center; justify-content: center; font-size: 18px; padding: 0; }
.mobile-menu {
  display: none; flex-direction: column; background: var(--warm-white); border-top: 1px solid var(--soft-grey);
  padding: 8px 24px 18px;
}
.mobile-menu a { padding: 12px 0; font-weight: 700; font-size: 15px; border-bottom: 1px solid var(--soft-grey); color: var(--ink); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding: 64px 0 40px; overflow: visible; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1.15fr); gap: 40px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-copy h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.06; margin: 16px 0 20px; color: var(--ink); }
.hero-copy p.lede { font-size: 18px; line-height: 1.6; color: var(--slate); max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-fine { margin-top: 18px; font-size: 13.5px; color: var(--slate); font-weight: 700; }

.hero-stage {
  position: relative; height: 460px; display: flex; align-items: center; justify-content: center;
  perspective: 1400px;
}
@media (max-width: 980px) { .hero-stage { height: 380px; margin-top: 10px; } }
@media (max-width: 560px) { .hero-stage { height: 300px; } }

.float { animation: floaty 6.5s ease-in-out infinite; }
.float-slow { animation-duration: 8.5s; }
.float-rev { animation-direction: alternate-reverse; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* device mockups — reused between the hero and Huddle Smart */
.device { position: absolute; border-radius: var(--radius-l); box-shadow: var(--shadow-device); background: var(--ink); overflow: hidden; }
.device-laptop {
  width: 74%; max-width: 560px; aspect-ratio: 16/10.3; left: 3%; top: 6%;
  transform: rotate(-3.5deg); z-index: 1; border-radius: 14px 14px 20px 20px;
}
.device-laptop .lid-bar { height: 26px; background: var(--ink-soft); display: flex; align-items: center; gap: 6px; padding: 0 12px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.lid-url { margin-left: 8px; font-size: 7px; color: rgba(255,255,255,0.35); font-weight: 600; }
.device-laptop .screen { background: var(--warm-white); height: calc(100% - 26px); display: flex; }

/* realistic app shell — mirrors the real Huddle diary layout */
.app-shell { display: flex; height: 100%; width: 100%; min-width: 0; }
.app-sidebar { width: 22%; background: var(--ink); padding: 9px 7px; display: flex; flex-direction: column; gap: 5px; flex: none; }
.app-sidebar-brand { display: flex; align-items: center; gap: 5px; font-size: 8px; font-weight: 800; color: var(--white); padding: 2px 4px 8px; }
.app-mark { width: 13px; height: 13px; border-radius: 4px; background: var(--lime); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 900; flex: none; }
.app-sidebar-item { display: flex; align-items: center; gap: 5px; font-size: 6.8px; font-weight: 700; color: rgba(255,255,255,0.6); padding: 4px 6px; border-radius: 6px; }
.app-sidebar-item i { font-style: normal; font-size: 8px; }
.app-sidebar-item.active { background: rgba(200,255,0,0.14); color: var(--lime); }
.app-main { flex: 1; min-width: 0; padding: 9px 11px; display: flex; flex-direction: column; gap: 6px; }
.app-header-row { display: flex; justify-content: space-between; align-items: center; }
.app-title { font-size: 11px; font-weight: 800; color: var(--ink); }
.app-ask { background: var(--ink); color: var(--lime); font-size: 6px; font-weight: 800; border-radius: 999px; padding: 3px 7px; }
.app-ownercard { display: flex; align-items: center; gap: 6px; background: var(--white); border-radius: 7px; padding: 5px 7px; box-shadow: var(--shadow-s); }
.app-owner-avatar { width: 15px; height: 15px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 5.5px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; }
.app-owner-name { font-size: 6.5px; font-weight: 800; color: var(--ink); }
.app-owner-sub { font-size: 5.5px; color: var(--slate); }
.app-daytabs { display: flex; gap: 2px; }
.app-day { flex: 1; background: var(--white); border-radius: 5px; padding: 3px 2px; text-align: center; box-shadow: var(--shadow-s); }
.app-day span { display: block; font-size: 4.6px; font-weight: 800; color: var(--slate); }
.app-day b { font-size: 6.5px; color: var(--ink); }
.app-day.active { background: var(--ink); }
.app-day.active span { color: var(--lime); }
.app-day.active b { color: var(--white); }
.app-statrow { display: flex; gap: 4px; align-items: stretch; }
.app-stat { flex: 1; background: var(--white); border-radius: 6px; padding: 4px 6px; box-shadow: var(--shadow-s); }
.app-stat .lbl { display: block; font-size: 4.6px; font-weight: 800; color: var(--slate); letter-spacing: 0.05em; }
.app-stat .val { font-size: 8px; font-weight: 800; color: var(--ink); }
.app-addbtn { flex: 1.3; background: var(--lime); color: var(--ink); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 6.2px; font-weight: 800; }
.app-legend { display: flex; flex-wrap: wrap; gap: 5px; }
.app-legend span { display: flex; align-items: center; gap: 3px; font-size: 5px; font-weight: 700; color: var(--ink-soft); }
.app-legend i { width: 5px; height: 5px; border-radius: 50%; flex: none; }
.app-list { flex: 1; min-height: 0; display: flex; flex-direction: column; gap: 4px; overflow: hidden; }
.app-row { display: flex; gap: 5px; align-items: stretch; }
.app-time { font-size: 5.5px; font-weight: 800; color: var(--slate); width: 20px; flex: none; padding-top: 3px; }
.app-card { flex: 1; border-left: 2.5px solid; border-radius: 5px; padding: 4px 6px; display: flex; flex-direction: column; gap: 1px; box-shadow: var(--shadow-s); }
.app-card b { font-size: 6.2px; color: var(--ink); }
.app-card span { font-size: 5.2px; color: var(--slate); }
.app-card em { display: flex; align-items: center; gap: 4px; font-style: normal; font-size: 6px; font-weight: 800; color: var(--ink); margin-top: 1px; }
.app-status { font-style: normal; font-size: 4.4px; font-weight: 800; border-radius: 4px; padding: 1px 4px; }
.app-status.paid { background: rgba(62,155,95,0.16); color: var(--cat-treatments); }
.app-status.booked { background: rgba(45,91,168,0.14); color: var(--cat-cutting); }

.device-tablet {
  width: 40%; max-width: 250px; aspect-ratio: 3/4; right: 2%; top: 2%;
  transform: rotate(3deg); z-index: 2; border-width: 8px; border-style: solid; border-color: var(--ink);
}
.device-tablet .screen { background: var(--cream); height: 100%; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; }
.mock-target-hero { font-size: 9px; font-weight: 800; color: var(--ink); }
.mock-target-title { font-size: 11px; font-weight: 800; color: var(--ink); }
.mock-team-tabs { display: flex; gap: 3px; }
.mock-team-tabs span { flex: 1; text-align: center; font-size: 5.2px; font-weight: 800; color: var(--slate); background: var(--soft-grey); border-radius: 999px; padding: 3px 2px; }
.mock-team-tabs span.on { background: var(--ink); color: var(--white); }
.mock-target-card { background: var(--white); border-radius: 8px; padding: 8px 9px; box-shadow: var(--shadow-s); display: flex; flex-direction: column; gap: 6px; }
.mock-target-head { display: flex; justify-content: space-between; align-items: baseline; }
.mock-target-head span { font-size: 7px; font-weight: 800; color: var(--ink); }
.mock-target-head b { font-size: 9px; font-weight: 800; color: var(--cat-treatments); }
.mock-bar { height: 6px; border-radius: 999px; background: var(--soft-grey); overflow: hidden; }
.mock-bar > i { display: block; height: 100%; background: var(--lime); border-radius: inherit; }
.mock-target-rows { display: flex; flex-direction: column; gap: 3px; }
.mock-target-rows div { display: flex; justify-content: space-between; font-size: 5.8px; }
.mock-target-rows span { color: var(--slate); font-weight: 600; }
.mock-target-rows b { color: var(--ink); font-weight: 800; }
.mock-target-rows div.soft { border-top: 1px solid var(--soft-grey); padding-top: 3px; margin-top: 1px; }
.mock-stylist-row { display: flex; align-items: center; gap: 6px; background: var(--white); border-radius: 8px; padding: 6px 8px; box-shadow: var(--shadow-s); }
.mock-avatar { width: 18px; height: 18px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 6.5px; font-weight: 800; color: var(--white); }
.mock-stylist-row .info { flex: 1; min-width: 0; }
.mock-stylist-row .name { font-size: 7.5px; font-weight: 800; color: var(--ink); }
.mock-stylist-row .pct { font-size: 7px; font-weight: 800; color: var(--slate); }

.device-phone {
  width: 30%; max-width: 168px; aspect-ratio: 9/18.5; left: 6%; bottom: -4%;
  border-width: 8px; border-style: solid; border-color: var(--ink); z-index: 3;
}
.device-phone .screen { background: var(--cream); height: 100%; display: flex; flex-direction: column; }
.mock-phone-head { background: var(--ink); color: var(--white); padding: 12px 10px 8px; font-size: 8.5px; font-weight: 800; display:flex; justify-content: space-between; align-items:center; }
.mock-phone-head .d { color: var(--lime); font-size: 6px; background: rgba(200,255,0,0.14); border-radius: 999px; padding: 2px 6px; }
.mock-phone-days { display: flex; gap: 3px; padding: 6px 8px 0; }
.mock-phone-days span { flex: 1; text-align: center; font-size: 4.6px; font-weight: 800; color: var(--slate); background: var(--white); border-radius: 4px; padding: 2px 1px; box-shadow: var(--shadow-s); }
.mock-phone-days span b { display: block; font-size: 6px; color: var(--ink); }
.mock-phone-days span.on { background: var(--ink); }
.mock-phone-days span.on b { color: var(--lime); }
.mock-phone-list { flex: 1; padding: 8px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.mock-appt { background: var(--white); border-radius: 8px; padding: 6px 7px; box-shadow: var(--shadow-s); display: flex; gap: 6px; align-items: center; }
.mock-appt .bar { width: 3px; align-self: stretch; border-radius: 3px; flex: none; }
.mock-appt .info { flex: 1; min-width: 0; }
.mock-appt .n { font-size: 7.2px; font-weight: 800; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-appt .s { font-size: 6.2px; color: var(--slate); }
.mock-appt .p { font-size: 7px; font-weight: 800; color: var(--ink); flex: none; display: flex; align-items: center; gap: 3px; }
.mock-status { font-style: normal; font-size: 4.2px; font-weight: 800; border-radius: 4px; padding: 1px 4px; }
.mock-status.paid { background: rgba(62,155,95,0.16); color: var(--cat-treatments); }
.mock-status.booked { background: rgba(45,91,168,0.14); color: var(--cat-cutting); }
.mock-fab { position: absolute; right: 10px; bottom: 10px; width: 26px; height: 26px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; font-weight: 900; color: var(--ink); font-size: 14px; box-shadow: var(--shadow-m); }

/* ---------- sections generic ---------- */
section { padding: 96px 0; }
@media (max-width: 780px) { section { padding: 64px 0; } }
.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 14px 0 14px; }
.section-head p { font-size: 17px; color: var(--slate); line-height: 1.6; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.stagger.in { transition-delay: calc(var(--i, 0) * 90ms); }

/* problem / audience cards */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  background: var(--white); border-radius: var(--radius-l); padding: 30px 26px; box-shadow: var(--shadow-m);
  border: 1px solid var(--soft-grey);
}
.audience-card .tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; color: var(--ink); background: var(--lime); padding: 4px 11px; border-radius: 999px; margin-bottom: 16px; }
.audience-card p { color: var(--slate); font-size: 15.5px; line-height: 1.6; }

/* feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--white); border-radius: var(--radius-m); padding: 26px 24px; border: 1px solid var(--soft-grey);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: transparent; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(200,255,0,0.22);
  display: grid; place-items: center; font-size: 21px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--slate); line-height: 1.55; }
.feature-card .egs { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }
.feature-card .egs span { font-size: 12.5px; color: var(--ink-soft); background: var(--warm-white); border-radius: 8px; padding: 6px 9px; font-style: italic; }

/* huddle smart (dark) */
.smart-section { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.smart-section::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,0,0.14), transparent 70%); pointer-events: none;
}
.smart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 980px) { .smart-grid { grid-template-columns: 1fr; } }
.smart-copy h2 { color: var(--white); font-size: clamp(28px, 3.6vw, 40px); margin: 14px 0 16px; }
.smart-copy p { color: var(--slate-light); font-size: 16.5px; line-height: 1.65; max-width: 46ch; }
.smart-stage { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; }
@media (max-width: 980px) { .smart-stage { height: 320px; margin-top: 20px; } }
.smart-stage .device-phone { position: relative; left: auto; bottom: auto; margin: 0 auto; }
.smart-chip {
  position: absolute; background: var(--ink-softer); border: 1px solid rgba(255,255,255,0.14); color: var(--white);
  font-size: 12.5px; font-weight: 700; border-radius: 999px; padding: 9px 15px; box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
}
.smart-chip .dotlime { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex: none; }
.chip-1 { top: 4%; left: -2%; }
.chip-2 { top: 20%; right: -6%; }
.chip-3 { bottom: 30%; left: -10%; }
.chip-4 { bottom: 8%; right: -2%; }
.chip-5 { top: 46%; right: 30%; }
@media (max-width: 980px) {
  .chip-1 { left: 0; } .chip-2 { right: 0; } .chip-3 { left: 0; } .chip-4 { right: 0; } .chip-5 { display: none; }
}

/* huddle power (team energy) */
.power-section {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 160% at 15% -10%, rgba(200,255,0,0.35) 0%, rgba(200,255,0,0.10) 32%, var(--warm-white) 62%);
}
.power-section::after {
  content: ""; position: absolute; right: -4%; bottom: -10%; width: 380px; height: 380px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%230B1F3B' d='M56 2 18 54h24l-6 44 42-56H54z'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; opacity: 0.05;
  pointer-events: none; transform: rotate(-8deg); user-select: none;
}
.power-eyebrow { gap: 8px; }
.power-eyebrow::before { display: none; }
.power-eyebrow .bolt { font-size: 14px; }
.power-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 44px 0 28px; align-items: stretch; }
@media (max-width: 900px) { .power-grid { grid-template-columns: 1fr; } }
.power-card {
  position: relative; background: var(--white); border-radius: var(--radius-l); padding: 30px 26px;
  border: 1px solid var(--soft-grey); box-shadow: var(--shadow-s);
  transition: transform var(--transition), box-shadow var(--transition);
}
.power-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.power-card h3 { font-size: 18px; margin-bottom: 9px; }
.power-card p { font-size: 15px; color: var(--slate); line-height: 1.6; }
.power-icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(200,255,0,0.22); display: grid; place-items: center; font-size: 21px; margin-bottom: 16px; }
.power-card-hero {
  background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow-l);
  transform: translateY(-6px);
}
.power-card-hero h3, .power-card-hero p { color: var(--white); }
.power-card-hero p { color: var(--slate-light); }
.power-card-hero:hover { transform: translateY(-9px); }
.power-egs { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.power-egs span { font-size: 12.5px; color: var(--white); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 7px 10px; font-style: italic; }
.bolt-badge {
  width: 46px; height: 46px; border-radius: 50%; background: var(--lime); display: grid; place-items: center;
  font-size: 22px; box-shadow: 0 0 0 6px rgba(200,255,0,0.18);
}
.power-icon:has(.bolt-badge) { width: auto; height: auto; background: none; margin-bottom: 16px; }
.power-note { text-align: center; font-size: 14px; color: var(--slate); }
.power-note a { text-decoration: underline; font-weight: 700; color: var(--ink); }
@media (max-width: 900px) { .power-card-hero { transform: none; } .power-card-hero:hover { transform: translateY(-3px); } }

/* rent-a-chair */
.stylist-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 40px 0 44px; }
@media (max-width: 860px) { .stylist-row { grid-template-columns: 1fr; } }
.stylist-card { background: var(--white); border-radius: var(--radius-m); padding: 22px; border: 1px solid var(--soft-grey); }
.stylist-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.stylist-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--white); font-weight: 800; font-size: 14px; flex: none; }
.stylist-head .name { font-weight: 800; font-size: 15px; }
.stylist-head .role { font-size: 12.5px; color: var(--slate); }
.stylist-card .mock-bar { margin-bottom: 6px; }
.stylist-card .pct-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--slate); font-weight: 700; }

.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; margin-bottom: 40px; }
@media (max-width: 700px) { .concept-grid { grid-template-columns: 1fr; } }
.concept-item { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); font-weight: 600; padding: 8px 0; }
.concept-check { width: 20px; height: 20px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-size: 12px; font-weight: 900; flex: none; margin-top: 1px; }

.tagline-banner {
  background: var(--ink); color: var(--white); border-radius: var(--radius-l); padding: 30px 34px; text-align: center;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(18px, 2.4vw, 24px);
}
.tagline-banner span { color: var(--lime); }

/* founder */
.founder-section .wrap { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; }
@media (max-width: 780px) { .founder-section .wrap { grid-template-columns: 1fr; } }
.founder-badge {
  position: relative; width: 196px; height: 196px; border-radius: 50%;
  background: radial-gradient(120% 120% at 32% 22%, #1B2F52 0%, #0B1F3B 58%, #071328 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  flex: none; margin: 0 auto;
  box-shadow: 0 0 0 1.5px rgba(200,255,0,0.9), 0 0 0 7px rgba(200,255,0,0.10), var(--shadow-l);
}
.badge-ring {
  position: absolute; inset: 12px; border-radius: 50%; border: 1px solid rgba(200,255,0,0.28);
  pointer-events: none;
}
.badge-mono {
  font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--white);
  line-height: 1; margin-bottom: 8px;
}
.badge-rule { width: 30px; height: 2px; background: var(--lime); border-radius: 2px; margin-bottom: 10px; }
.badge-label {
  font-family: var(--font); font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 8px;
}
.badge-sub { font-family: var(--font); font-weight: 600; font-size: 13px; line-height: 1.4; color: var(--slate-light); }
.founder-copy h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; }
.founder-copy p { font-size: 16.5px; color: var(--slate); line-height: 1.65; max-width: 60ch; }
.founder-copy p + p { margin-top: 12px; }

/* growing / waitlist */
.grow-section { background: var(--white); border-top: 1px solid var(--soft-grey); border-bottom: 1px solid var(--soft-grey); }
.grow-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.grow-inner h2 { font-size: clamp(26px, 3.6vw, 38px); margin: 14px 0 14px; }
.grow-inner p { color: var(--slate); font-size: 16.5px; line-height: 1.6; }
.waitlist-form { display: flex; gap: 10px; margin: 30px 0 12px; }
@media (max-width: 560px) { .waitlist-form { flex-direction: column; } }
.waitlist-form input {
  flex: 1; border: 1.5px solid var(--soft-grey); border-radius: var(--radius-full); padding: 14px 20px;
  font-size: 15px; font-family: inherit; background: var(--warm-white); color: var(--ink); min-width: 0;
}
.waitlist-form input:focus { outline: none; border-color: var(--ink); }
.waitlist-note { font-size: 13px; color: var(--slate); }
.waitlist-note.ok { color: var(--ink); font-weight: 700; }

/* benefits */
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 780px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit-card { padding: 8px 0; }
.benefit-icon { font-size: 26px; margin-bottom: 14px; }
.benefit-card h3 { font-size: 20px; margin-bottom: 8px; }
.benefit-card p { font-size: 15.5px; color: var(--slate); line-height: 1.6; max-width: 42ch; }

/* final cta */
.final-cta { background: linear-gradient(155deg, var(--ink) 0%, var(--ink-soft) 100%); color: var(--white); text-align: center; }
.final-cta h2 { color: var(--white); font-size: clamp(30px, 4.4vw, 46px); margin: 14px 0 16px; }
.final-cta p { color: var(--slate-light); font-size: 17px; max-width: 52ch; margin: 0 auto; line-height: 1.6; }
.final-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* client login band */
.login-band { background: var(--warm-white); }
.login-card {
  max-width: 560px; margin: 0 auto; text-align: center; background: var(--white); border: 1px solid var(--soft-grey);
  border-radius: var(--radius-l); padding: 48px 40px; box-shadow: var(--shadow-m);
}
.login-card h2 { font-size: clamp(22px, 3vw, 28px); margin: 12px 0 22px; }

/* footer */
.site-footer { background: var(--ink); color: var(--slate-light); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand .brand { color: var(--white); }
.footer-brand p { margin-top: 12px; font-size: 14.5px; max-width: 32ch; }
.footer-col h4 { font-size: 12.5px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 16px; font-family: var(--font); font-weight: 800; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: var(--white); opacity: 0.85; transition: opacity var(--transition); }
.footer-col a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; }
.footer-bottom a { opacity: 0.85; }

/* simple stub pages (privacy / terms) */
.stub-main { padding: 80px 0 100px; max-width: 720px; margin: 0 auto; }
.stub-main h1 { font-size: clamp(28px, 4vw, 38px); margin: 14px 0 20px; }
.stub-main p { color: var(--slate); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
