/* SwiftByte — Electric / Voltage design system */

:root {
  --void: #05050a;
  --void-2: #0a0a14;
  --panel: #0d0d1a;
  --line: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --dim: rgba(255, 255, 255, 0.62);
  --dimmer: rgba(255, 255, 255, 0.38);
  --volt: #1e1eff;
  --volt-soft: #4b4bff;
  --cyan: #00e5ff;
  --violet: #8a5cff;
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --bolt-clip: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  --max: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Lenis required styles */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 84px 84px, 84px 84px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 10%, transparent 85%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 10%, transparent 85%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--volt); color: #fff; }

/* typography */

.display, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.88;
  text-transform: uppercase;
}

h1 { font-size: clamp(3.4rem, 10.5vw, 9.5rem); }
h2 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); letter-spacing: -0.01em; }

p { color: var(--dim); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 62ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dimmer);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--volt);
  box-shadow: 0 0 10px var(--volt);
}

.volt { color: var(--volt-soft); }
.stroke-text { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.42); }

/* layout */

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.15rem, 4vw, 2.5rem); position: relative; z-index: 2; }
section { position: relative; padding: clamp(5rem, 11vw, 9.5rem) 0; }
.section-head { max-width: 900px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head h2 { margin: 1.1rem 0 1.4rem; }

/* cursor */

.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
}
.cursor {
  width: 42px; height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transition: width 0.25s, height 0.25s, margin 0.25s, background 0.25s, border-color 0.25s;
}
.cursor.is-active {
  width: 74px; height: 74px; margin: -37px 0 0 -37px;
  border-color: var(--volt);
  background: rgba(30, 30, 255, 0.14);
  box-shadow: 0 0 30px rgba(30, 30, 255, 0.5);
}
.cursor-dot { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; background: var(--white); border-radius: 50%; }
.spark {
  position: fixed;
  width: 3px; height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  box-shadow: 0 0 8px var(--cyan);
}
@media (hover: none), (max-width: 900px) {
  .cursor, .cursor-dot, .spark { display: none !important; }
}

/* nav */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 0;
  transition: background 0.35s, backdrop-filter 0.35s, padding 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 5, 10, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 0.55rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 38px; height: 38px;
  background: var(--volt);
  display: grid; place-items: center;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  box-shadow: 0 0 22px rgba(30, 30, 255, 0.55);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { font-family: var(--display); font-size: 1.32rem; letter-spacing: 0.01em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--volt);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 0 8px var(--volt);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--white); }

.has-drop { position: relative; }
.drop {
  position: absolute;
  top: calc(100% + 14px); left: -1rem;
  min-width: 260px;
  background: rgba(10, 10, 20, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  clip-path: var(--bolt-clip);
  padding: 0.6rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  color: var(--dim);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.drop a::after { display: none; }
.drop a:hover { background: rgba(30, 30, 255, 0.16); color: var(--white); padding-left: 1.15rem; }

.nav-cta { display: flex; align-items: center; gap: 0.85rem; }

.burger { display: none; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); }
.burger span { display: block; width: 18px; height: 1.5px; background: #fff; margin: 3px 0; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--void);
  z-index: 890;
  padding: 6.5rem clamp(1.15rem, 6vw, 3rem) 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
}
.mobile-menu.open { clip-path: inset(0 0 0 0); }
.mobile-menu a {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 7vw, 2.4rem);
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); }
.mobile-menu .sub { font-size: 1rem; font-family: var(--body); padding-left: 1rem; text-transform: none; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: grid; }
  .nav-cta .btn { display: none; }
}

/* buttons */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--volt);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn:hover { box-shadow: 0 0 34px rgba(30, 30, 255, 0.75); }
.btn:hover::before { transform: translateX(120%); }

.btn-ghost { background: transparent; border: 1px solid rgba(255, 255, 255, 0.22); color: #fff; }
.btn-ghost:hover { border-color: var(--volt); box-shadow: 0 0 28px rgba(30, 30, 255, 0.35); }
.btn-sm { padding: 0.7rem 1.2rem; font-size: 0.7rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--white);
}
.link-arrow i { transition: transform 0.3s; font-style: normal; color: var(--volt-soft); }
.link-arrow:hover i { transform: translateX(6px); }

