/*
  Dicken AI – Landing page styles
  - Dark, premium, minimalistic visuals
  - Easy brand theming via CSS variables below
*/
:root {
  /* Brand palette (Dicken AI) */
  --brand-from: #800099; /* primary */
  --brand-via: #800099;  /* mid (kept simple with primary) */
  --brand-to: #E5D5C5;   /* accent */

  --bg: #0b0b0f;
  --surface: #111118;
  --surface-2: #151520;
  --text: #e9e9ef;
  --text-dim: #b9b9c6;
  --muted: #8a8aa0;
  --success: #22c55e;
  --danger: #ef4444;
  --border: rgba(255,255,255,0.06);
  --shadow: 0 10px 30px rgba(0,0,0,.35), 0 1px 0 rgba(255,255,255,.03) inset;
}

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Background FX */
.bg {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 600px at 80% -10%, color-mix(in oklab, var(--brand-to) 20%, transparent) 0%, transparent 70%),
    radial-gradient(900px 500px at -10% 20%, color-mix(in oklab, var(--brand-from) 16%, transparent) 0%, transparent 70%),
    radial-gradient(600px 300px at 50% 120%, color-mix(in oklab, var(--brand-via) 8%, transparent) 0%, transparent 70%),
    var(--bg);
}
.fx-grid { background-image: linear-gradient(to bottom, transparent 95%, rgba(255,255,255,.04) 96%), linear-gradient(to right, transparent 95%, rgba(255,255,255,.04) 96%),
    radial-gradient(1000px 600px at 100% 0%, color-mix(in srgb, var(--brand-to) 6%, transparent), transparent);
  background-size: 24px 24px, 24px 24px, auto;
  mix-blend-mode: normal;
}
.fx-glow:after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(800px 300px at 50% -80px, color-mix(in oklab, var(--brand-from) 18%, transparent), transparent 70%);
  pointer-events: none;
}

/* Nav */
.nav { position: sticky; top: 0; z-index: 40; backdrop-filter: saturate(1.2) blur(8px); background: color-mix(in srgb, var(--bg), transparent 12%); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-logo { height: 36px; width: auto; display: block; }
.brand-name { font-weight: 700; letter-spacing: .2px; }
.menu { display: flex; gap: 22px; align-items: center; }
.menu a { position: relative; color: var(--text-dim); text-decoration: none; font-weight: 500; }
.menu a:after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: linear-gradient(90deg, var(--brand-from), var(--brand-to)); border-radius: 2px; transition: width .25s ease; }
.menu a:hover { color: var(--text); }
.menu a:hover:after { width: 100%; }
.nav-cta { margin-left: 8px; }
.menu-toggle { display: none; background: none; border: 0; color: var(--text); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 10px; border: 1px solid var(--border); color: var(--text); text-decoration: none; transition: 180ms ease; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 14px 22px; font-weight: 600; }
.btn-primary { background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); box-shadow: var(--shadow); border: 0; background-size: 200% 200%; animation: gradientShift 8s ease infinite; }
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost { background: transparent; }

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-secondary { background: color-mix(in srgb, var(--surface), white 4%); }
.btn-ghost { background: transparent; }

