/* Resminos — light & airy, Cluely-inspired */

:root{
  --bg: #FBFAF7;
  --bg-2: #F4F2EC;
  --ink: #14131A;
  --ink-2: #45434F;
  --ink-3: #8B8896;
  --line: rgba(20,19,26,.08);
  --line-2: rgba(20,19,26,.14);
  --accent: #2A5BFF;
  --accent-2: #4F7BFF;
  --accent-soft: rgba(42,91,255,.08);
  --accent-glow: rgba(42,91,255,.35);
  --glass-bg: rgba(255,255,255,.55);
  --glass-bg-strong: rgba(255,255,255,.72);
  --glass-border: rgba(255,255,255,.7);
  --glass-blur: 18px;
  --glass-sat: 160%;
  --shadow-sm: 0 1px 2px rgba(20,19,26,.04), 0 1px 0 rgba(255,255,255,.6) inset;
  --shadow-md: 0 8px 24px rgba(20,19,26,.06), 0 1px 0 rgba(255,255,255,.7) inset;
  --shadow-lg: 0 24px 60px rgba(20,19,26,.10), 0 1px 0 rgba(255,255,255,.7) inset;
  --shadow-cta: 0 8px 24px rgba(42,91,255,.32), 0 1px 0 rgba(255,255,255,.4) inset;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font-serif: "Instrument Serif", "Newsreader", Georgia, serif;
  --font-grotesque: "Bricolage Grotesque", "Söhne", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: var(--font-grotesque);
  --font-sans: "Geist", "Söhne", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}

/* Headline font swap — toggled from Tweaks. */
body[data-display="serif"] { --font-display: var(--font-serif); }
body[data-display="grotesque"] { --font-display: var(--font-grotesque); }

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── BACKGROUND TREATMENTS ───────────────────────────────────────────── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Default: subtle orb gradient */
.bg-orb::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10%;
  width: 1200px;
  height: 1200px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(42,91,255,.18), rgba(42,91,255,.04) 55%, transparent 75%);
  filter: blur(40px);
}
.bg-orb::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 30%;
  width: 700px;
  height: 700px;
  background: radial-gradient(closest-side, rgba(120,80,255,.12), transparent 70%);
  filter: blur(60px);
}

.bg-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,19,26,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,19,26,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.bg-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(42,91,255,.16), transparent 70%);
  filter: blur(50px);
}

.bg-gradient {
  background: linear-gradient(180deg, #EEF1FE 0%, #FBFAF7 35%, #FBFAF7 100%);
}
.bg-gradient::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -200px;
  width: 1400px;
  height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(42,91,255,.22), transparent 70%);
  filter: blur(60px);
}

.bg-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .35;
  mix-blend-mode: multiply;
}
.bg-noise::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -10%;
  width: 1100px;
  height: 1100px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(42,91,255,.16), transparent 70%);
  filter: blur(60px);
}

/* ─── DARK THEME ──────────────────────────────────────────────────────── */
body[data-theme="dark"] {
  --bg: #0A0A12;
  --bg-2: #14141F;
  --ink: #F4F2EC;
  --ink-2: #B5B2BF;
  --ink-3: #6B6877;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --glass-bg: rgba(255,255,255,.04);
  --glass-bg-strong: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.12);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.04) inset;
  --shadow-md: 0 8px 24px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.04) inset;
  --shadow-lg: 0 24px 60px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.05) inset;
}