/* hero */

.hero { padding-top: clamp(8rem, 16vw, 11rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin: 1.4rem 0; }
.hero-sub { max-width: 46ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero-glow {
  position: absolute;
  width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  top: -18%; right: -14%;
  background: radial-gradient(circle, rgba(30, 30, 255, 0.3), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.reveal-line { display: block; overflow: hidden; }
.char { display: inline-block; will-change: transform, opacity; }

/* live console */

.console {
  position: relative;
  background: linear-gradient(160deg, rgba(13, 13, 26, 0.95), rgba(5, 5, 10, 0.95));
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  padding: 1.35rem;
  box-shadow: 0 40px 90px -30px rgba(30, 30, 255, 0.45);
}
.console-bar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.9rem; border-bottom: 1px solid var(--line); margin-bottom: 1rem; }
.console-title { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dimmer); }
.pill-live { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); }
.pill-live b { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }

.console-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1rem; }
.cstat { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); padding: 0.75rem 0.8rem; }
.cstat b { display: block; font-family: var(--display); font-size: 1.6rem; line-height: 1; }
.cstat span { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dimmer); }

.feed { height: 268px; overflow: hidden; position: relative; }
.feed::after { content: ""; position: absolute; inset: auto 0 0 0; height: 60px; background: linear-gradient(transparent, #06060c); pointer-events: none; }
.event {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.7rem;
  border-left: 2px solid var(--volt);
  background: rgba(30, 30, 255, 0.07);
  margin-bottom: 0.5rem;
  animation: eventIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes eventIn { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: none; } }
.event .ico { width: 26px; height: 26px; flex: none; display: grid; place-items: center; background: rgba(30, 30, 255, 0.22); }
.event .ico svg { width: 13px; height: 13px; }
.event p { color: var(--white); font-size: 0.82rem; margin: 0; line-height: 1.25; }
.event small { color: var(--dimmer); font-size: 0.66rem; letter-spacing: 0.08em; }
.event.alt { border-left-color: var(--cyan); background: rgba(0, 229, 255, 0.06); }
.event.alt .ico { background: rgba(0, 229, 255, 0.16); }

/* marquee */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(30, 30, 255, 0.05);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
  z-index: 2;
}
.marquee-track { display: flex; width: max-content; animation: scrollx 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex; align-items: center; gap: 2.4rem;
  white-space: nowrap;
  padding-right: 2.4rem;
}
.marquee-track span::after { content: ""; width: 12px; height: 20px; flex: none; background: var(--volt); clip-path: polygon(55% 0, 0 58%, 42% 58%, 32% 100%, 100% 40%, 52% 40%); box-shadow: 0 0 12px var(--volt); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* cards */

.grid { display: grid; gap: 1.15rem; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 2.4vw, 2rem);
  clip-path: var(--bolt-clip);
  overflow: hidden;
  transition: background 0.35s, border-color 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
}
.card::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 30, 255, 0.28), transparent 65%);
  left: var(--mx, 50%); top: var(--my, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.card:hover { border-color: rgba(30, 30, 255, 0.6); }
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 2; }
.card h3 { margin-bottom: 0.7rem; }
.card p { font-size: 0.93rem; }
.card .num { font-family: var(--display); font-size: 0.8rem; color: var(--volt-soft); letter-spacing: 0.2em; display: block; margin-bottom: 1rem; }
.card-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(30, 30, 255, 0.16);
  border: 1px solid rgba(30, 30, 255, 0.4);
  margin-bottom: 1.1rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.card-ico svg { width: 20px; height: 20px; }
.card-link { margin-top: 1.3rem; display: inline-block; }

.ticks { list-style: none; display: grid; gap: 0.7rem; }
.ticks li { position: relative; padding-left: 1.7rem; color: var(--dim); font-size: 0.95rem; }
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: 0.45em;
  width: 11px; height: 16px;
  background: var(--volt);
  clip-path: polygon(55% 0, 0 58%, 42% 58%, 32% 100%, 100% 40%, 52% 40%);
}