/* Hero */
.section { padding: 84px 0; opacity: .001; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.section.in { opacity: 1; transform: none; }
.hero { padding-top: 96px; }
.grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.06; margin: 16px 0; }
.lead { color: var(--text-dim); font-size: 18px; }
.cta-wrap { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.rating { display: inline-flex; gap: 10px; align-items: center; font-weight: 600; color: var(--text-dim); background: color-mix(in srgb, var(--surface), white 4%); border: 1px solid var(--border); padding: 6px 10px; border-radius: 999px; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0 6px; }
.kpi { background: color-mix(in srgb, var(--surface), white 3%); border: 1px solid var(--border); padding: 16px; border-radius: 12px; text-align: center; }
.kpi-value { font-size: 28px; font-weight: 800; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kpi-label { color: var(--muted); font-size: 14px; }
.note { color: var(--muted); font-size: 12px; margin-top: 2px; }

.hero-media .glass { border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.hero-media .glass { position: relative; }
.hero-media .glass:after { content: ''; position: absolute; inset: -1px; border-radius: 16px; padding: 1px; background: linear-gradient(135deg, color-mix(in srgb, var(--brand-from), white 20%), transparent 30%, color-mix(in srgb, var(--brand-to), white 20%)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: glowSweep 6s linear infinite; opacity: .7; }
@keyframes glowSweep {
  0% { filter: hue-rotate(0deg); opacity: .55; }
  50% { filter: hue-rotate(30deg); opacity: .9; }
  100% { filter: hue-rotate(0deg); opacity: .55; }
}
.demo-head { display: flex; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--surface-2), white 2%); }
.demo-head .dot { width: 8px; height: 8px; border-radius: 999px; background: color-mix(in srgb, var(--muted), white 10%); }
.demo-body { padding: 18px; }
.demo-body h3 { margin: 8px 0; }
.chip { display: inline-block; font-size: 12px; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border); background: color-mix(in srgb, var(--surface), white 4%); color: var(--text-dim); }

.logos { margin-top: 36px; }
.logos-label { color: var(--muted); font-size: 13px; }
.marquee { overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%); }
.marquee-track { display: flex; gap: 24px; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.marquee .logo { height: 56px; min-width: 180px; border-radius: 12px; background: color-mix(in srgb, var(--surface), white 4%); border: 1px solid var(--border); display: grid; place-items: center; padding: 0 24px; }
.marquee .logo img { height: 32px; width: auto; object-fit: contain; filter: grayscale(1) brightness(.95); opacity: .95; }
.marquee .logo:hover img { filter: grayscale(.15) brightness(1.07); opacity: 1; }
/* Slightly scale long names for balance */
.marquee .logo img[src*="africa-business-index"] { height: 28px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
h2 { font-size: clamp(26px, 4vw, 38px); margin: 0 0 10px; }
h3 { font-size: 20px; margin: 0 0 8px; }
.subhead { color: var(--text-dim); margin-bottom: 20px; }
.list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.list i { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; opacity: .9; }
.list.small li { font-size: 14px; color: var(--text-dim); }

.card { background: color-mix(in srgb, var(--surface), white 3%); border: 1px solid var(--border); border-radius: 14px; padding: 20px; box-shadow: var(--shadow); }
.hover-lift { transition: transform .25s ease, box-shadow .25s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.tilt { will-change: transform; transform-style: preserve-3d; }
.tilt > * { transform: translateZ(0); }
.card.good { border-color: color-mix(in srgb, var(--brand-to), white 10%); }
.card.bad { border-color: color-mix(in srgb, var(--danger), white 10%); }
.emoji { font-size: 22px; }

.benefits { background: transparent; }
.benefit { background: color-mix(in srgb, var(--surface), white 3%); border: 1px solid var(--border); padding: 18px; border-radius: 14px; text-align: left; }
.benefit i { width: 20px; height: 20px; color: color-mix(in srgb, var(--brand-to), white 10%); }

.solutions { position: relative; }
.solutions .section-head { text-align: center; margin-bottom: 24px; }
.solutions .section-head .chip { margin-bottom: 10px; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { position: relative; border-radius: 18px; overflow: hidden; background: color-mix(in srgb, var(--surface), white 4%); border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.solution-card:hover { transform: translateY(-4px); box-shadow: 0 18px 60px rgba(0,0,0,.35); }
.solution-media { position: relative; padding: 18px; border-bottom: 1px solid var(--border); background: radial-gradient(520px 220px at 60% -10%, color-mix(in oklab, var(--brand-to) 12%, transparent), transparent 70%), radial-gradient(420px 200px at -10% 40%, color-mix(in oklab, var(--brand-from) 10%, transparent), transparent 70%), color-mix(in srgb, var(--surface-2), white 2%); }
.solution-media .halo { position: absolute; inset: 0; background: radial-gradient(280px 120px at 30% 20%, rgba(255,255,255,.06), transparent 60%); pointer-events: none; }
.solution-body { padding: 18px; }
.solution-title { margin: 0 0 8px; font-size: 20px; }
.solution-text { color: var(--text-dim); margin: 0; }

/* Media illustrations (Solutions) */
.media-workers { position: relative; aspect-ratio: 16 / 9; border-radius: 14px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); overflow: hidden; }
.media-workers .paper { position: absolute; left: 14px; bottom: 18px; width: 62%; height: 48%; background: color-mix(in srgb, white, var(--surface) 82%); border-radius: 8px; border: 1px solid var(--border); box-shadow: var(--shadow); transform: rotate(-3deg); }
.media-workers .folder { position: absolute; left: 10px; bottom: 12px; width: 58%; height: 44%; border-radius: 10px; background: linear-gradient(135deg, color-mix(in srgb, var(--brand-from), black 50%), color-mix(in srgb, var(--brand-from), black 20%)); border: 1px solid color-mix(in srgb, var(--brand-from), white 20%); }
.media-workers .tick { position: absolute; left: 22px; bottom: 28px; width: 20px; height: 20px; border-radius: 999px; background: color-mix(in srgb, var(--brand-to), white 10%); display: grid; place-items: center; color: #0b0b0f; font-weight: 900; font-size: 12px; }
.media-workers .bot { position: absolute; left: 50%; top: 18px; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border); background: color-mix(in srgb, var(--surface), white 4%); display: grid; place-items: center; }
.media-workers .bot i { width: 22px; height: 22px; color: color-mix(in srgb, var(--brand-to), white 20%); }

.media-internal { position: relative; aspect-ratio: 16 / 9; border-radius: 14px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); overflow: hidden; padding: 14px; }
.media-internal .panel { position: absolute; inset: 10% 10% auto 10%; height: 56%; border-radius: 10px; background: color-mix(in srgb, var(--surface), white 3%); border: 1px solid var(--border); box-shadow: var(--shadow); }
.media-internal .chipbar { position: absolute; left: 14px; top: 16px; display: inline-flex; gap: 6px; }
.media-internal .chipbar .dot { width: 8px; height: 8px; border-radius: 999px; background: color-mix(in srgb, var(--muted), white 10%); }
.media-internal .task { position: absolute; left: 22px; top: 56px; width: 60%; height: 10px; border-radius: 6px; background: color-mix(in srgb, var(--surface-2), white 6%); }
.media-internal .task.t2 { top: 76px; width: 54%; }
.media-internal .task.t3 { top: 96px; width: 48%; }
.media-internal .progress { position: absolute; left: 22px; bottom: 18px; height: 12px; width: 66%; border-radius: 999px; border: 1px solid var(--border); background: color-mix(in srgb, var(--surface-2), white 8%); overflow: hidden; }
.media-internal .progress span { display:block; height:100%; width: 42%; background: linear-gradient(90deg, var(--brand-from), var(--brand-to)); }

.media-automation { position: relative; aspect-ratio: 16 / 9; border-radius: 14px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); overflow: hidden; }
.media-automation .agent { position: absolute; left: 50%; top: 18px; transform: translateX(-50%); padding: 6px 10px; border-radius: 999px; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); font-weight: 700; font-size: 12px; }
.media-automation .icon { position: absolute; bottom: 18px; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border); background: color-mix(in srgb, var(--surface), white 4%); display: grid; place-items: center; }
.media-automation .icon i { width: 22px; height: 22px; color: color-mix(in srgb, var(--brand-to), white 22%); }
.media-automation .icon.i1 { left: 18px; }
.media-automation .icon.i2 { left: 50%; transform: translateX(-50%); }
.media-automation .icon.i3 { right: 18px; }

