/* ==========================================================================
   SUNIL NETWORK DIGITAL SOLUTIONS — stylesheet
   A dark, cinematic front-end. Brand blue + cyan on near-black navy.
   Change the palette below under :root and it recolours the whole site.
   ========================================================================== */

:root {
  /* ---- palette ---- */
  --bg:        #05070f;   /* page background        */
  --bg-2:      #080b18;   /* raised sections        */
  --bg-3:      #0b1022;   /* cards                  */
  --ink:       #eaf0ff;   /* main text              */
  --muted:     #93a6cc;   /* secondary text         */
  --faint:     #5f7099;   /* micro labels           */
  --line:      rgba(130,165,235,.14);
  --line-2:    rgba(130,165,235,.22);

  --blue:      #2b7bff;   /* brand primary          */
  --blue-2:    #4f97ff;
  --blue-deep: #0b3aa0;
  --cyan:      #34c8ff;   /* brand secondary        */
  --ok:        #34d99b;

  --glow-blue: rgba(43,123,255,.55);
  --glow-cyan: rgba(52,200,255,.45);

  /* ---- type ---- */
  --f-display: 'Space Grotesk', 'Archivo', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* ---- layout ---- */
  --shell: 1200px;
  --pad: clamp(18px, 5vw, 40px);
  --radius: 16px;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* faint dotted grid over the whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 72%);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 1; }
