:root {
    --black: #0D0D0D;
    --panel: #161616;
    --panel-2: #1C1C1C;
    --line: rgba(255,255,255,0.09);
    --white: #FFFFFF;
    --grey: #DDE4E9;
    --grey-2: #F0F4F6;
    --green: #00FF97;
    --green-soft: rgba(0,255,151,0.14);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  ::selection { background: var(--green); color: var(--black); }
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 5px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--green); }

  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

  /* ---------- scroll progress hairline (CSS scroll-timeline, zero JS) ---------- */
  @keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
  .progress {
    position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
    background: var(--green); transform-origin: 0 50%; transform: scaleX(0);
    animation: grow linear both;
    animation-timeline: scroll(root);
  }

  /* ---------- NAV ---------- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: color-mix(in srgb, var(--black) 78%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
  .logo { font-size: 25px; letter-spacing: 0.28em; font-weight: 700; color: var(--white); text-decoration: none; }
  .logo em { color: var(--green); font-style: normal; }
  .nav-links { display: flex; gap: 34px; align-items: center; }
  .nav-links > a:not(.btn) {
    color: var(--grey-2); text-decoration: none; font-size: 12.5px;
    letter-spacing: 0.15em; text-transform: uppercase; position: relative; padding: 4px 0;
  }
  .nav-links > a:not(.btn)::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
    background: var(--green); transform: scaleX(0); transform-origin: 100% 50%;
    transition: transform .38s var(--ease);
  }
  .nav-links > a:not(.btn):hover { color: var(--white); }
  .nav-links > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: 0 50%; }
  .nav-links > a:not(.btn)[aria-current="page"] { color: var(--green); }
  
  .btn {
    display: inline-flex; align-items: center; gap: 12px; padding: 15px 32px; border-radius: 2px;
    font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
    text-decoration: none; font-weight: 700; cursor: pointer; border: 1px solid transparent;
    position: relative; overflow: hidden; transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  }
  .btn-green { background: var(--green); color: var(--black); }
  .btn-green::before {
    content: ""; position: absolute; inset: 0; background: var(--white);
    transform: translateY(101%); transition: transform .42s var(--ease);
  }
  .btn-green:hover::before { transform: translateY(0); }
  .btn-green span { position: relative; z-index: 1; }
  .btn-green:hover { transform: translateY(-2px); }
  .btn-ghost { border-color: rgba(255,255,255,0.28); color: var(--white); }
  .btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
  .nav-cta { padding: 11px 24px; }

  /* ---------- HERO ---------- */
  header { min-height: 100svh; display: flex; flex-direction: column; position: relative; padding-top: 74px; overflow: clip; }
  .aurora { position: absolute; inset: 0; overflow: clip; pointer-events: none; }
  .aurora i {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; will-change: transform;
  }
  .aurora i:nth-child(1) {
    width: 780px; height: 780px; right: -220px; top: -260px;
    background: radial-gradient(circle, rgba(0,255,151,0.16), transparent 65%);
    animation: drift1 26s ease-in-out infinite alternate;
  }
  .aurora i:nth-child(2) {
    width: 620px; height: 620px; left: -240px; bottom: -180px;
    background: radial-gradient(circle, rgba(0,255,151,0.10), transparent 65%);
    animation: drift2 32s ease-in-out infinite alternate;
  }
  @keyframes drift1 { to { transform: translate3d(-140px, 120px, 0) scale(1.15); } }
  @keyframes drift2 { to { transform: translate3d(160px, -90px, 0) scale(1.1); } }

  .grid-lines { position: absolute; inset: 0; pointer-events: none; opacity: .5;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  }

  .hero-core { flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; padding: 90px 0 60px; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--green); font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
    margin-bottom: 38px; font-weight: 700;
  }
  .eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--green); }
  .hline { overflow: clip; }
  .hline span { display: block; transform: translateY(110%); animation: rise .9s var(--ease) forwards; }
  .hline:nth-child(2) span { animation-delay: .12s; }
  @keyframes rise { to { transform: none; } }
  h1 {
    font-size: clamp(58px, 8.8vw, 124px);
    line-height: 0.97; letter-spacing: -0.025em; font-weight: 700; margin-bottom: 42px;
  }
  h1 .green { color: var(--green); }
  .hero-sub {
    font-size: 20px; line-height: 1.62; color: var(--grey); max-width: 620px; margin-bottom: 50px;
    font-weight: 400; opacity: 1; animation: fadeIn .8s ease .45s both;
  }
  p strong, li strong { color: var(--green); font-weight: 700; }
  .hero-ctas { display: flex; gap: 18px; opacity: 1; animation: fadeIn .8s ease .6s both; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .hero-meta {
    position: absolute; right: 48px; bottom: 60px; text-align: right; color: rgba(255,255,255,0.74);
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; line-height: 2.1;
    opacity: 1; animation: fadeIn .8s ease .8s both;
  }
  .hero-meta b { color: var(--green); font-weight: 700; }

  /* marquee */
  .marquee-band { border-top: 1px solid var(--line); padding: 42px 0 30px; overflow: clip; position: relative; }
  .marquee-label { position: absolute; top: 14px; left: 48px; font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
  .marquee-mask { mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
  .marquee { display: flex; gap: 70px; white-space: nowrap; width: max-content; animation: slide 46s linear infinite; will-change: transform; }
  .marquee-band:hover .marquee { animation-play-state: paused; }
  .mq-logo { display: inline-flex; align-items: center; }
  .mq-logo img { width: 40px; height: 40px; border-radius: 10px; object-fit: contain; background: rgba(255,255,255,0.06); padding: 5px; }
  .marquee { gap: 44px; }
  .marquee-mask, .net-band { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .marquee-mask::-webkit-scrollbar, .net-band::-webkit-scrollbar { display: none; }
  .touch-paused .marquee, .net-band.touch-paused .net-row { animation-play-state: paused; }
  .marquee span { font-size: 21px; font-weight: 700; letter-spacing: 0.07em; color: rgba(255,255,255,0.72); text-transform: uppercase; transition: color .25s; cursor: default; }
  .marquee span:hover { color: var(--green); }
  @keyframes slide { to { transform: translate3d(-50%, 0, 0); } }

  /* ---------- STAT BAND ---------- */
  .stats { border-block: 1px solid var(--line); background: var(--panel); }
  .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 44px 34px; border-left: 1px solid var(--line); position: relative; overflow: clip; }
  .stat:first-child { border-left: none; }
  .stat::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
    background: var(--green); transform: scaleX(0); transform-origin: 0 50%; transition: transform .6s var(--ease);
  }
  .stat:hover::after { transform: scaleX(1); }
  .stat .stat-n { font-size: clamp(42px, 4.8vw, 68px); font-weight: 300; color: var(--green); letter-spacing: -0.02em; margin-bottom: 12px; font-variant-numeric: tabular-nums; }
  .stat p { color: var(--grey); font-size: 15px; line-height: 1.6; font-weight: 400; max-width: 300px; }

  /* ---------- SECTIONS ---------- */
  section { padding: 140px 0; position: relative; }
  .low { content-visibility: auto; contain-intrinsic-size: auto 900px; }
  .sec-index {
    position: absolute; top: 120px; right: 48px; font-size: clamp(90px, 12vw, 180px); font-weight: 700;
    color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.07); letter-spacing: -0.03em;
    pointer-events: none; user-select: none; line-height: 1;
  }
  .sec-head { margin-bottom: 84px; max-width: 860px; }
  .kicker { color: var(--green); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
  .kicker::before { content: ""; width: 30px; height: 1px; background: var(--green); }
  .sec-head h2 { font-size: clamp(38px, 4.8vw, 66px); line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 28px; }
  .sec-head h2 .green { color: var(--green); }
  .sec-head p { color: var(--grey); font-size: 18px; line-height: 1.68; font-weight: 400; max-width: 640px; }

  /* mechanism steps */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
  .step { background: var(--black); padding: 56px 42px 64px; position: relative; overflow: clip; transition: background .3s; }
  .step::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(0,255,151,0.07), transparent 60%);
    opacity: 0; transition: opacity .35s;
  }
  .step:hover::before { opacity: 1; }
  .step:hover { background: var(--panel); }
  .step .num { font-size: 13px; color: var(--green); letter-spacing: 0.26em; margin-bottom: 30px; font-weight: 700; display: flex; align-items: center; gap: 14px; }
  .step .num::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, rgba(0,255,151,0.4), transparent); }
  .step h3 { font-size: 25px; margin-bottom: 18px; letter-spacing: -0.01em; position: relative; }
  .step p { color: var(--grey); font-size: 15.5px; line-height: 1.68; font-weight: 400; position: relative; }

  /* ---------- PILLARS ---------- */
  .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .pillars.p4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .pillars.p4 .pillar h3 { font-size: 23px; }
  .pillars.p4 .pillar-in > p { font-size: 14.5px; }
  .pillar {
    position: relative; border-radius: 3px; padding: 1px; text-decoration: none; color: var(--white);
    background: var(--line);
    transition: transform .45s var(--ease);
  }
  .pillar::before {
    content: ""; position: absolute; inset: 0; border-radius: 3px; opacity: 0; transition: opacity .45s;
    background: conic-gradient(from var(--a, 180deg) at 50% 50%, transparent 0%, var(--green) 12%, transparent 26%);
  }
  .pillar:hover { transform: translateY(-6px); }
  .pillar:hover::before { opacity: 1; }
  .pillar-in {
    position: relative; background: var(--panel); border-radius: 2px; padding: 50px 40px 58px;
    display: flex; flex-direction: column; min-height: 500px; height: 100%;
  }
  .pillar .tag { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--green); margin-bottom: 24px; font-weight: 700; }
  .pillar h3 { font-size: 29px; letter-spacing: -0.015em; margin-bottom: 18px; line-height: 1.12; }
  .pillar-in > p { color: var(--grey); font-size: 15.5px; line-height: 1.66; font-weight: 400; margin-bottom: 30px; }
  .pillar ul { list-style: none; margin-top: auto; }
  .pillar li {
    color: var(--grey-2); font-size: 14px; padding: 13px 0 13px 28px; border-top: 1px solid var(--line);
    position: relative; font-weight: 400;
  }
  .pillar li::before { content: "→"; position: absolute; left: 0; color: var(--green); transition: transform .3s var(--ease); }
  .pillar:hover li::before { transform: translateX(4px); }
  .pillar .go { margin-top: 30px; color: var(--green); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; }
  .pillar .go i { font-style: normal; transition: transform .3s var(--ease); }
  .pillar:hover .go i { transform: translateX(6px); }

  /* ---------- WORK ---------- */
  .work-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 310px; gap: 26px; }
  .case {
    position: relative; border: 1px solid var(--line); background: var(--panel); overflow: clip;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 38px;
    text-decoration: none; color: var(--white); border-radius: 3px;
    transition: border-color .35s, transform .45s var(--ease);
  }
  .case:hover { border-color: rgba(0,255,151,0.55); transform: translateY(-5px); }
  .case .art { position: absolute; inset: 0; pointer-events: none; transition: transform .8s var(--ease), opacity .5s; opacity: .85; }
  .case:hover .art { transform: scale(1.06); opacity: 1; }
  .case.feature { grid-row: span 2; }
  .case.feature .art { background:
    radial-gradient(ellipse 70% 55% at 80% 12%, rgba(0,255,151,0.22), transparent 60%),
    linear-gradient(160deg, #1B2420 0%, var(--panel) 55%); }
  .case:nth-child(2) .art { background: radial-gradient(ellipse 90% 70% at 15% 100%, rgba(0,255,151,0.13), transparent 60%), var(--panel); }
  .case:nth-child(3) .art { background: radial-gradient(ellipse 90% 70% at 85% 100%, rgba(0,255,151,0.11), transparent 55%), var(--panel-2); }
  .case:nth-child(4) .art { background: radial-gradient(ellipse 90% 80% at 20% 0%, rgba(0,255,151,0.12), transparent 55%), var(--panel); }
  .case:nth-child(5) .art { background: radial-gradient(ellipse 90% 80% at 80% 0%, rgba(0,255,151,0.10), transparent 60%), var(--panel-2); }
  .case > * { position: relative; }
  .case .k { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; font-weight: 700; }
  .case h3 { font-size: 26px; letter-spacing: -0.015em; margin-bottom: 10px; line-height: 1.15; }
  .case.feature h3 { font-size: 36px; max-width: 420px; }
  .case p { color: var(--grey); font-size: 14.5px; line-height: 1.62; font-weight: 400; max-width: 440px; }
  .case .big { font-size: clamp(48px, 5vw, 72px); color: var(--green); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 14px; font-variant-numeric: tabular-nums; }
  .case .cta-row { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--white); font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s var(--ease); }
  .case:hover .cta-row { opacity: 1; transform: none; }
  .case .cta-row i { font-style: normal; color: var(--green); }

  /* ---------- STATEMENT ---------- */
  .statement { background: var(--panel); border-block: 1px solid var(--line); position: relative; overflow: clip; }
  .statement .ghost {
    position: absolute; right: -30px; bottom: -60px; font-size: clamp(160px, 22vw, 340px); font-weight: 700;
    color: transparent; -webkit-text-stroke: 1px rgba(0,255,151,0.07); letter-spacing: -0.04em; user-select: none; pointer-events: none; line-height: 1;
  }
  .statement blockquote { font-size: clamp(30px, 4vw, 54px); line-height: 1.16; letter-spacing: -0.02em; font-weight: 700; max-width: 1020px; position: relative; }
  .statement .green { color: var(--green); }
  .statement cite { display: block; margin-top: 36px; font-style: normal; color: var(--grey); font-size: 15px; font-weight: 400; letter-spacing: 0.06em; }

  /* ---------- LOGO WALL ---------- */
  .wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: clip; }
  .wall div {
    background: var(--black); height: 116px; display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); transition: color .25s, background .25s; cursor: default; text-align: center; padding: 0 10px;
  }
  .wall div:hover { color: var(--green); background: var(--panel); }

  /* ---------- CONTACT ---------- */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
  .contact-left { position: sticky; top: 120px; }
  .contact-left h2 { font-size: clamp(40px, 4.8vw, 64px); line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 28px; }
  .contact-left h2 .green { color: var(--green); }
  .contact-left p { color: var(--grey); font-size: 17px; line-height: 1.68; font-weight: 400; max-width: 440px; }
  .contact-left .direct { margin-top: 46px; }
  .contact-left .direct a {
    color: var(--green); font-size: 20px; text-decoration: none;
    background: linear-gradient(var(--green), var(--green)) bottom / 100% 1px no-repeat;
    padding-bottom: 4px; transition: background-size .35s var(--ease);
  }
  .contact-left .direct a:hover { background-size: 0% 1px; }
  form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { margin-bottom: 18px; }
  .field label { display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
  .field input, .field select, .field textarea {
    width: 100%; background: var(--panel); border: 1px solid var(--line); color: var(--white);
    padding: 16px; font-size: 15px; font-family: inherit; border-radius: 2px; outline: none;
    transition: border-color .25s, box-shadow .25s; appearance: none;
  }
  .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,255,151,0.12); }
  .seg { display: flex; gap: 10px; flex-wrap: wrap; }
  .seg button {
    flex: 1; min-width: 120px; padding: 16px 10px; background: var(--panel); border: 1px solid var(--line); color: var(--grey-2);
    font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: inherit;
    transition: all .25s; border-radius: 2px; font-weight: 700;
  }
  .seg button.on { border-color: var(--green); color: var(--black); background: var(--green); }
  .seg button:not(.on):hover { border-color: var(--green); color: var(--green); background: var(--green-soft); }
  form .btn-green { width: 100%; border: none; font-size: 14px; padding: 19px; margin-top: 12px; justify-content: center; }

  /* ---------- FOOTER ---------- */
  footer { border-top: 1px solid var(--line); padding: 70px 0 50px; position: relative; overflow: clip; }
  .foot { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; position: relative; }
  .foot .logo { font-size: 20px; }
  .foot-links { display: flex; gap: 30px; }
  .foot-links a { color: var(--grey); font-size: 12.5px; text-decoration: none; letter-spacing: 0.12em; text-transform: uppercase; transition: color .2s; }
  .foot-links a:hover { color: var(--green); }
  .legal { margin-top: 44px; color: rgba(255,255,255,0.66); font-size: 12.5px; font-weight: 400; position: relative; }

  /* reveal (visible by default; enhanced when JS adds .in) */
  @media (prefers-reduced-motion: no-preference) {
    .rv.in { animation: fadeUp .7s var(--ease) both; }
    @keyframes fadeUp { from { opacity: 0.2; transform: translateY(24px); } }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001s !important; animation-delay: 0s !important; transition-duration: 0.001s !important; }
    .hline span { transform: none; }
    .hero-sub, .hero-ctas, .hero-meta { opacity: 1; }
  }

  @media (max-width: 1024px) {
    .pillars.p4 { grid-template-columns: repeat(2, 1fr); }
    .sec-index { display: none; }
    .hero-meta { display: none; }
  }
  @media (max-width: 960px) {
    .wrap { padding: 0 24px; }
    .nav-links > a:not(.btn) { display: none; }
    .stats-inner, .steps, .pillars { grid-template-columns: 1fr; }
    .wall { grid-template-columns: repeat(3, 1fr); }
    .work-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(240px, auto); }
    .case.feature { grid-row: span 1; }
    .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .contact-left { position: static; }
    .stat { border-left: none; border-top: 1px solid var(--line); }
    .marquee-label { left: 24px; }
    section { padding: 96px 0; }
  }
  @media (max-width: 600px) {
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
    .wall { grid-template-columns: 1fr 1fr; }
    form .row { grid-template-columns: 1fr; }
  }