@media (max-width: 980px) {
  .solution-grid { grid-template-columns: 1fr; }
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step { background: color-mix(in srgb, var(--surface), white 3%); border: 1px solid var(--border); padding: 20px; border-radius: 14px; position: relative; }
.step-index { position: absolute; top: -12px; left: -12px; width: 36px; height: 36px; border-radius: 999px; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); display: grid; place-items: center; font-weight: 800; }

/* Process (curved timeline) */
.process .process-head { text-align: center; margin-bottom: 16px; }
.process-rail { position: relative; height: 160px; margin-bottom: 0; z-index: 0; }
.process-svg { position: absolute; inset: 0; width: 100%; height: 100%; filter: drop-shadow(0 10px 30px rgba(0,0,0,.25)); pointer-events: none; }
.process-svg .seg { fill: none; stroke-width: 3px; stroke-linecap: round; stroke-dasharray: 6 12; opacity: .9; }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: -26px; }
.pstep { text-align: center; padding: 10px 8px; }
.pstep .bubble { position: relative; z-index: 2; width: 44px; height: 44px; border-radius: 999px; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); color: var(--text); font-weight: 900; display: grid; place-items: center; margin: -60px auto 6px; box-shadow: 0 12px 30px rgba(0,0,0,.35), 0 0 0 6px rgba(128,0,153,.15); border: 1px solid color-mix(in srgb, var(--brand-to), white 28%); }
.pstep .bubble:after { content: ''; position: absolute; inset: -6px; border-radius: 999px; background: color-mix(in srgb, var(--bg), white 2%); z-index: -1; }
.pstep .when { display: block; color: color-mix(in srgb, var(--brand-to), white 16%); font-weight: 700; font-size: 12px; margin-bottom: 6px; letter-spacing: .2px; }
.pstep h3 { margin: 0 0 6px; }
.pstep p { color: var(--text-dim); margin: 0; }

@media (max-width: 980px) {
  .process-rail { height: 80px; }
  .process-grid { grid-template-columns: 1fr; margin-top: 0; }
  .pstep .bubble { margin-top: 0; }
}

.case { display: grid; grid-template-columns: 1fr 1.3fr; gap: 18px; background: color-mix(in srgb, var(--surface), white 3%); border: 1px solid var(--border); padding: 16px; border-radius: 14px; }
.case-media { border-radius: 10px; background: linear-gradient(135deg, color-mix(in srgb, var(--brand-from), white 8%), color-mix(in srgb, var(--brand-to), white 8%)); }