.sr { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.skip { position:absolute; left:-999px; top:0; background:var(--blue); color:#fff; padding:10px 16px; border-radius:0 0 8px 0; z-index:200; }
.skip:focus { left:0; }

/* ==========================================================================
   INTRO PRELOADER
   ========================================================================== */
.intro {
  position: fixed; inset: 0; z-index: 999;
  background: #000;
  display: grid; place-items: center;
  transition: opacity .7s ease, visibility .7s ease;
}
.intro.is-gone { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__video {
  width: min(78vw, 560px); aspect-ratio: 4/3;
  object-fit: cover; opacity: .96;
  filter: brightness(1.05);
}
.intro__logo {
  position: absolute; width: min(30vw, 140px);
  opacity: 0; transform: scale(.8);
  filter: drop-shadow(0 0 34px var(--glow-blue));
  animation: introLogo 1.5s ease 2.1s forwards;
}
@keyframes introLogo {
  0%   { opacity: 0; transform: scale(.7); }
  55%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
.intro__skip {
  position: absolute; bottom: 26px; right: 26px;
  font: 500 12px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase;
  color: var(--faint); background: transparent; border: 1px solid var(--line-2);
  padding: 9px 14px; border-radius: 40px; transition: .2s;
}
.intro__skip:hover { color: var(--ink); border-color: var(--blue); }
body.intro-on { overflow: hidden; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  --h: 46px;
  display: inline-flex; align-items: center; gap: 9px;
  height: var(--h); padding: 0 20px;
  border-radius: 40px;
  font: 600 14.5px/1 var(--f-body);
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .25s ease, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--blue {
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--glow-blue), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px var(--glow-blue), inset 0 1px 0 rgba(255,255,255,.3); }
.btn--ghost {
  background: rgba(255,255,255,.03);
  color: var(--ink);
  border-color: var(--line-2);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--blue); color: #fff; background: rgba(43,123,255,.10); }
.btn--lg { --h: 54px; padding: 0 26px; font-size: 15.5px; }
.btn--sm { --h: 40px; padding: 0 16px; font-size: 13.5px; }
.btn--block { width: 100%; justify-content: center; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 90;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(5,7,15,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 42px; height: 42px; border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(43,123,255,.5));
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font: 700 16.5px/1 var(--f-display); letter-spacing: .01em; color: #fff; }
.brand__kicker { font: 500 10px/1 var(--f-mono); letter-spacing: .22em; text-transform: uppercase; color: var(--blue-2); margin-top: 5px; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links > a {
  padding: 9px 14px; border-radius: 40px;
  font-size: 14.5px; color: var(--muted);
  transition: color .2s, background .2s;
}
.nav__links > a:hover { color: #fff; }
.nav__links > a.is-active { color: #fff; }
.nav__links > a.is-active::after {
  content:""; display:block; height:2px; width:18px; margin:3px auto 0;
  background: var(--blue); border-radius: 2px;
}
.nav__cta { margin-left: 8px; }

.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px; background: rgba(255,255,255,.03); align-items:center; justify-content:center; }
.nav__bars { display:grid; gap:4px; }
.nav__bars i { display:block; width:18px; height:2px; background: var(--ink); border-radius:2px; transition:.25s; }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(6,9,20,.98); backdrop-filter: blur(16px);
    padding: 16px var(--pad) 26px; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .28s;
  }
  .nav__links.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__links > a { padding: 13px 8px; font-size: 16px; }
  .nav__links > a.is-active::after { margin: 6px 0 0; }
  .nav__cta { margin: 10px 0 0; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding: clamp(40px, 8vw, 96px) 0 clamp(50px, 8vw, 90px); overflow: hidden; }
.hero__glow {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.hero__glow--1 { width: 520px; height: 520px; background: radial-gradient(circle, var(--glow-blue), transparent 70%); top: -120px; right: -60px; opacity: .55; }
.hero__glow--2 { width: 440px; height: 440px; background: radial-gradient(circle, var(--glow-cyan), transparent 70%); bottom: -160px; left: -120px; opacity: .35; }

.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font: 500 12px/1 var(--f-mono); letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-2);
  padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 40px;
  background: rgba(43,123,255,.06);
}
.eyebrow::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

.display { font-family: var(--f-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.02; }
.hero__title { font-size: clamp(40px, 7vw, 78px); margin: 22px 0 0; }
.hero__title span { display: block; }
.hero__title .l2 {
  background: linear-gradient(100deg, var(--cyan), var(--blue-2) 55%, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { margin-top: 22px; max-width: 46ch; color: var(--muted); font-size: clamp(15.5px, 1.6vw, 17.5px); }
.hero__actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__facts { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px 20px; }
.hero__fact { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); }
.hero__fact i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px var(--blue); }

/* orbit visual */
.hero__viz { position: relative; display: grid; place-items: center; min-height: 380px; }
.orbit { position: relative; width: min(90vw, 460px); aspect-ratio: 1; }
.orbit__stage { position: absolute; inset: 0; display: grid; place-items: center; }
.orbit__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbit__core {
  position: absolute; width: 116px; height: 116px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(43,123,255,.35), rgba(11,16,34,.9));
  border: 1px solid var(--line-2);
  box-shadow: 0 0 60px -10px var(--glow-blue), inset 0 0 30px rgba(43,123,255,.25);
}
.orbit__core img { width: 84px; height: 84px; border-radius: 50%; }
.orbit__ring { position: absolute; inset: 0; }
.orbit__node {
  position: absolute; top: 50%; left: 50%;
  transform: rotate(calc(var(--i) * 60deg)) translate(clamp(150px, 42%, 210px)) rotate(calc(var(--i) * -60deg)) translate(-50%, -50%);
  transform-origin: 0 0;
}
.orbit__chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 12px; border-radius: 40px;
  background: rgba(11,16,34,.85); border: 1px solid var(--line-2);
  font: 600 12.5px/1 var(--f-body); color: var(--ink);
  backdrop-filter: blur(6px); white-space: nowrap;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.orbit__chip svg { width: 16px; height: 16px; color: var(--blue-2); }
.orbit__node:hover .orbit__chip { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 24px -12px var(--glow-blue); }
.orbit__hint { position: absolute; bottom: -6px; left: 0; right: 0; text-align: center; font: 500 11.5px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
@media (max-width: 940px) { .hero__viz { min-height: 340px; margin-top: 10px; } }
@media (max-width: 420px) { .orbit__chip { padding: 6px 9px; font-size: 11px; } .orbit__chip svg { width: 13px; height: 13px; } }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; background: linear-gradient(180deg, rgba(43,123,255,.04), transparent); }
.marquee__track { display: flex; width: max-content; animation: slide 30s linear infinite; }
.marquee__set { display: flex; align-items: center; }
.marquee__set span { font: 600 15px/1 var(--f-display); color: var(--muted); padding: 0 22px; white-space: nowrap; letter-spacing: .01em; }
.marquee__set b { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ==========================================================================
   SECTIONS / HEADINGS
   ========================================================================== */
.band { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.band--tight { padding: clamp(44px, 7vw, 84px) 0; }
.band--raised { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.sec-head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 60px); text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 { font-size: clamp(28px, 4.4vw, 46px); }
.sec-head .lede { margin-top: 16px; color: var(--muted); font-size: clamp(15px, 1.6vw, 17px); }
.mark-em { color: var(--cyan); }
.lede { color: var(--muted); }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  position: relative; padding: 30px 26px 28px;
  background: linear-gradient(180deg, var(--bg-3), rgba(11,16,34,.4));
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.svc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
  opacity: 0; transition: opacity .3s;
}
.svc:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 24px 50px -30px var(--glow-blue); }
.svc:hover::before { opacity: 1; }
.svc__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(43,123,255,.25), rgba(11,16,34,.6));
  border: 1px solid var(--line-2); color: var(--blue-2); margin-bottom: 20px;
}
.svc__icon svg { width: 27px; height: 27px; }
.svc__name { font: 700 20px/1.2 var(--f-display); color: #fff; }
.svc__copy { margin-top: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.svc__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font: 600 13.5px/1 var(--f-body); color: var(--blue-2); }
.svc__link svg { width: 16px; height: 16px; transition: transform .25s; }
.svc:hover .svc__link svg { transform: translateX(4px); }
.svc__hit { position: absolute; inset: 0; }

/* ==========================================================================
   SHOWCASE (video band)
   ========================================================================== */
.showcase { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.showcase__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .34; filter: saturate(1.1) contrast(1.05);
}
.showcase__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22% 40%, rgba(5,7,15,.55), transparent 55%),
    linear-gradient(90deg, var(--bg) 6%, rgba(5,7,15,.72) 44%, rgba(5,7,15,.4) 100%);
}
.showcase__inner { position: relative; z-index: 2; padding: clamp(64px, 11vw, 150px) 0; max-width: 620px; }
.showcase h2 { font-size: clamp(30px, 5vw, 52px); margin: 18px 0 0; }
.showcase p { margin-top: 18px; color: var(--muted); font-size: clamp(15px, 1.6vw, 17.5px); max-width: 48ch; }
.showcase__meta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.showcase__meta span { font: 500 12px/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--faint); display: inline-flex; align-items: center; gap: 8px; }
.showcase__meta span::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--cyan); }

