/* ==========================================================================
   DEVECTUS - theme.css
   Light & corporate: clean white - deep navy - confident blue. Trustworthy.
   (Variable names kept from the prior palette; --pink* now hold the blue accent.)
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-2: #f5f8fc;
  --bg-3: #ffffff;
  --ink: #eef3f8;            /* light tint for alternating section bands */
  --navy: #09162f;           /* deep navy for dramatic spotlight sections */
  --navy-2: #13213d;
  --white: #111827;          /* primary text (deep navy slate) */
  --on-accent: #ffffff;      /* text on coloured/accent surfaces */
  --muted: #607086;          /* secondary text */
  --muted-on-dark: #b3c0d8;  /* secondary text on navy spotlight bands */
  --pink: #255edb;           /* primary accent (confident blue) */
  --pink-soft: #3f7df4;      /* accent-soft */
  --violet: #18a7b5;         /* teal depth for gradients */
  --cyan: #2fb7d6;           /* energetic spark, used sparingly */
  --warm: #d5a13b;           /* proof/accent tone, used sparingly */
  --coral: #e56f4f;          /* human warmth for story moments */
  --leaf: #3a9b78;           /* grounded community accent */
  --line: rgba(20, 29, 51, 0.10);
  --line-pink: rgba(37, 94, 219, 0.28);
  --glass: rgba(255, 255, 255, 0.88);
  --display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --body: 'Inter', 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', Consolas, monospace;
  --grad: linear-gradient(100deg, #255edb 0%, #287bd8 48%, #18a7b5 100%);
  --grad-warm: linear-gradient(115deg, #255edb 0%, #18a7b5 48%, #e56f4f 100%);
  --grad-bright: linear-gradient(100deg, #255edb 0%, #2fb7d6 100%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--pink); color: var(--on-accent); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--pink); color: var(--on-accent); padding: 0.6rem 1.2rem; }
.skip-link:focus { left: 0; }

/* ============ Type helpers ============ */

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 .accent { color: var(--pink-soft); }

.kicker {
  font-family: var(--mono); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-soft);
  margin-bottom: 1rem;
}

.grad {
  background: var(--grad);
  background-size: 160% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 8s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.section-head { text-align: center; max-width: 820px; margin: 0 auto 4rem; padding: 0 1.5rem; }
.section-lede { color: var(--muted); margin-top: 1.1rem; }

/* ============ Buttons ============ */

.btn {
  display: inline-block; padding: 0.95rem 2.2rem;
  font-family: var(--display); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.02em; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s, color 0.35s;
}
.btn-primary {
  position: relative; overflow: hidden;
  background: var(--grad); background-size: 180% auto; color: var(--on-accent);
  box-shadow: 0 8px 22px -8px rgba(37, 94, 219, 0.52), 0 2px 6px rgba(24, 167, 181, 0.18);
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg); transition: left 0.7s var(--ease);
}
.btn-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(37, 94, 219, 0.64), 0 3px 10px rgba(24, 167, 181, 0.24); }
.btn-primary:hover::after { left: 130%; }
.btn-line { border-color: rgba(20, 29, 51, 0.18); color: var(--white); background: rgba(255, 255, 255, 0.6); }
.btn-line:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(37, 94, 219, 0.38); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Soft elevation for cards on the light background (rest state) */
.solution-card, .product-card, .deliver-card, .showcase-card, .team-card,
.review-card, .aud-item, .fit-item, .lp-include, .aside-card, .contact-form {
  box-shadow: 0 1px 2px rgba(18, 33, 58, 0.04), 0 14px 30px -18px rgba(18, 33, 58, 0.14);
}

/* ============ Header ============ */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  background: rgba(244, 247, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.site-header.scrolled {
  background: rgba(244, 247, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 18px 40px -24px rgba(18, 33, 58, 0.13);
  padding: 0.65rem 0;
}
.header-inner {
  max-width: 1680px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { position: relative; z-index: 112; }
.brand-logo { height: 22px; width: auto; transition: height 0.4s; }
.site-header.scrolled .brand-logo { height: 19px; }

.site-nav { display: flex; align-items: center; gap: 1.9rem; }
.site-nav > a, .nav-drop-toggle {
  font-family: var(--display); font-weight: 500; font-size: 0.92rem;
  color: var(--white); background: none; border: none; cursor: pointer;
  position: relative; padding: 0.4rem 0;
}
.site-nav > a::after, .nav-drop-toggle::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width 0.3s var(--ease);
}
.site-nav > a:hover::after, .nav-group:hover .nav-drop-toggle::after { width: 100%; }
.nav-drop-toggle .caret { color: var(--pink-soft); font-weight: 400; }

.nav-group { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 390px; padding: 0.6rem;
  background: rgba(255, 255, 255, 0.97); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 30px 70px -20px rgba(18, 33, 58, 0.13);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.nav-group:hover .nav-dropdown, .nav-group.open .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: baseline; gap: 0.9rem;
  padding: 0.8rem 1rem; border-radius: 10px;
  transition: background 0.25s;
}
.nav-dropdown a:hover { background: rgba(37, 94, 219, 0.09); }
.nav-dropdown .dd-num { font-family: var(--mono); font-size: 0.75rem; color: var(--pink-soft); }
.nav-dropdown strong { display: block; font-family: var(--display); font-weight: 600; font-size: 0.95rem; }
.nav-dropdown em { display: block; font-style: normal; font-size: 0.78rem; color: var(--muted); }

.nav-action {
  border: 1px solid var(--line-pink); border-radius: 10px;
  padding: 0.55rem 1.2rem !important; color: var(--pink-soft) !important;
}
.nav-action::after { display: none; }
.nav-action:hover { background: rgba(37, 94, 219, 0.11); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 112; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--white); margin: 5.5px 0; border-radius: 2px; transition: transform 0.35s, opacity 0.35s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ Hero / page hero ============ */

.hero, .page-hero {
  position: relative; overflow: hidden; overflow-x: clip;
  background:
    radial-gradient(42% 38% at 48% 16%, rgba(229, 111, 79, 0.08), transparent 72%),
    radial-gradient(60% 50% at 85% 8%, rgba(24, 167, 181, 0.10), transparent 70%),
    radial-gradient(55% 50% at 10% 12%, rgba(37, 94, 219, 0.10), transparent 70%),
    linear-gradient(180deg, #f5f8fc 0%, var(--bg) 45%, var(--ink) 100%);
}
.hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 5rem; }
.page-hero { padding: 10rem 0 5.5rem; }

.hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6; }
.hero-mesh {
  position: absolute; inset: -25%;
  background:
    radial-gradient(32% 28% at 22% 30%, rgba(37, 94, 219, 0.13), transparent 70%),
    radial-gradient(30% 26% at 78% 65%, rgba(24, 167, 181, 0.15), transparent 70%),
    radial-gradient(22% 20% at 60% 20%, rgba(47, 183, 214, 0.09), transparent 70%);
  animation: meshDrift 16s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshDrift {
  from { transform: translate3d(-2%, -1%, 0) rotate(-1deg); }
  to { transform: translate3d(2%, 2%, 0) rotate(1deg); }
}
/* Soft floating gradient blobs for depth */
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; opacity: 0.7; }
.hero-blob-a { width: 460px; height: 460px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(24, 167, 181, 0.26), transparent 70%); animation: blobFloat 14s ease-in-out infinite alternate; }
.hero-blob-b { width: 420px; height: 420px; bottom: -140px; left: -100px; background: radial-gradient(circle, rgba(37, 94, 219, 0.22), transparent 70%); animation: blobFloat 18s ease-in-out infinite alternate-reverse; }
@keyframes blobFloat { from { transform: translate(0, 0) scale(1); } to { transform: translate(30px, -24px) scale(1.1); } }

.hero-inner, .page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1080px; margin: 0 auto; padding: 0 2rem;
  text-align: center;
}
/* Two-column hero */
.hero-inner.hero-split, .page-hero-inner.hero-split {
  max-width: 1280px; text-align: left;
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 3.5rem; align-items: center;
}
.hero-split .hero-actions { justify-content: flex-start; margin-bottom: 2rem; }
.page-hero-inner.hero-split .hero-actions { justify-content: flex-start; }
.page-hero-inner.hero-split .hero-mono { margin-bottom: 1.6rem; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pink);
  border: 1px solid var(--line-pink); border-radius: 100px;
  padding: 0.45rem 1.1rem; margin-bottom: 1.8rem;
  background: rgba(255, 255, 255, 0.75); box-shadow: 0 6px 18px -10px rgba(37, 94, 219, 0.34);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--pink);
  box-shadow: 0 0 0 0 rgba(37, 94, 219, 0.54);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 94, 219, 0.54); }
  70% { box-shadow: 0 0 0 10px rgba(37, 94, 219, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 94, 219, 0); }
}

