/* ==========================================================================
   TEKSJM — creative.css  ·  "LIQUID" direction
   Dark, cinematic, fluid. Metaball liquid blobs + Animotion mesh/aurora glow,
   glass surfaces, grain, cursor light. Teal/emerald dominant, warm-gold accent.
   Fonts: Bricolage Grotesque (display) + Hanken Grotesk (body).
   Animations sourced from Animotion MCP (B02 aurora, B03 mesh, T11 blur reveal,
   T26 slide-up) and adapted to this palette.
   ========================================================================== */

.theme-liquid {
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-head: "Bricolage Grotesque", "Hanken Grotesk", sans-serif;

  --bg: #07080c;
  --bg-2: #0b0d13;
  --ink: #f3f2ec;
  --ink-strong: #ffffff;
  --ink-soft: #aeb7c0;
  --line: rgba(255,255,255,.09);

  --teal: #2dd4bf;
  --emerald: #34d399;
  --aqua: #22d3ee;
  --gold: #e9b15a;
  --accent: #2dd4bf;

  --glass: rgba(255,255,255,.045);
  --glass-2: rgba(255,255,255,.07);
  --glass-brd: rgba(255,255,255,.10);

  --grad-liquid: linear-gradient(108deg, #2dd4bf 0%, #34d399 38%, #22d3ee 70%, #e9b15a 100%);

  --card-radius: 22px;
  --btn-radius: 100px;
  color-scheme: dark;
}

/* ---------- Base overrides ---------- */
.theme-liquid { background: var(--bg); color: var(--ink); }
.theme-liquid body, body.theme-liquid { background: var(--bg); }
body.theme-liquid { cursor: auto; }
.theme-liquid ::selection { background: rgba(45,212,191,.3); color: #fff; }

/* Grain + vignette overlays */
.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.vignette { position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% -10%, transparent 55%, rgba(0,0,0,.55) 100%); }

/* ---------- Liquid aurora field (Animotion B03 mesh + B02 aurora, re-tinted) ---------- */
.liquid-field { position: fixed; inset: -10% -10% -10% -10%; z-index: 0; pointer-events: none; filter: blur(8px) saturate(160%); opacity: .5; will-change: transform; }
@keyframes animotion-meshGradient { 0%,100% { background-position: 0% 0%; } 25% { background-position: 50% 50%; } 50% { background-position: 100% 100%; } 75% { background-position: 50% 0%; } }
.mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(at 22% 26%, rgba(45,212,191,.55) 0%, transparent 46%),
    radial-gradient(at 78% 18%, rgba(34,211,238,.42) 0%, transparent 44%),
    radial-gradient(at 64% 78%, rgba(52,211,153,.38) 0%, transparent 46%),
    radial-gradient(at 12% 82%, rgba(233,177,90,.30) 0%, transparent 44%);
  background-size: 200% 200%;
  animation: animotion-meshGradient 18s ease-in-out infinite;
}

/* ---------- Metaball liquid core (uses #goo filter from inline SVG) ---------- */
.goo-wrap { filter: url(#goo); }
@keyframes orbit1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(26px,-18px) scale(1.08); } 66% { transform: translate(-16px,14px) scale(.94); } }
@keyframes orbit2 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-22px,16px) scale(.92); } 66% { transform: translate(18px,-20px) scale(1.1); } }
@keyframes orbit3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,22px) scale(1.06); } }

/* ---------- Reveal (blur variant, matches Animotion T11) ---------- */
.theme-liquid .reveal { opacity: 0; transform: translateY(30px); filter: blur(14px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1), filter .9s; }
.theme-liquid .reveal.in { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .theme-liquid .reveal { opacity: 1; transform: none; filter: none; }
  .mesh, .blob-c, .marquee-track { animation: none !important; }
  .hero .load { animation: none !important; opacity: 1; }
  .cursor-glow { display: none; }
}
/* Focus-visible (a11y) */
.theme-liquid a:focus-visible, .theme-liquid button:focus-visible, .theme-liquid .nav-toggle:focus-visible,
.theme-liquid summary:focus-visible, .theme-liquid .work-tile:focus-visible {
  outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 6px;
}

/* ---------- Cursor glow ---------- */
.cursor-glow { position: fixed; top: 0; left: 0; width: 320px; height: 320px; border-radius: 50%; z-index: 2; pointer-events: none; will-change: transform;
  background: radial-gradient(closest-side, rgba(45,212,191,.18), transparent 70%); transform: translate(-50%,-50%); mix-blend-mode: screen; transition: opacity .3s; opacity: 0; }