/* ─── GLASS ───────────────────────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  box-shadow: var(--shadow-md);
}
.glass-strong {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  box-shadow: var(--shadow-md);
}

/* ─── LAYOUT ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px){
  .container { padding: 0 20px; }
}

/* ─── NAV ─────────────────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 18px;
  border-radius: 999px;
  width: 100%;
  max-width: 1080px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-right: 6px;
}
.nav-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #FF3B5C 0%, #FF6B35 60%, #FF8A3D 100%);
  border: 1px solid rgba(255,255,255,.4);
  box-shadow:
    0 8px 22px rgba(255,59,92,.45),
    0 1px 0 rgba(255,255,255,.45) inset,
    0 -2px 6px rgba(180,30,50,.4) inset;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 28% 22%, rgba(255,255,255,.55), transparent 65%),
    radial-gradient(closest-side at 75% 90%, rgba(180,30,50,.5), transparent 70%);
  pointer-events: none;
}
.nav-logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,.4) 0%, transparent 35%, transparent 65%, rgba(255,255,255,.12) 100%);
  pointer-events: none;
}
.nav-logo-mark > svg {
  position: relative;
  z-index: 1;
  width: 60%;
  height: 60%;
  filter: drop-shadow(0 1px 2px rgba(120,20,40,.4));
}
body[data-theme="dark"] .nav-logo-mark {
  border-color: rgba(255,255,255,.18);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 14px;
}
.nav-link {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: rgba(20,19,26,.05); color: var(--ink); }
body[data-theme="dark"] .nav-link:hover { background: rgba(255,255,255,.06); }

.nav-creators {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(42,91,255,.42), 0 1px 0 rgba(255,255,255,.28) inset;
  transition: transform .15s, box-shadow .2s;
}
.nav-creators .label-short { display: none; }
.nav-creators:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(42,91,255,.5), 0 1px 0 rgba(255,255,255,.3) inset;
}
.nav-creators .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.3);
  animation: pulse 2.4s ease-in-out infinite;
}
.nav-spacer { flex: 1; }

.lang-pill {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(20,19,26,.06);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
}
body[data-theme="dark"] .lang-pill { background: rgba(255,255,255,.06); }
.lang-pill button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: .04em;
  transition: all .15s;
}
.lang-pill button[data-active="true"] {
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(20,19,26,.08);
}
body[data-theme="dark"] .lang-pill button[data-active="true"] {
  background: rgba(255,255,255,.12);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border: 0;
  transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(20,19,26,.18); }

.nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: rgba(20,19,26,.06);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body[data-theme="dark"] .nav-burger { background: rgba(255,255,255,.08); color: var(--ink); }

@media (max-width: 1020px){
  .nav { padding: 7px 8px 7px 14px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; }
  /* For Creators stays visible on mobile — user's explicit request */
  .nav-creators { font-size: 13px; padding: 7px 13px 7px 11px; }
  .nav-creators .label-full { display: none; }
  .nav-creators .label-short { display: inline; }
  .nav-logo-mark { width: 36px; height: 36px; border-radius: 11px; }
  .nav-logo { font-size: 17px; }
}
@media (max-width: 420px){
  .nav-logo .nav-logo-text { display: none; }
}

/* Mobile menu sheet */
.mobile-menu {
  position: fixed;
  inset: 78px 16px auto 16px;
  z-index: 99;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 16px;
  color: var(--ink-2);
}
.mobile-menu a:hover { background: rgba(20,19,26,.05); color: var(--ink); }
.mobile-menu .cta {
  margin-top: 8px;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  transition: transform .15s, box-shadow .2s, background .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(42,91,255,.4), 0 1px 0 rgba(255,255,255,.4) inset;
}
.btn-ghost {
  background: var(--glass-bg-strong);
  color: var(--ink);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}
.btn-ghost:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
body[data-theme="dark"] .btn-ghost:hover { background: rgba(255,255,255,.12); }

.btn-dark {
  background: var(--ink);
  color: var(--bg);
}
.btn-dark:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(20,19,26,.25); }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 3px rgba(22,163,74,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .5; }
}

