/* =====================================================================
   BISMI SPARK 2026 — Public site stylesheet
   Theme: premium dark navy + Bismi red/orange spark accents
   ===================================================================== */

:root {
  --navy-950: #05061a;
  --navy-900: #0a0e2e;
  --navy-850: #0d1238;
  --navy-800: #121a4a;
  --navy-700: #1a2260;
  --navy-600: #262f7a;
  --red: #ef4136;
  --red-bright: #ff5b45;
  --red-dark: #b8281d;
  --gold: #ffb400;
  --gold-soft: #ffd166;
  --white: #ffffff;
  --ink: #eef1ff;
  --muted: #9aa3d6;
  --muted-2: #6d76ab;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.09);
  --shadow-glow: 0 0 40px rgba(239, 65, 54, 0.25);
  --radius: 18px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  margin: 0 0 .5em;
  color: var(--white);
  line-height: 1.2;
}

p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; position: relative; }
.section-tight { padding: 60px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid rgba(255, 180, 0, 0.35);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.section-head p { font-size: 17px; }

.highlight { color: var(--red-bright); }
.highlight-gold { color: var(--gold); }

.text-center { text-align: center; }

/* --------------------------------------------------------------- */
/* Buttons */
/* --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-spark {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(239, 65, 54, 0.4);
}
.btn-spark:hover { box-shadow: 0 14px 40px rgba(239, 65, 54, 0.55); }

/* Spark-burst particles emitted from a button on hover */
.btn-spark-burst { position: relative; overflow: visible; }
.burst-particle {
  position: absolute;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(255,180,0,.9);
  pointer-events: none;
  animation: burst-out .6s ease-out forwards;
}
@keyframes burst-out {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--bx), var(--by)) scale(0.2); opacity: 0; }
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #ff9500 100%);
  color: var(--navy-950);
  box-shadow: 0 10px 30px rgba(255, 180, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-block { width: 100%; }
.btn-lg { padding: 20px 44px; font-size: 17px; }

.btn-header-cta { padding: 12px 24px; font-size: 14px; }
.spark-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 1.6s infinite ease-in-out;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.4); }
}

/* --------------------------------------------------------------- */
/* Header */
/* --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(5, 6, 26, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: auto; width: 100px; max-width: 170px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-display); }
.brand-text strong { font-size: 18px; font-weight: 800; letter-spacing: .5px; color: var(--white); }
.brand-text em { font-size: 11px; font-style: normal; font-weight: 700; letter-spacing: 3px; color: var(--red-bright); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 14.5px; font-weight: 600; color: var(--muted);
  position: relative; padding: 6px 0; transition: color .2s;
}
.main-nav a:hover { color: var(--white); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--red); transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.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(--white); border-radius: 2px; }

.brand-ribbon {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--navy-900);
  overflow: hidden;
  padding: 10px 0;
}
.brand-ribbon-track {
  display: flex; gap: 50px; white-space: nowrap;
  animation: scroll-ribbon 22s linear infinite;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: 2px; color: var(--muted-2);
}
.brand-ribbon-track span::before { content: '\2726'; color: var(--gold); margin-right: 10px; }
@keyframes scroll-ribbon {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------- */
/* Hero */
/* --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 80px 0 60px;
  background:
    radial-gradient(circle at 18% 20%, rgba(239,65,54,0.22), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(255,180,0,0.15), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(38,47,122,0.35), transparent 60%),
    var(--navy-950);
  overflow: hidden;
}
.spark-field { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.spark-field span {
  position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px 4px rgba(255,180,0,0.7);
  animation: float-spark 6s ease-in-out infinite;
  opacity: .8;
}
@keyframes float-spark {
  0%, 100% { transform: translateY(0) scale(1); opacity: .4; }
  50% { transform: translateY(-40px) scale(1.3); opacity: 1; }
}

/* Diagonal "shooting spark" comet streaks across the hero */
.hero-comet {
  position: absolute;
  width: 3px; height: 140px;
  background: linear-gradient(180deg, rgba(255,214,102,0) 0%, rgba(255,214,102,.9) 60%, rgba(239,65,54,.9) 100%);
  border-radius: 999px;
  transform: rotate(35deg);
  filter: drop-shadow(0 0 6px rgba(255,180,0,.8));
  opacity: 0;
  z-index: 0;
  animation: comet-streak 7s ease-in infinite;
}
.hero-comet.c1 { top: -20%; left: 15%; animation-delay: .5s; }
.hero-comet.c2 { top: -20%; left: 70%; animation-delay: 4s; }
@keyframes comet-streak {
  0%   { transform: translate(0, 0) rotate(35deg); opacity: 0; }
  4%   { opacity: 1; }
  22%  { transform: translate(-160px, 480px) rotate(35deg); opacity: 0; }
  100% { transform: translate(-160px, 480px) rotate(35deg); opacity: 0; }
}

/* Shimmering gradient sweep across the hero title */
.shimmer-text {
  background-size: 200% auto;
  animation: shimmer-sweep 5s linear infinite;
}
@keyframes shimmer-sweep {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.hero-content h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(120deg, #ffffff 30%, var(--gold) 60%, var(--red-bright) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.hero-tagline {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-message { font-size: 16.5px; max-width: 560px; color: var(--muted); margin-bottom: 30px; }

.event-callout {
  display: flex; align-items: center; gap: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 34px;
  backdrop-filter: blur(6px);
}
.event-callout .cal {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--red), var(--red-dark));
  border-radius: 12px; width: 56px; height: 56px; flex-shrink: 0;
  font-family: var(--font-display); color: white; box-shadow: var(--shadow-glow);
}
.event-callout .cal strong { font-size: 20px; line-height: 1; }
.event-callout .cal span { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.event-callout div.copy p { margin: 0; color: var(--white); font-weight: 600; font-size: 15px;}
.event-callout div.copy small { color: var(--muted); font-size: 13px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.bulb-orb {
  position: relative;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,214,102,.9), rgba(239,65,54,.5) 55%, transparent 75%);
  display: flex; align-items: center; justify-content: center;
  animation: orb-pulse 4s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { filter: brightness(1); transform: scale(1); }
  50% { filter: brightness(1.15); transform: scale(1.04); }
}
.bulb-orb svg { width: 150px; height: 150px; filter: drop-shadow(0 0 30px rgba(255,180,0,.8)); }
.bulb-ring {
  position: absolute; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  animation: rotate-ring 18s linear infinite;
}
.bulb-ring.r1 { width: 380px; height: 380px; }
.bulb-ring.r2 { width: 440px; height: 440px; animation-duration: 26s; animation-direction: reverse; }
.bulb-ring::before {
  content: ''; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px var(--gold);
}
@keyframes rotate-ring { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }

/* Orbiting spark particles around the hero bulb */
.bulb-spark-particles { position: absolute; inset: 0; }
.bulb-spark-particles span {
  position: absolute; top: 50%; left: 50%; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px 3px rgba(255,180,0,.8);
  animation: orbit-spark 9s linear infinite;
  transform-origin: -170px 0;
}
.bulb-spark-particles span:nth-child(1) { animation-duration: 8s; }
.bulb-spark-particles span:nth-child(2) { animation-duration: 11s; animation-direction: reverse; transform-origin: -150px 0; }
.bulb-spark-particles span:nth-child(3) { animation-duration: 14s; animation-delay: -3s; transform-origin: -190px 0; }
.bulb-spark-particles span:nth-child(4) { animation-duration: 10s; animation-direction: reverse; animation-delay: -5s; transform-origin: -160px 0; }
.bulb-spark-particles span:nth-child(5) { animation-duration: 16s; animation-delay: -1s; transform-origin: -210px 0; background: var(--red-bright); box-shadow: 0 0 10px 3px rgba(239,65,54,.8); }
.bulb-spark-particles span:nth-child(6) { animation-duration: 12s; animation-direction: reverse; animation-delay: -7s; transform-origin: -180px 0; background: var(--red-bright); box-shadow: 0 0 10px 3px rgba(239,65,54,.8); }
@keyframes orbit-spark {
  from { transform: rotate(0deg) translateX(170px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(170px) rotate(-360deg); }
}

/* --------------------------------------------------------------- */
/* Bismi Group of Companies — small static logo strip (not a slider) */
/* --------------------------------------------------------------- */
.divisions-strip {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.divisions-strip-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 22px 34px;
}
.divisions-strip-label {
  font-family: var(--font-display); font-weight: 700; font-size: 11.5px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2);
  flex-shrink: 0;
}
.divisions-strip-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.divisions-strip-logos img {
  height: 22px; width: auto; max-width: 100px; object-fit: contain;
  opacity: .75; filter: brightness(0) invert(1);
  transition: opacity .25s ease, filter .25s ease;
}
.divisions-strip-logos img:hover { opacity: 1; filter: none; }

