/* ─────────────────────────────────────────────────────────────────────────
   Gorilla Commerce — Landing page dla placówek ortopedycznych
   Granat + gradient róż→fiolet
   ───────────────────────────────────────────────────────────────────────── */

:root {
  /* Granat */
  --navy-1000: #05081F;
  --navy-950:  #0A0F2E;
  --navy-900:  #101641;
  --navy-800:  #161D52;
  --navy-700:  #1D2566;
  --navy-600:  #2A3380;
  --navy-500:  #3C4A99;
  --navy-300:  #8088B8;
  --navy-200:  #B8BCD9;

  /* Gradient róż→fiolet */
  --pink:      #FF5BA8;
  --pink-soft: #FFB6D5;
  --magenta:   #D04CD8;
  --purple:    #B14CFF;
  --indigo:    #6E5BFF;
  --indigo-soft: #A39CFF;

  /* Neutrale */
  --ink:       #0A0F2E;
  --ink-2:     #1F2547;
  --muted:     #5A618A;
  --muted-2:   #8088B8;
  --paper:     #FAFBFF;
  --paper-2:   #F2F1FB;
  --line:      rgba(10, 15, 46, 0.08);
  --line-strong: rgba(10, 15, 46, 0.14);

  /* Gradienty */
  --grad-accent: linear-gradient(125deg, #FF5BA8 0%, #B14CFF 50%, #6E5BFF 100%);
  --grad-accent-soft: linear-gradient(125deg, #FFD6E8 0%, #E9D2FF 50%, #D6D1FF 100%);
  --grad-text: linear-gradient(110deg, #FF5BA8 0%, #B14CFF 55%, #8C7BFF 100%);
  --grad-navy: linear-gradient(180deg, #0A0F2E 0%, #131A45 100%);

  /* Promienie */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Cienie */
  --sh-sm: 0 1px 2px rgba(10,15,46,.06), 0 2px 6px rgba(10,15,46,.04);
  --sh-md: 0 6px 18px rgba(10,15,46,.08), 0 2px 6px rgba(10,15,46,.05);
  --sh-lg: 0 20px 48px rgba(10,15,46,.14), 0 6px 18px rgba(10,15,46,.08);
  --sh-glow: 0 24px 80px rgba(177,76,255,.28), 0 8px 24px rgba(255,91,168,.18);

  /* Layout */
  --max: 1240px;
  --gut: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────────────────────── */
.display, h1, h2, h3 {
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 500; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.02em; }
h4 { font-size: 17px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
p  { margin: 0; }

.serif-it {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad-accent);
}
.eyebrow.on-dark {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
}
.muted { color: var(--muted); }

/* ── Wrap / sections ────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.section {
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(64px, 9vw, 120px);
}
.section.tight { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--grad-accent);
  color: white;
  box-shadow: 0 8px 24px rgba(177,76,255,.32), 0 2px 6px rgba(255,91,168,.24), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(177,76,255,.42), 0 4px 10px rgba(255,91,168,.32), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(10,15,46,.04); }
.btn-ghost.on-dark { color: white; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,.08); }
.btn-lg { padding: 16px 28px; font-size: 15.5px; }

/* ── Nav ────────────────────────────────────────────────────────────────── */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav-shell.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,.86);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--grad-accent);
  position: relative;
  box-shadow: 0 4px 12px rgba(177,76,255,.35), inset 0 1px 0 rgba(255,255,255,.35);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 4px;
  background: white;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1l1.4 4.6L14 6.5l-3.5 3 1 4.8L8 11.8 4.5 14.3l1-4.8L2 6.5l4.6-.9L8 1z' fill='black'/></svg>") center / 80% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1l1.4 4.6L14 6.5l-3.5 3 1 4.8L8 11.8 4.5 14.3l1-4.8L2 6.5l4.6-.9L8 1z' fill='black'/></svg>") center / 80% no-repeat;
  background: var(--grad-accent);
}
.brand-mark.simple::after {
  mask: none; -webkit-mask: none;
  background: white;
  inset: 9px;
  border-radius: 50%;
}
.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-burger {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

/* Mobile menu */
.mob-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gut) 20px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  padding: 10px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.mob-menu .btn { margin-top: 8px; justify-content: center; }
@media (min-width: 880px) { .mob-menu { display: none !important; } }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--grad-navy);
  color: white;
  overflow: hidden;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 90% 10%, rgba(255,91,168,.40), transparent 60%),
    radial-gradient(55% 55% at 10% 90%, rgba(110,91,255,.36), transparent 60%),
    radial-gradient(40% 40% at 50% 50%, rgba(177,76,255,.16), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 70% at 50% 40%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, black, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding-top: clamp(56px, 8vw, 100px);
  padding-bottom: clamp(72px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 5vw, 80px); }
}
.hero h1 {
  color: white;
  margin-top: 18px;
}
.hero h1 .serif-it { color: #FFCFE5; }
.hero-sub {
  margin-top: 22px;
  font-size: clamp(15.5px, 1.6vw, 19px);
  color: rgba(255,255,255,.78);
  max-width: 540px;
  line-height: 1.5;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.avatars {
  display: flex;
  align-items: center;
}
.avatars .a {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}
.avatars .a:first-child { margin-left: 0; }

/* Hero — panel mockup (the right side) */
.hero-mock-wrap {
  position: relative;
  min-height: 480px;
}
.mock {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F4FE 100%);
  color: var(--ink);
  border-radius: var(--r-lg);
  box-shadow:
    0 40px 100px rgba(8,12,40,.55),
    0 12px 32px rgba(177,76,255,.25),
    inset 0 1px 0 rgba(255,255,255,.8);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: #F4F2FA;
  border-bottom: 1px solid var(--line);
}
.mock-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #E2DEF0; }
.mock-bar .dot:nth-child(1){ background: #FF6B8E; }
.mock-bar .dot:nth-child(2){ background: #FFC267; }
.mock-bar .dot:nth-child(3){ background: #6DDB95; }
.mock-bar .url {
  margin-left: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  flex: 1;
  max-width: 320px;
}

/* Hero panel content (doctor dashboard preview) */
.mhp {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 360px;
}
.mhp-side {
  background: linear-gradient(180deg, #0A0F2E, #131A45);
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mhp-side .l {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.55);
}
.mhp-side .l.active {
  background: var(--grad-accent);
  color: white;
  box-shadow: 0 6px 18px rgba(177,76,255,.4);
}
.mhp-side .l svg { width: 18px; height: 18px; }
.mhp-side .gap { flex: 1; }
.mhp-body { padding: 18px 18px 8px; }
.mhp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mhp-title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 17px; letter-spacing: -0.02em; }
.mhp-search {
  background: var(--paper-2);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-size: 11.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mhp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.mhp-stat {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 12px;
}
.mhp-stat .lbl { font-size: 10.5px; color: var(--muted); letter-spacing: 0.02em; text-transform: uppercase; }
.mhp-stat .v   { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 20px; margin-top: 2px; letter-spacing: -0.02em; }
.mhp-stat .d   { font-size: 10.5px; color: #22A36A; font-weight: 600; }
.mhp-stat .d.dn { color: #E14C72; }
.mhp-chart {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px;
  margin-bottom: 10px;
}
.mhp-chart h5 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mhp-chart h5 .pill { font-size: 10px; color: var(--muted); font-weight: 500; padding: 2px 8px; border-radius: 999px; background: var(--paper-2); }
.mhp-list { display: grid; gap: 6px; }
.mhp-row {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 11.5px;
}
.mhp-row .av {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #FFD6E8, #D9C9FF);
  font-size: 10px; font-weight: 700; color: var(--navy-700);
  display: grid; place-items: center;
}
.mhp-row .nm { font-weight: 600; color: var(--ink); }
.mhp-row .nm small { display: block; color: var(--muted); font-weight: 400; font-size: 10.5px; margin-top: 1px; }
.mhp-row .tg { padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 600; }
.mhp-row .tg.video { background: rgba(110,91,255,.12); color: #5947D9; }
.mhp-row .tg.fit   { background: rgba(255,91,168,.12); color: #C73B7B; }
.mhp-row .tg.ord   { background: rgba(255,196,89,.18); color: #B47410; }
.mhp-row .tm { font-variant-numeric: tabular-nums; color: var(--muted); font-weight: 500; }

/* Floating sub-cards over the mock */
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg), 0 12px 40px rgba(8,12,40,.45);
  padding: 14px 16px;
  color: var(--ink);
  z-index: 5;
  border: 1px solid rgba(255,255,255,.5);
}
.float-card.fc1 { left: -18px; bottom: 60px; width: 250px; }
.float-card.fc2 { right: -14px; top: 70px;    width: 230px; }
@media (max-width: 760px) {
  .float-card.fc1 { left: 8px; bottom: -20px; transform: scale(.85); transform-origin: bottom left; }
  .float-card.fc2 { right: 8px; top: -16px; transform: scale(.85); transform-origin: top right; }
}

.fc-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.fc-icon {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--grad-accent);
  display: grid; place-items: center; color: white;
  box-shadow: 0 6px 14px rgba(177,76,255,.35);
}
.fc-icon svg { width: 16px; height: 16px; }
.fc-title { font-weight: 700; font-size: 13px; }
.fc-sub { font-size: 11.5px; color: var(--muted); }
.fc-body { font-size: 12px; color: var(--ink-2); }
.fc-body .row { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; border-top: 1px dashed var(--line); }
.fc-body .row:first-child { border-top: 0; }
.fc-body strong { font-weight: 600; }

/* ── Logos trust strip ──────────────────────────────────────────────────── */
.trust-strip {
  background: white;
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}
.trust-strip .lbl {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.logos-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  align-items: center;
}
@media (min-width: 640px) { .logos-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .logos-row { grid-template-columns: repeat(6, 1fr); } }
.logo-item {
  display: flex; align-items: center; justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #8A91B5;
  filter: grayscale(1);
  opacity: .85;
  gap: 7px;
}
.logo-item .gly {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: #B0B6D4;
}
.logo-item.r .gly { border-radius: 50%; }
.logo-item.sq .gly { border-radius: 4px; transform: rotate(45deg); width: 18px; height: 18px; }

/* ── Stats section ──────────────────────────────────────────────────────── */
.stats {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F6FF 100%);
  border-bottom: 1px solid var(--line);
}
.stats-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.stats-head p { max-width: 460px; color: var(--muted); font-size: 16px; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px 22px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.stat-card::before {
  content: "";
  position: absolute;
  inset: -40% 50% 50% -20%;
  background: radial-gradient(closest-side, rgba(255,91,168,.18), transparent 70%);
  z-index: -1;
}
.stat-card .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card .lbl { font-size: 14px; color: var(--ink-2); margin-top: 12px; font-weight: 600; }
.stat-card .desc { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Modules grid ───────────────────────────────────────────────────────── */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; font-size: 17px; color: var(--muted); max-width: 620px; }

.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .modules-grid { grid-template-columns: repeat(3, 1fr); } }
.module {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 26px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.module:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--sh-md); }
.module .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-accent);
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 10px 24px rgba(177,76,255,.3);
  margin-bottom: 18px;
}
.module .ico svg { width: 22px; height: 22px; }
.module h3 { font-size: 19px; }
.module p { color: var(--muted); margin-top: 8px; font-size: 14.5px; }
.module .more { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
.module .more svg { width: 14px; height: 14px; transition: transform .2s; }
.module:hover .more svg { transform: translateX(3px); }
.module.featured {
  background: var(--grad-navy);
  color: white;
  border-color: transparent;
}
.module.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(255,91,168,.35), transparent 60%),
              radial-gradient(60% 60% at 0% 100%, rgba(110,91,255,.30), transparent 60%);
  pointer-events: none;
}
.module.featured h3, .module.featured p, .module.featured .more { color: white; position: relative; }
.module.featured p { color: rgba(255,255,255,.78); }
.module.featured .ico { background: rgba(255,255,255,.12); box-shadow: none; backdrop-filter: blur(8px); }

/* ── Dashboard showcase ─────────────────────────────────────────────────── */
.showcase {
  background: var(--grad-navy);
  color: white;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  margin: 0 var(--gut);
}
.section.showcase-section { padding-left: 0; padding-right: 0; }
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 85% 15%, rgba(255,91,168,.28), transparent 60%),
    radial-gradient(50% 50% at 15% 85%, rgba(110,91,255,.28), transparent 60%);
  pointer-events: none;
}
.showcase-inner {
  position: relative;
  padding: clamp(48px, 7vw, 84px) clamp(24px, 5vw, 64px);
  display: grid;
  gap: clamp(36px, 5vw, 60px);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .showcase-inner { grid-template-columns: 0.85fr 1fr; align-items: center; } }
.showcase h2 { color: white; }
.showcase p { color: rgba(255,255,255,.78); margin-top: 18px; font-size: 17px; max-width: 480px; }
.showcase .feat-list { margin-top: 28px; display: grid; gap: 14px; }
.showcase .feat-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.88);
  list-style: none;
}
.showcase .feat-list .chk {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: grid; place-items: center;
  color: white;
  margin-top: 1px;
  box-shadow: 0 6px 14px rgba(177,76,255,.4);
}
.showcase .feat-list .chk svg { width: 12px; height: 12px; }

/* Full dashboard mockup */
.dash {
  background: white;
  color: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(8,12,40,.55), 0 12px 32px rgba(177,76,255,.18);
  position: relative;
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: #F2F0F9;
  border-bottom: 1px solid var(--line);
}
.dash-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-bar .dot:nth-child(1){ background: #FF6B8E; }
.dash-bar .dot:nth-child(2){ background: #FFC267; }
.dash-bar .dot:nth-child(3){ background: #6DDB95; }
.dash-bar .url { margin-left: 12px; background: white; border: 1px solid var(--line); border-radius: 8px; padding: 5px 12px; font-size: 11.5px; color: var(--muted); font-family: ui-monospace, monospace; flex: 1; max-width: 360px; }
.dash-bar .btn-mini { padding: 4px 10px; font-size: 11px; border-radius: 999px; border: 1px solid var(--line); background: white; color: var(--ink-2); font-weight: 600; }

.dash-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 540px;
}
.dash-side {
  background: linear-gradient(180deg, #0A0F2E, #131A45);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: white;
}
.dash-side .brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.dash-side .brand-mark { width: 26px; height: 26px; border-radius: 8px; }
.dash-side .brand-name { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 15px; }
.dash-side .group-lbl { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.4); font-weight: 600; padding: 14px 8px 6px; }
.dash-side .nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.dash-side .nav-item svg { width: 16px; height: 16px; opacity: .7; }
.dash-side .nav-item.active {
  background: rgba(255,255,255,.08);
  color: white;
  position: relative;
}
.dash-side .nav-item.active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--grad-accent);
}
.dash-side .nav-item .badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  background: var(--grad-accent);
  color: white;
  padding: 2px 6px;
  border-radius: 999px;
}
.dash-side .doc-card {
  margin-top: auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-side .doc-card .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD6E8, #C9BDFF);
  display: grid; place-items: center;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 12px;
}
.dash-side .doc-card .nm { font-size: 12.5px; font-weight: 600; }
.dash-side .doc-card .rl { font-size: 10.5px; color: rgba(255,255,255,.6); }