.h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 7.6vw, 96px);
  line-height: .98;
  letter-spacing: -.035em;
  margin: 0;
  text-wrap: balance;
}
body[data-display="serif"] .h1 { font-weight: 400; letter-spacing: -.025em; }
.h1 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
body[data-display="serif"] .h1 em { font-style: italic; font-weight: 400; }
.h1 .strike {
  position: relative;
  display: inline-block;
}
.h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(-2deg);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  text-wrap: balance;
}
body[data-display="serif"] .h2 { font-weight: 400; letter-spacing: -.02em; }
.h2 em { font-style: normal; color: var(--accent); font-weight: 600; }
body[data-display="serif"] .h2 em { font-style: italic; font-weight: 400; }

.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0 0 10px;
}
body[data-display="serif"] .h3 { font-weight: 400; letter-spacing: -.015em; }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
  margin: 0;
  text-wrap: pretty;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

/* ─── SECTIONS ────────────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
@media (max-width: 720px){
  .section { padding: 70px 0; }
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-head .lead { text-align: center; }

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  padding: 150px 0 90px;
  position: relative;
  z-index: 1;
}
.hero-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero-centered .lead { text-align: center; }
.hero-centered .cta-row { justify-content: center; }

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-split .hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.hero-split .lead { text-align: left; }
@media (max-width: 960px){
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.guarantees {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-2);
}
.guarantees li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.guarantees svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero visual mock */
.hero-mock {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ─── LOGOS ───────────────────────────────────────────────────────────── */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: .7;
  margin-top: 56px;
}
.logo-row .kicker { width: 100%; text-align: center; margin-bottom: 4px; }
.logo-row .logo-mark {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-2);
  font-style: italic;
  letter-spacing: -.01em;
}

/* ─── CARDS / STEPS ───────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 920px){ .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .steps { grid-template-columns: 1fr; } }

.step {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 38px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
body[data-display="serif"] .step-num { font-style: italic; font-weight: 400; }
body[data-display="serif"] .testimonial .avatar { font-style: italic; font-weight: 400; }
.step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
}
.step p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* Deliverables grid */
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px){ .deliverables { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .deliverables { grid-template-columns: 1fr; } }

.deliverable {
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.deliverable .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 4px;
}
.deliverable .icon svg { width: 18px; height: 18px; }
.deliverable h5 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -.005em;
}
.deliverable p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
}

/* ─── PRICING ─────────────────────────────────────────────────────────── */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 880px){ .pricing-wrap { grid-template-columns: 1fr; } }

.price-card {
  padding: 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.price-card.primary {
  background: linear-gradient(155deg, rgba(42,91,255,.92), rgba(80,60,255,.85));
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 60px rgba(42,91,255,.32), 0 1px 0 rgba(255,255,255,.18) inset;
}
.price-card.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255,255,255,.25), transparent 50%);
  pointer-events: none;
}
.price-card .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
}
.price-card .price-tag .amount {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.price-card .price-tag .currency { font-size: 32px; opacity: .8; }
.price-card .price-tag .unit { font-size: 16px; font-family: var(--font-sans); opacity: .7; margin-left: 6px; }

.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-features li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  align-items: flex-start;
  position: relative;
}
.price-features li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

.price-meta {
  padding: 32px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
}
.price-meta .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-meta .stat .v {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.02em;
}
.price-meta .stat .k { font-size: 13px; color: var(--ink-3); }
.price-divider { height: 1px; background: var(--line); }