/* --------------------------------------------------------------- */
/* One Team section */
/* --------------------------------------------------------------- */
.oneteam { background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); }
.oneteam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.oneteam-copy p { font-size: 16px; }
.observe-list { display: grid; gap: 12px; margin: 24px 0; }
.observe-list li {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--card-bg); border: 1px solid var(--card-border);
  padding: 14px 16px; border-radius: 12px; font-size: 14.5px; color: var(--ink);
}
.observe-list li::before { content: '\2726'; color: var(--gold); font-size: 16px; flex-shrink: 0; }

.motto-banner {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 30px);
  padding: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(239,65,54,0.15), rgba(255,180,0,0.12));
  border: 1px solid rgba(255,180,0,0.3);
  color: var(--white);
  margin-top: 20px;
}
.motto-banner span { color: var(--gold); }

.oneteam-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3.2;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
  border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
}
.team-dots { position: absolute; inset: 0; }
.team-dots svg { width: 100%; height: 100%; }
.energy-flow line {
  stroke-dasharray: 8 14;
  animation: energy-dash 1.6s linear infinite;
}
@keyframes energy-dash { to { stroke-dashoffset: -22; } }
.node-pulse {
  animation: node-pulse-anim 2.4s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
@keyframes node-pulse-anim {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .7; }
}
.node-core-pulse {
  animation: core-pulse-anim 1.8s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
@keyframes core-pulse-anim {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(255,180,0,.6)); }
  50% { transform: scale(1.2); filter: drop-shadow(0 0 14px rgba(255,180,0,1)); }
}
.oneteam-visual .cap {
  position: relative; z-index: 2; text-align: center; padding: 30px;
  font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 18px;
}
.oneteam-visual .cap small { display:block; color: var(--muted); font-weight: 500; font-size: 13px; margin-top: 8px;}

/* --------------------------------------------------------------- */
/* Category cards */
/* --------------------------------------------------------------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.cat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(239,65,54,0.08), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.cat-card:hover { transform: translateY(-6px); border-color: rgba(255,180,0,0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--gold));
  margin-bottom: 18px; font-size: 24px;
  box-shadow: 0 8px 20px rgba(239,65,54,0.35);
}
.cat-card h3 { font-size: 18px; margin-bottom: 8px; position: relative; z-index: 1;}
.cat-card p { font-size: 14px; margin: 0; position: relative; z-index: 1; }

.no-idea-small {
  text-align: center; margin-top: 46px; font-family: var(--font-display);
  font-weight: 700; font-size: 18px; color: var(--gold);
}

/* --------------------------------------------------------------- */
/* How it works */
/* --------------------------------------------------------------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.step-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 30px 22px; text-align: center; position: relative;
}
.step-num {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white;
  box-shadow: var(--shadow-glow);
}
.step-card h3 { font-size: 17px; }
.step-card p { font-size: 13.5px; }
.step-arrow { display:none; }

@media (min-width: 900px) {
  .steps-grid { }
  .step-card:not(:last-child)::after {
    content: '\2192'; position: absolute; top: 40px; right: -28px; color: var(--muted-2); font-size: 22px;
  }
}

/* --------------------------------------------------------------- */
/* Submission form */
/* --------------------------------------------------------------- */
.form-section { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); }
.form-shell {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.field label { font-size: 14px; font-weight: 600; color: var(--white); }
.field label .req { color: var(--red-bright); }
.field .hint { font-size: 12.5px; color: var(--muted-2); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  background: rgba(5,6,26,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,180,0,0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.char-count { text-align: right; font-size: 12px; color: var(--muted-2); }

.guiding-box {
  background: rgba(255,180,0,0.06);
  border: 1px dashed rgba(255,180,0,0.35);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.guiding-box ul { padding-left: 18px; list-style: disc; }
.guiding-box li { margin-bottom: 4px; }

.category-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.category-pill { position: relative; }
.category-pill input { position: absolute; opacity: 0; pointer-events: none; }
.category-pill label {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 10px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18); color: var(--muted); transition: all .2s;
}
.category-pill input:checked + label {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white; border-color: transparent; box-shadow: 0 6px 16px rgba(239,65,54,0.4);
}

.branch-search-wrap { position: relative; }
.branch-options {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  max-height: 260px; overflow-y: auto;
  background: var(--navy-850); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.branch-options.open { display: block; }
.branch-options .opt {
  padding: 11px 16px; font-size: 14px; color: var(--ink); cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.branch-options .opt:last-child { border-bottom: none; }
.branch-options .opt:hover { background: rgba(255,180,0,0.1); color: var(--gold); }
.branch-options .opt small { display: block; color: var(--muted-2); font-size: 11.5px; }

.upload-zone {
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 16px; padding: 34px 20px; text-align: center;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.upload-zone.dragover, .upload-zone:hover { border-color: var(--gold); background: rgba(255,180,0,0.05); }
.upload-zone .upload-icon { font-size: 30px; margin-bottom: 10px; }
.upload-zone strong { color: var(--white); display:block; margin-bottom: 4px; }
.upload-zone small { color: var(--muted-2); }
.upload-file-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.upload-file-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.05); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 10px 14px; font-size: 13.5px;
}
.upload-file-item .file-meta { display: flex; gap: 10px; align-items: center; color: var(--muted); }
.upload-file-item .file-remove { color: var(--red-bright); cursor: pointer; font-weight: 700; }

.checkbox-confirm { display: flex; align-items: flex-start; gap: 12px; margin: 8px 0 4px; }
.checkbox-confirm input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--red); }
.checkbox-confirm label { font-size: 13.5px; color: var(--muted); }

.form-error { color: var(--red-bright); font-size: 12.5px; margin-top: 4px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red-bright); }
.field.has-error .form-error { display: block; }

.form-submit-row { text-align: center; margin-top: 20px; }
.form-alert { padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 20px; }
.form-alert-error { background: rgba(239,65,54,0.12); border: 1px solid rgba(239,65,54,0.4); color: #ffb3ac; }

/* --------------------------------------------------------------- */
/* Success screen */
/* --------------------------------------------------------------- */
.success-shell {
  text-align: center; padding: 60px 30px; position: relative; overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,180,0,0.08), rgba(239,65,54,0.05));
  border: 1px solid rgba(255,180,0,0.25);
}
.success-icon {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex; align-items: center; justify-content: center; font-size: 44px;
  box-shadow: 0 0 50px rgba(255,180,0,0.5);
  animation: orb-pulse 2s ease-in-out infinite;
}
.success-ref {
  display: inline-block; margin: 18px 0; font-family: var(--font-display); font-weight: 800;
  background: rgba(255,255,255,0.08); border: 1px solid var(--card-border);
  padding: 12px 26px; border-radius: 999px; letter-spacing: 1px; color: var(--gold);
}
.success-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }

/* --------------------------------------------------------------- */
/* Evaluation criteria */
/* --------------------------------------------------------------- */
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.criteria-chip {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px;
  padding: 18px; text-align: center; font-size: 14px; font-weight: 600; color: var(--ink);
}

/* --------------------------------------------------------------- */
/* FAQ */
/* --------------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--white); font-size: 15.5px;
}
.faq-question .icon { transition: transform .3s; color: var(--gold); font-size: 20px; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 24px 20px; margin: 0; font-size: 14.5px; }

/* --------------------------------------------------------------- */
/* Final CTA */
/* --------------------------------------------------------------- */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(239,65,54,0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,180,0,0.2), transparent 50%),
    var(--navy-900);
  border-radius: 28px;
  padding: 70px 30px;
  margin: 0 24px;
}
.final-cta > *:not(.spark-field) { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(26px, 4vw, 40px); }
.final-cta .prompt-lines { color: var(--white); font-size: 17px; margin-bottom: 6px; }
.final-cta .prompt-lines strong { color: var(--gold); }
.final-cta .big-line {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(20px,3vw,28px);
  color: var(--white); margin: 26px 0;
}
.final-cta .event-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 22px; border-radius: 999px; font-weight: 700; margin-bottom: 30px; color: var(--gold);
}

/* --------------------------------------------------------------- */
/* Footer */
/* --------------------------------------------------------------- */
.site-footer { background: var(--navy-950); border-top: 1px solid rgba(255,255,255,0.07); padding-top: 60px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 120px; margin-bottom: 14px; }
.footer-brand h3 { font-size: 20px; margin-bottom: 4px; }
.footer-brand h3 span { color: var(--red-bright); }
.footer-tagline { color: var(--gold); font-weight: 600; font-size: 13.5px; }
.footer-note { font-size: 12.5px; color: var(--muted-2); }
.footer-col h4 { font-size: 14px; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a, .footer-col span { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 10px; }

.footer-logo-grid { display: flex; flex-wrap: wrap; gap: 1px; align-items: center; }
.footer-division-logo { display: flex; align-items: center; margin-bottom: 0; }
.footer-division-logo img {
  height: auto; width: 120px; max-width: 110px; object-fit: contain;
  opacity: .75; filter: brightness(100%) invert(0);
  transition: opacity .25s ease, filter .25s ease;
}
.footer-division-logo:hover img { opacity: 1; filter: none; }
.footer-division-logo em { display: none; font-style: normal; font-size: 13.5px; color: var(--muted); }
.footer-division-logo.img-fallback em { display: inline; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 24px 30px; font-size: 12px; color: var(--muted-2); }
.footer-legal-links { margin-top: 8px; }

.scroll-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* --------------------------------------------------------------- */
/* Utility / badges (shared with admin) */
/* --------------------------------------------------------------- */
.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.badge-neutral { background: rgba(255,255,255,0.12); color: #dfe2f5; }
.badge-info { background: rgba(38,150,255,0.18); color: #7ec4ff; }
.badge-warning { background: rgba(255,180,0,0.18); color: var(--gold); }
.badge-accent { background: rgba(239,65,54,0.2); color: var(--red-bright); }
.badge-success { background: rgba(50,200,120,0.18); color: #63e6a8; }
.badge-muted { background: rgba(255,255,255,0.06); color: var(--muted-2); }

/* --------------------------------------------------------------- */
/* Responsive */
/* --------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid, .oneteam-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .main-nav {
    position: fixed; top: 78px; left: 0; right: 0; bottom: 0;
    background: var(--navy-950); flex-direction: column; align-items: flex-start;
    padding: 30px 24px; gap: 22px; transform: translateX(100%); transition: transform .3s ease;
    z-index: 998; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 18px; }
  .nav-toggle { display: flex; }
  .header-actions .btn-header-cta { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-shell { padding: 26px 18px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}