.dash-main { padding: 24px; background: #F6F4FB; overflow: hidden; }
.dash-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
  flex-wrap: wrap;
}
.dash-top h4 { font-family: "Bricolage Grotesque", sans-serif; font-size: 20px; letter-spacing: -0.02em; }
.dash-top .sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.dash-top .ctas { display: flex; gap: 8px; }
.dash-top .ctas .btn-mini.primary { background: var(--grad-accent); color: white; border-color: transparent; box-shadow: 0 4px 12px rgba(177,76,255,.3); }

.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.dash-kpi {
  background: white; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px;
  position: relative;
}
.dash-kpi .lbl { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.dash-kpi .v   { font-family: "Bricolage Grotesque", sans-serif; font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-top: 4px; }
.dash-kpi .d   { font-size: 11px; font-weight: 600; color: #22A36A; margin-top: 4px; display: inline-flex; align-items: center; gap: 4px; }
.dash-kpi .d.dn{ color: #E14C72; }
.dash-kpi .mini-bar { position: absolute; right: 14px; bottom: 14px; display: flex; align-items: end; gap: 2px; height: 24px; }
.dash-kpi .mini-bar i { display: block; width: 3px; background: linear-gradient(180deg, #FF5BA8, #6E5BFF); border-radius: 2px; }

.dash-cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px; }
.dash-panel { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.dash-panel h5 { margin: 0 0 12px; font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: space-between; }
.dash-panel h5 .pill { font-size: 10.5px; color: var(--muted); font-weight: 500; padding: 3px 8px; border-radius: 999px; background: var(--paper-2); }

/* Chart */
.chart-svg { width: 100%; height: 130px; display: block; }

/* Booking list inside dashboard */
.book-list { display: grid; gap: 6px; }
.book-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  background: #FBFAFE;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
}
.book-row .tm { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 13.5px; color: var(--ink-2); }
.book-row .tm small { display: block; font-weight: 400; font-size: 10.5px; color: var(--muted); }
.book-row .pn { font-weight: 600; }
.book-row .pn small { display: block; font-weight: 400; font-size: 11px; color: var(--muted); }
.book-row .stat { font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.book-row .stat.video { background: rgba(110,91,255,.12); color: #5947D9; }
.book-row .stat.fit   { background: rgba(255,91,168,.14); color: #C73B7B; }
.book-row .stat.cons  { background: rgba(34,163,106,.14); color: #22A36A; }

@media (max-width: 900px) {
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { flex-direction: row; flex-wrap: wrap; gap: 8px; padding: 12px; }
  .dash-side .brand-row { margin-bottom: 0; }
  .dash-side .group-lbl { display: none; }
  .dash-side .nav-item { padding: 6px 10px; font-size: 12px; }
  .dash-side .nav-item.active::before { display: none; }
  .dash-side .doc-card { margin-top: 0; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-cols { grid-template-columns: 1fr; }
}

/* ── Security / RODO ────────────────────────────────────────────────────── */
.security {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .security { grid-template-columns: 1fr 1.05fr; align-items: center; gap: 56px; } }
.sec-viz {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  min-height: 360px;
  overflow: hidden;
}
.sec-viz::before {
  content: "";
  position: absolute;
  inset: -30% -10% 40% 30%;
  background: radial-gradient(closest-side, rgba(177,76,255,.18), transparent 70%);
  z-index: 0;
}
.sec-viz .shield {
  width: 130px; height: 150px;
  margin: 0 auto 22px;
  position: relative;
  background: var(--grad-accent);
  clip-path: path("M65 0 L130 26 L130 86 Q130 132 65 150 Q0 132 0 86 L0 26 Z");
  box-shadow: 0 24px 60px rgba(177,76,255,.3);
  display: grid; place-items: center;
  color: white;
}
.sec-viz .shield svg { width: 56px; height: 56px; }
.sec-viz .badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; position: relative; z-index: 1; }
.sec-viz .badge {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: var(--sh-sm);
}
.sec-viz .badge .b-ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(177,76,255,.12);
  color: #7A3BC9;
  display: grid; place-items: center;
}
.sec-viz .badge .b-ico svg { width: 14px; height: 14px; }
.sec-list { display: grid; gap: 14px; margin-top: 24px; }
.sec-list .item { display: flex; gap: 14px; align-items: flex-start; }
.sec-list .item .n {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: rgba(177,76,255,.10);
  color: #7A3BC9;
  display: grid; place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.sec-list .item h4 { margin-bottom: 4px; }
.sec-list .item p { font-size: 14.5px; color: var(--muted); }

/* ── Process / How it works ─────────────────────────────────────────────── */
.process {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 760px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px 22px;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.04em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.step h3 { font-size: 18px; margin-top: 16px; }
.step p { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ── Testimonial ────────────────────────────────────────────────────────── */
.tm-wrap { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .tm-wrap { grid-template-columns: 1.2fr 1fr; gap: 56px; } }
.tm-quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}
.tm-quote .serif-it { color: #B14CFF; }
.tm-meta { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.tm-meta .av { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #FFB6D5, #B14CFF); display: grid; place-items: center; color: white; font-weight: 700; font-family: "Bricolage Grotesque", sans-serif; font-size: 17px; }
.tm-meta .who { font-weight: 600; }
.tm-meta .who small { display: block; color: var(--muted); font-weight: 400; font-size: 13px; margin-top: 2px; }
.tm-img {
  border-radius: var(--r-lg);
  aspect-ratio: 4/5;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(255,91,168,.45), transparent 65%),
    radial-gradient(60% 60% at 80% 80%, rgba(110,91,255,.5), transparent 65%),
    linear-gradient(180deg, #131A45 0%, #0A0F2E 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.tm-img::after {
  content: "Dr Aleksandra Mazur";
  position: absolute;
  left: 18px; bottom: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tm-img .ph {
  position: absolute;
  inset: 12% 18% 0 18%;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0));
  border-radius: 50% 50% 0 0;
  border: 1px solid rgba(255,255,255,.18);
}
.tm-img .ph2 {
  position: absolute;
  inset: 50% 8% -10% 8%;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0));
  border-radius: 100px 100px 0 0;
  border: 1px solid rgba(255,255,255,.14);
}

/* ── Pricing ────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.plan {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.plan .nm { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 20px; letter-spacing: -0.02em; }
.plan .desc { font-size: 13.5px; color: var(--muted); margin-top: 6px; min-height: 38px; }
.plan .price { margin-top: 22px; display: flex; align-items: baseline; gap: 6px; }
.plan .price .n { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 48px; letter-spacing: -0.04em; line-height: 1; }
.plan .price .u { color: var(--muted); font-size: 14px; font-weight: 500; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.plan li .chk {
  flex: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(110,91,255,.12);
  color: #5947D9;
  display: grid; place-items: center;
  margin-top: 1px;
}
.plan li .chk svg { width: 10px; height: 10px; }
.plan .btn { margin-top: 24px; justify-content: center; }
.plan.feature {
  background: var(--grad-navy);
  color: white;
  border-color: transparent;
}
.plan.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 80% 0%, rgba(255,91,168,.32), transparent 60%),
              radial-gradient(60% 60% at 0% 100%, rgba(110,91,255,.30), transparent 60%);
  pointer-events: none;
}
.plan.feature .desc { color: rgba(255,255,255,.7); }
.plan.feature li { color: rgba(255,255,255,.88); position: relative; }
.plan.feature li .chk { background: rgba(255,255,255,.15); color: white; }
.plan.feature .ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--grad-accent);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-wrap { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .faq-wrap { grid-template-columns: 1fr 1.4fr; gap: 80px; } }
.faq-list { display: grid; gap: 4px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: transform .2s, background .2s, border-color .2s;
  color: var(--ink-2);
}
.faq-item[open] summary .ic {
  background: var(--grad-accent);
  border-color: transparent;
  color: white;
  transform: rotate(45deg);
}
.faq-item .body {
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  max-width: 620px;
}

/* ── Final CTA ──────────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  margin: 0 var(--gut);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 5vw, 64px);
  background: var(--grad-navy);
  color: white;
  overflow: hidden;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .cta-band { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 56px; } }
.section.cta-section { padding-left: 0; padding-right: 0; }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(255,91,168,.4), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(110,91,255,.35), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: white; }
.cta-band p { color: rgba(255,255,255,.78); margin-top: 18px; font-size: 17px; max-width: 480px; }

.cta-form {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 22px;
}
.cta-form label { display: block; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.7); margin: 12px 0 6px; letter-spacing: 0.02em; }
.cta-form label:first-child { margin-top: 0; }
.cta-form input, .cta-form select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 12px 14px;
  color: white;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s, background .15s;
}
.cta-form input::placeholder { color: rgba(255,255,255,.42); }
.cta-form input:focus, .cta-form select:focus { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.10); }
.cta-form select option { color: var(--ink); }
.cta-form .btn { margin-top: 20px; width: 100%; justify-content: center; }
.cta-form .fine { margin-top: 14px; font-size: 11.5px; color: rgba(255,255,255,.55); }
.cta-form .row2 { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 540px) { .cta-form .row2 { grid-template-columns: 1fr 1fr; } }

/* Success */
.cta-form.sent .form-body { display: none; }
.cta-form.sent .sent-body { display: flex; }
.sent-body { display: none; flex-direction: column; align-items: center; text-align: center; padding: 24px 8px; gap: 12px; }
.sent-body .ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-accent);
  display: grid; place-items: center;
  color: white;
  margin-bottom: 6px;
}
.sent-body h4 { color: white; font-size: 19px; font-family: "Bricolage Grotesque", sans-serif; letter-spacing: -0.02em; }
.sent-body p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0; max-width: 320px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.74);
  padding: 64px 0 32px;
}
.footer .grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer .grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.footer h5 { font-family: "Bricolage Grotesque", sans-serif; font-size: 13px; font-weight: 600; color: white; margin: 0 0 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { font-size: 14px; }
.footer a:hover { color: white; }
.footer .brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: white; }
.footer .brand-row .brand-mark { width: 28px; height: 28px; }
.footer .brand-row .nm { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 17px; }
.footer .tag { font-size: 14px; max-width: 280px; line-height: 1.55; }
.footer .legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: rgba(255,255,255,.52); }
.footer .legal .right { display: flex; gap: 18px; }

/* ── Utility / motion ───────────────────────────────────────────────────── */
/* Use `both` fill-mode + explicit `from` so the element is visible by default
   in still snapshots that don't run animations, but still animates in live view. */
.fade-in { animation: fadeUp .8s cubic-bezier(.22,.61,.36,1) both; }
.fade-in.d1 { animation-delay: .08s; }
.fade-in.d2 { animation-delay: .16s; }
.fade-in.d3 { animation-delay: .24s; }
.fade-in.d4 { animation-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; }
  .float-card { animation: none; }
}

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.float-card { animation: floatY 6s ease-in-out infinite; }
.float-card.fc2 { animation-delay: 1.4s; }

/* ── Variants driven by Tweaks ─────────────────────────────────────────── */
.palette-vivid {
  --grad-accent: linear-gradient(125deg, #FF5BA8 0%, #B14CFF 50%, #6E5BFF 100%);
  --grad-text:   linear-gradient(110deg, #FF5BA8 0%, #B14CFF 55%, #8C7BFF 100%);
}
.palette-warm {
  --grad-accent: linear-gradient(125deg, #FF7AB6 0%, #FF5BA8 45%, #C04CFF 100%);
  --grad-text:   linear-gradient(110deg, #FF7AB6 0%, #D04CD8 60%, #9B61FF 100%);
}
.palette-cool {
  --grad-accent: linear-gradient(125deg, #C45BFF 0%, #8E5BFF 50%, #5070FF 100%);
  --grad-text:   linear-gradient(110deg, #C45BFF 0%, #8E5BFF 55%, #6080FF 100%);
}
.palette-blush {
  --grad-accent: linear-gradient(125deg, #FF8CC5 0%, #E27BFF 50%, #B47BFF 100%);
  --grad-text:   linear-gradient(110deg, #FF8CC5 0%, #E27BFF 60%, #B47BFF 100%);
}

.mesh-subtle .hero::before {
  background:
    radial-gradient(50% 50% at 90% 10%, rgba(255,91,168,.22), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(110,91,255,.22), transparent 60%);
}
.mesh-bold .hero::before {
  background:
    radial-gradient(70% 70% at 90% 10%, rgba(255,91,168,.55), transparent 60%),
    radial-gradient(65% 65% at 10% 90%, rgba(110,91,255,.50), transparent 60%),
    radial-gradient(50% 50% at 50% 50%, rgba(177,76,255,.30), transparent 70%);
}