/* stats */

.stat { border-left: 1px solid var(--line); padding: 0.4rem 0 0.4rem 1.5rem; }
.stat b { display: block; font-family: var(--display); font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: 0.9; }
.stat b em { font-style: normal; color: var(--volt-soft); }
.stat span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dimmer); }

/* circuit spine */

.spine { position: absolute; left: 50%; opacity: .55; top: 0; transform: translateX(-50%); height: 100%; width: 120px; pointer-events: none; z-index: 0; }
.spine path { fill: none; stroke-width: 2; }
.spine .track { stroke: rgba(255, 255, 255, 0.08); }
.spine .live { stroke: var(--volt); filter: drop-shadow(0 0 8px var(--volt)); }
@media (max-width: 900px) { .spine { display: none; } }

/* process */

.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3vw, 2.6rem) 0;
  border-top: 1px solid var(--line);
  transition: background 0.4s, padding-left 0.4s;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step:hover { background: linear-gradient(90deg, rgba(30, 30, 255, 0.12), transparent 70%); padding-left: 1.1rem; }
.step-n { font-family: var(--display); font-size: clamp(2rem, 4vw, 3.2rem); color: transparent; -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.35); line-height: 1; }
.step:hover .step-n { -webkit-text-stroke-color: var(--volt-soft); }
@media (max-width: 780px) { .step { grid-template-columns: 1fr; gap: 0.6rem; } }

/* workflow simulator */

.sim { display: grid; grid-template-columns: 1fr 340px; gap: 1.4rem; align-items: start; }
@media (max-width: 980px) { .sim { grid-template-columns: 1fr; } }
.sim-stage {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(30, 30, 255, 0.12), transparent 65%), rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  clip-path: var(--bolt-clip);
  padding: clamp(1.2rem, 3vw, 2.2rem);
}
.nodes { display: grid; gap: 0.9rem; position: relative; z-index: 2; }
.node {
  display: flex; align-items: center; gap: 1rem;
  border: 1px solid var(--line);
  background: rgba(5, 5, 12, 0.85);
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  text-align: left;
  width: 100%;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.node:hover { transform: translateX(6px); border-color: rgba(30, 30, 255, 0.5); }
.node.on { border-color: var(--volt); background: rgba(30, 30, 255, 0.15); box-shadow: 0 0 34px rgba(30, 30, 255, 0.42); }
.node .dot { width: 10px; height: 10px; flex: none; background: rgba(255, 255, 255, 0.18); border-radius: 50%; transition: 0.3s; }
.node.on .dot { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.node b { font-size: 0.95rem; display: block; }
.node small { color: var(--dimmer); font-size: 0.74rem; }
.node .idx { font-family: var(--display); font-size: 0.9rem; color: var(--dimmer); margin-left: auto; }
.sim-side { border: 1px solid var(--line); padding: 1.4rem; background: rgba(255, 255, 255, 0.02); clip-path: var(--bolt-clip); }
.sim-out { font-size: 0.85rem; min-height: 130px; }
.sim-out .row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.09); }
.sim-out .row span:first-child { color: var(--dimmer); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.sim-bar { height: 3px; background: rgba(255, 255, 255, 0.08); margin: 1.2rem 0; position: relative; overflow: hidden; }
.sim-bar i { position: absolute; inset: 0 100% 0 0; background: linear-gradient(90deg, var(--volt), var(--cyan)); transition: right 0.5s; box-shadow: 0 0 14px var(--volt); }

/* testimonials */

.quote { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--white); line-height: 1.5; }
.who { margin-top: 1.4rem; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dimmer); }

/* CTA band */

.cta-band { position: relative; background: linear-gradient(120deg, var(--volt) 0%, #2b12d8 55%, #0b0bb0 100%); overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.45), transparent 55%);
  mix-blend-mode: screen;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.82); }
