/* ============================================================================
   urFIN Inc. — light + purple redesign (2026)  [futuristic dark redesign lineage]
   Clean white canvas, violet gradient accents, soft depth. Built on the existing
   HTML class contract; behaviour (i18n/nav/reveal/counters/marquee) unchanged.
   Motion is guarded by prefers-reduced-motion.
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-2: #faf8ff;
  --surface: #ffffff;
  --surface-2: #f6f2ff;
  --line: rgba(28, 16, 60, .10);
  --line-strong: rgba(124, 58, 237, .30);
  --ink: #1a1230;
  --ink-soft: #2a2044;
  --muted: rgba(42, 30, 70, .70);
  --muted-2: rgba(42, 30, 70, .48);

  --violet: #7c3aed;
  --purple: #a855f7;
  --indigo: #6d28d9;
  --magenta: #d946ef;
  --pink: #ec4899;
  --lilac: #ede9fe;
  --gold: #d97706;

  --grad: linear-gradient(120deg, #7c3aed, #a855f7 52%, #d946ef 100%);
  --grad-deep: linear-gradient(135deg, #4c1d95, #6d28d9 45%, #a21caf 100%);
  --grad-soft: linear-gradient(120deg, rgba(124,58,237,.10), rgba(168,85,247,.10) 55%, rgba(217,70,239,.08));

  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --shadow: 0 24px 60px rgba(76, 29, 149, .14);
  --shadow-sm: 0 12px 30px rgba(76, 29, 149, .10);
  --glow: 0 0 0 1px rgba(124,58,237,.14), 0 30px 70px rgba(124, 58, 237, .20);
  --ease: cubic-bezier(.22, .68, .18, 1);
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, .brand__text {
  font-family: Sora, Inter, system-ui, sans-serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--maxw), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--ink); color: #fff; padding: 10px 14px; z-index: 999; border-radius: 10px; }
.skip-link:focus { left: 16px; }
::selection { background: rgba(168,85,247,.28); color: var(--indigo); }

/* ---------- animated aurora background (soft, light) ---------- */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; background:
  radial-gradient(1200px 700px at 12% -10%, rgba(124,58,237,.10), transparent 60%),
  radial-gradient(1000px 700px at 100% 0%, rgba(217,70,239,.08), transparent 55%),
  radial-gradient(900px 800px at 50% 120%, rgba(168,85,247,.08), transparent 60%),
  var(--bg); }
.aurora::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(closest-side, rgba(168,85,247,.28), transparent) 12% 18% / 44vmax 44vmax no-repeat,
    radial-gradient(closest-side, rgba(236,72,153,.20), transparent) 84% 20% / 40vmax 40vmax no-repeat,
    radial-gradient(closest-side, rgba(124,58,237,.24), transparent) 62% 96% / 48vmax 48vmax no-repeat;
  filter: blur(46px); opacity: .8; animation: drift 26s var(--ease) infinite alternate;
}
.aurora::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,58,237,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(124,58,237,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 72%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 72%);
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-4%, 3%, 0) scale(1.08); }
  100% { transform: translate3d(3%, -3%, 0) scale(1.04); }
}

/* cursor spotlight + scroll progress (added by JS) */
.fx-spotlight { position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(380px 380px at var(--mx, -100px) var(--my, -100px), rgba(168,85,247,.10), transparent 70%);
  opacity: 0; transition: opacity .4s ease; }
.fx-spotlight.on { opacity: 1; }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; background: var(--grad); box-shadow: 0 0 16px rgba(124,58,237,.6); }

