/* ============================================================
   Kay & Co. — kayco.net
   Light + bold + cinematic editorial. Electric lime accent.
   Black used as a structural, high-impact colour. No build step.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  /* Palette */
  --bg:           #FFFFFF;
  --bg-soft:      #F4F4EF;
  --bg-elevated:  #EBEBE4;
  --line:         #E5E5DF;
  --line-strong:  #D4D4CC;

  --lime:         #C6F500;   /* electric lime accent */
  --lime-deep:    #B0DA00;   /* hover / slightly stronger */
  --blue:         #1A1AFF;   /* very rare secondary */

  /* text (var --white kept = primary ink for compatibility) */
  --white:        #0A0A0A;
  --ink:          #0A0A0A;
  --grey:         #54545b;
  --grey-dim:     #97979d;
  --orange:       #C6F500;   /* alias so legacy refs map to lime */

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Barlow Condensed', 'Inter', sans-serif;

  --maxw: 1340px;
  --page-pad: clamp(1.25rem, 5vw, 5rem);
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: var(--lime); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); line-height: 0.94; font-weight: 800; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.3rem, 5.2vw, 4.4rem); text-transform: uppercase; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
p { color: var(--grey); font-size: clamp(1rem, 1.15vw, 1.12rem); }
.lead { font-size: clamp(1.14rem, 1.6vw, 1.45rem); color: #2e2e34; max-width: 44ch; line-height: 1.45; }

.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font); font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); }
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--lime); display: inline-block; }

/* Accent words = lime highlighter block with black text */
.gradient-text, .accent-orange, .accent-blue {
  background: var(--lime); color: var(--ink);
  padding: 0 .14em; border-radius: 2px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--page-pad); }