.hero-title { font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.04; margin-bottom: 1.6rem; }
.page-title { font-size: clamp(2.2rem, 4.8vw, 3.6rem); margin-bottom: 1.5rem; }

.hero-sub { color: var(--muted); font-size: 1.12rem; max-width: 36rem; margin: 0 0 1.8rem; }
.hero-split .hero-sub { margin-left: 0; margin-right: 0; }

.hero-terminal {
  font-family: var(--mono); font-size: 0.9rem; color: #9fc2ff;
  background: linear-gradient(135deg, #0e1838, #131f44);
  border: 1px solid rgba(24, 167, 181, 0.3); border-radius: 12px;
  padding: 0.9rem 1.3rem; display: block; margin-bottom: 2.2rem;
  max-width: 560px; text-align: left; min-height: 3.1em;
  box-shadow: 0 18px 40px -22px rgba(20, 29, 51, 0.6);
}
.typer-caret {
  display: inline-block; width: 9px; height: 1.1em; vertical-align: text-bottom;
  background: var(--cyan); margin-left: 3px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-mono { font-family: var(--mono); font-size: 0.88rem; color: var(--pink-soft); margin-bottom: 2rem; letter-spacing: 0.06em; }

.page-hero .hero-actions { justify-content: center; margin-bottom: 2.4rem; }

.hero-trust { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.hero-trust .dx-icon { width: 18px; height: 18px; color: var(--pink); }

.hero-chips { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.chip {
  font-size: 0.8rem; color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px; padding: 0.45rem 1.1rem;
  background: rgba(255, 255, 255, 0.5);
}

/* Hero visual - floating product mockup */
.hero-visual { position: relative; perspective: 1400px; }
.hero-mockup {
  position: relative; border-radius: 16px; overflow: hidden; z-index: 2;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(20, 29, 51, 0.35), 0 12px 30px -16px rgba(37, 94, 219, 0.24);
  transform: rotateY(-9deg) rotateX(3deg) translateZ(0);
  transition: transform 0.6s var(--ease);
  animation: mockFloat 7s ease-in-out infinite;
}
.hero-visual:hover .hero-mockup { transform: rotateY(-4deg) rotateX(1deg); }
@keyframes mockFloat { 0%, 100% { margin-top: 0; } 50% { margin-top: -14px; } }
.hm-bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.6rem 0.9rem; background: #f4f6fb; border-bottom: 1px solid var(--line); }
.hm-bar i { width: 9px; height: 9px; border-radius: 50%; background: #cfd6e6; }
.hm-bar i:first-child { background: #ff5f57; } .hm-bar i:nth-child(2) { background: #febc2e; } .hm-bar i:nth-child(3) { background: #28c840; }
.hm-url { margin-left: 0.6rem; font-family: var(--mono); font-size: 0.72rem; color: var(--muted); }
.hero-mockup img { width: 100%; height: auto; display: block; }
/* glow behind mockup */
.hero-visual::before {
  content: ''; position: absolute; inset: 8% 4%; z-index: 0; border-radius: 30px;
  background: var(--grad); filter: blur(55px); opacity: 0.4;
}
/* floating accent chips */
.hm-chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; font-weight: 600; color: var(--white);
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 12px; padding: 0.55rem 0.9rem;
  box-shadow: 0 16px 30px -14px rgba(20, 29, 51, 0.4);
}
.hm-chip .dx-icon { width: 18px; height: 18px; color: var(--pink); }
.hm-chip strong { color: var(--pink); }
.hm-dot { width: 9px; height: 9px; border-radius: 50%; background: #28c840; box-shadow: 0 0 8px rgba(40, 200, 64, 0.8); }
.hm-chip-1 { top: 8%; left: -7%; animation: chipFloat 6s ease-in-out infinite; }
.hm-chip-2 { bottom: 18%; right: -6%; animation: chipFloat 7.5s ease-in-out infinite 0.4s; }
.hm-chip-3 { bottom: -4%; left: 14%; animation: chipFloat 6.8s ease-in-out infinite 0.8s; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-scrollcue { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 3; width: 24px; height: 38px; border: 1px solid var(--line-pink); border-radius: 12px; }
.hero-scrollcue span { position: absolute; top: 7px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px; background: var(--pink); border-radius: 2px; animation: scrollCue 2.2s ease-in-out infinite; }
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(13px); opacity: 0; } 100% { opacity: 0; } }

/* Inside-page hero capability panel (designed visual, no screenshot needed) */
.hero-panel {
  position: relative; z-index: 2; border-radius: 18px; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(20, 29, 51, 0.32), 0 12px 30px -16px rgba(37, 94, 219, 0.22);
  transform: rotateY(-9deg) rotateX(3deg);
  animation: mockFloat 7s ease-in-out infinite;
  transition: transform 0.6s var(--ease);
}
.hero-visual:hover .hero-panel { transform: rotateY(-4deg) rotateX(1deg); }
.hp-bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.6rem 0.9rem; background: #f4f6fb; border-bottom: 1px solid var(--line); }
.hp-bar i { width: 9px; height: 9px; border-radius: 50%; background: #cfd6e6; }
.hp-bar i:first-child { background: #ff5f57; } .hp-bar i:nth-child(2) { background: #febc2e; } .hp-bar i:nth-child(3) { background: #28c840; }
.hp-body { padding: 1.9rem; }
.hp-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 15px; color: #fff; background: var(--grad);
  box-shadow: 0 12px 26px -10px rgba(37, 94, 219, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  margin-bottom: 1.2rem;
}
.hp-icon .dx-icon { width: 30px; height: 30px; }
.hp-title { font-family: var(--display); font-weight: 600; font-size: 1.25rem; margin-bottom: 1.1rem; color: var(--white); }
.hp-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.5rem; }
.hp-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; color: var(--white); }
.hp-check {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 8px; color: var(--pink);
  background: rgba(37, 94, 219, 0.11);
}
.hp-check .dx-icon { width: 15px; height: 15px; }
.hp-meter { height: 8px; border-radius: 100px; background: rgba(20, 29, 51, 0.08); overflow: hidden; }
.hp-meter span { display: block; height: 100%; width: 82%; border-radius: 100px; background: var(--grad); animation: meterFill 2.4s var(--ease) forwards; }
@keyframes meterFill { from { width: 0; } to { width: 82%; } }

/* ============ Marquee ============ */

.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink); overflow: hidden; padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 2.6rem; width: max-content; align-items: center; white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--display); font-weight: 500; font-size: 1rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.18em;
}
.marquee-track i { font-style: normal; color: var(--pink); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Studio story ============ */

.studio-story {
  position: relative;
  max-width: 1280px;
  margin: 5.5rem auto 6.5rem;
  padding: clamp(3.25rem, 6vw, 5.25rem) clamp(1.35rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 5vw, 4.75rem);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(20, 29, 51, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(48% 70% at 14% 15%, rgba(229, 111, 79, 0.12), transparent 70%),
    radial-gradient(46% 65% at 86% 80%, rgba(58, 155, 120, 0.14), transparent 72%),
    linear-gradient(140deg, rgba(245, 248, 252, 0.82), rgba(255, 255, 255, 0.52));
}
.studio-story::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), transparent 54%),
    radial-gradient(circle at 72% 18%, rgba(83, 116, 255, 0.14), transparent 34%);
  pointer-events: none;
}
.studio-copy,
.studio-system { position: relative; z-index: 1; min-width: 0; }
.studio-copy h2 { margin-bottom: 1.4rem; }
.studio-copy p { color: var(--muted); margin-bottom: 1.1rem; max-width: 39rem; }
.studio-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}
.studio-notes span {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2b3550;
  border: 1px solid rgba(229, 111, 79, 0.34);
  border-radius: 100px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px -18px rgba(20, 29, 51, 0.28);
}

