/* =========================================================
   OYK Development Ltd — Global Stylesheet
   Dark tech palette · Magnetic cursor · Code-line animations
   ========================================================= */

:root {
  --bg:        #06080f;
  --bg-2:      #0a0d18;
  --panel:     rgba(255, 255, 255, 0.04);
  --panel-2:   rgba(255, 255, 255, 0.07);
  --line:      rgba(255, 255, 255, 0.08);
  --text:      #eef0f8;
  --muted:     #8892b0;
  --accent:    #3d6aff;
  --accent-2:  #00e5a0;
  --accent-3:  #7eb8ff;
  --glow-1:    rgba(61, 106, 255, 0.22);
  --glow-2:    rgba(0, 229, 160, 0.14);
  --shadow:    0 28px 90px rgba(0, 0, 0, 0.5);
  --radius:    24px;
  --max:       1220px;
  --nav-h:     76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

/* Grid overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(61,106,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,106,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: -2;
}

/* Radial glow blobs */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 8%, rgba(61,106,255,.18), transparent 38%),
    radial-gradient(ellipse at 88% 6%, rgba(0,229,160,.10), transparent 30%),
    radial-gradient(ellipse at 50% 95%, rgba(61,106,255,.06), transparent 24%);
  z-index: -1;
}

/* ---------- Custom cursor — crosshair style ---------- */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s ease, height .15s ease, background .2s ease;
  box-shadow: 0 0 12px rgba(0,229,160,.8);
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(61,106,255,.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .28s cubic-bezier(.25,.46,.45,.94),
              height .28s cubic-bezier(.25,.46,.45,.94),
              border-color .25s ease, opacity .25s ease;
}
/* Crosshair lines */
.cursor-ring::before,
.cursor-ring::after {
  content: "";
  position: absolute;
  background: rgba(61,106,255,.4);
}
.cursor-ring::before { width: 1px; height: 10px; left: 50%; top: -14px; transform: translateX(-50%); }
.cursor-ring::after  { width: 10px; height: 1px; left: -14px; top: 50%; transform: translateY(-50%); }

body.cursor-hover .cursor-dot { width: 10px; height: 10px; background: var(--accent); box-shadow: 0 0 18px rgba(61,106,255,.7); }
body.cursor-hover .cursor-ring { width: 50px; height: 50px; border-color: rgba(0,229,160,.65); }
body.cursor-click .cursor-dot { transform: translate(-50%,-50%) scale(.5); }

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 60;
  box-shadow: 0 0 14px rgba(0,229,160,.5);
}

/* ---------- Layout ---------- */
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(61,106,255,.3);
  background: rgba(61,106,255,.08);
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px rgba(0,229,160,.9);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ---------- Typography ---------- */
h1 {
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.94;
  letter-spacing: -.055em;
  font-weight: 900;
}
h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 900;
}
h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 700;
}
.lead { color: var(--muted); font-size: 17px; max-width: 660px; line-height: 1.7; }
.small { color: var(--muted); font-size: 13px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; margin-bottom: 44px; flex-wrap: wrap; }