/* ==========================================================================
   PROCESS RIBBON
   ========================================================================== */
.ribbon { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 860px) { .ribbon { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .ribbon { grid-template-columns: repeat(2, 1fr); } }
.rib { text-align: center; padding: 22px 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(11,16,34,.4); transition: .25s; }
.rib:hover { border-color: var(--line-2); transform: translateY(-3px); }
.rib__n { font: 600 11px/1 var(--f-mono); color: var(--faint); letter-spacing: .1em; }
.rib__t { margin-top: 10px; font: 700 15px/1.1 var(--f-display); color: #fff; }

/* ==========================================================================
   STEPS (how we work)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--bg-3), transparent); position: relative; }
.step__n { font: 700 30px/1 var(--f-display); color: transparent; -webkit-text-stroke: 1px var(--blue-2); }
.step__t { margin-top: 14px; font: 700 18px/1.2 var(--f-display); color: #fff; }
.step__d { margin-top: 8px; color: var(--muted); font-size: 14px; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 54px); align-items: center; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }
.why__aside h2 { font-size: clamp(28px, 4vw, 44px); margin: 16px 0 16px; }
.why__aside p { color: var(--muted); margin-bottom: 24px; max-width: 40ch; }
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; list-style: none; padding: 0; }
@media (max-width: 540px) { .why__list { grid-template-columns: 1fr; } }
.why__item { display: flex; gap: 13px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(11,16,34,.4); transition: .25s; }
.why__item:hover { border-color: var(--line-2); background: rgba(43,123,255,.05); }
.why__tick { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(43,123,255,.14); color: var(--cyan); }
.why__tick svg { width: 17px; height: 17px; }
.why__t { display: block; font: 700 15px/1.2 var(--f-display); color: #fff; }
.why__d { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.55; }

/* ==========================================================================
   TECH STACK
   ========================================================================== */
.tech { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.tech__chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 40px;
  border: 1px solid var(--line); background: rgba(11,16,34,.5);
  font: 600 14px/1 var(--f-body); color: var(--ink);
  transition: .25s;
}
.tech__chip:hover { border-color: var(--blue); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px -16px var(--glow-blue); }
.tech__chip i { width: 8px; height: 8px; border-radius: 2px; background: var(--blue); }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 26px 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(11,16,34,.4); }
.stat__n { font: 700 clamp(30px, 4.5vw, 44px)/1 var(--f-display); background: linear-gradient(160deg, #fff, var(--blue-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__l { margin-top: 8px; font-size: 13px; color: var(--muted); }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta__inner {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 34px; align-items: center;
  padding: clamp(36px, 6vw, 66px);
  border: 1px solid var(--line-2); border-radius: 26px;
  background:
    radial-gradient(circle at 85% 15%, rgba(52,200,255,.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(43,123,255,.22), transparent 55%),
    linear-gradient(180deg, var(--bg-3), var(--bg-2));
}
@media (max-width: 800px) { .cta__inner { grid-template-columns: 1fr; gap: 22px; } }
.cta__title { font-size: clamp(30px, 5vw, 54px); }
.cta__title span { display: block; }
.cta__title .c { color: var(--cyan); }
.cta__side p { color: var(--muted); margin-bottom: 22px; }

/* ==========================================================================
   PAGE HEADERS (inner pages)
   ========================================================================== */
.phead { position: relative; padding: clamp(46px, 8vw, 92px) 0 clamp(30px, 5vw, 54px); overflow: hidden; }
.phead::after { content:""; position:absolute; width:480px; height:480px; border-radius:50%; filter: blur(90px); background: radial-gradient(circle, var(--glow-blue), transparent 70%); top:-160px; right:-100px; opacity:.4; }
.crumb { display: flex; align-items: center; gap: 8px; font: 500 12.5px/1 var(--f-mono); color: var(--faint); letter-spacing: .05em; }
.crumb a { color: var(--muted); } .crumb a:hover { color: #fff; }
.crumb i { font-style: normal; color: var(--faint); }
.phead__title { font-size: clamp(36px, 6vw, 66px); margin: 18px 0 0; }
.phead .lede { margin-top: 16px; max-width: 60ch; font-size: clamp(15px,1.6vw,17px); }

/* ==========================================================================
   SERVICE DETAIL
   ========================================================================== */
.detail { display: grid; grid-template-columns: 64px 1fr; gap: 22px 28px; padding: 34px 0; border-top: 1px solid var(--line); align-items: start; }
.detail:first-of-type { border-top: none; }
@media (max-width: 760px) { .detail { grid-template-columns: 1fr; } }
.detail__ico { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; background: radial-gradient(circle at 35% 30%, rgba(43,123,255,.25), rgba(11,16,34,.6)); border: 1px solid var(--line-2); color: var(--blue-2); }
.detail__ico svg { width: 32px; height: 32px; }
.detail__name { font: 700 clamp(22px, 3vw, 30px)/1.1 var(--f-display); color: #fff; }
.detail__copy { margin-top: 10px; color: var(--muted); max-width: 60ch; }
.detail__aside { grid-column: 2; }
@media (max-width: 760px) { .detail__aside { grid-column: 1; } }
.detail__k { font: 500 11.5px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; }
.detail__points { list-style: none; padding: 0; display: grid; gap: 9px; margin-bottom: 18px; }
.detail__points li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-size: 14.5px; }
.detail__points svg { width: 17px; height: 17px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.detail__aside .btn { max-width: 320px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; align-items: stretch; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
.contact__cards { display: grid; gap: 14px; align-content: start; }
.info { display: flex; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(11,16,34,.4); }
.info__ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(43,123,255,.12); color: var(--blue-2); flex-shrink: 0; }
.info__ico svg { width: 21px; height: 21px; }
.info__k { font: 500 11.5px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.info__v { color: var(--ink); font-size: 14.5px; font-style: normal; line-height: 1.55; }
.info__v a:hover { color: var(--blue-2); }
.map { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 340px; }
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) invert(.9) hue-rotate(180deg) contrast(.9); }

/* ==========================================================================
   INQUIRY FORM
   ========================================================================== */
.form-wrap { display: grid; grid-template-columns: 1.4fr .9fr; gap: 22px; align-items: start; }
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; } }
.panel { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--bg-3), var(--bg-2)); overflow: hidden; }
.panel__bar { display: flex; align-items: center; gap: 10px; padding: 14px 22px; border-bottom: 1px solid var(--line); font: 500 12px/1 var(--f-mono); letter-spacing: .06em; color: var(--faint); text-transform: uppercase; }
.panel__bar b { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); }