/* ---------- SUBPAGES ---------- */
.page-hero { padding: 190px 0 90px; position: relative; overflow: clip; }
.page-hero h1 { font-size: clamp(46px, 6.4vw, 92px); line-height: 1.0; letter-spacing: -0.025em; margin-bottom: 34px; max-width: 980px; }
.page-hero .hero-sub { animation: none; opacity: 1; }
.page-hero .eyebrow { animation: none; opacity: 1; }
.crumb { position: absolute; top: 100px; font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.crumb a { color: inherit; text-decoration: none; }
.crumb a:hover { color: var(--green); }
.crumb b { color: var(--green); font-weight: 700; margin: 0 8px; }

.svc { display: grid; grid-template-columns: 1fr 1.25fr; gap: 60px; padding: 72px 0; border-top: 1px solid var(--line); align-items: start; }
.svc:last-of-type { border-bottom: 1px solid var(--line); }
.svc .n { color: var(--green); font-size: 13px; letter-spacing: 0.26em; font-weight: 700; margin-bottom: 18px; }
.svc h3 { font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.015em; line-height: 1.1; }
.svc .body p { color: var(--grey); font-size: 16.5px; line-height: 1.7; font-weight: 400; margin-bottom: 18px; }

.svc ul { list-style: none; margin-top: 10px; }
.svc li { color: var(--grey-2); font-size: 14.5px; padding: 12px 0 12px 28px; border-top: 1px solid var(--line); position: relative; font-weight: 400; }
.svc li::before { content: "→"; position: absolute; left: 0; color: var(--green); }

.faq-list { max-width: 880px; }
.faq { border-top: 1px solid var(--line); padding: 34px 0; }
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq h3 { font-size: 20px; letter-spacing: -0.01em; margin-bottom: 14px; }
.faq p { color: var(--grey); font-size: 15.5px; line-height: 1.7; font-weight: 400; max-width: 760px; }

.cta-band { background: var(--panel); border-block: 1px solid var(--line); text-align: center; padding: 110px 0; position: relative; overflow: clip; }
.cta-band h2 { font-size: clamp(34px, 4.4vw, 58px); letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 20px; }
.cta-band h2 .green { color: var(--green); }
.cta-band p { color: var(--grey); font-size: 17px; font-weight: 400; margin-bottom: 40px; }
.platforms { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.platforms span { border: 1px solid var(--line); color: var(--grey-2); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; padding: 10px 18px; border-radius: 2px; font-weight: 700; transition: border-color .25s, color .25s; }
.platforms span:hover { border-color: var(--green); color: var(--green); }

@media (max-width: 960px) {
  .svc { grid-template-columns: 1fr; gap: 26px; padding: 52px 0; }
  .page-hero { padding: 150px 0 64px; }
}

/* ---------- NETWORK TICKER (dual-row, counter-scrolling) ---------- */
.net-band { overflow: clip; }
.net-row { display: flex; gap: 14px; width: max-content; padding: 7px 0; will-change: transform; }
.net-row.a { animation: slide 68s linear infinite; }
.net-row.b { animation: slide-rev 76s linear infinite; }
@keyframes slide-rev { from { transform: translate3d(-50%, 0, 0); } to { transform: none; } }
.net-band:hover .net-row { animation-play-state: paused; }
.chip {
  display: inline-flex; align-items: center; gap: 11px; white-space: nowrap;
  border: 1px solid var(--line); background: var(--panel); border-radius: 999px;
  padding: 9px 22px 9px 10px; font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--grey-2); transition: border-color .25s, color .25s;
  cursor: default;
}
.chip img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; background: #1e1e1e; flex: none; }
.chip b { color: var(--green); font-weight: 700; letter-spacing: 0.02em; }
.chip:hover { border-color: rgba(0,255,151,0.5); color: var(--white); }

/* ---------- CREDITS WALL (editorial brand list) ---------- */
.credits { text-align: center; line-height: 3; max-width: 1060px; margin: 0 auto; }
.credits span {
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); transition: color .2s; cursor: default; white-space: nowrap;
}
.credits span:hover { color: var(--green); }
.credits i { color: var(--green); font-style: normal; margin: 0 14px; opacity: .5; }
@media (max-width: 600px) { .credits { line-height: 2.6; } .credits i { margin: 0 9px; } }