.testimonials .quote { background: color-mix(in srgb, var(--surface), white 2%); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.testimonials .quote footer { color: var(--muted); font-size: 13px; margin-top: 10px; }

.pricing .grid-3 { align-items: stretch; }
.price-card { background: color-mix(in srgb, var(--surface), white 3%); border: 1px solid var(--border); border-radius: 16px; padding: 20px; display: grid; align-content: start; gap: 12px; position: relative; }
.price-card .price { font-size: 28px; font-weight: 800; margin: 0; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-card.featured { background: linear-gradient(180deg, color-mix(in srgb, var(--surface), white 6%), color-mix(in srgb, var(--surface), white 2%)); border-color: color-mix(in srgb, var(--brand-to), white 16%); box-shadow: 0 20px 50px rgba(6, 182, 212, .12); }
.badge { position: absolute; top: -12px; right: 12px; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }

.cta-card { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid var(--border); border-radius: 18px; padding: 26px; text-align: center; box-shadow: var(--shadow); }
.cta-actions { display: flex; gap: 12px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }
.cta-foot { color: var(--muted); }

/* Wins */
.wins .section-head { text-align: center; margin-bottom: 20px; }
.win-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.win-card { display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center; padding: 16px; border-radius: 16px; border: 1px solid var(--border); background: color-mix(in srgb, var(--surface), white 3%); box-shadow: var(--shadow); }
.win-card i { width: 26px; height: 26px; color: color-mix(in srgb, var(--brand-to), white 16%); background: color-mix(in srgb, var(--surface-2), white 4%); border: 1px solid var(--border); border-radius: 12px; display: grid; place-items: center; padding: 8px; }
.win-body .kpi-value { font-size: 26px; line-height: 1.1; margin-bottom: 4px; }
.win-body p { color: var(--text-dim); margin: 0; }

@media (max-width: 980px) {
  .win-grid { grid-template-columns: 1fr; }
}

/* Trust (Why choose us) */
.trust .section-head { text-align: center; margin-bottom: 18px; }
.trust-table { position: relative; border-radius: 20px; border: 1px solid var(--border); overflow: hidden; background: linear-gradient(180deg, color-mix(in srgb, var(--surface), white 7%), color-mix(in srgb, var(--surface), white 3%)); box-shadow: var(--shadow); }
.trust-table:before { content: ''; position: absolute; inset: -1px; background: radial-gradient(900px 240px at 50% -60px, color-mix(in oklab, var(--brand-from) 16%, transparent), transparent 72%); pointer-events: none; }
.trust-table:after { content: ''; position: absolute; left: 0; right: 0; bottom: -40px; height: 80px; background: radial-gradient(60% 80% at 50% 0%, rgba(255,255,255,.04), transparent 70%); pointer-events: none; }
.trust-head { display: grid; grid-template-columns: 2fr 1fr 1fr; align-items: center; gap: 10px; padding: 16px; border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--surface-2), white 4%); }
.trust-head .col { color: var(--text-dim); font-weight: 700; }
.trust-head .col.ours, .trust-head .col.others { text-align: center; }
.trust-head .brand-pill { margin: 0 auto; padding: 8px 16px; border-radius: 999px; font-weight: 900; letter-spacing: .6px; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); box-shadow: 0 10px 24px rgba(0,0,0,.35), 0 0 0 8px rgba(128,0,153,.12); }
.trust-body { display: grid; }
.trust-row { position: relative; display: grid; grid-template-columns: 2fr 1fr 1fr; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px dashed color-mix(in srgb, var(--border), white 20%); }
.trust-row:last-child { border-bottom: 0; }
.trust-row:before { content: ''; position: absolute; top: 10%; bottom: 10%; left: 50%; width: 1px; background: color-mix(in srgb, var(--border), white 20%); }
.trust-row:after { content: ''; position: absolute; top: 10%; bottom: 10%; left: 75%; width: 1px; background: color-mix(in srgb, var(--border), white 20%); }
.trust-row.alt { background: color-mix(in srgb, var(--surface-2), white 3%); }
.trust-row:hover { background: color-mix(in srgb, var(--surface-2), white 5%); }
.trust-row .benefit { font-weight: 600; }
.trust-row .flag { display: grid; place-items: center; }
.trust-row .flag i { width: 22px; height: 22px; border-radius: 14px; padding: 5px; border: 1px solid var(--border); }
.trust-row .flag.ok i { color: color-mix(in srgb, var(--brand-to), white 24%); background: color-mix(in srgb, var(--brand-from), black 8%); border-color: color-mix(in srgb, var(--brand-to), white 18%); }
.trust-row .flag.ko i { color: color-mix(in srgb, var(--danger), white 26%); background: color-mix(in srgb, var(--danger), black 10%); border-color: color-mix(in srgb, var(--danger), white 14%); }
.trust-row > .flag { justify-self: center; }
.trust-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
.trust-foot .hint { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); }
.trust-foot .hint i { width: 18px; height: 18px; }

@media (max-width: 980px) {
  /* Card layout for small screens */
  .trust-head { display: none; }
  .trust-row, .trust-row.alt {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'benefit benefit' 'ok ko';
    padding: 16px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: color-mix(in srgb, var(--surface), white 4%);
  }
  .trust-row:hover { background: color-mix(in srgb, var(--surface), white 6%); }
  .trust-row:before, .trust-row:after { display: none; }
  .trust-row .benefit { grid-area: benefit; text-align: center; font-weight: 700; margin-bottom: 6px; }
  .trust-row .flag { width: 100%; justify-content: center; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 12px; background: color-mix(in srgb, var(--surface), white 5%); border: 1px solid var(--border); display: inline-flex; }
  .trust-row .flag i { width: 20px; height: 20px; }
  .trust-row .flag.ok { grid-area: ok; }
  .trust-row .flag.ko { grid-area: ko; }
  .trust-row .flag.ok::after { content: 'DICKEN AI'; font-weight: 700; color: var(--text); margin-left: 6px; }
  .trust-row .flag.ko::after { content: 'Alternatives'; font-weight: 700; color: var(--text); margin-left: 6px; }
}

/* Team */
.team .section-head { text-align: center; margin-bottom: 22px; }
.team-marquee { display: none; }
.team-deck { display: flex; justify-content: center; align-items: flex-end; gap: 0; padding: 12px 0; overflow: visible; }
.team .member { width: 220px; margin: 0 -24px; position: relative; filter: saturate(.95); transition: transform .28s ease, filter .28s ease; 
  /* Base layout via CSS vars */
  --x: 0px; --y: 0px; --r: 0deg; --s: 1; --lift: 0px; --dimScale: 1;
  transform: translate(var(--x), calc(var(--y) + var(--lift))) rotate(var(--r)) scale(calc(var(--s) * var(--dimScale)));
}
.team .member:hover { filter: saturate(1.1); }
.team .m1 { --r: -12deg; --x: -30px; --y: 14px; z-index: 2; }
.team .m2 { --r: -6deg; --x: -10px; --y: 6px; z-index: 3; }
.team .m3 { --r: 0deg; --x: 0px; --y: -12px; --s: 1.02; z-index: 4; }
.team .m4 { --r: 12deg; --x: 12px; --y: 6px; z-index: 5; }
.team .m5 { --r: 18deg; --x: 30px; --y: 14px; z-index: 1; }

/* Detach effect: deck hover dims others; hovered card lifts & scales */
.team-deck:hover .member { --dimScale: .96; filter: saturate(.8) brightness(.92); }
.team-deck .member:hover { --s: 1.12; --lift: -28px; --dimScale: 1; z-index: 12; filter: saturate(1.05) brightness(1); }
.member-card { position: relative; background: color-mix(in srgb, var(--surface), white 5%); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 18px 60px rgba(0,0,0,.35); }
.member-card:after { content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px; background: linear-gradient(135deg, color-mix(in srgb, var(--brand-from), white 22%), transparent 30%, color-mix(in srgb, var(--brand-to), white 22%)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .6; }
.member-photo { position: relative; aspect-ratio: 4 / 5; background: radial-gradient(420px 220px at 40% -20%, color-mix(in oklab, var(--brand-to) 12%, transparent), transparent 70%), color-mix(in srgb, var(--surface-2), white 4%); display: grid; place-items: center; }
.member-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.member-caption { position: relative; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border-top: 1px solid var(--border); background: color-mix(in srgb, var(--surface), white 4%); }
.member-caption strong { font-size: 14px; }
.member-caption span { color: var(--muted); font-size: 12px; }

@media (max-width: 980px) {
  .team .member { width: 200px; margin: 0 -16px; }
}
@media (max-width: 720px) {
  /* Hide overlapped deck on mobile; show marquee version */
  .team-deck { display: none; }
  .team-marquee { display: block; overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%); }
  .team-marquee .marquee-track { display: flex; gap: 16px; width: max-content; animation: marquee 28s linear infinite; }
  .team-marquee .member { width: 240px; margin: 0; transform: none !important; }
}

/* Benefits (rich cards) */
.benefits .section-head { text-align: center; margin-bottom: 22px; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.benefit-card { border: 1px solid var(--border); border-radius: 18px; background: color-mix(in srgb, var(--surface), white 3%); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 18px 60px rgba(0,0,0,.35); }
.benefit-media { position: relative; padding: 18px; border-bottom: 1px solid var(--border); background: radial-gradient(520px 220px at 90% -20%, color-mix(in oklab, var(--brand-to) 12%, transparent), transparent 70%), radial-gradient(420px 200px at -10% 40%, color-mix(in oklab, var(--brand-from) 12%, transparent), transparent 70%), color-mix(in srgb, var(--surface-2), white 3%); }
.benefit-body { padding: 16px 18px 18px; }
.benefit-title { margin: 0 0 6px; font-size: 18px; }
.benefit-text { color: var(--text-dim); margin: 0; }

/* Calendar media */
.media-calendar { position: relative; aspect-ratio: 16/9; border-radius: 14px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); overflow: hidden; }
.media-calendar .binding { position: absolute; top: 0; left: 0; right: 0; height: 14px; background: color-mix(in srgb, var(--surface-2), white 8%); border-bottom: 1px solid var(--border); }
.media-calendar .sheet { position: absolute; left: 12px; right: 12px; top: 18px; bottom: 16px; border-radius: 12px; border: 1px solid var(--border); background: color-mix(in srgb, white, var(--surface) 88%); }
.media-calendar .rocket { position: absolute; left: 18px; bottom: 18px; width: 38px; height: 38px; border-radius: 12px; border: 1px solid var(--border); background: color-mix(in srgb, var(--surface), white 6%); display: grid; place-items: center; }
.media-calendar .rocket i { width: 20px; height: 20px; color: color-mix(in srgb, var(--brand-to), white 24%); }
.media-calendar .smile { position: absolute; right: 18px; bottom: 18px; width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--border); background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); display: grid; place-items: center; }
.media-calendar .smile i { width: 20px; height: 20px; color: #0b0b0f; }

/* Connect media */
.media-connect { position: relative; aspect-ratio: 16/9; border-radius: 14px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); overflow: hidden; }
.media-connect .hub { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 16px; border: 1px solid var(--border); background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); box-shadow: 0 0 0 8px rgba(128,0,153,.15); }
.media-connect .node { position: absolute; width: 32px; height: 32px; border-radius: 10px; border: 1px solid var(--border); background: color-mix(in srgb, var(--surface), white 6%); }
.media-connect .n1 { left: 10%; top: 18%; }
.media-connect .n2 { right: 12%; top: 24%; }
.media-connect .n3 { left: 12%; bottom: 18%; }
.media-connect .n4 { right: 14%; bottom: 16%; }
.media-connect:before { content: ''; position: absolute; inset: 0; background:
  radial-gradient(40px 40px at 10% 20%, color-mix(in srgb, var(--brand-to), white 8%), transparent 60%),
  radial-gradient(40px 40px at 88% 22%, color-mix(in srgb, var(--brand-to), white 8%), transparent 60%),
  radial-gradient(40px 40px at 12% 82%, color-mix(in srgb, var(--brand-to), white 8%), transparent 60%),
  radial-gradient(40px 40px at 86% 80%, color-mix(in srgb, var(--brand-to), white 8%), transparent 60%);
  mask: radial-gradient(140px 140px at 50% 50%, #0008, transparent 70%);
}

/* Call media */
.media-call { position: relative; aspect-ratio: 16/9; border-radius: 14px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); overflow: hidden; }
.media-call .avatar { position: absolute; width: 38%; height: 50%; top: 16px; border-radius: 12px; background: color-mix(in srgb, white, var(--surface) 86%); border: 1px solid var(--border); box-shadow: var(--shadow); }
.media-call .a1 { left: 16px; }
.media-call .a2 { right: 16px; }
.media-call .dock { position: absolute; left: 18px; right: 18px; bottom: 12px; height: 34px; border: 1px solid var(--border); border-radius: 999px; background: color-mix(in srgb, var(--surface-2), white 6%); }