section { position: relative; padding: clamp(4.5rem, 9vw, 9rem) 0; }
.section-head { max-width: 920px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head p { margin-top: 1.1rem; font-size: 1.12rem; max-width: 62ch; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .55rem; padding: .95rem 1.6rem; border-radius: 100px; font-weight: 700; font-size: .95rem; font-family: var(--font); border: 1px solid transparent; cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .25s, border-color .25s; will-change: transform; }
.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-orange { background: var(--lime); color: var(--ink); box-shadow: 0 10px 28px -12px rgba(198,245,0,.8); }
.btn-primary:hover, .btn-orange:hover { background: var(--lime-deep); box-shadow: 0 16px 36px -12px rgba(198,245,0,.9); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem clamp(1.25rem, 5vw, 5rem); transition: background .35s var(--ease), border-color .35s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(255,255,255,.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__logo { font-family: var(--font); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); }
.logo-mark { width: 32px; height: 32px; display: inline-grid; place-items: center; flex: 0 0 auto; }
.logo-mark img { width: 100%; height: 100%; display: block; }
.logo-wordmark { color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav__links a { font-size: .94rem; color: var(--grey); font-weight: 500; transition: color .25s; position: relative; }
.nav__links a.btn-primary, .nav__links a.btn-primary:visited { color: var(--ink); }
.nav__links a.btn-primary::after { display: none; }
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 3px; width: 0; background: var(--lime); transition: width .3s var(--ease); }
.nav__links a:not(.btn):hover::after, .nav__links a.active:not(.btn)::after { width: 100%; }
.nav__cta { padding: .6rem 1.2rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.nav__burger span { width: 26px; height: 2px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }
.home-page .nav:not(.scrolled) .logo-wordmark,
.home-page .nav:not(.scrolled) .nav__links a:not(.btn) { color: #F6F4EF; }
.home-page .nav:not(.scrolled) .nav__links a:not(.btn).active,
.home-page .nav:not(.scrolled) .nav__links a:not(.btn):hover { color: #FFFFFF; }
.home-page .nav:not(.scrolled) .nav__burger span { background: #F6F4EF; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 2rem; background: rgba(255,255,255,.98); backdrop-filter: blur(16px); transform: translateX(100%); transition: transform .45s var(--ease); }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.6rem; font-family: var(--display); font-weight: 800; text-transform: uppercase; }
  .nav__links a.btn-primary { font-family: var(--font); font-size: 1rem; }
  .nav__cta { display: none; }
  .home-page .nav:not(.scrolled) .nav__links.open a:not(.btn),
  .home-page .nav:not(.scrolled) .nav__links.open a:not(.btn).active { color: var(--ink); }
}

/* ============================================================
   HERO (full-screen interactive canvas)
   ============================================================ */
.hero { position: relative; padding: 0; display: flex; align-items: center; min-height: 100svh; background: #050508; overflow: hidden; }
.hero::after { content:""; position:absolute; inset:0; z-index:2; pointer-events:none; background: linear-gradient(90deg, rgba(5,5,8,.9) 0%, rgba(5,5,8,.72) 34%, rgba(5,5,8,.22) 64%, rgba(5,5,8,.44) 100%), linear-gradient(180deg, rgba(5,5,8,.25) 0%, rgba(5,5,8,0) 45%, rgba(5,5,8,.78) 100%); }
.hero__grid { position: relative; z-index: 3; display: flex; align-items: center; width: 100%; min-height: 100svh; padding-top: clamp(5rem, 8vw, 7rem); padding-bottom: clamp(4rem, 7vw, 6rem); }
.hero__copy { max-width: min(720px, 92vw); }
.hero__title { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(3.4rem, 8vw, 8.2rem); line-height: 0.82; letter-spacing: -0.02em; margin: 1.2rem 0 1.6rem; color: #F6F4EF; max-width: 10.5ch; text-shadow: 0 18px 60px rgba(0,0,0,.36); }
.hero__title .char { display: inline-block; will-change: transform; }
.hero .lead { max-width: 42ch; margin-bottom: 2rem; color: #D9D9E3; text-shadow: 0 8px 34px rgba(0,0,0,.42); }
.hero .eyebrow { color: #F6F4EF; }
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero .btn-ghost { color: #F6F4EF; border-color: rgba(246,244,239,.34); }
.hero .btn-ghost:hover { border-color: #F6F4EF; }
.hero__viz { position: absolute; inset: 0; z-index: 1; overflow: hidden; background: #050508; }
#net-canvas { position:absolute; inset:0; width: 100%; height: 100%; display: block; z-index:1; cursor: crosshair; }
.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 3; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(246,244,239,.72); display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.hero__scroll .mouse { width: 20px; height: 32px; border: 1.5px solid rgba(246,244,239,.42); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after { content:""; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:6px; border-radius:3px; background: var(--lime); animation: scrollwheel 1.6s infinite; }
@media (max-width: 760px) {
  .hero::after { background: linear-gradient(180deg, rgba(5,5,8,.74) 0%, rgba(5,5,8,.54) 42%, rgba(5,5,8,.86) 100%); }
  .hero__grid { align-items: end; padding-bottom: clamp(5.5rem, 18vw, 8rem); }
  .hero__title { max-width: 9.5ch; }
}
@keyframes scrollwheel { 0%{opacity:0; transform:translate(-50%,0);} 30%{opacity:1;} 100%{opacity:0; transform:translate(-50%,11px);} }

/* ============================================================
   MARQUEE (kinetic strip)
   ============================================================ */
.marquee { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: 1.1rem 0; overflow: hidden; white-space: nowrap; background: var(--bg); }
.marquee__track { display: inline-flex; align-items: center; animation: marquee 30s linear infinite; }
.marquee__track span { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem, 3vw, 2.8rem); letter-spacing: -0.01em; color: var(--ink); display: inline-flex; align-items: center; }
.marquee__track .sep { width: 14px; height: 14px; border-radius: 50%; background: var(--lime); margin: 0 clamp(1.2rem, 3vw, 2.5rem); flex: 0 0 auto; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); }
.no-gsap .reveal { opacity: 1; transform: none; }

/* ============================================================
   SERVICE ROWS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--ink); margin-inline: calc(var(--page-pad) * -1); counter-reset: svc; }
.card { position: relative; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: clamp(2rem, 4.5vw, 4rem) var(--page-pad); display: grid; grid-template-columns: minmax(4rem, 7vw) minmax(14rem, 26vw) minmax(0, 1fr) auto; gap: clamp(1.2rem, 3.5vw, 3.5rem); align-items: center; transition: background .35s var(--ease); }
.card::before { content:""; position:absolute; left:0; top:-1px; bottom:-1px; width: 0; background: var(--lime); transition: width .3s var(--ease); }
.card:hover::before { width: 6px; }
.card:hover { background: var(--bg-soft); }
.card { counter-increment: svc; }
.card__icon { align-self: start; position: relative; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 800; line-height: 1; color: var(--grey-dim); font-variant-numeric: tabular-nums; padding-top: .2em; }
.card__icon::before { content: counter(svc, decimal-leading-zero); }
.card__icon::after { content: ""; display: block; width: 26px; height: 4px; margin-top: .7rem; background: var(--lime); transition: width .35s var(--ease); }
.card:hover .card__icon { color: var(--ink); }
.card:hover .card__icon::after { width: 52px; }
.card h3 { margin-bottom: 0; font-size: clamp(1.9rem, 4.2vw, 4.2rem); text-transform: uppercase; }
.card p { max-width: 56ch; }
.card__link { display:inline-flex; align-items:center; gap:.45rem; color: var(--ink); font-weight:700; font-size:.92rem; white-space: nowrap; box-shadow: inset 0 -.5em 0 var(--lime); padding: 0 .15em 2px; }
.card__link .arrow { transition: transform .3s var(--ease); }
.card:hover .card__link .arrow { transform: translateX(5px); }
@media (max-width: 900px) { .card { grid-template-columns: auto 1fr; } .card p, .card__link { grid-column: 2; } }
@media (max-width: 620px) { .card { grid-template-columns: 1fr; } .card p, .card__link { grid-column: auto; } }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); margin-inline: calc(var(--page-pad) * -1); }
@media (max-width: 740px) { .stats { grid-template-columns: 1fr; } }
.stat { text-align: left; padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 3vw, 2.5rem); border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: 0; }
@media (max-width: 740px) { .stat { border-right: 0; border-bottom: 1px solid var(--line); } .stat:last-child { border-bottom: 0; } }
.stat::before { content:""; position:absolute; top:-1px; left:0; width:60px; height:4px; background: var(--lime); }
.stat__num { font-family: var(--display); font-size: clamp(4rem, 9vw, 10rem); font-weight: 900; letter-spacing: -0.02em; line-height: .82; color: var(--ink); }
.stat__label { margin-top: 1rem; color: var(--grey); font-size: .98rem; max-width: 26ch; }

/* ============================================================
   SPLIT / FEATURE
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.feature-list { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1.1rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; color: #2e2e34; }
.feature-list b { color: var(--ink) !important; }
.feature-list .tick { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 6px; display:grid; place-items:center; background: var(--lime); margin-top: 3px; position: relative; }
.feature-list .tick::before { content: ""; width: 10px; height: 6px; border-left: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); transform: rotate(-45deg) translate(1px, -1px); }

.panel { position: relative; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft); padding: clamp(1.8rem, 4vw, 2.8rem); min-height: 300px; overflow: hidden; }
.panel__chip { display:flex; align-items:center; gap:.8rem; padding:.85rem 0; border-bottom:1px solid var(--line); }
.panel__chip:last-child { border-bottom: 0; }
.panel__chip .logo { width: 36px; height: 36px; border-radius: 8px; display:grid; place-items:center; font-weight:800; font-size:.78rem; background: var(--ink); color: #fff; }
.panel__chip .bar { flex:1; height: 10px; border-radius: 5px; background: var(--bg-elevated); overflow:hidden; position:relative; }
.panel__chip .bar i { position:absolute; inset:0 auto 0 0; border-radius:5px; background: var(--lime); }
.panel__chip .pct { font-size:.82rem; color: var(--ink); width: 50px; text-align:right; font-weight: 700; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); margin-inline: calc(var(--page-pad) * -1); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { padding: clamp(2rem, 4vw, 3.5rem) clamp(1.2rem, 3vw, 2rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step__n { font-family: var(--font); font-size: .78rem; font-weight: 800; color: var(--ink); letter-spacing: .15em; display:inline-block; box-shadow: inset 0 -.5em 0 var(--lime); }
.step h3 { font-size: 1.6rem; margin: .8rem 0 .5rem; text-transform: uppercase; }
.step p { font-size: .98rem; }

/* ============================================================
   CTA BANNER (inverted / cinematic)
   ============================================================ */
.cta { position: relative; border-radius: var(--radius); overflow: hidden; text-align: left; padding: clamp(3.5rem, 8vw, 7rem) clamp(2rem, 5vw, 5.5rem); background: var(--ink); color: #fff; }
.cta::after { content:""; position:absolute; right:-80px; bottom:-80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(198,245,0,.22), transparent 70%); pointer-events:none; }
.cta h2 { max-width: 18ch; margin: 0 0 1.2rem; font-size: clamp(2.8rem, 6.5vw, 6rem); text-transform: uppercase; color: #fff; position: relative; }
.cta p { max-width: 56ch; margin: 0 0 2rem; font-size: 1.14rem; color: #c7c7cd; position: relative; }
.cta__actions { display: flex; gap: .9rem; flex-wrap: wrap; position: relative; }
.cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); }
.cta .btn-ghost:hover { border-color: #fff; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 900px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--ink); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 1.6rem 0; font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 800; font-family: var(--display); text-transform: uppercase; letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__q .ico { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s, color .3s; color: var(--ink); font-family: var(--font); }
.faq__item.open .faq__q .ico { transform: rotate(45deg); background: var(--lime); color: var(--ink); border-color: var(--lime); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a p { padding-bottom: 1.5rem; font-size: 1.05rem; }
.faq__item.open .faq__a { max-height: 480px; }

/* ============================================================
   BLOG
   ============================================================ */
.posts { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--ink); margin-inline: calc(var(--page-pad) * -1); }
.post { display: grid; grid-template-columns: minmax(240px, 32vw) minmax(0, 1fr); border-bottom: 1px solid var(--line); background: transparent; overflow: hidden; transition: background .3s var(--ease); }
.post:hover { background: var(--bg-soft); }
@media (max-width: 760px) { .post { grid-template-columns: 1fr; } }
.post__thumb { min-height: clamp(240px, 28vw, 390px); height: 100%; position: relative; overflow: hidden; background: #050508; border-right: 1px solid var(--line); }
.post__thumb::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(5,5,8,0) 45%, rgba(5,5,8,.32)); pointer-events:none; z-index:1; }
.post__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .75s var(--ease), filter .75s var(--ease); }
.post:hover .post__thumb img { transform: scale(1.04); filter: contrast(1.04) saturate(1.08); }
@media (max-width: 760px) { .post__thumb { border-right: 0; border-bottom: 1px solid var(--line); } }
.post__thumb .tag { position: absolute; top: 1.1rem; left: 1.1rem; z-index:2; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; background: var(--lime); border: 0; padding: .4rem .7rem; border-radius: 100px; color: var(--ink); }
.post__body { padding: clamp(1.8rem, 5vw, 4.5rem); display: flex; flex-direction: column; flex: 1; justify-content: center; }
.post__meta { font-size: .8rem; color: var(--grey-dim); margin-bottom: .8rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.post__body h3 { font-size: clamp(1.9rem, 4.2vw, 3.6rem); margin-bottom: 1rem; max-width: 18ch; text-transform: uppercase; line-height: .96; }
.post__body p { font-size: clamp(1rem, 1.3vw, 1.15rem); max-width: 56ch; }
.post__body .card__link { margin-top: 1.5rem; align-self: flex-start; }

/* ============================================================
   ARTICLE
   ============================================================ */
.article { max-width: 760px; margin: 0 auto; }
.article__header { max-width: none; margin: 0 0 clamp(2rem,4vw,3rem); text-align: left; padding: clamp(8rem,12vw,11rem) var(--page-pad) 0; }
.article__header .container { padding: 0; }
.article__header h1 { font-size: clamp(2.8rem, 7vw, 6rem); margin: 1rem 0; max-width: 16ch; text-transform: uppercase; line-height: .9; }
.article__meta { color: var(--grey-dim); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 700; font-family: var(--font); }
.article-visual { width: 100%; margin: 2rem auto 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: #050508; height: clamp(320px, 46vw, 620px); overflow: hidden; }
.article-visual img { width: 100%; max-width: none; height: 100%; object-fit: cover; object-position: center; display: block; }
.visual-strip { margin: clamp(3.5rem, 8vw, 8rem) calc(var(--page-pad) * -1) 0; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.visual-strip__copy { padding: clamp(2rem, 6vw, 6rem); align-self: center; }
.visual-strip__copy h2, .visual-strip__copy h3 { font-size: clamp(2rem, 4.5vw, 4.5rem); max-width: 14ch; text-transform: uppercase; }
.visual-strip__media { min-height: clamp(340px, 44vw, 600px); background: var(--bg-soft); overflow: hidden; border-left: 1px solid var(--line); display: grid; place-items: center; padding: clamp(1.5rem, 4vw, 3.5rem); }
.visual-strip__media img { width: 100%; height: 100%; max-height: 440px; object-fit: contain; }
@media (max-width: 820px) { .visual-strip { grid-template-columns: 1fr; } .visual-strip__media { border-left: 0; border-top: 1px solid var(--line); } }
.article__body { color: #2c2c33; font-size: 1.14rem; line-height: 1.7; }
.article__body h2 { margin: 2.8rem 0 1rem; font-size: clamp(1.9rem, 3.4vw, 2.7rem); text-transform: uppercase; }
.article__body h3 { margin: 2rem 0 .8rem; color: var(--ink); }
.article__body p { margin-bottom: 1.3rem; color: #2c2c33; }
.article__body ul, .article__body ol { margin: 0 0 1.4rem 1.3rem; color: #2c2c33; }
.article__body li { margin-bottom: .6rem; }
.article__body a { color: var(--ink); text-decoration: none; box-shadow: inset 0 -.45em 0 var(--lime); padding: 0 .08em; }
.article__body a:hover { box-shadow: inset 0 -.9em 0 var(--lime); }
.article__body blockquote { border-left: 4px solid var(--lime); padding: .4rem 0 .4rem 1.4rem; margin: 1.8rem 0; color: var(--ink); font-family: var(--display); font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 700; line-height: 1.12; max-width: 28ch; text-transform: uppercase; }
.article__body strong { color: var(--ink); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form { display: grid; gap: 1.2rem; }
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 600px){ .form .row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .8rem; color: var(--grey); margin-bottom: .5rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: .95rem 1.1rem; color: var(--ink); font-family: var(--font); font-size: 1rem; transition: border-color .25s, box-shadow .25s; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(198,245,0,.5); }
.form__status { font-size: .95rem; padding: .8rem 0; }
.form__status.ok { color: #1a7f37; }
.form__status.err { color: #b00020; }
.form button[disabled] { opacity: .65; cursor: wait; transform: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.8rem; }
.contact-info .item { display:flex; gap:1rem; align-items:flex-start; }
.contact-info .ico { width:44px; height:44px; border-radius:11px; display:grid; place-items:center; background: var(--lime); color: var(--ink); flex:0 0 auto; }
.contact-info .ico::before { content:""; width:18px; height:18px; border:2.5px solid var(--ink); border-radius:5px; }
.contact-info .item b { color: var(--ink); display:block; margin-bottom:.15rem; }
.contact-info .item span { color: var(--grey); font-size:.95rem; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-hero { position: relative; padding: clamp(8rem,14vw,13rem) 0 clamp(3rem,6vw,5rem); overflow: hidden; background: var(--bg-soft); border-bottom: 1px solid var(--ink); }
.page-hero h1 { max-width: 16ch; margin: 1.2rem 0; font-size: clamp(3rem, 8vw, 7rem); text-transform: uppercase; line-height: .88; }
.page-hero .lead { max-width: 62ch; }

/* ============================================================
   RESOURCES INDEX
   ============================================================ */
.res-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); margin-inline: calc(var(--page-pad) * -1); }
@media (max-width: 760px) { .res-list { grid-template-columns: 1fr; } }
.res-item { display: block; padding: clamp(1.6rem, 3vw, 2.6rem) var(--page-pad); border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); transition: background .3s var(--ease); position: relative; }
.res-item:nth-child(2n) { border-right: 0; }
@media (max-width: 760px) { .res-item { border-right: 0; } }
.res-item::before { content: ""; position: absolute; left: 0; top: -1px; bottom: -1px; width: 0; background: var(--lime); transition: width .3s var(--ease); }
.res-item:hover { background: var(--bg-soft); }
.res-item:hover::before { width: 6px; }
.res-item .res-kicker { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); font-weight: 800; display:inline-block; box-shadow: inset 0 -.5em 0 var(--lime); }
.res-item h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); margin: .6rem 0 .5rem; text-transform: uppercase; }
.res-item p { font-size: .98rem; max-width: 46ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--ink); padding: 4.5rem 0 2.5rem; background: var(--bg-soft); }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (max-width: 980px){ .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 2.2rem; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 560px){ .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__brand .nav__logo { margin-bottom: 1rem; }
.footer__brand p { max-width: 34ch; font-size: .95rem; }
.footer h4 { font-family: var(--font); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-dim); margin-bottom: 1.1rem; font-weight: 700; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer ul a { color: var(--grey); font-size: .95rem; transition: color .2s; }
.footer ul a:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 1rem; }
.footer__bottom p { font-size: .85rem; color: var(--grey-dim); }
.footer__email { color: var(--grey); font-size: .9rem; transition: color .2s; }
.footer__email:hover { color: var(--ink); }
.footer__social { display: flex; gap: .8rem; }
.footer__social a { width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: 10px; display: grid; place-items: center; color: var(--grey); transition: all .25s; }
.footer__social a:hover { color: var(--ink); border-color: var(--ink); transform: translateY(-3px); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.tag-pill { display:inline-block; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color: var(--ink); font-weight: 800; background: var(--lime); padding:.4rem .8rem; border-radius:100px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