/* ─── TESTIMONIALS ────────────────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px){ .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 240px;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.01em;
  flex: 1;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7C3AED);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
}
.testimonial .who .name { font-weight: 500; font-size: 14px; }
.testimonial .who .role { font-size: 12px; color: var(--ink-3); }

/* ─── WORK / CASES ────────────────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px){ .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .work-grid { grid-template-columns: 1fr; } }

.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: white;
  background: #1c1c28;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
a.work-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(20,19,26,.32); }
a.work-card:hover .work-arrow { transform: translate(2px, -2px); }
.work-arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 18px;
  opacity: .75;
  transition: transform .25s var(--ease);
}
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 6px, transparent 6px 12px),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.work-card.c1 { background: linear-gradient(135deg, #2A5BFF, #1B2A60); }
.work-card.c2 { background: linear-gradient(135deg, #14131A, #353548); }
.work-card.c3 { background: linear-gradient(135deg, #7C3AED, #1B1845); }
.work-card .meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
  position: relative;
  margin-bottom: 6px;
}
.work-card h5 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0;
  position: relative;
  line-height: 1.1;
}
.work-card p {
  margin: 8px 0 0;
  font-size: 13px;
  opacity: .85;
  position: relative;
}

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border-radius: var(--radius-md);
  padding: 4px 22px;
  overflow: hidden;
}
.faq-item details { padding: 14px 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -.005em;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 22px;
  color: var(--ink-3);
  transition: transform .2s;
}
.faq-item details[open] summary::after { transform: rotate(45deg); }
.faq-item details[open] summary { color: var(--accent); }
.faq-item p {
  margin: 12px 0 8px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

/* ─── CONTACT ─────────────────────────────────────────────────────────── */
.contact-card {
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: linear-gradient(155deg, var(--ink) 0%, #2A2A3A 100%);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 80% 20%, rgba(42,91,255,.4), transparent 60%),
    radial-gradient(closest-side at 20% 80%, rgba(124,58,237,.3), transparent 60%);
  pointer-events: none;
}
.contact-card > * { position: relative; }
.contact-card .h2 { color: white; }
.contact-card .h2 em { color: #8FA9FF; }
.contact-card .lead { color: rgba(255,255,255,.7); }
.contact-channels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.contact-channels a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform .15s;
}
.contact-channels a:hover { transform: translateY(-1px); }
.contact-channels .calendly {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(255,255,255,.12);
}
.contact-channels .calendly:hover { box-shadow: 0 12px 28px rgba(255,255,255,.18); }
.contact-channels .whatsapp { background: #25D366; color: white; }
.contact-channels .email {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.18);
}

/* ─── TECH STACK ──────────────────────────────────────────────────────── */
.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.stack .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.stack .badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .8;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--ink-3);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a:hover { color: var(--ink); }

/* ─── CREATORS HERO ───────────────────────────────────────────────────── */
.creators-hero {
  padding: 160px 0 90px;
}
.creators-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(42,91,255,.14), rgba(124,58,237,.14));
  border: 1px solid rgba(42,91,255,.22);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.creator-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 720px){ .creator-perks { grid-template-columns: 1fr; } }
.creator-perk {
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.creator-perk .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.creator-perk .icon svg { width: 20px; height: 20px; }
.creator-perk h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  letter-spacing: -.01em;
}
.creator-perk p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

/* utility */
.center-text { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-56 { margin-top: 56px; }
.flex-col-center { display: flex; flex-direction: column; align-items: center; gap: 18px; }


/* ─── ANIMATED GLOW CTA ───────────────────────────────────────────────── */
.btn-glow {
  --glow-bg: var(--accent);
  --glow-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  color: var(--glow-fg);
  background: var(--glow-bg);
  white-space: nowrap;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 32px var(--accent-glow);
  transition: transform .15s, box-shadow .2s;
}
.btn-glow:hover { transform: translateY(-1px); box-shadow: 0 16px 40px var(--accent-glow); }
.btn-glow > * { position: relative; z-index: 2; }
.btn-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360%;
  height: 360%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(from 0deg,
    transparent 0deg, transparent 220deg,
    rgba(255,255,255,.0) 250deg,
    rgba(255,255,255,.95) 295deg,
    rgba(255,255,255,.0) 340deg,
    transparent 360deg);
  animation: btn-spin 2.6s linear infinite;
  z-index: 0;
}
.btn-glow::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  border-radius: inherit;
  background: var(--glow-bg);
  z-index: 1;
}
@keyframes btn-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ─── TOOL TILES (stack with logos) ───────────────────────────────────── */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 980px){ .tool-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 460px){ .tool-grid { grid-template-columns: repeat(3, 1fr); } }