/* Report media */
.media-report { position: relative; aspect-ratio: 16/9; border-radius: 14px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); overflow: hidden; }
.media-report .label { position: absolute; right: 12px; top: 12px; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); color: #0b0b0f; font-weight: 800; border-radius: 999px; padding: 6px 10px; font-size: 12px; }
.media-report .report { position: absolute; left: 14px; right: 14px; height: 38px; border-radius: 10px; border: 1px solid var(--border); background: color-mix(in srgb, var(--surface), white 6%); }
.media-report .r1 { top: 22px; }
.media-report .r2 { top: 66px; }
.media-report .spark { position: absolute; left: 60%; bottom: 16px; width: 64px; height: 16px; border-radius: 999px; background: linear-gradient(90deg, var(--brand-from), var(--brand-to)); filter: blur(1px); }

.benefit-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; text-align: center; }
.benefit-stats .stat { background: color-mix(in srgb, var(--surface), white 3%); border: 1px solid var(--border); border-radius: 16px; padding: 12px; }
.benefit-stats .kpi-value { font-size: 28px; font-weight: 800; margin-bottom: 2px; }
.benefit-stats span { color: var(--muted); font-size: 13px; }

@media (max-width: 980px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-stats { grid-template-columns: 1fr; }
}

.faq details { border: 1px solid var(--border); background: color-mix(in srgb, var(--surface), white 3%); border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--text-dim); margin: 8px 0 0; }

.footer { border-top: 1px solid var(--border); background: color-mix(in srgb, var(--bg), black 6%); padding: 22px 0; color: var(--text-dim); }
.footer-inner { display: flex; align-items: center; gap: 20px; justify-content: space-between; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; }
.footer a { color: var(--text-dim); text-decoration: none; }
.footer a:hover { color: var(--text); }
@media (max-width: 980px) {
  .footer { padding: 20px 0; }
  .footer-inner { gap: 14px; }
}
@media (max-width: 720px) {
  .footer { padding: 18px 0; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 10px 14px; }
  .footer .brand-logo { height: 28px; }
  .footer .legal { order: 3; font-size: 12px; color: var(--muted); }
  .footer a { font-size: 14px; }
}
@media (max-width: 520px) {
  .footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 14px; }
}

.floating-cta { position: fixed; right: 16px; bottom: 16px; z-index: 50; text-decoration: none; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); color: #fff; padding: 12px 16px; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow); }
.floating-cta.hide { opacity: 0; pointer-events: none; transform: translateY(8px); transition: .25s; }