.alert { display: flex; gap: 11px; align-items: flex-start; margin: 20px 22px 0; padding: 14px 16px; border-radius: 12px; font-size: 14px; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert--bad { background: rgba(255,90,90,.09); border: 1px solid rgba(255,90,90,.35); color: #ffb4b4; }
.alert--good { background: rgba(52,217,155,.09); border: 1px solid rgba(52,217,155,.35); color: #9deaccb3; }
.alert--good a, .alert--bad a { color: #fff; }

.picker { display: flex; flex-wrap: wrap; gap: 8px; padding: 20px 22px 4px; }
.picker a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 40px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.02);
  font: 600 12.5px/1 var(--f-body); color: var(--muted); transition: .2s;
}
.picker a svg { width: 15px; height: 15px; }
.picker a:hover { color: #fff; border-color: var(--blue); }
.picker a.is-on { background: rgba(43,123,255,.14); border-color: var(--blue); color: #fff; }

form { padding: 18px 22px 24px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .grid2 { grid-template-columns: 1fr; } }
.field { margin-bottom: 14px; }
.field__l { display: block; font: 600 13px/1 var(--f-body); color: var(--ink); margin-bottom: 8px; }
.field__l em { color: var(--cyan); font-style: normal; }
.field__l small { color: var(--faint); font-weight: 400; }
.input, .select, .textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px;
  background: rgba(5,7,15,.6); border: 1px solid var(--line-2); color: var(--ink);
  font: 400 15px/1.4 var(--f-body); transition: border-color .2s, box-shadow .2s;
}
.textarea { min-height: 130px; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: #4c5c7e; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,123,255,.18); }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2393a6cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field.is-bad .input, .field.is-bad .select, .field.is-bad .textarea { border-color: rgba(255,90,90,.6); }
.err { display: block; margin-top: 6px; font-size: 12.5px; color: #ff9b9b; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.consent { display: flex; gap: 11px; align-items: flex-start; margin: 6px 0 20px; font-size: 13.5px; color: var(--muted); cursor: pointer; }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--blue); flex-shrink: 0; }
.consent.is-bad { color: #ffb4b4; }

aside .aside-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(11,16,34,.4); margin-bottom: 14px; }
.aside-card h3 { font: 700 16px/1.2 var(--f-display); color: #fff; margin-bottom: 14px; }
.aside-list { list-style: none; padding: 0; display: grid; gap: 12px; }
.aside-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.aside-list svg { width: 17px; height: 17px; color: var(--cyan); flex-shrink: 0; margin-top: 1px; }

/* ==========================================================================
   THANK YOU / 404
   ========================================================================== */
.done { max-width: 640px; margin: 0 auto; text-align: center; padding-bottom: 40px; }
.done h1 { font-size: clamp(32px, 5vw, 56px); }
.done .lede { margin: 16px auto 0; }
.done__seal { width: 84px; height: 84px; margin: 0 auto 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(52,217,155,.1); border: 1px solid rgba(52,217,155,.4); color: var(--ok); box-shadow: 0 0 50px -12px rgba(52,217,155,.5); }
.done__seal svg { width: 40px; height: 40px; stroke-width: 2.2; }
.done__acts { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot { border-top: 1px solid var(--line); background: var(--bg-2); padding: clamp(48px, 7vw, 80px) 0 30px; position: relative; z-index: 1; }
.foot__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 34px; }
@media (max-width: 900px) { .foot__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .foot__top { grid-template-columns: 1fr; } }
.brand--foot .brand__logo { width: 46px; height: 46px; }
.foot__blurb { margin-top: 16px; color: var(--muted); font-size: 14px; max-width: 34ch; }
.foot__social { margin-top: 18px; display: flex; gap: 10px; }
.foot__social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--muted); transition: .2s; }
.foot__social a:hover { color: #fff; border-color: var(--blue); background: rgba(43,123,255,.1); }
.foot__social svg { width: 18px; height: 18px; }
.foot__h { font: 500 11.5px/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.foot__list { list-style: none; padding: 0; display: grid; gap: 10px; }
.foot__list a { color: var(--muted); font-size: 14px; } .foot__list a:hover { color: #fff; }
.foot__addr { font-style: normal; color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.foot__mail { display: block; color: var(--blue-2); font-size: 14px; margin-bottom: 6px; }
.foot__hours { color: var(--muted); font-size: 13px; margin-top: 8px; }
.foot__gst { margin-top: 10px; font: 500 11.5px/1.5 var(--f-mono); color: var(--faint); letter-spacing: .04em; }
.foot__line { margin: clamp(34px,5vw,52px) 0 22px; text-align: center; font: 700 clamp(20px, 3.4vw, 34px)/1 var(--f-display); background: linear-gradient(100deg, var(--cyan), var(--blue-2), #fff); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.01em; }
.foot__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--faint); }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.totop { position: fixed; bottom: 24px; right: 24px; z-index: 80; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(43,123,255,.14); border: 1px solid var(--line-2); backdrop-filter: blur(8px); color: var(--ink); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s; }
.totop.is-on { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--blue); border-color: var(--blue); }
.totop svg { width: 20px; height: 20px; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; }
.rv-d4 { transition-delay: .32s; } .rv-d5 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }
