/* =========================================================================
   VConnect Kinetic — theme styles (light default + .dark)
   Ported from the approved "Kinetic" concept.
   ========================================================================= */

:root {
  --c-bg-base: 244 247 251;
  --c-bg-elev: 255 255 255;
  --c-text-hi: 11 18 32;
  --c-text-mid: 86 97 117;
  --c-faint: 11 18 32;
  --c-accent: 11 132 255; /* blue-core */
  --line: rgba(11, 18, 32, 0.1);
  --band: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --grain-dot: rgba(11, 18, 32, 0.04);
  --grad-start: #0b1220;
  --sb-track: #e6ecf3;

  --blue-core: #0b84ff;
  --blue-bright: #1ca7ff;
  --blue-deep: #063a78;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1180px;
  --radius: 14px;

  --shadow-soft: 0 1px 2px rgba(11, 18, 32, 0.04), 0 10px 30px -14px rgba(11, 18, 32, 0.16);
  --shadow-soft-lg: 0 2px 6px rgba(11, 18, 32, 0.05), 0 24px 50px -20px rgba(11, 18, 32, 0.22);
  --shadow-glow: 0 0 0 1px rgba(28, 167, 255, 0.25), 0 20px 60px -20px rgba(11, 132, 255, 0.55);
}

.dark {
  --c-bg-base: 5 5 8;
  --c-bg-elev: 12 13 20;
  --c-text-hi: 244 247 251;
  --c-text-mid: 154 164 178;
  --c-faint: 255 255 255;
  --c-accent: 28 167 255; /* blue-bright */
  --line: rgba(255, 255, 255, 0.08);
  --band: #0c0d14;
  --glass-bg: rgba(12, 13, 20, 0.55);
  --grain-dot: rgba(255, 255, 255, 0.025);
  --grad-start: #f4f7fb;
  --sb-track: #050508;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: rgb(var(--c-bg-base));
  color: rgb(var(--c-text-hi));
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Space Grotesk", system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(11, 132, 255, 0.22); }
:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--sb-track); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #1ca7ff, #0b84ff); border-radius: 999px; border: 2px solid var(--sb-track); }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }
.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.relative { position: relative; }
.text-center { text-align: center; }
.muted { color: rgb(var(--c-text-mid)); }
.maxw-2 { max-width: 42rem; }
.maxw-3 { max-width: 48rem; }

.kicker {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgb(var(--c-accent)); font-weight: 600;
}
.h-display { font-weight: 600; }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; margin-top: 12px; }
.lead { margin-top: 16px; color: rgb(var(--c-text-mid)); font-size: 1.05rem; }

