/* ============================================================
   Fusion Technologies LLC
   Neon-on-black brand system — editorial "who we are" layout
   ============================================================ */

:root {
  --black:      #050409;
  --pure:       #000000;
  --surface:    #0b0912;
  --surface-2:  #100c1d;
  --line:       rgba(150, 130, 255, 0.14);
  --line-soft:  rgba(150, 130, 255, 0.08);

  --blue:    #2e8bff;
  --cyan:    #38d6f5;
  --violet:  #9a4dff;
  --magenta: #ff2f9e;

  --ink:      #eef2ff;
  --ink-soft: #aab2d8;
  --ink-dim:  #7b83ab;

  --grad: linear-gradient(115deg, #38d6f5 0%, #2e8bff 34%, #9a4dff 66%, #ff2f9e 100%);
  --grad-soft: linear-gradient(115deg, rgba(56,214,245,.9), rgba(46,139,255,.9) 40%, rgba(154,77,255,.9) 70%, rgba(255,47,158,.9));

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --wrap: 1200px;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- Ambient background ---------- */
.bg-field { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--black); }
.bg-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(150,130,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,130,255,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 75%);
}
.bg-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.45; }
.bg-glow-a { width: 620px; height: 620px; top: -220px; left: -140px;
  background: radial-gradient(circle, rgba(46,139,255,0.5), transparent 65%); }
.bg-glow-b { width: 560px; height: 560px; top: 260px; right: -160px;
  background: radial-gradient(circle, rgba(255,47,158,0.32), transparent 65%); }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(5, 4, 9, 0.8); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo img { height: 30px; filter: drop-shadow(0 0 14px rgba(46,139,255,0.35)); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; transition: color 0.18s; position: relative; }
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width 0.22s ease; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 9px 20px; border-radius: 999px; color: var(--ink) !important; font-weight: 600;
  background: var(--surface-2); border: 1px solid var(--line);
  transition: transform 0.18s, box-shadow 0.22s, border-color 0.22s; }
.nav-cta:hover { transform: translateY(-1px); border-color: transparent;
  box-shadow: 0 0 0 1px rgba(154,77,255,0.6), 0 10px 30px -10px rgba(154,77,255,0.6); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS + LINKS
   ============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 14px 28px; border-radius: 999px; cursor: pointer; border: none;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease; white-space: nowrap; }
.btn-primary { color: #04060f; background: var(--grad); background-size: 160% 160%;
  box-shadow: 0 0 34px -6px rgba(46,139,255,0.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px -8px rgba(154,77,255,0.7); background-position: 100% 0; }
.btn-ghost { color: var(--ink); background: rgba(255,255,255,0.02); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(56,214,245,0.5); box-shadow: 0 0 26px -8px rgba(56,214,245,0.5); }
.btn-block { width: 100%; }

.text-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display);
  font-weight: 600; color: var(--ink); font-size: 1rem; transition: gap 0.2s, color 0.2s; }
.text-link .arr { color: var(--cyan); transition: transform 0.2s; }
.text-link:hover { color: var(--cyan); }
.text-link:hover .arr { transform: translateX(4px); }

/* ============================================================
   HERO (unchanged)
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; overflow: hidden; }
.hero-inner { position: relative; z-index: 3; max-width: 820px; }
.hero-logo { height: clamp(58px, 11vw, 120px); width: auto; margin: 0 auto 30px;
  filter: drop-shadow(0 0 40px rgba(46,139,255,0.45)) drop-shadow(0 0 80px rgba(154,77,255,0.28)); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
.eyebrow .tick { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.hero-tagline { font-size: clamp(1.9rem, 5.2vw, 3.4rem); margin-bottom: 22px; letter-spacing: -0.03em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-tagline .colon { -webkit-text-fill-color: var(--ink); opacity: 0.5; padding: 0 4px; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 620px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.orbits { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; pointer-events: none; }
.orbit { position: absolute; border: 1.5px solid rgba(150,130,255,0.16); border-radius: 50%; }
.orbit-1 { width: min(760px, 92vw); height: min(320px, 40vw); animation: tumble 26s linear infinite; }
.orbit-2 { width: min(560px, 72vw); height: min(560px, 72vw); border-color: rgba(56,214,245,0.12); animation: tumble 34s linear infinite reverse; }
.orbit-3 { width: min(400px, 54vw); height: min(680px, 84vw); border-color: rgba(255,47,158,0.12); animation: tumble 44s linear infinite; }
.electron { position: absolute; top: -6px; left: 50%; width: 11px; height: 11px; margin-left: -5.5px; border-radius: 50%; }
.e-cyan { background: var(--cyan); box-shadow: 0 0 16px 2px var(--cyan); }
.e-violet { background: var(--violet); box-shadow: 0 0 16px 2px var(--violet); }
.e-magenta { background: var(--magenta); box-shadow: 0 0 16px 2px var(--magenta); }
.orbit-core { width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #eafcff, var(--cyan) 45%, var(--blue) 80%);
  box-shadow: 0 0 40px 8px rgba(56,214,245,0.6); animation: pulse 3.4s ease-in-out infinite; }
@keyframes tumble { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.18); opacity: 1; } }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid var(--line); border-radius: 14px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: var(--cyan); animation: cue 1.7s ease-in-out infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(10px); } }

/* ============================================================
   BANDS (full-width editorial sections)
   ============================================================ */
.band { position: relative; width: 100%; padding: 118px 0; }
.band-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* alternating full-width zones for rhythm */
.band.approach, .band.about {
  background: linear-gradient(180deg, rgba(255,255,255,0.014), rgba(255,255,255,0.014));
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.band.impact { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.band.impact::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(154,77,255,0.08), transparent 70%); }

/* left-aligned eyebrow with gradient bar */
.eyebrow-left { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); }
.eyebrow-left .bar { width: 30px; height: 2px; border-radius: 2px; background: var(--grad); }

/* big mission statement */
.statement { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.08; max-width: 20ch; margin-bottom: 34px; }
.grad-word { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* band head (centered-ish section intro used by mosaic/approach) */
.band-head { max-width: 720px; margin-bottom: 60px; }
.band-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 18px; }
.band-lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; }

/* ---- Mission body ---- */
.mission-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.mission-body p { color: var(--ink-soft); font-size: 1.12rem; }
.mission-links { display: flex; flex-direction: column; gap: 16px; padding-top: 4px; }

/* ============================================================
   WHAT WE DO — doorway mosaic
   ============================================================ */
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile { position: relative; display: flex; flex-direction: column; border-radius: 18px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.34s ease, box-shadow 0.34s ease; }
.tile-wide { grid-column: span 2; flex-direction: row; }
.tile:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -34px var(--h); border-color: color-mix(in srgb, var(--h) 45%, transparent); }

.tile-visual { position: relative; height: 190px; flex-shrink: 0; overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, color-mix(in srgb, var(--h) 34%, transparent), transparent 60%),
    linear-gradient(150deg, color-mix(in srgb, var(--h) 20%, #06060c), #06060c 75%);
  display: grid; place-items: center; color: var(--h); }
.tile-wide .tile-visual { height: auto; width: 46%; }
.tile-pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.4; color: var(--h); transition: opacity 0.34s; }
.tile:hover .tile-pattern { opacity: 0.7; }
.tile-ic { position: relative; z-index: 2; width: 70px; height: 70px; border-radius: 16px; display: grid; place-items: center;
  color: #fff; background: color-mix(in srgb, var(--h) 22%, rgba(6,6,12,0.5));
  border: 1px solid color-mix(in srgb, var(--h) 50%, transparent);
  box-shadow: 0 0 30px -6px var(--h); }
.tile-ic svg { width: 36px; height: 36px; }
.tile-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.tile-wide .tile-body { justify-content: center; padding: 34px; }
.tile-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.tile-wide .tile-body h3 { font-size: 1.7rem; }
.tile-body p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 16px; flex: 1; }
.tile-tags { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ink-dim); text-transform: uppercase; }