/* ---------- buttons ---------- */
.btn { --pad: 14px 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad); border-radius: 999px; font-weight: 700; font-size: .98rem; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s; white-space: nowrap; }
.btn--sm { --pad: 10px 18px; font-size: .9rem; }
.btn--lg { --pad: 18px 34px; font-size: 1.06rem; }
.btn--primary { color: #fff; background: var(--grad); background-size: 180% 180%; box-shadow: 0 14px 34px rgba(124,58,237,.35); animation: sheen 6s linear infinite; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(168,85,247,.45); }
@keyframes sheen { 0%{background-position:0% 50%} 100%{background-position:180% 50%} }
.btn--ghost { color: var(--indigo); background: #fff; border-color: var(--line-strong); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--violet); box-shadow: 0 0 0 1px rgba(124,58,237,.3), 0 18px 40px rgba(124,58,237,.16); }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; transition: background .3s var(--ease), border-color .3s, box-shadow .3s; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(255, 255, 255, .78); backdrop-filter: blur(18px) saturate(160%); border-bottom-color: var(--line); box-shadow: 0 12px 40px rgba(76,29,149,.10); }
.nav { min-height: 76px; display: flex; align-items: center; gap: 22px; position: relative; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.06rem; }
.brand__logo { border-radius: 30%; box-shadow: 0 6px 18px rgba(124,58,237,.30); }
.brand__text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 6px; margin-left: auto; }
.nav-links a { padding: 8px 14px; border-radius: 999px; font-weight: 600; color: var(--muted); font-size: .95rem; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--indigo); background: var(--surface-2); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.lang-selector { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); cursor: pointer; font-size: .9rem; font-weight: 600; color: var(--muted); }
.lang-selector:hover { color: var(--indigo); border-color: var(--line-strong); }
.globe { width: 16px; height: 16px; border-radius: 50%; border: 1.6px solid currentColor; position: relative; }
.globe::before { content: ""; position: absolute; inset: 0 4px; border-radius: 50%; border: 1.4px solid currentColor; }
.lang-menu { position: absolute; top: 64px; right: 0; min-width: 170px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 16px; padding: 8px; list-style: none; box-shadow: var(--shadow); backdrop-filter: blur(14px); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s var(--ease); z-index: 60; }
.lang-menu[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { padding: 10px 14px; border-radius: 10px; cursor: pointer; font-weight: 600; color: var(--muted); }
.lang-menu li:hover { background: var(--surface-2); color: var(--indigo); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(48px, 9vw, 120px) 0 40px; }
.hero__content { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--violet); padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--surface-2); }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.6rem); margin: 22px 0 20px; }
.hero__title span { display: block; }
.grad-text { background: var(--grad); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: sheen 8s linear infinite; }
.hero__subtitle { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 34ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted-2); font-size: .86rem; font-weight: 600; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 10px var(--purple); }

.hero-visual { position: relative; }
.hero-visual__photo { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); filter: saturate(1.04); }
.signal-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.9); border: 1px solid var(--line); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.signal-card img { width: 46px; height: 46px; border-radius: 12px; }
.signal-card strong { display: block; font-size: .98rem; }
.signal-card span { color: var(--muted); font-size: .82rem; }
.signal-card--main { left: -18px; bottom: 40px; max-width: 300px; animation: float 7s var(--ease) infinite alternate; }
.signal-grid { position: absolute; top: -22px; right: -14px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.signal-grid > div { background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
.signal-grid strong { display: block; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: Sora; font-size: 1.05rem; }
.signal-grid span { font-size: .74rem; color: var(--muted); }
.signal-line { position: absolute; right: 18px; bottom: -18px; display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.95); border: 1px solid var(--line); font-size: .78rem; font-weight: 700; box-shadow: var(--shadow-sm); }
.signal-line i { width: 20px; height: 1.5px; background: var(--grad); }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-14px); } }

/* ---------- stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(40px, 7vw, 84px); padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.stat { text-align: center; }
.stat strong { display: block; font-family: Sora; font-size: clamp(2rem, 4vw, 3rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .88rem; }

/* ---------- marquee ---------- */
.marquee-section { padding: 46px 0; text-align: center; }
.marquee-label { color: var(--muted-2); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: inline-flex; gap: 46px; white-space: nowrap; animation: scroll-x 26s linear infinite; }
.marquee__track span { font-family: Sora; font-weight: 700; font-size: 1.25rem; color: var(--muted-2); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: clamp(60px, 10vw, 120px) 0; position: relative; }
.section--soft { background: linear-gradient(180deg, #ffffff, var(--bg-2) 45%, #ffffff); }
.section--dark { background: radial-gradient(120% 100% at 50% 0%, rgba(168,123,247,.10), transparent 60%); }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 6vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 14px 0; }
.section-lead { color: var(--muted); font-size: 1.05rem; }

/* pillars */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { padding: 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.pillar:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--glow); }
.pillar__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--grad-soft); border: 1px solid var(--line); margin-bottom: 18px; position: relative; }
.pillar__icon::after { content: ""; width: 22px; height: 22px; border-radius: 6px; background: var(--grad); }
.pillar h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pillar p { color: var(--muted); }

/* capability showcase */
.capability-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-top: 40px; padding: 28px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.capability-photo img { border-radius: var(--radius); border: 1px solid var(--line); }
.capability-panel h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 12px 0; }
.capability-panel p { color: var(--muted); }
.micro-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.micro-grid span { padding: 8px 14px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); font-size: .84rem; font-weight: 600; color: var(--indigo); }