/* Animated background orbs */
.orbs { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.orb { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(40px); opacity: .28; background: radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--brand-from) 70%, transparent), transparent 60%); animation: float 18s ease-in-out infinite; }
.orb.o2 { width: 520px; height: 520px; left: -120px; top: 20%; background: radial-gradient(circle at 70% 70%, color-mix(in oklab, var(--brand-to) 70%, transparent), transparent 60%); animation-duration: 22s; animation-delay: -5s; opacity: .22; }
.orb.o3 { width: 380px; height: 380px; right: -80px; bottom: -40px; background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--brand-via) 70%, transparent), transparent 60%); animation-duration: 26s; animation-delay: -9s; opacity: .20; }
@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Reveal variants */
[data-animate] { opacity: .001; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.in [data-animate], [data-animate].in { opacity: 1; transform: none; }
[data-animate="right"] { transform: translateX(20px); }
[data-animate="left"] { transform: translateX(-20px); }
[data-animate="up"] { transform: translateY(20px); }
[data-animate="scale"] { transform: scale(.96); }

/* Testimonials slider */
.testimonials .quote { transition: opacity .6s ease, transform .6s ease; opacity: .35; transform: translateY(6px); }
.testimonials .quote.active { opacity: 1; transform: none; }

/* Counters */
.kpi-value[data-count] { background: none; color: var(--text); font-weight: 800; }
.kpi-value[data-count] .grad { background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Responsive */
@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  /* Mobile nav overlay */
  .menu { display: none; position: fixed; top: 56px; left: 0; right: 0; background: color-mix(in srgb, var(--bg), white 6%); backdrop-filter: blur(8px) saturate(1.05); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 10px 16px 16px; flex-direction: column; gap: 8px; z-index: 50; }
  .menu.open { display: flex; }
  .menu a { padding: 12px 10px; border-radius: 10px; font-size: 15px; color: var(--text); }
  .menu a:hover { background: color-mix(in srgb, var(--surface), white 6%); }
  .menu a:after { display: none; }
  .menu-toggle { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; }
  .hero .hero-copy { text-align: center; }
  .hero .cta-wrap { justify-content: center; }
  .marquee .logo { min-width: 150px; height: 52px; }
  .process-rail { display: none; }
  /* Team: hide scrollbar and enable smooth snapping */
  .team-deck { -ms-overflow-style: none; scrollbar-width: none; }
  .team-deck::-webkit-scrollbar { display: none; }
  /* Hide Institutions section entirely on mobile */
  .trust { display: none !important; }
  /* Hide nav link to hidden section */
  .menu a[href="#trust"] { display: none; }
  /* Team marquee (mobile) */
  .team-deck.marquee { overflow: hidden; mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%); }
  .team-deck.marquee .team-track { display: flex; gap: 12px; width: max-content; animation: teamMarquee 28s linear infinite; }
  /* Trust: two-column mobile layout with labeled badges */
  .trust-row, .trust-row.alt { grid-template-columns: 1fr 1fr; grid-template-areas: 'benefit benefit' 'ok ko'; }
  .trust-row .benefit { grid-area: benefit; text-align: center; margin-bottom: 6px; }
  .trust-row .flag.ok { grid-area: ok; }
  .trust-row .flag.ko { grid-area: ko; }
  .trust-row .flag { width: 100%; justify-content: center; padding: 10px 12px; border-radius: 12px; background: color-mix(in srgb, var(--surface), white 5%); border: 1px solid var(--border); }
  .trust-row .flag i { width: 20px; height: 20px; }
  .trust-row .flag.ok::before, .trust-row .flag.ko::before { display: none; }
  .trust-row .flag.ok::after { content: 'DICKEN AI'; margin-left: 8px; font-weight: 700; color: var(--text); }
  .trust-row .flag.ko::after { content: 'Alternatives'; margin-left: 8px; font-weight: 700; color: var(--text); }
  /* Trust mobile: clarify who/alt labels */
  .trust-row .flag { display: inline-flex; align-items: center; gap: 6px; }
}
@media (max-width: 520px) {
  .section { padding: 44px 0; }
  .brand-logo { height: 30px; }
  .marquee .logo { min-width: 140px; height: 48px; padding: 0 16px; }
}

@keyframes teamMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Medium screens handled by card layout above */

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation: none !important; transition: none !important; }
}

/* Compare (Avant / Après) */
.compare .compare-head { text-align: center; margin-bottom: 28px; }
.compare .compare-head .chip { margin-bottom: 10px; }
.compare .compare-head .subhead { color: var(--text-dim); margin: 6px 0 0; }