.tool-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 12px 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    0 8px 20px rgba(20,19,26,.06),
    0 1px 0 rgba(255,255,255,.8) inset;
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.tool-tile:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--tile-tint, var(--accent)) 35%, var(--line));
  box-shadow:
    0 18px 32px -8px color-mix(in srgb, var(--tile-tint, var(--accent)) 22%, transparent),
    0 1px 0 rgba(255,255,255,.8) inset;
}
/* faint brand-tint wash so each tile has its own identity without being loud */
.tool-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 80% at 50% 110%, color-mix(in srgb, var(--tile-tint, var(--accent)) 10%, transparent) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.tool-tile:hover::after { opacity: 1.4; }
.tool-tile .logo {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.tool-tile .logo svg,
.tool-tile .logo img {
  height: 38px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
/* FlutterFlow's source SVG has ~30% transparent padding around the mark, */
/* so bump it up so the visible logo matches the optical size of the others. */
.tool-tile[data-brand="FlutterFlow"] .logo img { height: 54px; }
.tool-tile .name {
  position: relative;
  z-index: 1;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -.005em;
}

body[data-theme="dark"] .tool-tile {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
body[data-theme="dark"] .tool-tile .name { color: rgba(255,255,255,.85); }
/* Dark-mode: invert pure-black brand marks (Vercel, Next.js) so they stay visible */
body[data-theme="dark"] .tool-tile[style*="#000"] .logo img,
body[data-theme="dark"] .tool-tile[style*="#000"] .logo svg path[fill="#000000"],
body[data-theme="dark"] .tool-tile[style*="#000"] .logo svg path[fill="#000"] { filter: invert(1); }

/* ─── WHO IT'S FOR / WHAT WE BUILD ────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px){ .who-grid { grid-template-columns: 1fr; } }

.who-card {
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.who-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #7C3AED);
  color: white;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  box-shadow: 0 8px 18px var(--accent-glow);
}
.who-card .icon svg { width: 22px; height: 22px; }
.who-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.1;
}
body[data-display="serif"] .who-card h4 { font-weight: 400; letter-spacing: -.01em; }
.who-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 720px){ .build-grid { grid-template-columns: 1fr; } }

.build-card {
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.build-card .num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-3);
}
.build-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.1;
  max-width: 90%;
}
body[data-display="serif"] .build-card h4 { font-weight: 400; letter-spacing: -.01em; }
.build-card p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

/* ─── CREATORS PRICING — 3 tiers, featured highlighted ────────────────── */
.cr-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 980px){ .cr-pricing-grid { grid-template-columns: 1fr; gap: 16px; } }

.cr-tier {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
.cr-tier .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.cr-tier .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  letter-spacing: -.04em;
}
.cr-tier .price .amount {
  font-size: 72px;
  line-height: .9;
  font-weight: 600;
  white-space: nowrap;
}
.cr-tier .price .amount.amount--text {
  font-size: 44px;
  line-height: 1;
  white-space: normal;
  word-break: keep-all;
}
.cr-tier .price .unit {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--ink-3);
  letter-spacing: 0;
  margin-left: 2px;
}
.cr-tier .price-note {
  font-size: 14px;
  color: var(--ink-2);
  margin: -4px 0 0;
  font-weight: 500;
}
.cr-tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.cr-tier ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}
.cr-tier ul li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.cr-tier .tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: var(--ink);
  color: var(--bg);
  transition: transform .15s, box-shadow .2s;
}
.cr-tier .tier-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(20,19,26,.2); }