/* ---------- BRAND LOGO CAROUSEL (work page) ---------- */
.brandwheel { overflow: clip; }
.brand-row { display: flex; gap: 18px; width: max-content; margin-bottom: 18px; will-change: transform; }
.brand-row.a { animation: slide 60s linear infinite; }
.brand-row.b { animation: slide-rev 66s linear infinite; }
.brandwheel:hover .brand-row { animation-play-state: paused; }
.brand-tile {
  width: 108px; height: 108px; flex: none; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: var(--panel); border-radius: 12px;
  transition: border-color .25s, transform .3s var(--ease);
}
.brand-tile:hover { border-color: rgba(0,255,151,0.5); transform: translateY(-3px); }
.brand-tile img { width: 54px; height: 54px; object-fit: contain; border-radius: 8px; }
@media (max-width: 600px) { .brand-tile { width: 84px; height: 84px; } .brand-tile img { width: 44px; height: 44px; } }

/* ===== Mobile navigation (hamburger) ===== */
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; margin-left: auto; z-index: 60; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: transform .3s ease, opacity .3s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  nav { z-index: 90; backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10,12,11,0.96); }
  .burger { display: block; }
  .nav-links { position: fixed; inset: 0; top: 0; padding: 110px 28px 40px; flex-direction: column; align-items: flex-start; gap: 8px; background: #0A0C0B; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .3s ease, visibility .3s ease; z-index: 50; }
  body.nav-open .nav-links { visibility: visible; opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .nav-links > a:not(.btn) { display: block; font-size: 24px; font-weight: 700; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--white); }
  .nav-links > a.btn { margin-top: 18px; width: 100%; text-align: center; }
  .nav-inner { position: relative; z-index: 55; }

  /* Hero clearance under the fixed nav */
  .page-hero, header.hero, .hero { padding-top: 118px; }
  .page-hero .wrap, header .wrap { padding-top: 12px; }

  /* Footer links wrap */
  .foot { flex-direction: column; gap: 18px; align-items: flex-start; }
  .foot-links { flex-wrap: wrap; row-gap: 10px; column-gap: 18px; max-width: 100%; }
}

@media (max-width: 600px) {
  .page-hero, header.hero, .hero { padding-top: 104px; }
  h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero-sub { font-size: 17px; }
}

/* Mobile ticker speeds (faster) */
@media (max-width: 960px) {
  .marquee { animation-duration: 20s; }
  .net-row.a { animation-duration: 30s; }
  .net-row.b { animation-duration: 34s; }
  .brand-row.a { animation-duration: 34s; }
  .brand-row.b { animation-duration: 38s; }
}

/* Tighter stats on mobile */
@media (max-width: 960px) {
  .stat { padding: 26px 24px; }
  .stat .stat-n { font-size: clamp(34px, 9vw, 44px); margin-bottom: 6px; }
  .stat p { font-size: 14px; }
}

/* Manual scroll for the client ticker (overrides its overflow clip) */
.net-band.marquee-mask, .net-band { overflow-x: auto !important; overflow-y: hidden; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