.cta-band .btn { background: #fff; color: var(--volt); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }

.slant-both { clip-path: polygon(0 3.5vw, 100% 0, 100% calc(100% - 3.5vw), 0 100%); }

/* forms */

.field { display: grid; gap: 0.45rem; margin-bottom: 1rem; }
.field label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dimmer); }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: #fff;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(30, 30, 255, 0.18);
  background: rgba(30, 30, 255, 0.05);
}
.field select option { background: #0a0a14; }
.form-note { font-size: 0.78rem; color: var(--dimmer); margin-top: 0.8rem; }
.form-ok {
  display: none;
  border: 1px solid var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  padding: 1rem 1.2rem;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.form-ok.show { display: block; animation: eventIn 0.5s; }

.info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.info-item .ico { width: 40px; height: 40px; flex: none; display: grid; place-items: center; background: rgba(30, 30, 255, 0.16); border: 1px solid rgba(30, 30, 255, 0.4); }
.info-item .ico svg { width: 17px; height: 17px; }
.info-item b { display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dimmer); font-weight: 600; }
.info-item a, .info-item p { color: #fff; font-size: 1.02rem; }

/* locations */

.loc-map { position: relative; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); padding: 1.4rem; clip-path: var(--bolt-clip); }
.loc-map svg { width: 100%; height: auto; }
.loc-pin circle { fill: var(--volt); }
.loc-pin .ring { fill: none; stroke: var(--cyan); stroke-width: 1.2; opacity: 0.7; animation: ringPulse 2.6s infinite; }
@keyframes ringPulse { 0% { r: 4; opacity: 0.9; } 100% { r: 18; opacity: 0; } }
.loc-item { border: 1px solid var(--line); padding: 1.1rem 1.2rem; transition: 0.3s; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); }
.loc-item:hover { border-color: var(--volt); background: rgba(30, 30, 255, 0.1); transform: translateY(-4px); }
.loc-item b { display: block; font-family: var(--display); font-size: 1.18rem; text-transform: uppercase; }
.loc-item span { font-size: 0.74rem; color: var(--dimmer); letter-spacing: 0.1em; text-transform: uppercase; }

/* FAQ */

.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 1.35rem 0; text-align: left; font-size: 1.02rem; font-weight: 500; }
.faq-q i { font-style: normal; color: var(--volt-soft); transition: transform 0.35s; font-size: 1.3rem; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.65, 0, 0.35, 1); }
.faq-a p { padding-bottom: 1.35rem; max-width: 74ch; }

/* footer */

.footer { border-top: 1px solid var(--line); padding: clamp(3.5rem, 7vw, 6rem) 0 2rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dimmer); margin-bottom: 1.1rem; font-weight: 600; }
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer ul a { font-size: 0.9rem; color: var(--dim); transition: color 0.25s, padding-left 0.25s; }
.footer ul a:hover { color: var(--white); padding-left: 6px; }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.78rem; color: var(--dimmer); }
.footer-word {
  font-family: var(--display);
  font-size: clamp(3.5rem, 15vw, 13rem);
  line-height: 0.8;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  margin-top: 3rem;
  user-select: none;
  text-align: center;
}

/* inner page hero */

.phero { padding-top: clamp(9rem, 17vw, 13rem); padding-bottom: clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.phero h1 { font-size: clamp(2.8rem, 8vw, 7rem); margin: 1.2rem 0 1.5rem; }
.crumb { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dimmer); }
.crumb a:hover { color: var(--volt-soft); }

/* 404 */

.p404 { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 7rem 1rem 4rem; }
.p404 h1 { font-size: clamp(6rem, 26vw, 18rem); line-height: 0.8; }
.outage { animation: outage 4s infinite; }
@keyframes outage {
  0%, 40%, 44%, 58%, 100% { opacity: 1; text-shadow: 0 0 40px rgba(30, 30, 255, 0.6); }
  42%, 56% { opacity: 0.18; text-shadow: none; }
}

/* reveal defaults */

[data-reveal] { opacity: 0; }
.no-motion [data-reveal] { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}