/* service cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.service-card { padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-6px); border-color: var(--violet); box-shadow: var(--glow); }
.service-card span { font-family: Sora; font-size: 1.1rem; color: var(--purple); font-weight: 800; }
.service-card h3 { font-size: 1.12rem; margin: 8px 0; }
.service-card p { color: var(--muted); font-size: .92rem; }

/* industries */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-card { position: relative; min-height: 230px; padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.industry-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: var(--industry-img); background-size: cover; background-position: center; transform: scale(1.05); transition: transform .5s var(--ease); }
.industry-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(30,10,60,.15), rgba(30,10,60,.88)); }
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.industry-card:hover::before { transform: scale(1.14); }
.industry__tick { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); display: inline-block; margin-bottom: 12px; }
.industry-card h3 { font-size: 1.3rem; color: #fff; }
.industry-card p { color: rgba(255,255,255,.86); font-size: .92rem; margin-top: 6px; }

/* products */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { display: flex; flex-direction: column; gap: 16px; padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.product-card::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; background: var(--grad-soft); transition: opacity .4s; }
.product-card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: var(--glow); }
.product-card:hover::before { opacity: 1; }
.product-card--featured { grid-column: span 2; }
.product-card--noreto { border-color: rgba(168,85,247,.36); }
.product-card--j2d { border-color: rgba(124,58,237,.32); }
.tag { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--violet); }
.product-card h3 { font-size: 1.5rem; }
.product-card p { color: var(--muted); }
.product-logo { height: 56px; width: auto; margin: 4px 0; }
.product-logo--noreto { height: 74px; }
.product-logo--j2d { height: 72px; }
.product-logo--loser { height: 60px; width: 60px; border-radius: 16px; box-shadow: 0 10px 26px rgba(124,58,237,.30); }
.product-visual { min-height: 90px; border-radius: var(--radius-sm); background: var(--grad-soft); border: 1px solid var(--line); position: relative; overflow: hidden; }
.product-visual span, .product-visual i { position: absolute; border-radius: 8px; background: rgba(124,58,237,.16); }
.product-visual span { width: 40%; height: 12px; left: 16px; top: 20px; }
.product-visual i { width: 24%; height: 10px; left: 16px; top: 44px; background: var(--grad); }
.link-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.text-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--violet); padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface-2); transition: .25s var(--ease); }
.text-link::after { content: "\2192"; transition: transform .25s; }
.text-link:hover { color: #fff; background: var(--violet); border-color: var(--violet); transform: translateY(-2px); }
.text-link:hover::after { transform: translateX(3px); }
.status-pill { align-self: flex-start; padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700; color: var(--gold); background: rgba(217,119,6,.10); border: 1px solid rgba(217,119,6,.28); }

/* store install badges */
.store-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 14px; background: #1a1230; color: #fff; font-weight: 700; transition: transform .25s var(--ease), box-shadow .3s; box-shadow: 0 10px 26px rgba(26,18,48,.28); }
.store-badge small { display: block; font-size: .62rem; font-weight: 600; opacity: .75; letter-spacing: .04em; text-transform: uppercase; }
.store-badge strong { font-size: .98rem; font-family: Sora; color: #fff; }
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(124,58,237,.4); }
.store-badge svg { width: 22px; height: 22px; flex: none; }

/* ---------- approach / how we work ---------- */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.approach-card { position: relative; padding: 28px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.approach-card::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--grad); opacity: .0; transition: opacity .3s; }
.approach-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--glow); }
.approach-card:hover::before { opacity: 1; }
.approach-card__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--line); margin-bottom: 16px; font-size: 1.4rem; }
.approach-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.approach-card p { color: var(--muted); font-size: .94rem; }
.pricing-highlight { margin-top: 24px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; align-items: center; padding: clamp(26px, 4vw, 44px); border-radius: var(--radius-lg); background: var(--grad-deep); color: #fff; box-shadow: 0 30px 70px rgba(76,29,149,.35); position: relative; overflow: hidden; }
.pricing-highlight::after { content: ""; position: absolute; right: -10%; top: -40%; width: 60%; height: 180%; background: radial-gradient(closest-side, rgba(236,72,153,.5), transparent); filter: blur(30px); pointer-events: none; }
.pricing-highlight .eyebrow { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.24); }
.pricing-highlight h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 12px 0; }
.pricing-highlight p { color: rgba(255,255,255,.82); }
.pricing-metrics { display: grid; gap: 14px; position: relative; z-index: 1; }
.pricing-metric { padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); }
.pricing-metric strong { display: block; font-family: Sora; font-size: 1.7rem; color: #fff; }
.pricing-metric span { color: rgba(255,255,255,.78); font-size: .84rem; }

/* process */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.split__intro h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin: 14px 0; }
.process-list { list-style: none; display: grid; gap: 14px; counter-reset: step; }
.process-list li { position: relative; padding: 22px 22px 22px 76px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s; }
.process-list li:hover { transform: translateX(6px); border-color: var(--line-strong); }
.process-list li::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; left: 22px; top: 22px; font-family: Sora; font-weight: 800; font-size: 1.3rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.process-list strong { display: block; font-size: 1.12rem; margin-bottom: 4px; }
.process-list span { color: var(--muted); }