@media (hover: hover) and (pointer: fine) { .cursor-glow.on { opacity: 1; } }

/* ---------- Typography ---------- */
.theme-liquid h1,.theme-liquid h2,.theme-liquid h3 { color: var(--ink-strong); letter-spacing: -.025em; font-weight: 700; }
.theme-liquid .h-hero { font-size: clamp(3.1rem, 8.4vw, 7rem); line-height: .92; font-weight: 700; }
.theme-liquid .h-sec { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.02; }
.theme-liquid .lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.grad-text { background: var(--grad-liquid); -webkit-background-clip: text; background-clip: text; color: transparent; }
.out-text { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.82); }
.eyebrow { color: var(--teal); }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, var(--teal), transparent); display: inline-block; }

/* ---------- Header ---------- */
.theme-liquid .site-header { background: rgba(7,8,12,.55); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px) saturate(140%); }
.theme-liquid .brand .logo-text { color: #fff; }
.theme-liquid .brand .logo-text b { background: var(--grad-liquid); -webkit-background-clip: text; background-clip: text; color: transparent; }
.theme-liquid .brand .logo-tag { color: var(--ink-soft); }
.theme-liquid .nav-links a { color: #b9c2cb; }
.theme-liquid .nav-links a:hover { color: #fff; }
.theme-liquid .nav-toggle { color: #fff; }
.theme-liquid .nav-drawer { background: var(--bg-2); border-color: var(--line); }
.theme-liquid .nav-drawer a { color: #cfd6dd; border-color: var(--line); }

/* ---------- Buttons ---------- */
.theme-liquid .btn-primary { background: linear-gradient(100deg, #2dd4bf 0%, #34d399 52%, #22d3ee 100%); color: #04201c; font-weight: 700; box-shadow: 0 0 0 1px rgba(45,212,191,.4), 0 14px 40px -10px rgba(45,212,191,.6); position: relative; overflow: hidden; }
.theme-liquid .btn-primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%); transform: translateX(-130%); transition: transform .7s; }
.theme-liquid .btn-primary:hover::after { transform: translateX(130%); }
.theme-liquid .btn-primary:hover { transform: translateY(-2px); }
.theme-liquid .btn-ghost { background: var(--glass); color: #fff; border: 1px solid var(--glass-brd); backdrop-filter: blur(8px); }
.theme-liquid .btn-ghost:hover { border-color: rgba(45,212,191,.55); color: var(--teal); background: var(--glass-2); }

/* ---------- Hero ---------- */
.hero { position: relative; z-index: 3; padding-top: clamp(50px, 9vw, 120px); padding-bottom: clamp(40px, 6vw, 90px); overflow: visible; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 40px; align-items: center; position: relative; z-index: 3; }
.hero-copy .lead { margin-top: 26px; max-width: 46ch; }
.hero .h-hero { margin-top: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.theme-liquid .pill { background: rgba(255,255,255,.06); border: 1px solid var(--glass-brd); color: #c7d0d8; }
.theme-liquid .pill b { color: var(--teal); }

/* hero load stagger (Animotion blur/slide reveal) */
@keyframes animotion-blurRevealText { from { opacity: 0; filter: blur(15px); transform: translateY(16px); } to { opacity: 1; filter: blur(0); transform: none; } }
.hero .load { opacity: 0; animation: animotion-blurRevealText .95s cubic-bezier(.2,.7,.2,1) forwards; }
.hero .load.d1 { animation-delay: .05s; } .hero .load.d2 { animation-delay: .18s; }
.hero .load.d3 { animation-delay: .32s; } .hero .load.d4 { animation-delay: .46s; } .hero .load.d5 { animation-delay: .6s; }

/* hero liquid visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 420px; }
.liquid-core { width: min(460px, 92%); aspect-ratio: 1; position: relative; }
.blob-c { position: absolute; border-radius: 50%; will-change: transform; }
.blob-a { inset: 10% 12% 16% 12%; background: radial-gradient(circle at 35% 30%, #5eead4, #14b8a6 60%, #0d9488); animation: orbit1 9s ease-in-out infinite; }
.blob-b { inset: 8% 22% 26% 22%; width: 54%; height: 54%; background: radial-gradient(circle at 40% 35%, #67e8f9, #22d3ee 55%, #0891b2); animation: orbit2 11s ease-in-out infinite; }
.blob-d { inset: auto 16% 8% 16%; width: 52%; height: 52%; background: radial-gradient(circle at 40% 35%, #fcd9a0, #e9b15a 60%, #c98b2e); animation: orbit3 13s ease-in-out infinite; }
.core-label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; z-index: 5; }
.core-label .cl-name { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: #04201c; letter-spacing: -.02em; }
.core-label .cl-sub { font-size: .68rem; letter-spacing: .32em; color: rgba(4,32,28,.7); font-weight: 700; margin-top: 4px; }
.orbit-tag { position: absolute; display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 100px; background: rgba(10,13,19,.82); border: 1px solid var(--glass-brd); color: #d7dee5; font-size: .82rem; font-weight: 600; z-index: 6; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.orbit-tag svg { width: 16px; height: 16px; }
.ot-1 { top: 4%; left: 2%; color: var(--teal); } .ot-1 svg { color: var(--teal); }
.ot-2 { top: 38%; right: -4%; color: var(--aqua); } .ot-2 svg { color: var(--aqua); }
.ot-3 { bottom: 4%; left: 10%; color: var(--gold); } .ot-3 svg { color: var(--gold); }

/* ---------- Section frame ---------- */
.theme-liquid .section { position: relative; z-index: 3; padding-block: clamp(78px, 11vw, 138px); }
.theme-liquid .sec-head { margin-bottom: 56px; }
.theme-liquid .sec-head .lead { margin-inline: auto; }
.divider-glow { height: 1px; background: linear-gradient(90deg, transparent, rgba(45,212,191,.4), transparent); border: 0; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: scrollx 32s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 22px; padding: 16px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: #cdd5dd; letter-spacing: -.01em; }
.marquee-track span::after { content: "✦"; color: var(--teal); font-size: .8rem; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Glass cards (generic) ---------- */
.theme-liquid .card, .glass {
  background: rgba(255,255,255,.045); border: 1px solid var(--glass-brd); border-radius: var(--card-radius);
  backdrop-filter: blur(10px); position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .4s, background .3s;
}
@media (prefers-reduced-motion: no-preference) {
  .theme-liquid .card:hover { transform: translateY(-8px); }
}
.theme-liquid .card:hover { border-color: rgba(45,212,191,.42); background: rgba(255,255,255,.07); box-shadow: 0 30px 60px -20px rgba(0,0,0,.7); }

/* ---------- Problem ---------- */
.vs-before { display: flex; align-items: center; justify-content: center; gap: clamp(8px,3vw,40px); flex-wrap: wrap; margin-bottom: 34px; }
.vendor-node { text-align: center; }
.vendor-node .vn-ico { width: 96px; height: 96px; border-radius: 26px; display: grid; place-items: center; font-size: 40px; background: rgba(255,255,255,.05); border: 1px solid var(--glass-brd); margin-bottom: 12px; }
.vendor-node span { font-weight: 600; color: #c7d0d8; }
.vs-gap { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(244,63,94,.12); border: 1px solid rgba(244,63,94,.3); color: #fb7185; font-weight: 700; }
.problem-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.tag-bad { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 100px; background: var(--glass); border: 1px solid rgba(244,63,94,.25); color: #fda4af; font-weight: 600; font-size: .9rem; }
.tag-bad i { font-style: normal; }

/* ---------- Solution ---------- */
.solution-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.solution-visual { position: relative; display: grid; place-items: center; min-height: 360px; }
.check-list { margin-top: 28px; display: grid; gap: 15px; }
.check-list li { display: flex; align-items: center; gap: 14px; font-weight: 500; color: #d7dee5; }
.check-list .ck { width: 26px; height: 26px; flex: none; border-radius: 50%; display: grid; place-items: center; color: #04201c; font-weight: 800; font-size: .8rem; background: var(--grad-liquid); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { padding: 32px; }
.service-card .icon-badge { width: 56px; height: 56px; border-radius: 16px; background: var(--glass-2); border: 1px solid var(--glass-brd); color: var(--teal); margin-bottom: 22px; }
.sc-2 .icon-badge { color: var(--aqua); } .sc-3 .icon-badge { color: var(--gold); }
.service-card h3 { color: #fff; font-family: var(--font-head); font-size: 1.3rem; }
.service-card p { color: var(--ink-soft); margin-top: 10px; font-size: .96rem; }
.service-card .sc-no { position: absolute; top: 24px; right: 26px; font-family: var(--font-head); font-size: 1rem; color: rgba(255,255,255,.18); font-weight: 700; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-weight: 600; color: var(--teal); }
.sc-2 .card-link { color: var(--aqua); } .sc-3 .card-link { color: var(--gold); }
.card-link svg { width: 16px; height: 16px; transition: transform .25s; }
.service-card:hover .card-link svg { transform: translate(3px,-3px); }

/* ---------- Savings / compare ---------- */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; margin-bottom: 50px; }
.compare-col { padding: 32px; }
.compare-col header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.ct-emoji { font-size: 1.6rem; } .ct-label { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: #fff; }
.compare-col ul { display: grid; gap: 14px; }
.compare-col li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-weight: 500; }
.compare-col li i { font-style: normal; font-weight: 800; flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .78rem; }
.compare-bad li i { background: rgba(244,63,94,.14); color: #fb7185; }
.compare-good { border-color: rgba(45,212,191,.3); }
.compare-good li i { background: rgba(45,212,191,.16); color: var(--teal); }
.compare-vs { align-self: center; font-family: var(--font-head); font-weight: 800; color: #04201c; background: var(--grad-liquid); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: .92rem; box-shadow: 0 12px 30px -8px rgba(45,212,191,.6); }
.stats { margin-top: 8px; }
.theme-liquid .stat .num { font-family: var(--font-head); background: var(--grad-liquid); -webkit-background-clip: text; background-clip: text; color: transparent; }
.theme-liquid .stat .lbl { color: var(--ink-soft); }

/* ---------- Process ---------- */
.theme-liquid .timeline .step .dot { background: var(--glass-2); border: 1px solid rgba(45,212,191,.4); color: var(--teal); font-family: var(--font-head); backdrop-filter: blur(8px); }
.theme-liquid .timeline .step:not(:last-child)::after { background: linear-gradient(90deg, rgba(45,212,191,.4), rgba(45,212,191,.08)); height: 1px; }
.theme-liquid .timeline .step h4 { color: #fff; font-family: var(--font-head); }
.theme-liquid .timeline .step p { color: var(--ink-soft); }

/* ---------- Solutions (industries) ---------- */
.sol-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.sol-card { padding: 26px; }
.sol-card .si { font-size: 30px; margin-bottom: 16px; display: block; }
.sol-card h4 { color: #fff; font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 6px; }
.sol-card p { color: var(--ink-soft); font-size: .88rem; }

/* ---------- Work / portfolio ---------- */
.work-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.work-tile { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--glass-brd); min-height: 220px; display: flex; align-items: flex-end; padding: 22px; transition: transform .4s, border-color .3s; }
.work-tile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.08) 50%, transparent 65%); transform: translateX(-120%); transition: transform .9s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.work-tile:hover::after { transform: translateX(120%); }
.work-tile:hover { transform: translateY(-6px); border-color: rgba(45,212,191,.4); }
.work-tile.w-lg { grid-column: span 4; } .work-tile.w-sm { grid-column: span 2; }
.work-tile .wt-bg { position: absolute; inset: 0; z-index: 0; opacity: .9; }
.wt-teal { background: radial-gradient(120% 120% at 20% 10%, #0f766e, #07080c 70%); }
.wt-aqua { background: radial-gradient(120% 120% at 80% 10%, #155e75, #07080c 70%); }
.wt-gold { background: radial-gradient(120% 120% at 30% 90%, #7c5618, #07080c 70%); }
.wt-emer { background: radial-gradient(120% 120% at 70% 80%, #065f46, #07080c 70%); }
.work-tile .wt-meta { position: relative; z-index: 2; }
.work-tile .wt-cat { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.work-tile h4 { color: #fff; font-family: var(--font-head); font-size: 1.15rem; margin-top: 6px; }
.work-tile .wt-play { position: absolute; top: 20px; right: 20px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.14); border: 1px solid var(--glass-brd); color: #fff; }
.work-tile .wt-play svg { width: 18px; height: 18px; }

/* ---------- Insights / blog ---------- */
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.post-card { padding: 0; overflow: hidden; }
.post-card .pc-top { height: 150px; position: relative; display: flex; align-items: flex-end; padding: 18px; }
.post-card .pc-tag { position: relative; z-index: 2; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #04201c; background: var(--teal); padding: 5px 11px; border-radius: 100px; }
.post-card .pc-body { padding: 22px 24px 26px; }
.post-card h4 { color: #fff; font-family: var(--font-head); font-size: 1.12rem; line-height: 1.25; }
.post-card p { color: var(--ink-soft); font-size: .9rem; margin-top: 10px; }
.post-card .pc-meta { margin-top: 16px; font-size: .82rem; color: #939da7; display: flex; gap: 10px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { padding: 0; }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fq-ico { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--glass-brd); display: grid; place-items: center; color: var(--teal); transition: transform .3s; font-size: 1.1rem; }
.faq-item[open] summary .fq-ico { transform: rotate(45deg); }
.faq-item .fq-a { padding: 0 26px 24px; color: var(--ink-soft); font-size: .96rem; line-height: 1.65; }

/* ---------- Contact ---------- */
.contact { position: relative; z-index: 3; }
.contact-shell { position: relative; border-radius: 32px; overflow: hidden; border: 1px solid rgba(45,212,191,.22); padding: clamp(30px,4vw,60px); background: linear-gradient(160deg, rgba(20,184,166,.1), rgba(10,13,19,.6)); backdrop-filter: blur(18px); }
.contact-shell .cs-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; top: -240px; right: -120px; background: radial-gradient(closest-side, rgba(45,212,191,.3), transparent 70%); z-index: 0; pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 46px; align-items: start; position: relative; z-index: 2; }
.contact-copy h2 { color: #fff; }
.contact-copy .lead { margin-top: 18px; }
.contact-points { margin-top: 30px; display: grid; gap: 16px; }
.contact-points li { display: flex; align-items: center; gap: 14px; }
.cp-ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--glass-2); border: 1px solid var(--glass-brd); font-size: 19px; }
.contact-points b { display: block; color: #fff; font-size: .95rem; }
.contact-points span { color: var(--ink-soft); font-size: .9rem; }
.contact-card { background: rgba(8,10,15,.7); border: 1px solid var(--glass-brd); border-radius: 22px; padding: 30px; backdrop-filter: blur(14px); }
.theme-liquid .field label { color: #d7dee5; }
.theme-liquid .field input, .theme-liquid .field select, .theme-liquid .field textarea { background: rgba(255,255,255,.04); border: 1px solid var(--glass-brd); color: #fff; }
.theme-liquid .field input::placeholder, .theme-liquid .field textarea::placeholder { color: #8b95a0; }
.theme-liquid .field input:focus, .theme-liquid .field select:focus, .theme-liquid .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(45,212,191,.14); }
.theme-liquid .field select option { background: #0b0d13; }
.form-submit { width: 100%; justify-content: center; margin-top: 20px; }
.form-note { margin-top: 14px; font-size: .85rem; color: #7d8893; text-align: center; }

/* ---------- Footer ---------- */
.theme-liquid .site-footer { background: #05060a; border-top: 1px solid var(--line); color: var(--ink-soft); position: relative; z-index: 3; }
.theme-liquid .site-footer h5 { color: #fff; }
.theme-liquid .site-footer a { color: var(--ink-soft); }
.theme-liquid .site-footer a:hover { color: var(--teal); }
.brand--footer { margin-bottom: 16px; }
.brand--footer .logo-text { color: #fff; }
.footer-about { color: #7d8893; font-size: .92rem; max-width: 34ch; }
.theme-liquid .footer-bottom { border-color: var(--line); color: #5f6973; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .sol-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 940px) {
  .hero-grid, .solution-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; min-height: 340px; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-tile.w-lg, .work-tile.w-sm { grid-column: span 2; }
}
.faq-item:hover summary { color: var(--teal); }

/* Low-end / mobile performance: drop the heaviest GPU effects */
@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; }
  .compare-vs { margin-inline: auto; }
  .sol-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-tile.w-lg, .work-tile.w-sm { grid-column: span 1; }
  .cursor-glow { display: none; }
  .liquid-field { filter: saturate(150%); }
  .theme-liquid .card, .contact-shell, .contact-card { backdrop-filter: none; }
  .theme-liquid .card { background: rgba(255,255,255,.05); }
  .contact-shell { background: linear-gradient(160deg, rgba(20,184,166,.14), #0b0d13); }
  .solution-visual .liquid-core { display: none; }
  .solution-visual .core-label { position: static; }
}