.compare .compare-wrap { display: grid; grid-template-columns: 1fr 70px 1fr; gap: 18px; align-items: stretch; }
.compare .panel { background: color-mix(in srgb, var(--surface), white 2%); border: 1px solid var(--border); border-radius: 16px; padding: 22px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.compare .panel h3 { margin-top: 6px; }
.compare .panel.bad { background: linear-gradient(180deg, color-mix(in srgb, var(--danger), black 86%) 0%, transparent 60%), color-mix(in srgb, var(--surface), white 1%); border-color: color-mix(in srgb, var(--danger), white 14%); }
.compare .panel.good { background: linear-gradient(180deg, color-mix(in srgb, var(--brand-from), black 86%) 0%, transparent 60%), color-mix(in srgb, var(--surface), white 2%); border-color: color-mix(in srgb, var(--brand-to), white 20%); }
.compare .panel:before { content: ''; position: absolute; inset: -1px; background: radial-gradient(420px 140px at 0% 0%, rgba(255,255,255,.05), transparent 60%); pointer-events: none; }
.compare .panel.bad:before { background: radial-gradient(420px 140px at 0% 0%, color-mix(in srgb, var(--danger), white 8%), transparent 60%); }
.compare .panel.good:before { background: radial-gradient(420px 140px at 100% 0%, color-mix(in srgb, var(--brand-to), white 12%), transparent 60%); }
.compare .panel.good:after { content: ''; position: absolute; inset: -40px -40px -40px -40px; background: radial-gradient(420px 160px at 100% 0%, color-mix(in srgb, var(--brand-to), white 8%), transparent 60%); z-index: -1; filter: blur(14px); opacity: .5; }
.compare .panel-head { display: flex; align-items: center; gap: 10px; }
.chip.success { background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); color: #fff; border: 0; }
.chip.danger { background: color-mix(in srgb, var(--danger), white 8%); color: #fff; border: 0; }

/* Mock UI blocks */
.compare .mock { position: relative; margin: 10px 0 14px; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; aspect-ratio: 16 / 10; }
.compare .mock .tag { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 11px; padding: 6px 9px; border-radius: 999px; font-weight: 700; letter-spacing: .3px; }
.compare .bad .mock .tag { background: color-mix(in srgb, var(--danger), white 10%); color: #fff; border: 1px solid color-mix(in srgb, var(--danger), white 22%); }
.compare .good .mock .tag { background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); color: #0b0b0f; border: 0; }

/* Bad mock */
.bad-mock { background:
  radial-gradient(400px 160px at 10% 10%, color-mix(in srgb, var(--danger), black 30%), transparent 60%),
  color-mix(in srgb, var(--surface-2), white 2%);
}
.bad-mock .ghost { position: absolute; inset: auto auto 8% 8%; width: 70%; height: 52%; background: color-mix(in srgb, white, var(--surface) 86%); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); filter: blur(0.2px); opacity: .8; }
.bad-mock .ghost.g1 { transform: rotate(-5deg) translate(-6px, 0); }
.bad-mock .ghost.g2 { inset: auto auto 14% 16%; width: 64%; height: 48%; opacity: .65; transform: rotate(6deg); }
.bad-mock .ghost.g3 { inset: auto auto 20% 24%; width: 58%; height: 44%; opacity: .5; transform: rotate(-10deg); }
.bad-mock .blur { position: absolute; inset: 40% -20% -10% -20%; background: radial-gradient(60% 60% at 10% 30%, color-mix(in srgb, var(--danger), white 16%), transparent 60%); filter: blur(22px); opacity: .5; }

/* Good mock */
.good-mock { background:
  radial-gradient(420px 160px at 90% 10%, color-mix(in srgb, var(--brand-to), white 18%), transparent 60%),
  color-mix(in srgb, var(--surface-2), white 3%);
}
.good-mock .row { position: absolute; left: 16px; right: 16px; height: 34px; border-radius: 10px; border: 1px solid var(--border); background: color-mix(in srgb, var(--surface), white 6%); display: flex; align-items: center; padding-left: 38px; }
.good-mock .row + .row { margin-top: 10px; }
.good-mock .r1 { top: 18px; }
.good-mock .r2 { top: 62px; }
.good-mock .r3 { top: 106px; }
.good-mock .r4 { top: 150px; }
.good-mock .bullet { position: absolute; left: 10px; width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); box-shadow: 0 0 0 4px rgba(128,0,153,.15); }

.compare .compare-list { margin-top: 10px; }
.compare .compare-list li { display: flex; align-items: center; gap: 10px; }
.compare .compare-list svg { width: 18px; height: 18px; padding: 4px; border-radius: 999px; border: 1px solid var(--border); }
.compare .panel.bad .compare-list svg { color: color-mix(in srgb, var(--danger), white 26%); background: color-mix(in srgb, var(--danger), black 12%); border-color: color-mix(in srgb, var(--danger), white 12%); }
.compare .panel.good .compare-list svg { color: color-mix(in srgb, var(--brand-to), white 24%); background: color-mix(in srgb, var(--brand-from), black 12%); border-color: color-mix(in srgb, var(--brand-to), white 16%); }

.compare .vs-col { position: relative; display: grid; place-items: center; }
.compare .vs-line { width: 2px; height: 100%; border-radius: 2px; background: linear-gradient(180deg, color-mix(in srgb, var(--brand-from), white 18%), color-mix(in srgb, var(--brand-to), white 18%)); opacity: .6; }
.compare .vs-badge { position: absolute; width: 46px; height: 46px; border-radius: 999px; background: linear-gradient(135deg, var(--brand-from), var(--brand-to)); display: grid; place-items: center; color: #fff; font-weight: 800; box-shadow: 0 10px 30px rgba(0,0,0,.35), 0 0 0 6px rgba(128,0,153,.15); letter-spacing: .6px; animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .95; } 50% { transform: scale(1.06); opacity: 1; } }

@media (max-width: 980px) {
  .compare .compare-wrap { grid-template-columns: 1fr; gap: 12px; }
  .compare .vs-col { display: none; }
}

/* Touch optimizations */
@media (hover: none) {
  .team-deck { scroll-snap-type: x mandatory; overflow-x: auto; }
  .team .member { scroll-snap-align: center; }
  .team-deck:hover .member { --dimScale: 1; filter: saturate(1); }
  .team-deck .member:hover { --s: 1.03; --lift: -8px; }
}