/* Gradient text */
.grad { background: linear-gradient(135deg, #fff 0%, var(--accent-3) 40%, var(--accent-2) 80%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Code-line reveal animation ---------- */
.line-reveal {
  overflow: hidden;
  display: block;
}
.line-reveal > span {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform .75s cubic-bezier(.16,1,.3,1), opacity .5s ease;
}
.line-reveal.in-view > span { transform: translateY(0); opacity: 1; }

/* ---------- Standard reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-left { opacity:0; transform:translateX(-24px); transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1); }
.reveal-left.in-view { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1); }
.reveal-right.in-view { opacity:1; transform:translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .line-reveal > span { opacity:1; transform:none; transition:none; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  overflow: hidden;
  cursor: none;
  font-family: inherit;
  font-size: 14px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #2a54d4);
  box-shadow: 0 10px 32px rgba(61,106,255,.34);
}
.btn-primary:hover { box-shadow: 0 16px 42px rgba(61,106,255,.45); }
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-140%);
  transition: transform .8s ease;
}
.btn-primary:hover::after { transform: translateX(160%); }
.btn-secondary {
  border-color: rgba(61,106,255,.35);
  background: rgba(61,106,255,.07);
  color: var(--accent-3);
}
.btn-secondary:hover { background: rgba(61,106,255,.14); border-color: rgba(0,229,160,.45); color: var(--accent-2); }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(22px);
  background: rgba(6,8,15,.7);
  border-bottom: 1px solid rgba(61,106,255,.1);
}
.nav {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.04em; font-size: 17px; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #1a3db5);
  box-shadow: 0 6px 20px rgba(61,106,255,.35);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.06em;
  flex-shrink: 0;
}

nav ul { list-style:none; display:flex; align-items:center; gap:20px; padding:0; margin:0; color:var(--muted); font-size:14px; }
nav a { position:relative; padding:8px 0; transition:color .2s ease; }
nav a::after { content:""; position:absolute; left:0; bottom:0; width:100%; height:1.5px; background:linear-gradient(90deg,var(--accent),var(--accent-2)); transform:scaleX(0); transform-origin:left; transition:transform .25s ease; }
nav a:hover, nav a.active { color:var(--text); }
nav a:hover::after, nav a.active::after { transform:scaleX(1); }

.nav-cta {
  padding: 9px 18px;
  border-radius: 10px;
  border: 1px solid rgba(61,106,255,.4);
  background: rgba(61,106,255,.1);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-3);
  transition: background .2s, border-color .2s, color .2s;
}
.nav-cta:hover { background: rgba(61,106,255,.2); border-color: rgba(0,229,160,.5); color: var(--accent-2); }
.nav-toggle { display:none; background:transparent; border:1px solid var(--line); border-radius:10px; padding:9px; cursor:none; color:var(--text); }
.mobile-menu { position:fixed; top:var(--nav-h); left:0; right:0; background:rgba(6,8,15,.97); backdrop-filter:blur(20px); border-bottom:1px solid var(--line); padding:28px; display:none; z-index:29; }
.mobile-menu.open { display:block; }
.mobile-menu ul { list-style:none; padding:0; margin:0; display:grid; gap:16px; }
.mobile-menu a { display:block; padding:10px 0; color:var(--muted); font-size:19px; font-weight:700; border-bottom:1px solid rgba(255,255,255,.05); }
.mobile-menu a.active { color:var(--text); }
body.menu-open { overflow:hidden; }

/* ---------- Hero ---------- */
.hero { padding:54px 0 90px; min-height:calc(100vh - var(--nav-h)); display:flex; align-items:center; overflow:clip; }
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center; }

.hero-copy .lead { margin-top:20px; }
.hero-points { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:26px; }
.hero-point { padding:14px 16px; border-radius:14px; background:rgba(61,106,255,.06); border:1px solid rgba(61,106,255,.15); color:var(--muted); font-size:13px; line-height:1.5; transition:border-color .3s ease, transform .3s ease; }
.hero-point:hover { border-color:rgba(0,229,160,.4); transform:translateY(-2px); }
.hero-point::before { content:"✓ "; color:var(--accent-2); font-weight:800; }

.stats-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:26px; }
.stat { border-radius:16px; padding:16px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); }
.stat b { display:block; font-size:28px; letter-spacing:-.05em; margin-bottom:4px; background:linear-gradient(135deg,var(--accent-2),var(--accent-3)); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* ---------- Hero terminal visual ---------- */
.hero-visual { position:relative; min-height:640px; display:grid; place-items:center; }
.orb { position:absolute; border-radius:50%; filter:blur(8px); animation:float 10s ease-in-out infinite; }
.orb.one { width:200px; height:200px; top:-10px; right:10px; background:rgba(61,106,255,.38); }
.orb.two { width:120px; height:120px; bottom:80px; left:0; background:rgba(0,229,160,.28); animation-delay:-4s; }
.orb.three { width:70px; height:70px; top:220px; left:50px; background:rgba(126,184,255,.22); animation-delay:-7s; }

.terminal-wrap { position:relative; width:min(100%,560px); }
.terminal {
  border-radius:22px;
  background:linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow), inset 0 0 0 1px rgba(61,106,255,.1);
  backdrop-filter:blur(18px);
  overflow:hidden;
  transform:perspective(1400px) rotateY(-8deg) rotateX(6deg);
  transition:transform .35s ease;
}
.term-header { display:flex; align-items:center; gap:10px; padding:14px 18px; background:rgba(0,0,0,.35); border-bottom:1px solid rgba(255,255,255,.06); }
.term-dots { display:flex; gap:7px; }
.term-dots span { width:11px; height:11px; border-radius:50%; }
.term-dots span:nth-child(1) { background:#ff5f56; }
.term-dots span:nth-child(2) { background:#ffbd2e; }
.term-dots span:nth-child(3) { background:#27c93f; }
.term-title { font-size:12px; color:var(--muted); letter-spacing:.04em; }

.term-body { padding:20px; font-family:"Fira Code","Cascadia Code","Consolas",monospace; font-size:13px; line-height:1.7; }
.t-line { display:flex; gap:10px; animation:typein .08s ease both; }
.t-prompt { color:var(--accent-2); flex-shrink:0; }
.t-cmd { color:var(--text); }
.t-comment { color:#4a5568; font-style:italic; }
.t-string { color:#a8ff78; }
.t-keyword { color:var(--accent-3); }
.t-number { color:#f0a830; }
.t-output { color:var(--muted); padding-left:20px; font-size:12px; }
.t-blank { height:10px; }
.t-cursor { display:inline-block; width:8px; height:14px; background:var(--accent-2); border-radius:2px; margin-left:2px; animation:blink 1.1s step-end infinite; vertical-align:middle; }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes typein { from{opacity:0;transform:translateX(-4px)} to{opacity:1;transform:none} }

/* Stagger lines */
.t-line:nth-child(1)  { animation-delay:.1s }
.t-line:nth-child(2)  { animation-delay:.25s }
.t-line:nth-child(3)  { animation-delay:.4s }
.t-line:nth-child(4)  { animation-delay:.55s }
.t-line:nth-child(5)  { animation-delay:.7s }
.t-line:nth-child(6)  { animation-delay:.85s }
.t-line:nth-child(7)  { animation-delay:1.0s }
.t-line:nth-child(8)  { animation-delay:1.15s }
.t-line:nth-child(9)  { animation-delay:1.3s }
.t-line:nth-child(10) { animation-delay:1.45s }
.t-line:nth-child(11) { animation-delay:1.6s }
.t-line:nth-child(12) { animation-delay:1.75s }
.t-line:nth-child(13) { animation-delay:1.9s }
.t-line:nth-child(14) { animation-delay:2.05s }
.t-line:nth-child(15) { animation-delay:2.2s }

.badge-floating {
  position:absolute;
  right:-18px; bottom:40px;
  padding:13px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.95);
  color:#0a0d18;
  box-shadow:var(--shadow);
  font-weight:800;
  font-size:13px;
  animation:float 7s ease-in-out infinite;
  white-space:nowrap;
}
.badge-floating span { display:block; font-weight:500; font-size:11px; color:#4a5568; margin-top:2px; }

/* ---------- Marquee ---------- */
.marquee-wrap { overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:13px 0; }
.marquee-track { display:flex; gap:44px; animation:marquee 26s linear infinite; white-space:nowrap; }
.marquee-track:hover { animation-play-state:paused; }
.marquee-item { color:var(--muted); font-size:13px; letter-spacing:.1em; text-transform:uppercase; flex-shrink:0; display:flex; align-items:center; gap:12px; font-weight:600; }
.marquee-item::after { content:"◆"; color:var(--accent); font-size:7px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

/* ---------- Cards ---------- */
.cards-2, .cards-3, .cards-4 { display:grid; gap:14px; }
.cards-2 { grid-template-columns:repeat(2,1fr); }
.cards-3 { grid-template-columns:repeat(3,1fr); }
.cards-4 { grid-template-columns:repeat(4,1fr); }

.card {
  position:relative;
  border-radius:var(--radius);
  padding:28px;
  overflow:hidden;
  background:linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  transition:transform .35s cubic-bezier(.16,1,.3,1), border-color .3s ease;
}
.card:hover { transform:translateY(-5px); border-color:rgba(61,106,255,.35); }
.card::before { content:""; position:absolute; width:180px; height:180px; right:-90px; top:-90px; border-radius:50%; background:radial-gradient(circle,rgba(61,106,255,.1),transparent 68%); pointer-events:none; }

.card-icon { width:48px; height:48px; margin-bottom:16px; display:grid; place-items:center; border-radius:14px; background:rgba(61,106,255,.12); border:1px solid rgba(61,106,255,.2); color:var(--accent-2); }
.card-icon svg { width:20px; height:20px; }
.card p { margin-top:10px; color:var(--muted); font-size:14px; }

/* ---------- Services layout ---------- */
.services-layout { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.service-box { min-height:260px; display:flex; flex-direction:column; justify-content:space-between; }
.service-list { display:grid; gap:7px; margin-top:12px; color:var(--muted); font-size:14px; }
.service-list span::before { content:"→ "; color:var(--accent-2); font-weight:800; }
.service-box .shape { position:absolute; width:140px; height:140px; right:-30px; bottom:-30px; border-radius:28px; transform:rotate(20deg); background:linear-gradient(135deg,rgba(61,106,255,.25),rgba(0,229,160,.1)); border:1px solid rgba(255,255,255,.05); }

/* ---------- Cases ---------- */
.case-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.case-card { border-radius:22px; background:rgba(255,255,255,.04); border:1px solid var(--line); overflow:hidden; display:flex; flex-direction:column; transition:transform .35s cubic-bezier(.16,1,.3,1), border-color .3s ease; }
.case-card:hover { transform:translateY(-5px); border-color:rgba(61,106,255,.4); }
.case-card .cover { aspect-ratio:16/10; background:linear-gradient(135deg,rgba(61,106,255,.28),rgba(0,229,160,.14)); overflow:hidden; }
.case-card .cover img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.case-card:hover .cover img { transform:scale(1.04); }
.case-card .body { padding:20px; display:grid; gap:7px; }
.case-card .body p { color:var(--muted); font-size:14px; line-height:1.6; }

/* ---------- Quotes ---------- */
.quote-card { position:relative; border-radius:var(--radius); padding:28px; background:linear-gradient(160deg,rgba(255,255,255,.06),rgba(255,255,255,.02)); border:1px solid var(--line); transition:transform .3s ease; }
.quote-card:hover { transform:translateY(-4px); }
.quote-card::before { content:"\201C"; position:absolute; top:-14px; right:20px; font-size:80px; color:rgba(61,106,255,.15); pointer-events:none; }
.quote-card .quote-text { font-size:16px; line-height:1.6; color:var(--text); }
.quote-card .quote-source { margin-top:16px; color:var(--muted); font-size:13px; }

/* ---------- Timeline ---------- */
.timeline { display:grid; gap:14px; }
.timeline-item { position:relative; padding:20px 22px 20px 70px; border-radius:22px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); transition:border-color .3s ease; }
.timeline-item:hover { border-color:rgba(61,106,255,.3); }
.timeline-item::before { content:attr(data-step); position:absolute; left:18px; top:18px; width:34px; height:34px; display:grid; place-items:center; border-radius:10px; color:#fff; font-weight:900; font-size:14px; background:linear-gradient(135deg,var(--accent),#1a3db5); box-shadow:0 4px 14px rgba(61,106,255,.35); }

/* ---------- Pricing calculator ---------- */
.calc-wrap { display:grid; grid-template-columns:1.1fr .9fr; gap:22px; align-items:start; }
.calc-panel { border-radius:26px; padding:30px; background:linear-gradient(160deg,rgba(255,255,255,.06),rgba(255,255,255,.02)); border:1px solid rgba(255,255,255,.09); }
.calc-section { margin-top:26px; }
.calc-section:first-child { margin-top:0; }
.calc-label { font-size:12px; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); margin-bottom:10px; font-weight:700; }
.calc-options { display:grid; gap:7px; }
.calc-option { display:flex; align-items:center; justify-content:space-between; padding:12px 15px; border-radius:12px; border:1.5px solid rgba(255,255,255,.07); background:rgba(255,255,255,.02); cursor:none; transition:border-color .2s,background .2s; user-select:none; }
.calc-option:hover { border-color:rgba(61,106,255,.4); background:rgba(61,106,255,.06); }
.calc-option.selected { border-color:var(--accent); background:rgba(61,106,255,.1); }
.calc-option-name { font-size:14px; font-weight:700; }
.calc-option-hint { font-size:11px; color:var(--muted); margin-top:2px; }
.calc-option-price { font-size:12px; color:var(--accent-2); font-weight:700; flex-shrink:0; margin-left:10px; }
.calc-option input[type="radio"] { display:none; }
.calc-result { border-radius:26px; padding:30px; background:linear-gradient(135deg,rgba(61,106,255,.15),rgba(0,229,160,.08)); border:1px solid rgba(61,106,255,.3); position:sticky; top:calc(var(--nav-h)+18px); }
.calc-result-price { font-size:50px; font-weight:900; letter-spacing:-.06em; background:linear-gradient(135deg,var(--accent-2),var(--accent-3)); -webkit-background-clip:text; background-clip:text; color:transparent; line-height:1; margin:14px 0 4px; }
.calc-result-range { font-size:13px; color:var(--muted); margin-bottom:20px; }
.calc-includes { display:grid; gap:7px; margin:18px 0; padding:0; list-style:none; }
.calc-includes li { display:flex; gap:9px; align-items:start; font-size:13px; color:var(--muted); }
.calc-includes li::before { content:"✓"; color:var(--accent-2); font-weight:800; flex-shrink:0; }
.calc-note { font-size:11px; color:var(--muted); margin-top:14px; padding-top:14px; border-top:1px solid rgba(255,255,255,.07); line-height:1.6; }

/* ---------- FAQ ---------- */
.faq { display:grid; gap:9px; }
.faq details { border:1px solid var(--line); border-radius:16px; padding:17px 20px; background:rgba(255,255,255,.02); transition:border-color .2s ease; }
.faq details[open] { border-color:rgba(61,106,255,.4); }
.faq summary { cursor:none; font-weight:700; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px; font-size:15px; }
.faq summary::after { content:"+"; font-size:20px; color:var(--accent-2); transition:transform .2s ease; flex-shrink:0; }
.faq details[open] summary::after { transform:rotate(45deg); }
.faq details p { margin-top:11px; color:var(--muted); font-size:14px; line-height:1.65; }

/* ---------- CTA Banner ---------- */
.cta-banner { position:relative; display:grid; grid-template-columns:1.1fr .9fr; gap:18px; align-items:center; padding:36px; border-radius:28px; border:1px solid rgba(61,106,255,.2); background:linear-gradient(135deg,rgba(61,106,255,.16),rgba(0,229,160,.07)); overflow:hidden; }
.cta-banner::after { content:""; position:absolute; width:280px; height:280px; right:-80px; top:-120px; border-radius:50%; background:rgba(61,106,255,.08); filter:blur(10px); pointer-events:none; }

/* ---------- Legal ---------- */
.legal-body h2 { font-size:clamp(20px,2vw,26px); letter-spacing:-.03em; margin-top:46px; margin-bottom:11px; }
.legal-body h3 { font-size:17px; letter-spacing:-.02em; margin-top:26px; margin-bottom:7px; }
.legal-body p, .legal-body li { color:var(--muted); font-size:15px; line-height:1.75; margin-top:9px; }
.legal-body ul { padding-left:20px; margin-top:9px; }
.legal-body ul li { margin-top:5px; }
.legal-body a { color:var(--accent-2); text-decoration:underline; }
.legal-divider { border:none; border-top:1px solid rgba(255,255,255,.07); margin:38px 0; }
.legal-meta { font-size:13px; color:var(--muted); margin-bottom:36px; }
.legal-entity-box { background:rgba(61,106,255,.06); border:1px solid rgba(61,106,255,.2); border-radius:18px; padding:26px 30px; margin:24px 0; display:grid; grid-template-columns:1fr 1fr; gap:16px 36px; }
.legal-entity-box .field { display:grid; gap:4px; }
.legal-entity-box .field-label { font-size:11px; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); font-weight:700; }
.legal-entity-box .field-value { font-size:14px; font-weight:700; color:var(--text); }

/* ---------- Footer ---------- */
footer { padding:50px 0; color:var(--muted); margin-top:40px; }
.footer-box { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:30px; border-top:1px solid rgba(255,255,255,.06); padding-top:40px; }
.footer-col h4 { font-size:12px; text-transform:uppercase; letter-spacing:.1em; color:var(--text); margin-bottom:14px; font-weight:800; }
.footer-col ul { list-style:none; padding:0; margin:0; display:grid; gap:9px; }
.footer-col a { color:var(--muted); font-size:14px; transition:color .2s ease; }
.footer-col a:hover { color:var(--accent-2); }
.footer-bottom { margin-top:34px; padding-top:18px; border-top:1px solid rgba(255,255,255,.05); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12px; }

/* ---------- Tech stack chips ---------- */
.tech-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.chip { padding:5px 12px; border-radius:999px; border:1px solid rgba(61,106,255,.3); background:rgba(61,106,255,.07); font-size:12px; color:var(--accent-3); font-weight:600; letter-spacing:.04em; }
.chip:hover { border-color:rgba(0,229,160,.5); color:var(--accent-2); }

/* ---------- Responsive ---------- */
@media (max-width:1080px) {
  .hero-grid,.cta-banner,.cards-4,.cards-3,.stats-strip,.calc-wrap { grid-template-columns:1fr 1fr; }
  .footer-box { grid-template-columns:1fr 1fr; }
  nav ul { display:none; }
  .nav-toggle { display:inline-flex; }
}
@media (max-width:760px) {
  .section { padding:78px 0; }
  .hero { min-height:auto; padding-bottom:48px; }
  .hero-grid,.cta-banner,.cards-4,.cards-3,.cards-2,.stats-strip,.hero-points,.case-grid,.calc-wrap,.services-layout,.footer-box { grid-template-columns:1fr; }
  .section-head,.footer-bottom { flex-direction:column; align-items:flex-start; }
  .terminal { transform:none !important; }
  .hero-visual { min-height:400px; }
  .badge-floating { position:static; margin-top:14px; }
  .nav-cta { display:none; }
  .cursor-dot,.cursor-ring { display:none; }
  body { cursor:auto; }
  * { cursor:auto !important; }
  .calc-result { position:static; }
  .legal-entity-box { grid-template-columns:1fr; }
}
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