.studio-system {
  min-height: 520px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  place-items: center;
  gap: 1rem;
}
.studio-system::before {
  content: '';
  position: absolute;
  inset: 12% 4% 6% 12%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 18%, rgba(83, 116, 255, 0.28), transparent 36%),
    radial-gradient(circle at 78% 72%, rgba(58, 155, 120, 0.24), transparent 38%),
    linear-gradient(140deg, rgba(229, 111, 79, 0.12), rgba(83, 116, 255, 0.08));
  filter: blur(28px);
  opacity: 0.82;
}
.studio-system-window {
  position: relative;
  grid-column: 1 / -1;
  width: min(100%, 560px);
  border: 1px solid rgba(20, 29, 51, 0.12);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 34px 80px -38px rgba(20, 29, 51, 0.46);
}
.studio-system-bar {
  display: flex;
  align-items: center;
  gap: 0.46rem;
  min-height: 3.2rem;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(20, 29, 51, 0.08);
  background: rgba(245, 248, 252, 0.82);
}
.studio-system-bar i {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: #e56f4f;
}
.studio-system-bar i:nth-child(2) { background: #f4c44d; }
.studio-system-bar i:nth-child(3) { background: #3a9b78; }
.studio-system-bar span {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.studio-system-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.5rem);
}
.system-card {
  min-height: 10.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid rgba(20, 29, 51, 0.08);
  border-radius: 18px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
}
.system-card-active {
  color: #fff;
  background: linear-gradient(145deg, #141d33, #354bf4 170%);
  box-shadow: 0 22px 42px -28px rgba(20, 29, 51, 0.68);
}
.system-card span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--blue);
}
.system-card-active span { color: #aebdff; }
.system-card strong {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.1;
}
.system-card em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.system-card-active em { color: rgba(255, 255, 255, 0.74); }
.system-proof {
  position: relative;
  z-index: 2;
  min-width: 160px;
  width: min(100%, 210px);
  border: 1px solid rgba(20, 29, 51, 0.12);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 44px -28px rgba(20, 29, 51, 0.42);
}
.system-proof span {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.system-proof-one {
  border-color: rgba(37, 94, 219, 0.22);
  justify-self: start;
}
.system-proof-two {
  border-color: rgba(58, 155, 120, 0.24);
  justify-self: end;
}

/* ============ Solutions grid ============ */

.solutions { padding: 7.5rem 2rem; max-width: 1280px; margin: 0 auto; }

.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

.solution-card {
  position: relative; display: block;
  border: 1px solid var(--line); border-radius: 18px;
  padding: 2.6rem 2.4rem;
  background: linear-gradient(165deg, var(--glass), rgba(244, 247, 252, 0.3));
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.solution-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(37, 94, 219, 0.10), transparent 70%);
  transition: opacity 0.5s;
}
.solution-card:hover { transform: translateY(-8px); border-color: var(--line-pink); box-shadow: 0 30px 60px -30px rgba(37, 94, 219, 0.34); }
.solution-card:hover::before { opacity: 1; }
.solution-card:nth-child(2)::before { background: radial-gradient(60% 80% at 50% 0%, rgba(24, 167, 181, 0.13), transparent 70%); }
.solution-card:nth-child(3)::before { background: radial-gradient(60% 80% at 50% 0%, rgba(229, 111, 79, 0.12), transparent 70%); }
.solution-card:nth-child(4)::before { background: radial-gradient(60% 80% at 50% 0%, rgba(58, 155, 120, 0.12), transparent 70%); }

.sc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
.sc-num { font-family: var(--mono); font-size: 0.85rem; color: var(--pink-soft); }
.sc-badge {
  font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--pink-soft); border: 1px solid var(--line-pink); border-radius: 100px; padding: 0.25rem 0.8rem;
}
.solution-card h3 { font-size: 1.7rem; margin-bottom: 0.6rem; }
.sc-tagline { color: var(--muted); margin-bottom: 1.1rem; }
.sc-mono { font-family: var(--mono); font-size: 0.78rem; color: rgba(59, 130, 246, 0.75); margin-bottom: 1.6rem; }
.sc-cta { font-family: var(--display); font-weight: 600; font-size: 0.92rem; color: var(--pink-soft); }
.sc-cta em { font-style: normal; display: inline-block; transition: transform 0.3s var(--ease); }
.solution-card:hover .sc-cta em, .product-card:hover .sc-cta em { transform: translateX(6px); }

/* Gradient top-accent that wipes in on hover */
.deliver-card { position: relative; }
.solution-card::after, .product-card::after, .deliver-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 18px 18px 0 0; background: var(--grad);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.solution-card:hover::after, .product-card:hover::after, .deliver-card:hover::after { transform: scaleX(1); }

/* ============ Icons ============ */

.dx-icon { width: 22px; height: 22px; display: block; }

/* Gradient-filled icon tile, reused across grids */
.sc-iconwrap, .ps-iconwrap, .dc-iconwrap, .lp-include-ico {
  flex: none; position: relative; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px; color: #fff;
  background: var(--grad); background-size: 150% 150%;
  box-shadow: 0 8px 20px -8px rgba(37, 94, 219, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.sc-iconwrap { width: 54px; height: 54px; }
.sc-iconwrap .dx-icon { width: 26px; height: 26px; }
.solution-card:hover .sc-iconwrap { transform: translateY(-3px) rotate(-3deg) scale(1.06); box-shadow: 0 18px 34px -12px rgba(37, 94, 219, 0.56); }

.sc-top { gap: 0.9rem; }
.sc-top .sc-num { margin-left: 0.1rem; }
.sc-top .sc-badge { margin-left: auto; }

.ps-iconwrap { width: 46px; height: 46px; margin-bottom: 1rem; }
.dc-top { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.dc-iconwrap { width: 46px; height: 46px; }
.deliver-card:hover .dc-iconwrap { transform: translateY(-3px) rotate(-3deg) scale(1.05); }
.dc-top .dc-num { margin-bottom: 0; }
.lp-include-ico { width: 44px; height: 44px; }
.lp-include-ico .dx-icon { width: 20px; height: 20px; }

/* ============ Process ============ */

.process { padding: 7.5rem 2rem; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-rail {
  max-width: 1280px; margin: 0 auto; list-style: none;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem;
  counter-reset: step;
}
.process-step {
  position: relative; padding: 1.8rem 1.4rem 0; border-top: 1px solid var(--line);
}
.process-step::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 42%; height: 2px;
  background: var(--grad);
}
.ps-num { font-family: var(--mono); font-size: 0.8rem; color: var(--pink-soft); display: block; margin-bottom: 0.8rem; }
.process-step h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--muted); font-size: 0.88rem; }

/* ============ Products ============ */

.products-band { padding: 7.5rem 2rem; max-width: 1280px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }

.product-card {
  display: block; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 18px; padding: 2.6rem 2.4rem;
  background: linear-gradient(165deg, var(--glass), rgba(244, 247, 252, 0.3));
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
  background:
    radial-gradient(42% 48% at 90% 0%, rgba(24, 167, 181, 0.12), transparent 70%),
    radial-gradient(38% 44% at 0% 100%, rgba(37, 94, 219, 0.09), transparent 72%);
}
.product-card:nth-child(2)::before {
  background:
    radial-gradient(42% 48% at 90% 0%, rgba(229, 111, 79, 0.12), transparent 70%),
    radial-gradient(38% 44% at 0% 100%, rgba(58, 155, 120, 0.11), transparent 72%);
}
.product-card > * { position: relative; z-index: 1; }
.product-card:hover { transform: translateY(-8px); border-color: var(--line-pink); box-shadow: 0 30px 60px -30px rgba(24, 167, 181, 0.34); }

.pc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.pc-name { font-family: var(--display); font-weight: 700; font-size: 1.9rem; }
.pc-badge {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--warm); border: 1px solid rgba(213, 161, 59, 0.42); border-radius: 100px; padding: 0.25rem 0.8rem;
}
.pc-badge.alt { color: var(--pink-soft); border-color: var(--line-pink); }
.pc-line { color: var(--muted); margin-bottom: 1.4rem; }
.pc-meta { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 0.8rem 1.2rem; margin-bottom: 1.6rem; }
.pc-price { font-family: var(--display); font-weight: 700; font-size: 1.7rem; }
.pc-price small { display: block; margin-top: 0.12rem; font-size: 0.85rem; font-weight: 400; color: var(--muted); }
.pc-tag { font-family: var(--mono); font-size: 0.75rem; color: var(--pink-soft); line-height: 1.5; padding-top: 0.22rem; }

.pc-visual { margin-bottom: 1.6rem; }
.pc-callcard {
  display: flex; flex-direction: column; gap: 0.45rem;
  border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.3rem;
  background: rgba(247, 250, 253, 0.92);
  font-family: var(--mono); font-size: 0.8rem; color: var(--muted);
}
.cc-row b { color: var(--white); font-weight: 500; }
.cc-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted); margin-right: 0.5rem;
}
.cc-dot.live { background: #43d97b; box-shadow: 0 0 8px rgba(67, 217, 123, 0.8); }

/* Real product screenshot inside a product card */
.pc-shot {
  display: block; margin-bottom: 1.6rem; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 16 / 10; background: var(--bg-3);
}
.pc-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.product-card:hover .pc-shot img { transform: scale(1.04); }

/* ============ Recent work showcase (home) ============ */

.showcase { padding: 7.5rem 2rem; max-width: 1280px; margin: 0 auto; }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.showcase-card {
  display: block; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.showcase-card:hover { transform: translateY(-8px); border-color: var(--line-pink); box-shadow: 0 36px 70px -36px rgba(37, 94, 219, 0.42); }
.showcase-shot { display: block; aspect-ratio: 760 / 510; overflow: hidden; border-bottom: 1px solid var(--line); }
.showcase-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.showcase-card:hover .showcase-shot img { transform: scale(1.04); }
.showcase-meta { display: flex; flex-direction: column; gap: 0.2rem; padding: 1.1rem 1.3rem; }
.showcase-meta strong { font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.showcase-meta em { font-style: normal; font-family: var(--mono); font-size: 0.74rem; color: var(--muted); }
.showcase-cta { font-size: 0.82rem; color: var(--pink-soft); margin-top: 0.35rem; }

/* Real screenshot inside the demo-window browser frame */
.demo-window.has-shot .dw-shot { display: block; line-height: 0; }
.demo-window.has-shot .dw-shot img { width: 100%; height: auto; display: block; }
.demo-window.has-shot { position: relative; }
.dw-overlay {
  position: absolute; inset: 38px 0 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(7,8,12,0.05), rgba(7,8,12,0.45));
  opacity: 0; transition: opacity 0.4s;
}
.demo-window.has-shot:hover .dw-overlay { opacity: 1; }
.dw-overlay-btn {
  font-family: var(--display); font-weight: 600; font-size: 0.9rem; color: #fff;
  background: var(--grad); padding: 0.7rem 1.5rem; border-radius: 10px;
  box-shadow: 0 14px 34px -10px rgba(37, 94, 219, 0.58);
}

/* ============ Stats ============ */

.stats-band {
  position: relative; overflow: hidden; padding: 6rem 2rem; margin: 0 2rem; border-radius: 28px;
  background:
    radial-gradient(50% 80% at 15% 10%, rgba(37, 94, 219, 0.30), transparent 70%),
    radial-gradient(50% 80% at 85% 90%, rgba(24, 167, 181, 0.28), transparent 70%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 40px 90px -50px rgba(20, 29, 51, 0.6);
}
.stats-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(70% 80% at 50% 50%, black, transparent);
}
.stats-inner {
  position: relative; z-index: 1; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--display); font-weight: 700; font-size: clamp(2.6rem, 4.8vw, 3.8rem);
  line-height: 1; background: linear-gradient(120deg, #ffffff, #9fc2ff 60%, #9be0e6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { font-size: 0.82rem; color: var(--muted-on-dark); margin-top: 0.7rem; max-width: 13rem; }

/* ============ Audience / fit ============ */

.audience, .fit-band { padding: 7rem 2rem; max-width: 1180px; margin: 0 auto; }
.audience-grid, .fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.aud-item, .fit-item {
  display: flex; gap: 1rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem 1.7rem;
  background: linear-gradient(165deg, rgba(248, 250, 253, 0.4), transparent);
  font-family: var(--display); font-weight: 500; font-size: 1.02rem;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.aud-item:hover, .fit-item:hover { border-color: var(--line-pink); transform: translateY(-4px); }
.aud-glyph {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 20px -8px rgba(37, 94, 219, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.aud-glyph .dx-icon { width: 21px; height: 21px; }
.aud-item:hover .aud-glyph, .fit-item:hover .aud-glyph { transform: translateY(-3px) rotate(-3deg) scale(1.05); }
.fit-item { font-family: var(--body); font-weight: 300; color: var(--muted); font-size: 0.97rem; }

/* ============ Quote band ============ */

.quote-band { padding: 6.5rem 2rem; background: var(--ink); border-top: 1px solid var(--line); text-align: center; }
.quote-inner { max-width: 840px; margin: 0 auto; }
.quote-band blockquote {
  font-family: var(--display); font-weight: 500; font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.4; margin-bottom: 1.4rem;
}
.quote-band cite { font-family: var(--mono); font-style: normal; font-size: 0.82rem; color: var(--pink-soft); }

/* ============ CTA band ============ */

.cta-band {
  position: relative; overflow: hidden; padding: 7rem 2rem; text-align: center;
  margin: 5rem 2rem; border-radius: 28px;
  background:
    radial-gradient(60% 90% at 12% 15%, rgba(47, 183, 214, 0.34), transparent 70%),
    radial-gradient(60% 90% at 88% 85%, rgba(24, 167, 181, 0.42), transparent 70%),
    linear-gradient(120deg, #255edb, #287bd8 58%, #18a7b5);
  box-shadow: 0 50px 100px -50px rgba(37, 94, 219, 0.5);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, black, transparent);
}
.cta-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.cta-inner .kicker { color: rgba(255, 255, 255, 0.85); }
.cta-inner h2, .cta-inner h2 .accent, .cta-inner .grad { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.cta-inner h2 { margin-bottom: 1.6rem; }
.cta-inner .hero-sub { margin: 0 auto 2rem; color: rgba(255, 255, 255, 0.92); }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--pink); box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.4); }
.cta-band .btn-primary::after { display: none; }
.cta-band .btn-line { border-color: rgba(255, 255, 255, 0.5); color: #fff; background: transparent; }
.cta-band .btn-line:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); color: #fff; }
.cta-band .hero-grid { opacity: 0.25; }

/* ============ Solution / product pages ============ */

.deliver { padding: 7rem 2rem; max-width: 1280px; margin: 0 auto; }
.deliver-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.deliver-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.8rem;
  background: linear-gradient(165deg, var(--glass), rgba(244, 247, 252, 0.25));
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.deliver-card:hover { transform: translateY(-6px); border-color: var(--line-pink); }
.dc-num { font-family: var(--mono); font-size: 0.78rem; color: var(--pink-soft); display: block; margin-bottom: 1rem; }
.deliver-card h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.deliver-card p { color: var(--muted); font-size: 0.9rem; }

.points-band { padding: 6.5rem 2rem; background: var(--ink); border-top: 1px solid var(--line); }
.points-inner { max-width: 880px; margin: 0 auto; }
.points-head { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 2.2rem; }
.points-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.points-list li { display: flex; gap: 1rem; align-items: flex-start; color: var(--muted); }
.pl-mark { color: var(--pink-soft); font-weight: 600; }

/* Pricing */
.pricing-band { padding: 6.5rem 2rem; display: flex; justify-content: center; background: var(--ink); border-top: 1px solid var(--line); }
.pricing-card {
  max-width: 560px; width: 100%; text-align: center;
  border: 1px solid var(--line-pink); border-radius: 20px; padding: 3rem 2.6rem;
  background: linear-gradient(170deg, rgba(37, 94, 219, 0.07), rgba(245, 248, 252, 0.4));
  box-shadow: 0 40px 80px -40px rgba(37, 94, 219, 0.34);
}
.pricing-card h2 { margin-bottom: 0.6rem; }
.price { font-family: var(--display); font-weight: 700; font-size: 3.2rem; margin-bottom: 1.6rem; }
.price small { font-size: 1rem; font-weight: 400; color: var(--muted); margin-left: 0.4rem; }
.pricing-card .points-list { text-align: left; margin-bottom: 2rem; }

/* Reviews */
.reviews { padding: 7rem 2rem; max-width: 1280px; margin: 0 auto; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.8rem;
  background: linear-gradient(165deg, var(--glass), rgba(244, 247, 252, 0.25));
}
.review-stars { color: var(--warm); letter-spacing: 0.2em; margin-bottom: 1rem; }
.review-card blockquote { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }
.review-card figcaption strong { display: block; font-family: var(--display); font-weight: 600; }
.review-card figcaption span { font-size: 0.8rem; color: var(--pink-soft); font-family: var(--mono); }

/* ============ About page ============ */

.story { padding: 7rem 2rem; }
.story-inner { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 4.5rem; }
.story-block h2 { margin-bottom: 1.4rem; }
.story-block p { color: var(--muted); margin-bottom: 1.1rem; }

.impact-projects {
  padding: 7rem 2rem;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impact-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.impact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem;
  background: linear-gradient(165deg, var(--glass), rgba(244, 247, 252, 0.26));
  box-shadow: 0 1px 2px rgba(18, 33, 58, 0.04), 0 18px 38px -24px rgba(18, 33, 58, 0.22);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.impact-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-pink);
  box-shadow: 0 34px 66px -36px rgba(37, 94, 219, 0.4);
}
.impact-label {
  display: inline-flex;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-soft);
}
.impact-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}
.impact-card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.impact-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
}
.impact-card li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.impact-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink-soft);
}
.impact-card a {
  color: var(--pink-soft);
  border-bottom: 1px solid var(--line-pink);
}
.impact-card a:hover { color: var(--white); }

.team { padding: 7rem 2rem; background: var(--ink); border-top: 1px solid var(--line); }
.team-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.team-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 1.4rem 1.4rem 2rem; text-align: left;
  background: linear-gradient(165deg, var(--glass), rgba(244, 247, 252, 0.25));
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--line-pink); box-shadow: 0 30px 60px -34px rgba(37, 94, 219, 0.38); }
.tc-photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden;
  margin-bottom: 1.4rem; border: 1px solid var(--line); background: var(--bg-3);
}
.tc-photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(244, 247, 252, 0.55) 100%);
}
.tc-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.6s var(--ease);
}
.team-card:hover .tc-photo img { transform: scale(1.04); }
.tc-avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 0 1.4rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  background: var(--grad); color: var(--on-accent);
  box-shadow: 0 14px 34px -12px rgba(37, 94, 219, 0.5);
}
.team-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; padding: 0 0.3rem; }
.tc-role { font-family: var(--mono); font-size: 0.78rem; color: var(--pink-soft); margin-bottom: 1rem; padding: 0 0.3rem; }
.tc-bio { color: var(--muted); font-size: 0.9rem; padding: 0 0.3rem; }

/* ============ Contact ============ */

.contact-body { padding: 5.5rem 2rem 7.5rem; }
.contact-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 2.2rem;
}
.contact-form {
  border: 1px solid var(--line); border-radius: 18px; padding: 2.6rem;
  background: linear-gradient(165deg, var(--glass), rgba(244, 247, 252, 0.25));
  display: flex; flex-direction: column; gap: 1.3rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form label {
  display: block;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink-soft);
}
.contact-form input, .contact-form select, .contact-form textarea {
  background: rgba(247, 250, 253, 0.92); border: 1px solid rgba(18, 33, 58, 0.18); border-radius: 10px;
  color: var(--white); font-family: var(--body); font-size: 0.98rem; font-weight: 300;
  padding: 0.85rem 1rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(37, 94, 219, 0.16);
}
.contact-form .btn { align-self: flex-start; }
.form-status { font-family: var(--mono); font-size: 0.85rem; color: var(--pink-soft); min-height: 1.4em; }

.contact-aside { display: flex; flex-direction: column; gap: 1.2rem; }
.aside-card { border: 1px solid var(--line); border-radius: 16px; padding: 1.7rem 1.8rem; }
.aside-card h3 { font-family: var(--mono); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink-soft); margin-bottom: 0.7rem; }
.aside-card p { color: var(--muted); font-size: 0.95rem; }

/* ============ See it live (demo band) ============ */

.demo-band { padding: 6.5rem 2rem; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.demo-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3.5rem; align-items: center;
}
.demo-copy h2 { margin-bottom: 1.2rem; }
.demo-copy .hero-sub { margin: 0 0 1.8rem; }
.demo-copy .hero-actions { justify-content: flex-start; }
.play-glyph { color: var(--pink-soft); font-size: 0.8rem; margin-right: 0.3rem; }

.demo-window {
  display: block; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: rgba(247, 250, 253, 0.95);
  box-shadow: 0 40px 80px -40px rgba(24, 167, 181, 0.34);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.demo-window:hover { transform: translateY(-6px); border-color: var(--line-pink); box-shadow: 0 48px 90px -40px rgba(37, 94, 219, 0.46); }
.dw-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1rem; border-bottom: 1px solid var(--line); background: rgba(248, 250, 253, 0.7);
}
.dw-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(152, 160, 179, 0.4); display: block; }
.dw-bar i:first-child { background: #ff5f57; }
.dw-bar i:nth-child(2) { background: #febc2e; }
.dw-bar i:nth-child(3) { background: #28c840; }
.dw-url { margin-left: 0.7rem; font-family: var(--mono); font-size: 0.78rem; color: var(--muted); }
.dw-body {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  min-height: 230px;
  background:
    radial-gradient(50% 70% at 50% 40%, rgba(37, 94, 219, 0.13), transparent 70%),
    linear-gradient(135deg, rgba(24, 167, 181, 0.12), transparent),
    repeating-linear-gradient(0deg, rgba(18,33,58,0.05) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(18,33,58,0.05) 0 1px, transparent 1px 28px);
}
.dw-play {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad); color: var(--on-accent); font-size: 1.3rem; padding-left: 4px;
  box-shadow: 0 14px 34px -10px rgba(37, 94, 219, 0.58);
  transition: transform 0.4s var(--ease);
}
.demo-window:hover .dw-play { transform: scale(1.08); }
.dw-label { font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink-soft); }

.dd-ext, .pc-ext { color: var(--pink-soft); font-size: 0.75em; }

/* Embedded video facade (click-to-play) */
.demo-video {
  position: relative; display: block; aspect-ratio: 16 / 9;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: #000; cursor: pointer;
  box-shadow: 0 40px 80px -40px rgba(24, 167, 181, 0.34);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.demo-video:hover { transform: translateY(-6px); border-color: var(--line-pink); box-shadow: 0 48px 90px -40px rgba(37, 94, 219, 0.46); }
.dv-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease), opacity 0.4s; }
.demo-video:hover .dv-thumb { transform: scale(1.05); opacity: 0.9; }
.dv-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad); box-shadow: 0 16px 40px -10px rgba(37, 94, 219, 0.62);
  transition: transform 0.35s var(--ease);
}
.dv-play::before {
  content: ''; margin-left: 6px;
  border-style: solid; border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}
.demo-video:hover .dv-play { transform: translate(-50%, -50%) scale(1.09); }
.dv-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1.4rem 1.2rem 1rem; font-family: var(--mono); font-size: 0.76rem; color: #fff;
  background: linear-gradient(transparent, rgba(18, 33, 58, 0.12));
}
.demo-video.is-playing { cursor: default; }
.demo-video.is-playing .dv-thumb, .demo-video.is-playing .dv-play, .demo-video.is-playing .dv-cap { display: none; }
.dv-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============ Website Sprint landing page ============ */

.lp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0.9rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.lp-header.scrolled {
  background: rgba(244, 247, 252, 0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 18px 40px -24px rgba(18, 33, 58, 0.13); padding: 0.55rem 0;
}
.lp-header-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lp-site-nav { gap: 1.25rem; }
.lp-header-cta { display: flex; align-items: center; gap: 1rem; margin-left: auto; }

.lp-phone { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--white); }
.lp-phone-glyph {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
  background: rgba(37, 94, 219, 0.12); border: 1px solid var(--line-pink); color: var(--pink-soft);
  transition: background 0.3s, transform 0.3s;
}
.lp-phone:hover .lp-phone-glyph { background: rgba(37, 94, 219, 0.22); transform: scale(1.06); }
.lp-phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.lp-phone-label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.lp-phone-text strong { font-family: var(--display); font-weight: 600; font-size: 1.02rem; }

.lp-hero {
  position: relative; overflow: hidden; padding: 8.5rem 2rem 4rem;
  background: radial-gradient(120% 100% at 75% -10%, #edf5fb 0%, var(--bg) 55%, var(--ink) 100%);
}
.lp-hero-inner {
  position: relative; z-index: 2; max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 3.5rem; align-items: center;
}
.lp-h1 { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 4.6vw, 3.5rem); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 1.3rem; }
.lp-sub { color: var(--muted); font-size: 1.12rem; margin-bottom: 1.6rem; max-width: 34rem; }
.lp-sub strong { color: var(--white); font-weight: 600; }
.lp-ticks { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.lp-ticks li { position: relative; padding-left: 1.9rem; color: var(--white); }
.lp-ticks li::before {
  content: '+'; position: absolute; left: 0; top: 0; color: var(--pink-soft); font-weight: 700;
}
.lp-hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.lp-phone-lg .lp-phone-glyph { width: 46px; height: 46px; font-size: 1.2rem; }
.lp-phone-lg .lp-phone-text strong { font-size: 1.25rem; }

/* Lead form card */
.lp-form-card {
  position: relative; z-index: 2;
  border: 1px solid var(--line-pink); border-radius: 20px; padding: 2.2rem;
  background: linear-gradient(170deg, rgba(248, 250, 253, 0.92), rgba(244, 247, 252, 0.85));
  box-shadow: 0 50px 100px -45px rgba(37, 94, 219, 0.46);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lp-form-head { margin-bottom: 1.4rem; }
.lp-form-head h2 { font-size: 1.55rem; margin-bottom: 0.4rem; }
.lp-form-head p { color: var(--muted); font-size: 0.92rem; }
.lp-form { display: flex; flex-direction: column; gap: 0.95rem; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.95rem; }
.lp-form label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink-soft);
}
.lp-form label .opt { color: var(--muted); text-transform: none; letter-spacing: 0; }
.lp-form input, .lp-form select, .lp-form textarea {
  background: rgba(247, 250, 253, 0.95); border: 1px solid rgba(18, 33, 58, 0.18); border-radius: 9px;
  color: var(--white); font-family: var(--body); font-size: 0.96rem; font-weight: 300;
  padding: 0.72rem 0.9rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.lp-form input:focus, .lp-form select:focus, .lp-form textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(37, 94, 219, 0.16);
}
.lp-submit { margin-top: 0.4rem; width: 100%; text-align: center; font-size: 1rem; }
.lp-form-foot { font-size: 0.85rem; color: var(--muted); text-align: center; }
.lp-form-foot a { color: var(--pink-soft); border-bottom: 1px solid var(--line-pink); }
.lp-form-foot a:hover { color: var(--white); }
.lp-form-status { font-family: var(--body); font-size: 0.9rem; color: var(--pink-soft); min-height: 1em; }
.lp-form-status.ok { color: #43d97b; }
.lp-form-status.err { color: #ff6b6b; }
/* Honeypot - must be fully invisible to humans yet present for bots.
   Belt-and-braces: off-screen, zero-size, zero-opacity, non-interactive,
   with !important so no later rule can reveal it. */
.lp-hp {
  position: absolute !important;
  left: -10000px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 0 !important;
  max-width: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.lp-hp label,
.lp-hp input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.lp-form-banner { border-radius: 10px; padding: 0.8rem 1rem; margin-bottom: 1.2rem; font-size: 0.92rem; }
.lp-form-banner.ok { background: rgba(67, 217, 123, 0.12); border: 1px solid rgba(67, 217, 123, 0.4); color: #6ee7a0; }
.lp-form-banner.err { background: rgba(255, 107, 107, 0.1); border: 1px solid rgba(255, 107, 107, 0.4); color: #ff9b9b; }

/* Trust strip */
.lp-trust {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.2rem;
  padding: 1.1rem 2rem; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted); text-align: center;
}
.lp-trust i { color: var(--pink); font-size: 0.6rem; }

/* Price band */
.lp-price { padding: 6rem 2rem; }
.lp-price-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 3rem; align-items: center;
}
.lp-price-copy h2 { margin-bottom: 1.1rem; }
.lp-price-copy .lp-sub { margin-bottom: 1.8rem; }
.lp-price-badge {
  text-align: center; border: 1px solid var(--line-pink); border-radius: 20px; padding: 2.4rem 1.6rem;
  background: linear-gradient(170deg, rgba(37, 94, 219, 0.09), rgba(245, 248, 252, 0.4));
  box-shadow: 0 40px 80px -45px rgba(37, 94, 219, 0.42);
}
.lpb-from { display: block; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.lpb-amount { display: block; font-family: var(--display); font-weight: 700; font-size: 3.4rem; line-height: 1.1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lpb-note { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }

/* Includes */
.lp-includes { padding: 6rem 2rem; max-width: 1180px; margin: 0 auto; }
.lp-includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.lp-include {
  display: flex; gap: 1rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1.6rem;
  background: linear-gradient(165deg, rgba(248, 250, 253, 0.4), transparent);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.lp-include:hover { border-color: var(--line-pink); transform: translateY(-4px); }
.lp-include-tick { color: var(--pink-soft); font-weight: 700; font-size: 1.1rem; flex: none; }
.lp-include h3 { font-size: 1.08rem; margin-bottom: 0.25rem; }
.lp-include p { color: var(--muted); font-size: 0.88rem; }

/* Proof / portfolio */
.lp-proof { padding: 6rem 2rem; max-width: 1280px; margin: 0 auto; }
.lp-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lp-proof-card {
  display: block; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.lp-proof-card:hover { transform: translateY(-8px); border-color: var(--line-pink); box-shadow: 0 36px 70px -36px rgba(37, 94, 219, 0.42); }
.lp-proof-shot { display: block; aspect-ratio: 760 / 510; overflow: hidden; border-bottom: 1px solid var(--line); }
.lp-proof-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.lp-proof-card:hover .lp-proof-shot img { transform: scale(1.04); }
.lp-proof-meta { display: flex; flex-direction: column; gap: 0.25rem; padding: 1.2rem 1.4rem; }
.lp-proof-meta strong { font-family: var(--display); font-weight: 600; font-size: 1.12rem; }
.lp-proof-meta em { font-style: normal; font-family: var(--mono); font-size: 0.76rem; color: var(--muted); }
.lp-proof-cta { font-size: 0.85rem; color: var(--pink-soft); margin-top: 0.4rem; }

/* Process (reuse rail, 4-up) */
.lp-process { padding: 6rem 2rem; background: var(--ink); border-top: 1px solid var(--line); }
.lp-process-rail { grid-template-columns: repeat(4, 1fr); }

.lp-final { padding-top: 7rem; padding-bottom: 7rem; }
.lp-final .hero-actions { justify-content: center; }

/* Landing footer */
.lp-footer { position: relative; background: var(--ink); border-top: 1px solid var(--line); }
.lp-footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 3.5rem 2rem 2.5rem;
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 3rem; align-items: start;
}
.lp-footer-brand .footer-logo { height: 20px; width: auto; margin-bottom: 1.2rem; }
.lp-footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.lp-footer-phone { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--white); }
.lp-footer-phone:hover { color: var(--pink-soft); }
.lp-footer-contact a { color: var(--muted); transition: color 0.3s; }
.lp-footer-contact a:hover { color: var(--white); }
.lp-footer-contact span { color: var(--muted); font-size: 0.9rem; }
.lp-footer-actions { display: flex; gap: 0.8rem; margin-top: 1rem; flex-wrap: wrap; }

@media (max-width: 1180px) {
  .lp-header-cta .lp-phone-text { display: none; }
}

@media (max-width: 980px) {
  .lp-header-cta { display: none; }
  .lp-header .nav-toggle { display: block; }
  .lp-header .site-nav {
    position: fixed; inset: 0; z-index: 105;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  }
  .lp-header .site-nav.open { opacity: 1; visibility: visible; }
  .lp-header .site-nav > a, .lp-header .nav-drop-toggle { font-size: 1.1rem; }
  .lp-header .nav-dropdown {
    position: static; transform: none; min-width: 0; border: none; box-shadow: none;
    background: transparent; opacity: 1; visibility: visible; display: none; text-align: center;
  }
  .lp-header .nav-group.open .nav-dropdown { display: block; transform: none; }
  .lp-header .nav-group { text-align: center; }
  .lp-header .nav-dropdown a { justify-content: center; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-price-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-includes-grid { grid-template-columns: 1fr; }
  .lp-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-process-rail { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 620px) {
  .lp-header-cta .lp-phone-text { display: none; }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-proof-grid { grid-template-columns: 1fr; }
  .lp-process-rail { grid-template-columns: 1fr; }
  .lp-trust { gap: 0.7rem; font-size: 0.74rem; }
}

/* ============ Plain page ============ */

.plain-page { padding: 10rem 2rem 6rem; min-height: 60vh; }
.plain-inner { max-width: 760px; margin: 0 auto; }
.plain-title { font-size: 2.4rem; margin-bottom: 2rem; }
.plain-content p { color: var(--muted); margin-bottom: 1.1rem; }

/* ============ Blog / insights ============ */

.blog-page { background: var(--bg); color: var(--white); }
.blog-hero {
  position: relative; overflow: hidden; padding: 10rem 2rem 5.5rem;
  background:
    radial-gradient(55% 45% at 80% 10%, rgba(24, 167, 181, 0.11), transparent 70%),
    radial-gradient(55% 50% at 15% 8%, rgba(37, 94, 219, 0.10), transparent 70%),
    linear-gradient(180deg, #f5f8fc 0%, var(--bg) 62%, var(--ink) 100%);
}
.blog-hero-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; text-align: center; }
.blog-hero .hero-sub { margin-left: auto; margin-right: auto; }
.blog-list { max-width: 1220px; margin: 0 auto; padding: 5.5rem 2rem 7rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  display: flex; flex-direction: column; min-height: 100%;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: linear-gradient(165deg, var(--glass), rgba(245, 248, 252, 0.35));
  box-shadow: 0 1px 2px rgba(18, 33, 58, 0.04), 0 18px 38px -24px rgba(18, 33, 58, 0.22);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.blog-card:hover { transform: translateY(-7px); border-color: var(--line-pink); box-shadow: 0 34px 70px -36px rgba(37, 94, 219, 0.42); }
.blog-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); border-bottom: 1px solid var(--line); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-fallback {
  display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;
  font-family: var(--display); font-size: 4rem; font-weight: 700; color: var(--on-accent); background: var(--grad);
}
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.45rem; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 0.8rem; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pink-soft); margin-bottom: 0.9rem; }
.blog-card h2 { font-size: 1.22rem; line-height: 1.18; margin-bottom: 0.8rem; letter-spacing: -0.01em; }
.blog-card h2 a:hover { color: var(--pink); }
.blog-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.2rem; }
.blog-read { margin-top: auto; font-family: var(--display); font-size: 0.9rem; font-weight: 600; color: var(--pink-soft); }
.blog-read:hover { color: var(--pink); }
.blog-pagination { margin-top: 3rem; text-align: center; }
.blog-pagination .nav-links { display: inline-flex; gap: 0.7rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.blog-pagination a, .blog-pagination span {
  border: 1px solid var(--line); border-radius: 9px; padding: 0.55rem 0.8rem; color: var(--muted); background: rgba(255,255,255,0.7);
}
.blog-pagination .current, .blog-pagination a:hover { color: var(--pink); border-color: var(--line-pink); }
.blog-empty {
  max-width: 760px; margin: 0 auto; text-align: center; border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(165deg, var(--glass), rgba(245, 248, 252, 0.35)); padding: 3rem 2rem;
}
.blog-empty p:last-child { color: var(--muted); margin-top: 1rem; }

.article-page { padding: 9rem 2rem 6rem; background: linear-gradient(180deg, #f5f8fc 0%, var(--bg) 28%, var(--bg) 100%); }
.article-inner { max-width: 880px; margin: 0 auto; }
.article-hero { text-align: center; margin-bottom: 2.5rem; }
.article-meta { justify-content: center; margin-top: 1.4rem; }
.article-featured { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); margin-bottom: 2.8rem; box-shadow: 0 32px 70px -38px rgba(18, 33, 58, 0.35); }
.article-featured img { width: 100%; height: auto; }
.article-content { color: var(--white); font-size: 1.05rem; line-height: 1.85; }
.article-content > * + * { margin-top: 1.15rem; }
.article-content p, .article-content li { color: var(--muted); }
.article-content h2, .article-content h3 { margin-top: 2.2rem; }
.article-content a { color: var(--pink); border-bottom: 1px solid var(--line-pink); }
.article-content ul, .article-content ol { padding-left: 1.4rem; }
.article-content img { border-radius: 14px; }

/* ============ Footer ============ */

.site-footer { position: relative; background: var(--ink); border-top: 1px solid var(--line); overflow: hidden; }
.footer-grid-bg {
  position: absolute; inset: 0; opacity: 0.35; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 60% at 50% 0%, black, transparent);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, black, transparent);
}
.footer-inner {
  position: relative; max-width: 1280px; margin: 0 auto; padding: 4.5rem 2rem 3rem;
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 4rem;
}
.footer-logo { height: 20px; width: auto; margin-bottom: 1.3rem; }
.footer-tag { color: var(--muted); font-size: 0.95rem; max-width: 22rem; margin-bottom: 1rem; }
.footer-mono { font-family: var(--mono); font-size: 0.78rem; color: var(--muted); line-height: 1.9; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col h4 {
  font-family: var(--mono); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink-soft); margin-bottom: 0.5rem;
}
.footer-col a { color: var(--muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-base { position: relative; border-top: 1px solid var(--line); padding: 1.5rem 2rem; text-align: center; }
.footer-base p { color: var(--muted); font-size: 0.8rem; }

/* ============ Reveal ============ */

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ Responsive ============ */

@media (max-width: 1080px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid, .product-grid { grid-template-columns: 1fr; }
  .studio-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .studio-copy { text-align: center; }
  .studio-copy p { margin-left: auto; margin-right: auto; }
  .studio-notes { justify-content: center; }
  .studio-system { max-width: 680px; width: 100%; margin: 0 auto; }
  .process-rail { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .deliver-grid, .review-grid, .team-grid, .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .demo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-inner.hero-split, .page-hero-inner.hero-split { grid-template-columns: 1fr; text-align: center; gap: 3rem; max-width: 720px; }
  .hero-split .hero-actions, .hero-split .hero-trust,
  .page-hero-inner.hero-split .hero-actions { justify-content: center; }
  .hero-split .hero-sub, .page-hero-inner.hero-split .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-split .hero-kicker { margin-left: auto; margin-right: auto; }
  .hero-terminal { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .hero-mockup, .hero-panel { transform: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-toggle span { background: var(--white); }
  .site-nav {
    position: fixed; inset: 0; z-index: 105;
    align-items: stretch;
    background:
      radial-gradient(circle at 12% 0%, rgba(37, 94, 219, 0.10), transparent 34%),
      radial-gradient(circle at 88% 8%, rgba(24, 167, 181, 0.12), transparent 34%),
      rgba(255, 255, 255, 0.98);
    flex-direction: column; justify-content: flex-start; gap: 0.75rem;
    min-height: 100svh;
    padding: 5.75rem 1.05rem 1.4rem;
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.28s, visibility 0.28s, transform 0.28s;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a, .nav-drop-toggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px -22px rgba(18, 33, 58, 0.22);
    font-size: 1rem;
    text-align: left;
  }
  .site-nav > a::after, .nav-drop-toggle::after { display: none; }
  .nav-drop-toggle .caret {
    width: 1.6rem;
    height: 1.6rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(37, 94, 219, 0.10);
    color: var(--pink-soft);
  }
  .nav-group.open .nav-drop-toggle .caret { transform: rotate(45deg); }
  .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 0.55rem;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    display: grid;
    gap: 0.55rem;
    text-align: left;
  }
  .nav-group { text-align: left; }
  .nav-dropdown a {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(20, 29, 51, 0.08);
    border-radius: 12px;
    background: rgba(245, 248, 252, 0.9);
  }
  .nav-dropdown .dd-num { flex: 0 0 auto; padding-top: 0.14rem; }
  .nav-dropdown strong { font-size: 0.95rem; line-height: 1.25; }
  .nav-dropdown em { margin-top: 0.12rem; font-size: 0.77rem; line-height: 1.35; }
  .site-nav .nav-action {
    justify-content: center;
    margin-top: 0.35rem;
    background: var(--grad);
    color: var(--on-accent) !important;
    border-color: transparent;
    box-shadow: 0 18px 36px -22px rgba(37, 94, 219, 0.55);
  }
  .process-rail { grid-template-columns: 1fr; }
  .studio-story {
    margin: 3.5rem 1rem 5rem;
    padding: 3rem 1.1rem;
    border-radius: 22px;
  }
  .studio-system { min-height: auto; display: grid; grid-template-columns: 1fr; gap: 1rem; }
  .studio-system::before { inset: 10% 0 6%; }
  .studio-system-body { grid-template-columns: 1fr; }
  .studio-system-bar span { max-width: 68%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .system-card { min-height: 0; }
  .system-proof,
  .system-proof-one,
  .system-proof-two {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    min-width: 0;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding-top: 8rem; }
  .article-page { padding-top: 8rem; }
  .audience-grid, .fit-grid, .deliver-grid, .review-grid, .team-grid, .showcase-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-body { padding: 4.5rem 1rem 6rem; }
  .contact-form { width: 100%; padding: 1.35rem; border-radius: 14px; }
  .contact-form input, .contact-form select, .contact-form textarea { min-width: 0; width: 100%; }
  .contact-aside .aside-card { padding: 1.35rem; }
  .hero { padding-top: 7rem; }
  .hero-terminal { min-width: 0; width: 100%; }
  .footer-cols { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hm-chip-1, .hm-chip-3 { display: none; }
  .hm-chip-2 { right: 2%; }
  .hero-trust { gap: 1rem; }
  .stats-band, .cta-band { margin-left: 1rem; margin-right: 1rem; border-radius: 20px; }
}