/* Featured tier — the 0€ co-founder one */
.cr-tier.featured {
  background: linear-gradient(155deg, #1A1A2E 0%, #2A5BFF 70%, #7C3AED 110%);
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 60px rgba(42,91,255,.32), 0 1px 0 rgba(255,255,255,.18) inset;
  transform: translateY(-8px);
}
@media (max-width: 980px){ .cr-tier.featured { transform: none; } }
.cr-tier.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255,255,255,.22), transparent 50%);
  pointer-events: none;
}
.cr-tier.featured > * { position: relative; z-index: 1; }
.cr-tier.featured .tag { color: rgba(255,255,255,.78); }
.cr-tier.featured .price-note { color: rgba(255,255,255,.85); }
.cr-tier.featured ul li svg { color: white; }
.cr-tier.featured .tier-cta {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.cr-tier.featured .badge-best {
  position: absolute;
  top: 18px;
  right: 22px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.24);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 2;
}

.cr-includes {
  margin-top: 56px;
  padding: 36px 40px;
  border-radius: var(--radius-xl);
}
.cr-includes h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 24px;
  letter-spacing: -.02em;
}
body[data-display="serif"] .cr-includes h4 { font-weight: 400; letter-spacing: -.01em; }
.cr-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
@media (max-width: 640px){ .cr-includes ul { grid-template-columns: 1fr; } }
.cr-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
}
.cr-includes li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* h4/h5 generic refinements for grotesque  */
body[data-display="grotesque"] .step h4,
body[data-display="grotesque"] .deliverable h5,
body[data-display="grotesque"] .work-card h5 { letter-spacing: -.02em; }


/* ─── Scroll reveal animations ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 560ms; }

/* Hero entrance — pure CSS, no observer needed */
.hero-enter > * {
  animation: hero-up .9s cubic-bezier(.2,.7,.2,1) backwards;
}
.hero-enter > *:nth-child(1) { animation-delay: .05s; }
.hero-enter > *:nth-child(2) { animation-delay: .15s; }
.hero-enter > *:nth-child(3) { animation-delay: .28s; }
.hero-enter > *:nth-child(4) { animation-delay: .42s; }
.hero-enter > *:nth-child(5) { animation-delay: .56s; }
@keyframes hero-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slow drift on the orb bg */
.bg-orb::before {
  animation: orb-drift 22s ease-in-out infinite alternate;
}
.bg-orb::after {
  animation: orb-drift 28s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  0%   { transform: translateX(-50%) translateY(0) scale(1); }
  100% { transform: translateX(-50%) translateY(40px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .hero-enter > * { transition: none; animation: none; opacity: 1; transform: none; }
  .bg-orb::before, .bg-orb::after { animation: none; }
  .btn-glow::before { animation: none; }
}


/* fit disclaimer under hero guarantees */
.fit-note {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
  max-width: 460px;
  line-height: 1.45;
  font-style: italic;
}
.hero-centered .fit-note { text-align: center; }


/* ─── Sticky contact button (blue, "Got a question?") ─────────────────── */
.sticky-contact {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px 13px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  box-shadow:
    0 12px 32px var(--accent-glow),
    0 1px 0 rgba(255,255,255,.3) inset,
    0 0 0 2px rgba(255,255,255,0);
  transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .25s, padding .2s;
  animation: sticky-rise .8s cubic-bezier(.2,.7,.2,1) .9s backwards;
}
@keyframes sticky-rise {
  from { opacity: 0; transform: translateY(20px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.sticky-contact:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 44px var(--accent-glow),
    0 1px 0 rgba(255,255,255,.35) inset,
    0 0 0 5px rgba(42,91,255,.18);
}
.sticky-contact-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.sticky-contact-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.sticky-contact-label {
  white-space: nowrap;
  line-height: 1;
}
/* Subtle dot pulse before the label */
.sticky-contact::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,.35);
  animation: sticky-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
  margin-right: -2px;
}
@keyframes sticky-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

/* Mobile — keep the full pill, center it at the bottom */
@media (max-width: 540px){
  .sticky-contact {
    bottom: 16px;
    left: 16px;
    right: 16px;
    margin: 0 auto;
    width: fit-content;
    max-width: calc(100vw - 32px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-contact, .sticky-contact::before { animation: none; }
}
