/* ===========================  PALETTE — dark iridescent  =========================== */
:root {
  --bg:        #060609;   /* page black            */
  --bg-2:      #0c0c11;   /* raised surface        */
  --bg-3:      #131319;   /* card surface          */
  --ink:       #f6f6f9;   /* headings / bright text*/
  --muted:     #9b9baa;   /* body text             */
  --muted-2:   #6e6e7e;   /* dim text              */
  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(255,255,255,.06);
  --accent:    #ff5a6e;   /* single accent (pink)  */
  --accent-2:  #ff8a3d;   /* warm                  */
  --accent-3:  #6f6bff;   /* violet                */
  /* signature iridescent gradient */
  --iris: linear-gradient(110deg, #ff8a3d 0%, #ff3d6e 32%, #c43dff 64%, #3d8bff 100%);
  --iris-soft: linear-gradient(110deg, #ff8a3d, #ff3d6e, #c43dff, #3d8bff);
  --radius:    18px;
  --maxw:      1180px;
}

/* ===========================  BASE  =========================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--muted);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Inter', system-ui, sans-serif; font-weight: 700; color: var(--ink);
  line-height: 1.04; margin: 0; letter-spacing: -0.03em;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--iris); display: inline-block; }
.eyebrow.on-dark { color: var(--muted); }

/* iridescent gradient text for emphasised words in headings */
h1 em, h2 em, .stat .n em, .grad {
  font-style: normal;
  background: var(--iris); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===========================  BUTTONS  =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.95rem; padding: 14px 26px;
  border-radius: 50px; transition: all .25s ease; cursor: pointer; border: 1px solid transparent;
  position: relative;
}
/* gradient-border dark pill */
.btn-primary {
  color: var(--ink);
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    var(--iris) border-box;
  border: 1.5px solid transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -14px rgba(255,61,110,.55); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.28); }
.btn-ghost.on-light { border-color: var(--line); color: var(--ink); }
.btn-ghost.on-light:hover { background: rgba(255,255,255,.05); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===========================  NAV  =========================== */
header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,6,9,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
header.nav.scrolled { border-color: var(--line-2); box-shadow: 0 8px 30px -20px rgba(0,0,0,.9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto;
  background: var(--iris);
  display: grid; place-items: center; color: #fff; font-size: 1rem; font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--muted); position: relative; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; border-radius: 2px; background: var(--iris); transition: width .25s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: inline-flex; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink); background: transparent; border: 1px solid var(--line);
  border-radius: 50px; padding: 7px 14px; cursor: pointer; transition: border-color .25s, background .25s;
}
.lang-toggle:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ===========================  BLOB (iridescent fluid)  =========================== */
.blob {
  position: absolute; pointer-events: none; z-index: 0; border-radius: 50%;
  filter: blur(46px) saturate(1.25); opacity: .9; mix-blend-mode: screen;
  background:
    radial-gradient(38% 46% at 32% 30%, #ff8a3d 0%, transparent 62%),
    radial-gradient(40% 48% at 70% 32%, #ff3d6e 0%, transparent 62%),
    radial-gradient(46% 56% at 60% 66%, #c43dff 0%, transparent 66%),
    radial-gradient(50% 60% at 34% 70%, #3d8bff 0%, transparent 66%);
  animation: blobFloat 18s ease-in-out infinite;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  25%     { transform: translate(-5%, 5%) rotate(-12deg) scale(1.1); }
  50%     { transform: translate(6%, -4%) rotate(14deg) scale(0.94); }
  75%     { transform: translate(-3%, -6%) rotate(-6deg) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

/* ===========================  HERO BUBBLE (constantly moving)  =========================== */
.hero-bubble {
  position: relative; z-index: 1; width: 100%; max-width: 440px; aspect-ratio: 1; margin: 0 auto;
  border-radius: 47% 53% 60% 40% / 50% 45% 55% 50%;
  background:
    radial-gradient(38% 44% at 30% 28%, #ff9a4d 0%, transparent 60%),
    radial-gradient(42% 50% at 72% 30%, #ff3d6e 0%, transparent 60%),
    radial-gradient(48% 58% at 60% 64%, #c43dff 0%, transparent 64%),
    radial-gradient(56% 66% at 34% 74%, #3d8bff 0%, transparent 66%),
    #1a0f2e;
  filter: blur(3px) saturate(1.3);
  box-shadow: 0 40px 110px -24px rgba(255,61,110,.55), inset 0 0 70px rgba(255,255,255,.10);
  animation: bubbleMorph 13s ease-in-out infinite, bubbleSpin 24s linear infinite;
}
.hero-bubble::after {
  content: ""; position: absolute; inset: 12%; border-radius: inherit;
  background: radial-gradient(40% 36% at 36% 28%, rgba(255,255,255,.35), transparent 60%);
  mix-blend-mode: screen; filter: blur(6px);
}
@keyframes bubbleMorph {
  0%,100% { border-radius: 47% 53% 60% 40% / 50% 45% 55% 50%; }
  25%     { border-radius: 60% 40% 45% 55% / 55% 60% 40% 45%; }
  50%     { border-radius: 40% 60% 55% 45% / 45% 50% 55% 60%; }
  75%     { border-radius: 55% 45% 38% 62% / 62% 42% 56% 38%; }
}
@keyframes bubbleSpin {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}
/* scroll-following mode: fixed orb that travels with the viewport */
.hero-bubble.bubble-follow {
  position: fixed; top: 12vh; right: 2vw; left: auto; margin: 0;
  width: min(40vw, 440px); z-index: 4; pointer-events: none;
  mix-blend-mode: screen; opacity: .8; filter: blur(9px) saturate(1.25);
  will-change: translate;
}
@media (prefers-reduced-motion: reduce) { .hero-bubble { animation: none; } }

/* ===========================  HERO  =========================== */
.hero { position: relative; overflow: hidden; background: var(--bg); color: var(--ink); }
.hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 760px; height: 760px; right: -120px; top: -160px;
  border-radius: 50%; filter: blur(54px) saturate(1.3); opacity: .85; mix-blend-mode: screen;
  background:
    radial-gradient(36% 44% at 34% 30%, #ff8a3d 0%, transparent 60%),
    radial-gradient(40% 48% at 72% 30%, #ff3d6e 0%, transparent 60%),
    radial-gradient(46% 56% at 60% 66%, #c43dff 0%, transparent 64%),
    radial-gradient(52% 62% at 34% 72%, #3d8bff 0%, transparent 64%);
  animation: blobFloat 20s ease-in-out infinite;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
  padding: 110px 0 120px;
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.04em; line-height: 0.98; }
.hero .lead { color: var(--muted); font-size: 1.12rem; max-width: 30em; margin-top: 26px; }
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 40px; margin-top: 56px; border-top: 1px solid var(--line-2); padding-top: 28px; }
.hero-meta .n { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.9rem; color: var(--ink); letter-spacing: -0.02em; }
.hero-meta .l { font-size: 0.82rem; color: var(--muted-2); letter-spacing: .04em; }

/* hero visual card */
.hero-visual { position: relative; }
.hero-visual::before {
  content: ""; position: absolute; inset: -16% -10% -16% -10%; z-index: 0;
  border-radius: 50%; filter: blur(40px) saturate(1.3); opacity: .9; mix-blend-mode: screen;
  background:
    radial-gradient(38% 46% at 30% 30%, #ff8a3d 0%, transparent 60%),
    radial-gradient(42% 50% at 72% 34%, #ff3d6e 0%, transparent 60%),
    radial-gradient(48% 58% at 58% 66%, #c43dff 0%, transparent 64%),
    radial-gradient(52% 60% at 36% 72%, #3d8bff 0%, transparent 64%);
  animation: blobFloat 16s ease-in-out infinite;
}
.panel {
  position: relative; z-index: 1;
  background: rgba(12,12,17,.55); border: 1px solid var(--line); border-radius: 22px; padding: 30px;
  backdrop-filter: blur(10px);
}
.compass { aspect-ratio: 1; display: grid; place-items: center; position: relative; margin-bottom: 24px; }
.compass svg { width: 100%; height: auto; }
.compass svg circle[stroke] { stroke: rgba(255,255,255,.14); }
.compass svg line { stroke: rgba(255,255,255,.10); }
.compass svg polygon:nth-of-type(1) { fill: #ff5a6e; }
.compass svg polygon:nth-of-type(2) { fill: #6f6bff; }
.panel .row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-top: 1px solid var(--line-2); font-size: 0.9rem; }
.panel .row:first-of-type { border-top: 0; }
.panel .row span:first-child { color: var(--muted); }
.panel .row span:last-child { color: var(--ink); font-weight: 600; }
.bar { width: 96px; height: 6px; border-radius: 4px; background: rgba(255,255,255,.10); overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--iris); }

/* ===========================  PAGE HERO (inner pages)  =========================== */
.page-hero { position: relative; overflow: hidden; background: var(--bg); color: var(--ink); padding: 96px 0 80px; }
.page-hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 620px; height: 620px; right: -140px; top: -200px; border-radius: 50%;
  filter: blur(54px) saturate(1.3); opacity: .8; mix-blend-mode: screen;
  background:
    radial-gradient(40% 48% at 70% 30%, #ff3d6e 0%, transparent 60%),
    radial-gradient(46% 56% at 60% 66%, #c43dff 0%, transparent 64%),
    radial-gradient(52% 62% at 34% 72%, #3d8bff 0%, transparent 64%);
  animation: blobFloat 22s ease-in-out infinite;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .crumbs { font-size: 0.82rem; color: var(--muted-2); margin-bottom: 18px; letter-spacing: .03em; }
.page-hero .crumbs a:hover { color: var(--ink); }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); letter-spacing: -0.035em; }
.page-hero p { color: var(--muted); font-size: 1.08rem; max-width: 42em; margin-top: 18px; }

/* ===========================  SECTION BASICS  =========================== */
section { padding: 104px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-top: 16px; letter-spacing: -0.035em; }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 1.05rem; }

/* ===========================  ABOUT  =========================== */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-copy p + p { margin-top: 18px; }
.about-copy .muted { color: var(--muted); }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar { background: var(--bg-3); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 26px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.pillar:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 26px 50px -30px rgba(255,61,110,.4); }
.pillar .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--accent); margin-bottom: 16px; }
.pillar h3 { font-size: 1.12rem; }
.pillar p { color: var(--muted); font-size: 0.92rem; margin-top: 8px; }

/* ===========================  SERVICES  =========================== */
.services { background: var(--bg-2); color: var(--ink); }
.services .section-head h2 { color: var(--ink); }
.services .section-head p { color: var(--muted); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: var(--bg-3); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 32px 28px; transition: border-color .3s, transform .3s; position: relative; overflow: hidden;
}
.svc::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--iris); transition: width .35s ease; }
.svc:hover { transform: translateY(-5px); border-color: var(--line); }
.svc:hover::before { width: 100%; }
.svc-media { margin: -32px -28px 22px; height: 192px; position: relative; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,19,25,0) 35%, rgba(19,19,25,.95) 100%); }
.svc .num { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem; background: var(--iris); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: .06em; }
.svc h3 { font-size: 1.3rem; margin: 14px 0 8px; color: var(--ink); }
.svc .tag { font-size: 0.95rem; color: var(--accent); display: block; margin-bottom: 14px; line-height: 1.4; font-weight: 500; }
.svc p { color: var(--muted); font-size: 0.94rem; }
.svc ul { list-style: none; padding: 0; margin: 18px 0 0; }
.svc li { font-size: 0.88rem; color: var(--ink); padding: 7px 0 7px 22px; position: relative; border-top: 1px solid var(--line-2); }
.svc li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.svc-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-weight: 600; font-size: 0.9rem; color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; transition: gap .25s ease, border-color .25s ease; }
.svc-link span { background: var(--iris); -webkit-background-clip: text; background-clip: text; color: transparent; }
.svc-link:hover { gap: 12px; border-color: var(--line); }
.svc h3 a { color: inherit; text-decoration: none; }
.svc h3 a:hover { color: var(--accent); }

/* ===========================  APPROACH  =========================== */
.approach { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding-top: 28px; }
.step .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--iris); position: absolute; top: 0; left: 0; box-shadow: 0 0 0 5px rgba(255,61,110,.14); }
.step::after { content: ""; position: absolute; top: 6px; left: 14px; right: -22px; height: 2px; background: var(--line); }
.step:last-child::after { display: none; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step .k { font-weight: 600; color: var(--accent); font-size: 0.9rem; letter-spacing: .04em; }
.step p { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

/* ===========================  STATS  =========================== */
.stats { position: relative; overflow: hidden; background: var(--bg-2); color: var(--ink); padding: 84px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; position: relative; z-index: 1; }
.stat .n { font-family: 'Inter', sans-serif; font-weight: 700; font-size: clamp(2.4rem, 4.5vw, 3.4rem); letter-spacing: -0.03em; background: var(--iris); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }

/* ===========================  CTA BAND  =========================== */
.cta-band { position: relative; overflow: hidden; background: var(--bg); color: var(--ink); text-align: center; }
.cta-band::before {
  content: ""; position: absolute; z-index: 0; left: 50%; top: -40%; transform: translateX(-50%);
  width: 720px; height: 560px; border-radius: 50%; filter: blur(60px) saturate(1.3); opacity: .55; mix-blend-mode: screen;
  background:
    radial-gradient(40% 48% at 40% 40%, #ff8a3d 0%, transparent 60%),
    radial-gradient(44% 52% at 64% 40%, #ff3d6e 0%, transparent 60%),
    radial-gradient(50% 58% at 52% 70%, #6f6bff 0%, transparent 64%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); color: var(--ink); margin-top: 14px; letter-spacing: -0.035em; }
.cta-band p { color: var(--muted); margin: 16px auto 30px; max-width: 38em; }
.cta-band .hero-actions { justify-content: center; margin-top: 0; }

/* ===========================  CONTACT  =========================== */
.contact { background: var(--bg); }
.contact-card {
  position: relative; overflow: hidden;
  background: var(--bg-2); color: var(--ink); border: 1px solid var(--line-2); border-radius: 24px;
  display: grid; grid-template-columns: 1fr 1fr;
}
.contact-card .left { padding: 60px 54px; }
.contact-card .left h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--ink); letter-spacing: -0.03em; }
.contact-card .left p { color: var(--muted); margin-top: 18px; max-width: 30em; }
.contact-list { margin-top: 36px; display: grid; gap: 16px; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 14px; color: var(--ink); font-size: 0.96rem; }
.contact-list .ic { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.05); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--accent); flex: 0 0 auto; }
.contact-card .right { background: var(--bg-3); padding: 60px 54px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; letter-spacing: .04em; }
.field input, .field textarea {
  width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 15px; color: var(--ink); font-family: inherit; font-size: 0.95rem; transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 96px; }
.contact .right .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }

/* ===========================  BLOG  =========================== */
.blog { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post {
  display: flex; flex-direction: column; background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.post:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: 0 28px 54px -30px rgba(111,107,255,.45); }
.post .thumb { position: relative; height: 168px; overflow: hidden; background: var(--bg-2); }
.post .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; }
.post .thumb::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,6,9,.12) 0%, rgba(6,6,9,.6) 100%); }
.post .cat {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
  background: rgba(6,6,9,.5); border: 1px solid var(--line); padding: 5px 11px; border-radius: 50px; backdrop-filter: blur(4px);
}
.post .body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 26px; }
.post h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.2; }
.post p { color: var(--muted); font-size: 0.92rem; }
.post .meta { margin-top: 18px; font-size: 0.78rem; color: var(--muted-2); letter-spacing: 0.03em; }
.post .readmore { margin-top: auto; padding-top: 18px; font-size: 0.86rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.post .readmore .arrow { transition: transform .25s ease; }
.post:hover .readmore .arrow { transform: translateX(4px); }
@media (max-width: 940px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===========================  ARTICLE  =========================== */
.article { background: var(--bg); }
.article-meta { margin-top: 18px; font-size: 0.85rem; color: var(--muted-2); letter-spacing: 0.04em; }
.prose { max-width: 720px; margin: 0 auto; }
.prose .lead { font-size: 1.22rem; line-height: 1.6; color: var(--ink); font-weight: 500; margin-bottom: 6px; }
.prose p { color: var(--muted); margin: 18px 0; font-size: 1.05rem; line-height: 1.85; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); margin: 46px 0 4px; color: var(--ink); letter-spacing: -0.02em; }
.prose h3 { font-size: 1.16rem; margin: 30px 0 2px; color: var(--ink); }
.prose ul, .prose ol { color: var(--muted); margin: 16px 0; padding-left: 22px; line-height: 1.8; font-size: 1.02rem; }
.prose li { margin: 8px 0; }
.prose li::marker { color: var(--accent); font-weight: 600; }
.prose strong { color: var(--ink); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.prose a:hover { color: var(--accent-2); }
.callout { background: var(--bg-3); border: 1px solid var(--line-2); border-left: 3px solid transparent; border-image: var(--iris) 1; border-radius: 12px; padding: 24px 26px; margin: 34px 0; }
.callout h4 { font-family: 'Inter', sans-serif; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
.callout ul { margin: 0; padding-left: 20px; color: var(--muted); }
.callout li { margin: 7px 0; }
.article-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 44px; font-weight: 600; color: var(--accent); }
.article-back:hover { color: var(--accent-2); }

/* ===========================  VALUES MARQUEE  =========================== */
.marquee { position: relative; overflow: hidden; background: var(--bg-2); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2) 0%, transparent 100%); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2) 0%, transparent 100%); }
.marquee-track { display: flex; width: max-content; align-items: center; animation: marqueeScroll 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; padding: 24px 0; }
.marquee-item .v { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.28rem; color: var(--muted); white-space: nowrap; padding: 0 40px; transition: color .3s; letter-spacing: -0.02em; }
.marquee-item:hover .v { color: var(--ink); }
.marquee-item .sep { color: var(--accent); font-size: 0.55rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
@media (max-width: 620px) { .marquee-item .v { font-size: 1.08rem; padding: 0 26px; } .marquee-item { padding: 18px 0; } }

/* ===========================  DECRYPT (scroll fingerprint)  =========================== */
.decrypt { position: relative; height: 340vh; background: var(--bg); color: var(--ink); }
.decrypt--static { height: auto; }
.decrypt-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.decrypt--static .decrypt-sticky { position: relative; height: 78vh; min-height: 460px; }
#decryptCanvas { position: absolute; inset: 0; display: block; }
.decrypt-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 56px 24px; text-align: center; }
.decrypt-head { max-width: 640px; }
.decrypt-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); color: var(--ink); margin-top: 14px; letter-spacing: -0.035em; }
.decrypt-foot { position: relative; width: 100%; min-height: 64px; }
.decrypt-hint, .decrypt-unlock { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.decrypt-hint { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.decrypt-hint .chev { font-size: 1rem; animation: decryptBob 1.6s ease-in-out infinite; }
@keyframes decryptBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.decrypt-unlock { opacity: 0; }
.decrypt-unlock .granted { font-family: 'Inter', sans-serif; font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.9rem); letter-spacing: 0.04em; background: var(--iris); -webkit-background-clip: text; background-clip: text; color: transparent; }
.decrypt-unlock .sub { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.decrypt--static .decrypt-hint { display: none; }
@media (max-width: 620px) { .decrypt-overlay { padding: 36px 20px; } }

/* ===========================  FOOTER  =========================== */
footer.site { background: var(--bg-2); color: var(--muted); padding: 64px 0 32px; border-top: 1px solid var(--line-2); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-2); }
.foot-top .brand { color: var(--ink); margin-bottom: 16px; }
.foot-blurb { font-size: 0.92rem; max-width: 26em; }
footer.site h4 { color: var(--ink); font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 16px; }
footer.site ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer.site ul a { font-size: 0.92rem; transition: color .2s; }
footer.site ul a:hover { color: var(--accent); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 0.84rem; flex-wrap: wrap; gap: 12px; color: var(--muted-2); }

/* ===========================  REVEAL ANIMATION  =========================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===========================  RESPONSIVE  =========================== */
@media (max-width: 940px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 420px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 22px; }
  .step::after { display: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-card { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--bg-2); padding: 24px 28px; gap: 22px; border-bottom: 1px solid var(--line); align-items: flex-start;
  }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 620px) {
  .svc-grid, .pillars { grid-template-columns: 1fr; }
  section { padding: 76px 0; }
  .contact-card .left, .contact-card .right { padding: 40px 28px; }
  .hero-meta { gap: 28px; flex-wrap: wrap; }
}

/* ===========================  MOUSE / CURSOR EFFECTS  =========================== */
.glow-host { position: relative; isolation: isolate; }
.glow-host > .glow {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(260px 260px at var(--mx, 50%) var(--my, 50%), rgba(255,90,110,.14), transparent 65%);
  opacity: 0; transition: opacity .4s ease;
}
.glow-host.glow-on > .glow { opacity: 1; }
.glow-host > .wrap { position: relative; z-index: 1; }

.tilt { transform-style: preserve-3d; transition: transform .18s ease, box-shadow .3s ease; will-change: transform; }
.svc.tilt::after, .pillar.tilt::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(180px 180px at var(--cx, 50%) var(--cy, 50%), rgba(255,90,110,.16), transparent 60%);
  opacity: 0; transition: opacity .3s ease; z-index: 0;
}
.svc.tilt:hover::after, .pillar.tilt:hover::after { opacity: 1; }
.svc.tilt > *, .pillar.tilt > * { position: relative; z-index: 1; }

.magnetic { transition: transform .18s cubic-bezier(.2,.8,.3,1); will-change: transform; }

.nav-links a, .contact-list a, footer.site ul a { transition: color .2s ease, transform .2s ease; display: inline-block; }
.contact-list a:hover, footer.site ul a:hover { transform: translateX(4px); }

.panel { position: relative; overflow: hidden; }
.panel .shine {
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit; z-index: 0;
  background: radial-gradient(220px 220px at var(--px, 50%) var(--py, 50%), rgba(255,255,255,.10), transparent 60%);
  opacity: 0; transition: opacity .35s ease;
}
.panel:hover .shine { opacity: 1; }
.panel > *:not(.shine) { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .tilt { transition: none; }
  .glow-host > .glow, .panel .shine { display: none; }
}