/* values */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.value-card:hover { transform: translateY(-6px); border-color: var(--violet); box-shadow: var(--glow); }
.value__no { font-family: Sora; font-weight: 800; font-size: 1.4rem; color: var(--purple); }
.value-card h3 { font-size: 1.14rem; margin: 8px 0; }
.value-card p { color: var(--muted); font-size: .92rem; }
.relationship-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-top: 40px; padding: 28px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.relationship-panel img { border-radius: var(--radius); border: 1px solid var(--line); }
.relationship-panel h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 12px 0; }
.relationship-panel p { color: var(--muted); }

/* languages */
.language-layout { text-align: center; }
.language-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }
.language-grid span { padding: 12px 22px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-weight: 700; font-family: Sora; transition: .25s var(--ease); }
.language-grid span:hover { border-color: var(--violet); transform: translateY(-3px); color: var(--violet); }

/* CTA band */
.cta-band { padding: clamp(50px, 8vw, 90px) 0; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(30px, 5vw, 56px); border-radius: var(--radius-lg); background: var(--grad); background-size: 180% 180%; animation: sheen 8s linear infinite; color: #fff; box-shadow: 0 30px 70px rgba(124,58,237,.35); }
.cta-band__inner .eyebrow { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.16); }
.cta-band__inner h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.6rem); max-width: 20ch; }
.cta-band .btn--primary { background: #fff; color: var(--indigo); animation: none; box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.cta-band .btn--primary:hover { box-shadow: 0 20px 46px rgba(0,0,0,.26); }

/* contact */
.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px; }
.contact-card, .presence-card { padding: 32px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 12px 0; }
.contact-card > p { color: var(--muted); }
.contact-form { display: grid; gap: 14px; margin-top: 20px; }
.contact-form label { display: grid; gap: 6px; font-weight: 600; font-size: .9rem; color: var(--muted); }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); font: inherit; transition: border-color .25s, box-shadow .25s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,58,237,.16); }
.contact-email { margin-top: 6px; }
.presence-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.presence-list { list-style: none; display: grid; gap: 16px; }
.presence-list li { display: flex; gap: 12px; }
.presence__dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 5px; background: var(--violet); box-shadow: 0 0 12px var(--purple); flex: none; }
.presence__dot--alt { background: var(--magenta); box-shadow: 0 0 12px var(--magenta); }
.presence-list strong { display: block; }
.presence-list span { color: var(--muted); font-size: .9rem; }
.presence-note { color: var(--muted-2); font-size: .88rem; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }

/* footer (deep anchor) */
.site-footer { padding: 64px 0 30px; margin-top: 40px; background: var(--grad-deep); color: rgba(255,255,255,.82); }
.site-footer .brand__text { color: #fff; -webkit-text-fill-color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer__brand p { color: rgba(255,255,255,.72); margin-top: 14px; max-width: 34ch; }
.footer__col h4 { font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.footer__col a { display: block; color: rgba(255,255,255,.8); padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.65); font-size: .86rem; }
.to-top { color: #fff; font-weight: 700; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero__content, .capability-showcase, .relationship-panel, .split, .contact-layout, .pricing-highlight { grid-template-columns: 1fr; }
  .signal-grid, .signal-line { display: none; }
  .signal-card--main { position: static; margin-top: -30px; }
  .pillar-grid, .grid-4, .industry-grid, .product-grid, .value-grid, .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--featured { grid-column: span 2; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav-links { position: absolute; top: 72px; right: 0; left: 0; flex-direction: column; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 16px; padding: 14px; margin: 0; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s var(--ease); backdrop-filter: blur(16px); box-shadow: var(--shadow); }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-toggle { display: flex; }
  .nav-actions .nav-cta { display: none; }
}
@media (max-width: 560px) {
  .pillar-grid, .grid-4, .industry-grid, .product-grid, .value-grid, .approach-grid, .footer__grid { grid-template-columns: 1fr; }
  .product-card--featured { grid-column: span 1; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