.text-gradient {
  background: linear-gradient(120deg, var(--grad-start) 0%, #0b84ff 55%, #1ca7ff 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.text-gradient-light {
  background: linear-gradient(120deg, #fff 0%, #9cd0ff 55%, #1ca7ff 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.mesh {
  background-image:
    radial-gradient(60% 60% at 20% 10%, rgba(11,132,255,0.18) 0%, transparent 60%),
    radial-gradient(50% 50% at 90% 20%, rgba(28,167,255,0.14) 0%, transparent 55%),
    radial-gradient(60% 80% at 60% 100%, rgba(6,58,120,0.22) 0%, transparent 60%);
}
.grain { background-image: radial-gradient(var(--grain-dot) 1px, transparent 1px); background-size: 3px 3px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.95rem;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--blue-core); color: #fff; box-shadow: 0 0 30px -8px rgba(11,132,255,0.45); }
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: rgb(var(--c-text-hi)); }
.btn-ghost:hover { border-color: var(--blue-core); }
.btn-light { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.06); color: #fff; }
.btn-light:hover { border-color: var(--blue-bright); }

/* ---------- header / nav ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 12px 20px; transition: all 0.3s var(--ease); }
@media (min-width: 640px){ .site-header { padding: 16px 32px; } }
.nav {
  max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 18px; border-radius: 999px; transition: all 0.3s var(--ease);
}
.site-header.scrolled .nav { background: var(--glass-bg); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.brand .plate { background: #fff; border-radius: 12px; padding: 7px 11px; box-shadow: 0 2px 12px -4px rgba(0,0,0,0.5); }
.brand-fallback { display: inline-flex; align-items: center; gap: 8px; font-family: "Space Grotesk"; font-weight: 600; font-size: 1.1rem; color: rgb(var(--c-text-hi)); }
.brand-fallback .mark { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #1ca7ff, #063a78); display: grid; place-items: center; color: #fff; }

.nav-links { display: none; align-items: center; gap: 28px; }
@media (min-width: 900px){ .nav-links { display: flex; } }
.nav-links a { position: relative; font-size: 0.9rem; color: rgb(var(--c-text-mid)); transition: color 0.2s; }
.nav-links a:hover, .nav-links a[aria-current] { color: rgb(var(--c-text-hi)); }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; height:1px; width:0; background: var(--blue-bright); transition: width 0.3s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 260px; background: var(--glass-bg); backdrop-filter: blur(16px); border: 1px solid var(--line);
  border-radius: 14px; padding: 8px; box-shadow: var(--shadow-soft-lg); opacity: 0; visibility: hidden; transition: all 0.25s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 9px; color: rgb(var(--c-text-mid)); font-size: 0.88rem; }
.dropdown a:hover { background: rgba(var(--c-faint), 0.05); color: rgb(var(--c-text-hi)); }
.dropdown a::after { display: none; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { display: grid; place-items: center; height: 40px; width: 40px; border-radius: 50%; border: 1px solid var(--line); color: rgb(var(--c-text-hi)); background: transparent; cursor: pointer; transition: all 0.2s; }
.icon-btn:hover { border-color: var(--blue-core); }
.icon-btn svg { width: 18px; height: 18px; }
.nav-cta { display: none; }
@media (min-width: 900px){ .nav-cta { display: inline-flex; } }
.menu-toggle { display: grid; }
@media (min-width: 900px){ .menu-toggle { display: none; } }

/* nav over the dark hero (front page top) */
.site-header.on-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.82); }
.site-header.on-dark:not(.scrolled) .nav-links a:hover { color: #fff; }
.site-header.on-dark:not(.scrolled) .icon-btn { border-color: rgba(255,255,255,0.25); color: #fff; }
.site-header.on-dark:not(.scrolled) .brand .plate { box-shadow: 0 2px 12px -4px rgba(0,0,0,0.6); }
.site-header.on-dark:not(.scrolled) .brand-fallback { color: #fff; }
.nav-cta { white-space: nowrap; }

/* mobile drawer */
.mobile-menu { display: none; margin-top: 10px; padding: 14px; border-radius: 14px; background: var(--glass-bg); backdrop-filter: blur(16px); border: 1px solid var(--line); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 14px; border-radius: 10px; color: rgb(var(--c-text-mid)); }
.mobile-menu a:hover { background: rgba(var(--c-faint),0.05); color: rgb(var(--c-text-hi)); }

/* ---------- HERO (dark globe band) ---------- */
.hero { position: relative; height: 100svh; min-height: 640px; width: 100%; overflow: hidden; background: #060b16; }
.hero-bg-radial { position: absolute; inset: 0; background: radial-gradient(circle at 50% 38%, #0d1d36 0%, #060b16 62%); }
#globe-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-fallback { position: absolute; inset: 0; display: grid; place-items: center; }
.hero-fallback .orb { width: min(70vw, 520px); height: min(70vw,520px); border-radius: 50%; background: radial-gradient(circle at 35% 30%, #13315c, #0b1b33 60%); box-shadow: 0 30px 80px -20px rgba(11,27,51,0.5); position: relative; }
.hero-fallback .orb::before, .hero-fallback .orb::after { content:""; position:absolute; inset:0; border-radius:50%; border:1px solid rgba(28,167,255,0.3); }
.hero-fallback .orb::after { inset: 14%; }
.hero-inner { position: relative; height: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; margin-bottom: 24px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: var(--blue-bright);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.3em; backdrop-filter: blur(8px);
}
.hero h1 { font-size: clamp(2.4rem, 7vw, 4.5rem); font-weight: 600; color: #fff; }
.hero p.sub { margin-top: 24px; max-width: 38rem; font-size: 1.15rem; color: rgba(255,255,255,0.75); }
.hero .actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero .hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.55); font-size: 12px; display: none; align-items: center; gap: 8px; }
@media (min-width: 640px){ .hero .hint { display: flex; } }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(110%); animation: lineUp 0.9s var(--ease) forwards; }
.reveal-line:nth-child(2) > span { animation-delay: 0.12s; }
@keyframes lineUp { to { transform: translateY(0); } }

/* page hero (inner pages, lighter) */
.page-hero { position: relative; overflow: hidden; padding: 150px 0 60px; background: #060b16; color: #fff; }
.page-hero.short { padding: 140px 0 56px; }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; color: #fff; max-width: 60rem; }
.page-hero p { margin-top: 16px; max-width: 44rem; color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.page-hero .badge { display:inline-flex; gap:8px; align-items:center; padding:6px 14px; border-radius:999px; border:1px solid rgba(255,255,255,0.15); background:rgba(255,255,255,0.05); color:var(--blue-bright); font-size:11px; letter-spacing:0.25em; text-transform:uppercase; margin-bottom:20px; }
.page-hero .crumbs { margin-bottom: 18px; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.page-hero .crumbs a:hover { color:#fff; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px){ .grid-2 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px){ .grid-3 { grid-template-columns: repeat(3,1fr); } }

.card {
  position: relative; background: rgb(var(--c-bg-elev)); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-soft); transition: all 0.4s var(--ease); overflow: hidden; height: 100%;
}
.card:hover { transform: translateY(-4px); border-color: rgba(11,132,255,0.5); box-shadow: var(--shadow-glow); }
.card .ico { display: grid; place-items: center; height: 46px; width: 46px; border-radius: 12px; border: 1px solid var(--line); background: rgba(var(--c-faint),0.05); color: rgb(var(--c-accent)); margin-bottom: 18px; }
.card .ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.2rem; font-weight: 600; }
.card p { margin-top: 8px; font-size: 0.92rem; color: rgb(var(--c-text-mid)); }
.card .more { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 500; color: rgb(var(--c-accent)); }
a.card { display: block; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
@media (min-width: 1024px){ .stats { grid-template-columns: repeat(4,1fr); } }
.stat { position: relative; background: rgb(var(--c-bg-elev)); padding: 40px 14px; text-align: center; }
.stat::before { content:""; position:absolute; inset:0 0 auto 0; height:1px; background: linear-gradient(90deg, transparent, var(--blue-core), transparent); opacity:0.6; }
.stat .num { font-family: "Space Grotesk"; font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.stat .num span { background: linear-gradient(120deg, var(--grad-start), #0b84ff 55%, #1ca7ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .lbl { margin-top: 8px; font-size: 0.85rem; color: rgb(var(--c-text-mid)); }

/* ---------- kinetic work rail ---------- */
.work-band { background: rgb(var(--c-bg-base)); padding: 96px 0; overflow: hidden; }
.work-head { max-width: var(--maxw); margin: 0 auto 32px; padding: 0 20px; }
.work-rail { display: flex; gap: 24px; padding: 4px 20px 24px; overflow-x: auto; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; cursor: grab; }
.work-rail::-webkit-scrollbar { display: none; }
.work-rail.dragging { cursor: grabbing; scroll-snap-type: none; }
@media (min-width: 640px){ .work-rail { padding: 4px 32px 24px; } }
.work-card { position: relative; flex: 0 0 78vw; scroll-snap-align: center; }
@media (min-width: 640px){ .work-card { flex-basis: 52vw; } }
@media (min-width: 1024px){ .work-card { flex-basis: 36vw; } }
.work-card .media { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.work-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.work-card:hover .media img { transform: scale(1.03); }
.work-card .play { position: absolute; bottom: 16px; right: 16px; height: 48px; width: 48px; border-radius: 50%; background: rgba(11,132,255,0.92); color: #fff; display: grid; place-items: center; opacity: 0; transition: opacity 0.3s; }
.work-card:hover .play { opacity: 1; }
.work-card .meta { margin-top: 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.work-card .cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: rgb(var(--c-accent)); }
.work-card h3 { margin-top: 4px; font-size: 1.1rem; font-weight: 600; }
.work-card .idx { font-family: "Space Grotesk"; color: rgb(var(--c-text-mid)); font-size: 0.85rem; }

/* ---------- service detail ---------- */
.svc-list { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px){ .svc-list { grid-template-columns: repeat(2,1fr); } }
.svc-item { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: rgb(var(--c-bg-elev)); box-shadow: var(--shadow-soft); }
.svc-item .dot { margin-top: 6px; height: 8px; width: 8px; border-radius: 50%; background: var(--blue-bright); flex: 0 0 auto; }
.svc-item h4 { font-size: 1rem; font-weight: 600; }
.svc-item p { margin-top: 4px; font-size: 0.9rem; color: rgb(var(--c-text-mid)); }
.advanced { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: rgb(var(--c-bg-elev)); box-shadow: var(--shadow-soft); }
.advanced .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(var(--c-faint),0.04); font-size: 0.82rem; }
.chip::before { content:""; height:6px; width:6px; border-radius:50%; background: var(--blue-bright); }

/* media frame + youtube */
.media-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft-lg); border: 1px solid var(--line); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame .scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,9,18,0.85), rgba(5,9,18,0.2)); }
.play-big { position: absolute; inset: 0; margin: auto; height: 80px; width: 80px; border-radius: 50%; background: rgba(11,132,255,0.92); color:#fff; display: grid; place-items: center; border: none; cursor: pointer; transition: transform 0.3s; }
.play-big:hover { transform: scale(1.08); background: var(--blue-bright); }

/* ---------- marquee (clients) ---------- */
.marquee-wrap { margin-top: 28px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent); mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent); }
.marquee { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee ul { display: flex; align-items: center; gap: 48px; padding-right: 48px; }
.marquee .cmark { font-family: "Space Grotesk"; font-weight: 600; font-size: 1.15rem; letter-spacing: 0.04em; color: rgb(var(--c-text-mid)); opacity: 0.6; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- alternating editorial band ---------- */
.band { background: var(--band); }

/* ---------- footer ---------- */
.site-footer { position: relative; border-top: 1px solid var(--line); background: rgb(var(--c-bg-base)); overflow: hidden; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; padding: 64px 0; }
@media (min-width: 768px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-cta { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; border-bottom: 1px solid var(--line); padding: 56px 0; }
@media (min-width: 768px){ .footer-cta { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.footer-cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; }
.footer h3 { font-family: "Space Grotesk"; font-size: 0.9rem; font-weight: 600; }
.footer ul.links { margin-top: 16px; display: grid; gap: 10px; }
.footer ul.links a { font-size: 0.9rem; color: rgb(var(--c-text-mid)); }
.footer ul.links a:hover { color: rgb(var(--c-text-hi)); }
.footer .contact-li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgb(var(--c-text-mid)); }
.footer .contact-li svg { width: 16px; height: 16px; color: var(--blue-bright); }
.footer-bottom { display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding: 28px 0; font-size: 0.8rem; color: rgb(var(--c-text-mid)); }
@media (min-width: 640px){ .footer-bottom { flex-direction: row; } }

/* ---------- forms ---------- */
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.82rem; color: rgb(var(--c-text-mid)); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  background: rgb(var(--c-bg-elev)); color: rgb(var(--c-text-hi)); font: inherit;
}
.field input:focus, .field textarea:focus { border-color: var(--blue-core); outline: none; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); }
.lightbox.open { display: grid; }
.lightbox .frame { width: 100%; max-width: 960px; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-glow); background: #000; }
.lightbox iframe { width: 100%; height: 100%; border: 0; }
.lightbox .close { position: absolute; top: 24px; right: 24px; color: rgba(255,255,255,0.8); background: none; border: none; cursor: pointer; font-size: 0.9rem; display: inline-flex; gap: 6px; align-items: center; }
.lightbox .close:hover { color: #fff; }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- process steps ---------- */
.steps { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; grid-template-columns: 1fr; }
@media (min-width: 640px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px){ .steps { grid-template-columns: repeat(4,1fr); } }
.step { background: rgb(var(--c-bg-elev)); padding: 28px; }
.step .n { font-family: "Space Grotesk"; font-weight: 600; font-size: 1.8rem; color: rgb(var(--c-accent)); }
.step h4 { margin-top: 12px; font-size: 1.05rem; font-weight: 600; }
.step p { margin-top: 8px; font-size: 0.9rem; color: rgb(var(--c-text-mid)); }

/* ---------- prose (post/page body) ---------- */
.prose { max-width: 44rem; }
.prose p { margin: 0 0 16px; color: rgb(var(--c-text-mid)); }
.prose h2 { font-size: 1.6rem; margin: 32px 0 12px; }
.prose h3 { font-size: 1.25rem; margin: 24px 0 10px; }
.prose ul { list-style: disc; padding-left: 20px; margin: 0 0 16px; }
.prose li { margin-bottom: 6px; color: rgb(var(--c-text-mid)); }
.prose a { color: var(--blue-core); text-decoration: underline; }

/* icon sizing in special contexts */
.brand-fallback .mark svg { width: 16px; height: 16px; }
.hero .badge svg, .page-hero .badge svg { width: 14px; height: 14px; }
.play svg { width: 18px; height: 18px; }
.play-big svg { width: 30px; height: 30px; }
.more svg, .btn svg { width: 16px; height: 16px; }
.wa-fab svg { width: 26px; height: 26px; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .reveal-line > span { transform: none; }
}