.v-cyan { --h: #38d6f5; }
.v-blue { --h: #2e8bff; }
.v-violet { --h: #9a4dff; }
.v-magenta { --h: #ff2f9e; }

/* ============================================================
   OUR APPROACH — values
   ============================================================ */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value { position: relative; padding-top: 30px; border-top: 2px solid var(--line); }
.value::before { content: ""; position: absolute; top: -2px; left: 0; width: 60px; height: 2px; background: var(--accent);
  box-shadow: 0 0 12px var(--accent); }
.value-num { font-family: var(--font-mono); font-size: 0.86rem; color: var(--accent); letter-spacing: 0.15em; margin-bottom: 22px; }
.value-ic { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); }
.value-ic svg { width: 32px; height: 32px; }
.value h3 { font-size: 1.5rem; margin-bottom: 12px; }
.value p { color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   IMPACT / STATS
   ============================================================ */
.impact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 40px; border-radius: 20px; position: relative;
  background: linear-gradient(180deg, rgba(16,12,29,0.6), rgba(11,9,18,0.6)); }
.impact-stats::before { content: ""; position: absolute; inset: 0; padding: 1px; border-radius: 20px;
  background: var(--grad-soft); opacity: 0.35;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.stat { text-align: left; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.2vw, 2.9rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { margin-top: 10px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); }

/* ============================================================
   WHY FUSION — story split
   ============================================================ */
.story { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.story-panel { position: relative; aspect-ratio: 1; border-radius: 24px; overflow: hidden; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 45%, rgba(46,139,255,0.14), transparent 62%), var(--surface);
  border: 1px solid var(--line); }
.story-panel::before { content: ""; position: absolute; inset: 0; padding: 1px; border-radius: 24px;
  background: var(--grad-soft); opacity: 0.4;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; }
.story-atom { width: 60%; position: relative; z-index: 2; filter: drop-shadow(0 0 34px rgba(56,214,245,0.45));
  animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(-6px); } 50% { transform: translateY(6px); } }
.orbit-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(150,130,255,0.18); }
.orbit-ring.r1 { width: 74%; height: 74%; animation: tumble 30s linear infinite; }
.orbit-ring.r2 { width: 92%; height: 52%; border-color: rgba(255,47,158,0.16); animation: tumble 44s linear infinite reverse; }
.story-copy .band-title { margin-bottom: 18px; }
.story-copy > p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 26px; }

.cap-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.cap-grid li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 0.98rem; }
.cap-grid li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 9px; height: 9px; border-radius: 2px;
  background: var(--grad); box-shadow: 0 0 10px rgba(56,214,245,0.6); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; }
.about-body p { color: var(--ink-soft); font-size: 1.06rem; }

/* ============================================================
   CONTACT (unchanged structure)
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-intro > p { color: var(--ink-soft); font-size: 1.04rem; margin-bottom: 30px; }
.contact-lines { display: flex; flex-direction: column; gap: 14px; }
.contact-line { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); font-size: 1rem; transition: color 0.2s; }
.contact-line:hover { color: var(--cyan); }
.cl-ic { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--cyan); font-size: 1.05rem; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 34px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }
.field input, .field textarea { font-family: var(--font-body); font-size: 0.98rem; color: var(--ink);
  background: var(--black); border: 1px solid var(--line); border-radius: 11px; padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,139,255,0.16); }
.form-status { margin-top: 14px; font-size: 0.9rem; min-height: 1.1em; text-align: center; }
.form-status.ok { color: #56d18a; }
.form-status.err { color: #ff7a7a; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 64px 24px 36px; }
.footer-inner { max-width: var(--wrap); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 50px; padding-bottom: 44px; border-bottom: 1px solid var(--line-soft); }
.footer-logo { height: 30px; margin-bottom: 14px; filter: drop-shadow(0 0 14px rgba(46,139,255,0.3)); }
.footer-tag { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 11px; transition: color 0.18s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { padding-top: 26px; }
.footer-copy { color: var(--ink-dim); font-size: 0.84rem; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .band { padding: 90px 0; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .tile-wide { grid-column: span 2; flex-direction: column; }
  .tile-wide .tile-visual { width: 100%; height: 190px; }
  .tile-wide .tile-body h3 { font-size: 1.4rem; }
  .value-row { grid-template-columns: 1fr; gap: 30px; }
  .impact-grid { grid-template-columns: 1fr; gap: 40px; }
  .story { grid-template-columns: 1fr; gap: 44px; }
  .story-panel { max-width: 380px; margin: 0 auto; }
  .mission-body { grid-template-columns: 1fr; gap: 28px; }
  .about-body { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 700px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(300px, 84vw);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 40px;
    background: rgba(8,6,14,0.97); backdrop-filter: blur(18px); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform 0.34s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .band { padding: 72px 0; }
  .mosaic { grid-template-columns: 1fr; }
  .tile-wide { grid-column: span 1; }
  .cap-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

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