/*
Theme Name: Lionsgate Intelligence Network
Theme URI: https://lionsgateintelligencenetwork.org/
Author: Lionsgate Intelligence Network
Description: Official one-page corporate theme for lionsgateintelligencenetwork.org, the secondary website of Lionsgate Intelligence Network. Primary website: lionsgate.network.
Version: 1.0.0
Requires at least: 5.0
Requires PHP: 7.2
License: Proprietary
Text Domain: lionsgate-org
*/

/* ==========================================================================
   Lionsgate Intelligence Network — official secondary website
   ========================================================================== */

:root {
  --bg: #070b14;
  --bg-alt: #0a101d;
  --panel: #0d1524;
  --panel-edge: #1a2537;
  --text: #e8ecf2;
  --text-dim: #9aa6b8;
  --accent: #39c6d6;
  --accent-soft: rgba(57, 198, 214, 0.12);
  --accent-line: rgba(57, 198, 214, 0.35);
  --silver: #b9c2cf;
  --max: 1120px;
  --sans: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: #6fdae7; text-decoration: underline; }

.mono { font-family: var(--mono); }
.muted { color: var(--text-dim); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #04222a; padding: 10px 18px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary { background: var(--accent); color: #04222a; }
.btn-primary:hover { background: #5cd3e1; color: #04222a; }

.btn-ghost { border-color: var(--panel-edge); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--accent-line); color: var(--accent); }

.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-nav { padding: 9px 18px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--panel-edge);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { text-decoration: none; color: var(--text); }
.brand-mark { display: flex; }
.brand-mark img { width: 32px; height: auto; filter: drop-shadow(0 0 1px rgba(255,255,255,0.35)) brightness(1.35) saturate(0.9); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 700; font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
.brand-sub { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a:not(.btn) {
  color: var(--text-dim); font-size: 15px; font-weight: 500;
}
.site-nav a:not(.btn):hover { color: var(--text); text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; padding: 10px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 110px 0 90px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 10%, rgba(57, 198, 214, 0.10), transparent 65%),
    linear-gradient(rgba(57, 198, 214, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 198, 214, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 56px 56px, 56px 56px;
  mask-image: linear-gradient(to bottom, black 55%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent);
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }

.hero-eyebrow {
  display: block;
  font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero-lede { font-size: 19px; color: var(--text-dim); max-width: 640px; margin-bottom: 34px; text-wrap: pretty; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-creds {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px;
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver);
}
.hero-creds li { display: flex; align-items: center; gap: 9px; }
.hero-creds li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: none;
}

/* ---------- Press quote band ---------- */
.quote-band {
  border-top: 1px solid var(--panel-edge);
  border-bottom: 1px solid var(--panel-edge);
  background: var(--bg-alt);
  padding: 56px 0;
  text-align: center;
}
.quote-band blockquote p {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--silver);
}
.quote-band cite {
  display: block; margin-top: 14px; font-style: normal;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--panel-edge); border-bottom: 1px solid var(--panel-edge); }

.kicker {
  font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}

h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.section-sub { color: var(--text-dim); margin-top: 14px; max-width: 620px; }

.section-intro.center { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.section-intro.center .section-sub { margin-left: auto; margin-right: auto; }

.section-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start;
}
.section-body p + p { margin-top: 18px; }
.about-photo { margin-top: 32px; }
.about-photo img { border-radius: 10px; border: 1px solid var(--panel-edge); width: 100%; height: auto; }
.section-body .muted { font-size: 15.5px; }

/* ---------- Service cards ---------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 10px;
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 8px;
  display: grid; place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}
.card h3 { font-size: 19px; font-weight: 600; }
.card p { font-size: 15.5px; color: var(--text-dim); flex: 1; }
.card-link { font-size: 14.5px; font-weight: 600; }

/* ---------- Process ---------- */
.process-list {
  list-style: none;
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.process-step {
  display: grid; grid-template-columns: 72px 1fr; gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--panel-edge);
  position: relative;
}
.process-step:last-child { border-bottom: 0; }
.step-num {
  font-size: 26px; color: var(--accent); line-height: 1.3;
}
.process-step h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 16px; }

.center-cta { text-align: center; margin-top: 48px; }

/* ---------- Who we support ---------- */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.support-card {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 30px 28px;
}
.support-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.support-card p { font-size: 15.5px; color: var(--text-dim); }

/* ---------- Official notice ---------- */
.notice-section { padding-top: 40px; padding-bottom: 40px; }
.notice-panel {
  background:
    radial-gradient(ellipse 70% 90% at 50% -20%, rgba(57, 198, 214, 0.14), transparent 70%),
    var(--panel);
  border: 1px solid var(--accent-line);
  border-radius: 14px;
  text-align: center;
  padding: 64px 40px;
  max-width: 860px;
  margin: 0 auto;
}
.notice-logo { width: 52px; height: auto; margin: 0 auto 24px; filter: drop-shadow(0 0 1px rgba(255,255,255,0.35)) brightness(1.35) saturate(0.9); }
.notice-panel h2 { margin-bottom: 18px; }
.notice-panel p { color: var(--text-dim); max-width: 620px; margin: 0 auto 30px; }

/* ---------- Contact ---------- */
.contact-list { display: flex; flex-direction: column; }
.contact-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--panel-edge);
}
.contact-row:first-child { padding-top: 0; }
.contact-row dt {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); padding-top: 4px;
}
.contact-row dd { font-size: 16.5px; }
.contact-row .muted { font-size: 14.5px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--panel-edge);
  background: var(--bg-alt);
  padding: 52px 0 36px;
}
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 28px; align-items: flex-start;
}
.footer-logo { width: 34px; height: auto; margin-bottom: 14px; filter: drop-shadow(0 0 1px rgba(255,255,255,0.35)) brightness(1.35) saturate(0.9); }
.footer-name { font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; font-size: 15px; }
.footer-tag { font-size: 12px; color: var(--text-dim); margin-top: 8px; letter-spacing: 0.04em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.footer-nav a { color: var(--text-dim); font-size: 14.5px; }
.footer-nav a:hover { color: var(--text); text-decoration: none; }
.footer-legal { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--panel-edge); }
.footer-legal p { font-size: 13px; color: var(--text-dim); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; }
  .section-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .hero { padding: 76px 0 64px; }
  .cards-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; }
  .process-step { grid-template-columns: 52px 1fr; gap: 18px; }
  .notice-panel { padding: 46px 26px; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--panel-edge);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 24px 20px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 13px 0; border-bottom: 1px solid var(--panel-edge); }
  .site-nav .btn { margin-top: 16px; text-align: center; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
