/* FPR Networks — Futuristic Design System */
:root {
  --bg-deep: #eaf2fb; --bg-1: #ffffff; --bg-2: #f3f7fc;
  --surface: rgba(255, 255, 255, 0.85); --surface-2: rgba(248, 251, 254, 0.95);
  --border: rgba(0, 119, 191, 0.16); --border-strong: rgba(0, 119, 191, 0.4);
  --text: #0c1840; --text-dim: #495876; --text-faint: #8090aa;
  --cyan: #0099d4; --cyan-soft: #34b6e6; --magenta: #d92078; --violet: #5d3ed8; --green: #00a86b; --gold: #d49a17;
  --gradient-primary: linear-gradient(135deg, #0099d4 0%, #5d3ed8 50%, #d92078 100%);
  --gradient-cyber: linear-gradient(135deg, #0099d4 0%, #00a86b 100%);
  --gradient-bg: radial-gradient(ellipse at top, #ffffff 0%, #e2ecf8 50%, #c5d8ed 100%);
  --glow-cyan: 0 0 20px rgba(0, 153, 212, 0.35), 0 0 40px rgba(0, 153, 212, 0.18);
  --glow-violet: 0 0 25px rgba(124, 77, 255, 0.45);
  --radius-sm: 8px; --radius: 14px; --radius-lg: 22px;
  --max-w: 1240px; --header-h: 78px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg-deep); color: var(--text); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

.cosmic-bg { position: fixed; inset: 0; z-index: -2; background: var(--gradient-bg); }
.cosmic-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 30% 80%, rgba(0,212,255,0.6), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(124,77,255,0.6), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.5), transparent);
  background-size: 250px 250px; background-repeat: repeat; opacity: 0;
  animation: drift 120s linear infinite;
}
.cosmic-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 212, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(124, 77, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 45, 146, 0.06) 0%, transparent 60%);
  filter: blur(40px);
}
.grid-overlay {
  position: fixed; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
@keyframes drift { from { transform: translateY(0); } to { transform: translateY(-250px); } }

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

h1, h2, h3, h4, h5 { font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: #0c1840; }
h1 { font-size: clamp(2.4rem, 5vw + 0.5rem, 4.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem); margin-bottom: 0.8rem; }
h3 { font-size: clamp(1.3rem, 1.4vw + 0.7rem, 1.7rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
p { color: var(--text-dim); margin-bottom: 1rem; }
a { color: var(--cyan); text-decoration: none; transition: all 0.2s; }
a:hover { color: var(--cyan-soft); text-shadow: 0 0 10px rgba(0, 212, 255, 0.6); }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan);
  padding: 6px 14px; border: 1px solid var(--border-strong); border-radius: 999px;
  background: rgba(0, 212, 255, 0.06); backdrop-filter: blur(10px); margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border); transition: all 0.3s;
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.97); border-color: var(--border-strong); box-shadow: 0 2px 14px rgba(10, 24, 64, 0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--text); }
.logo-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; background: var(--gradient-primary);
  box-shadow: var(--glow-cyan); position: relative; overflow: hidden;
}
.logo-mark::before { content: ''; position: absolute; inset: 1px; border-radius: 9px; background: var(--bg-deep); }
.logo-mark span {
  position: relative; font-weight: 900; font-size: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  display: block; padding: 8px 16px; color: var(--text-dim);
  font-weight: 500; font-size: 0.95rem; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(0, 153, 212, 0.08); text-shadow: none; }
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a::after { content: '▾'; margin-left: 6px; font-size: 0.7em; opacity: 0.6; }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 280px; padding: 8px;
  background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(10, 24, 64, 0.15), 0 0 30px rgba(0, 153, 212, 0.10);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s; list-style: none; max-height: 70vh; overflow-y: auto;
}
.dropdown a { padding: 10px 14px; border-radius: 8px; font-size: 0.9rem; white-space: nowrap; }
.has-sub:hover .dropdown, .has-sub:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.25s; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient-primary); color: white;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5), 0 0 40px rgba(124, 77, 255, 0.3);
  color: white; text-shadow: none;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-ghost { background: rgba(0, 212, 255, 0.08); color: var(--cyan); border: 1px solid var(--border-strong); }
.btn-ghost:hover {
  background: rgba(0, 212, 255, 0.15); border-color: var(--cyan); color: var(--cyan-soft);
  box-shadow: var(--glow-cyan); text-shadow: none;
}
.btn-large { padding: 16px 32px; font-size: 1.05rem; }

.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 8px; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { width: 18px; height: 2px; background: var(--cyan); transition: 0.3s; }

.hero {
  min-height: 100vh; padding: calc(var(--header-h) + 60px) 0 80px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-headline { margin-bottom: 1.8rem; }
.hero-sub { font-size: 1.15rem; color: var(--text-dim); margin-bottom: 2rem; max-width: 580px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.orb {
  width: 80%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.8), rgba(124, 77, 255, 0.6) 40%, rgba(255, 45, 146, 0.4) 70%, transparent);
  filter: blur(8px); animation: float 8s ease-in-out infinite; position: relative;
}
.orb::before { content: ''; position: absolute; inset: -40px; border-radius: 50%; border: 1px solid var(--border-strong); animation: spin-slow 20s linear infinite; }
.orb::after { content: ''; position: absolute; inset: -80px; border-radius: 50%; border: 1px dashed rgba(124, 77, 255, 0.3); animation: spin-slow 30s linear infinite reverse; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 60px; padding: 24px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.stat-num {
  font-size: 1.8rem; font-weight: 800;
  background: var(--gradient-cyber); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-mono); margin-bottom: 4px;
}
.stat-label { color: var(--text-faint); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }

.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-header p { font-size: 1.1rem; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(10px); overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px;
  background: linear-gradient(135deg, transparent 30%, var(--cyan) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.35s;
}
.card:hover {
  transform: translateY(-6px); border-color: var(--border-strong);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.15);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0, 212, 255, 0.1); border: 1px solid var(--border-strong);
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 20px; position: relative;
}
.card-icon::after {
  content: ''; position: absolute; inset: -4px; border-radius: 16px;
  background: var(--gradient-primary); filter: blur(15px); opacity: 0.3; z-index: -1;
}
.card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.card p { font-size: 0.95rem; line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.9rem; font-weight: 600; }
.card-link::after { content: '→'; transition: transform 0.2s; }
.card-link:hover::after { transform: translateX(3px); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse > :first-child { order: 2; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; counter-reset: step; }
.step {
  position: relative; padding: 28px 24px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  counter-increment: step;
}
.step::before {
  content: '0' counter(step); position: absolute; top: 16px; right: 20px;
  font-family: var(--font-mono); font-size: 2.4rem; font-weight: 700;
  background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; opacity: 0.4;
}
.step h4 { margin: 12px 0 8px; }
.step p { font-size: 0.9rem; }

.site-footer {
  margin-top: 120px; padding: 80px 0 30px;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.04));
  border-top: 1px solid var(--border); position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 50%; width: 60%; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--cyan), transparent); filter: blur(1px);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 0.95rem; max-width: 320px; }
.footer-grid h5 { color: white; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid li a { color: var(--text-dim); font-size: 0.92rem; }
.footer-grid li a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 30px; border-top: 1px solid var(--border);
  color: var(--text-faint); font-size: 0.85rem;
}

.page-hero { padding: calc(var(--header-h) + 80px) 0 60px; text-align: center; position: relative; }
.breadcrumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-family: var(--font-mono); color: var(--text-faint); margin-bottom: 20px;
}
.breadcrumbs a { color: var(--cyan); }
.breadcrumbs span:not(:last-child)::after { content: '/'; margin-left: 8px; opacity: 0.5; }

.article-body { max-width: 760px; margin: 0 auto; font-size: 1.08rem; }
.article-body h2 { margin: 2.4rem 0 1rem; font-size: 1.8rem; }
.article-body h3 { margin: 2rem 0 0.8rem; font-size: 1.3rem; color: var(--cyan); }
.article-body h4 { margin: 1.6rem 0 0.6rem; }
.article-body p { margin-bottom: 1.2rem; line-height: 1.75; color: var(--text-dim); }
.article-body strong { color: white; font-weight: 700; }
.article-body em { color: var(--cyan-soft); font-style: italic; }
.article-body a { border-bottom: 1px solid var(--border-strong); }
.article-body a:hover { border-bottom-color: var(--cyan); }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--text-dim); }
.article-body li { margin-bottom: 0.6rem; }
.article-body img {
  max-width: 100%; height: auto; border-radius: var(--radius);
  border: 1px solid var(--border); margin: 1.5rem auto; display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.article-body blockquote {
  border-left: 3px solid var(--cyan); padding: 12px 20px; margin: 1.5rem 0;
  background: rgba(0, 212, 255, 0.05); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}
.article-body table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.article-body th {
  background: rgba(0, 212, 255, 0.08); color: var(--cyan); text-align: left;
  padding: 12px 16px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.article-body td { padding: 12px 16px; border-top: 1px solid var(--border); font-size: 0.95rem; }
.article-meta {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  font-size: 0.88rem; color: var(--text-faint); font-family: var(--font-mono); margin-top: 12px;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.post-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px); border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.12);
}
.post-card-cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0f1530, #1a2050);
  position: relative; overflow: hidden;
}
.post-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card-cover::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.4), transparent 60%);
  pointer-events: none;
}
.post-card-cover.no-img::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, black, transparent);
}
.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card-cat {
  display: inline-block; font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px;
}
.post-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.post-card-excerpt { font-size: 0.92rem; flex: 1; color: var(--text-dim); }
.post-card-foot {
  display: flex; justify-content: space-between; font-size: 0.82rem;
  color: var(--text-faint); font-family: var(--font-mono);
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}

.reveal { opacity: 0; transform: translateY(24px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.contact-info ul { list-style: none; margin-top: 20px; }
.contact-info li {
  display: flex; gap: 14px; padding: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px;
}
.contact-info li strong { color: white; display: block; }
.contact-info li span { color: var(--text-dim); font-size: 0.92rem; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 14px 16px;
  background: rgba(15, 21, 48, 0.6); border: 1px solid var(--border); border-radius: var(--radius);
  color: white; font-family: inherit; font-size: 0.95rem; transition: all 0.2s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}
.form textarea { min-height: 130px; resize: vertical; }

.cta-banner {
  text-align: center; padding: 80px 40px;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.15), transparent, rgba(124, 77, 255, 0.15), transparent);
  animation: spin-slow 20s linear infinite; z-index: -1;
}
.cta-banner::after { content: ''; position: absolute; inset: 1px; border-radius: var(--radius-lg); background: var(--bg-1); z-index: -1; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { max-width: 540px; margin: 0 auto 1.5rem; font-size: 1.05rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; transition: all 0.3s;
}
.price-card.featured { border-color: var(--cyan); box-shadow: var(--glow-cyan); transform: scale(1.03); }
.price-card.featured::before {
  content: 'POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: white; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; padding: 5px 14px; border-radius: 999px;
}
.price-card h3 { font-size: 1.2rem; }
.price-amount {
  font-size: 3rem; font-weight: 800;
  background: var(--gradient-cyber); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 14px 0 4px; font-family: var(--font-mono);
}
.price-period { color: var(--text-faint); font-size: 0.9rem; margin-bottom: 24px; }
.price-features { list-style: none; margin: 24px 0; }
.price-features li {
  padding: 8px 0; color: var(--text-dim); font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
}
.price-features li::before { content: '✓'; color: var(--cyan); font-weight: 700; filter: drop-shadow(0 0 4px var(--cyan)); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse > :first-child { grid-template-columns: 1fr; order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; flex-direction: column; padding: 20px; background: rgba(5, 8, 20, 0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); align-items: stretch; max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; }
  .nav-links .has-sub .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding-left: 16px; border: none; max-height: none; }
  .burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ====== Hero with video background ====== */
.hero.hero-video {
  position: relative;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55) saturate(1.2);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 8, 20, 0.4) 0%, rgba(5, 8, 20, 0.75) 60%, rgba(5, 8, 20, 0.95) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(0, 212, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(124, 77, 255, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.hero.hero-video .container { position: relative; z-index: 2; }

/* ====== Hero brand-mark image frame ====== */
.hero-logo-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.hero-logo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.45), rgba(124, 77, 255, 0.3) 40%, transparent 70%);
  filter: blur(40px);
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero-logo-frame::after {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  animation: spin-slow 30s linear infinite;
}
.hero-logo-frame img {
  position: relative;
  z-index: 2;
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
  animation: float 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* ====== Image frame (split sections) ====== */
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.12);
  aspect-ratio: 1;
}
.image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.0) 0%, rgba(0, 212, 255, 0.18) 100%);
  pointer-events: none;
}
.image-frame::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--cyan), transparent 40%, transparent 60%, var(--violet));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  z-index: 2; pointer-events: none;
}
.image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.image-frame:hover img { transform: scale(1.04); }

/* ====== Location cards with photos ====== */
.location-card { padding: 0; overflow: hidden; }
.location-card .location-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  margin: -1px -1px 0;
}
.location-card .location-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.location-card:hover .location-img img { transform: scale(1.06); }
.location-card .location-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 20, 0.85));
}
.location-card h3, .location-card p, .location-card .card-link { padding-left: 28px; padding-right: 28px; }
.location-card h3 { margin-top: 24px; }
.location-card .card-link { padding-bottom: 28px; display: inline-flex; }

/* Improve hero on smaller screens */
@media (max-width: 980px) {
  .hero-logo-frame { max-width: 320px; }
  .hero-video-bg { filter: brightness(0.4) saturate(1.2); }
}

/* Reduce motion for video background */
@media (prefers-reduced-motion: reduce) {
  .hero-video-bg { display: none; }
  .hero.hero-video::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gradient-bg);
  }
}

/* ====== STAR WARS HOLOGRAM HERO ====== */
.hero.hero-galaxy {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: radial-gradient(ellipse at center, #0a1840 0%, #050814 70%);
}

/* Hyperspace stars streaking */
.hyperspace {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hyperspace::before, .hyperspace::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 60px at 10% 20%, rgba(0,212,255,0.6), transparent),
    radial-gradient(1px 80px at 25% 60%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 70px at 50% 30%, rgba(0,212,255,0.7), transparent),
    radial-gradient(1px 90px at 70% 80%, rgba(124,77,255,0.5), transparent),
    radial-gradient(1px 60px at 85% 40%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 50px at 92% 70%, rgba(0,212,255,0.5), transparent);
  background-size: 100% 100%;
  animation: hyper 8s linear infinite;
}
.hyperspace::after { animation-duration: 12s; opacity: 0.6; }
@keyframes hyper {
  0% { transform: translateY(-30%); opacity: 0.3; }
  50% { opacity: 1; }
  100% { transform: translateY(30%); opacity: 0.3; }
}

/* Globe container */
.globe-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
#globe-canvas {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.4));
}

/* Hologram scan lines */
.hologram-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0, 212, 255, 0.04) 0px,
      rgba(0, 212, 255, 0.04) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: screen;
  animation: scan-flicker 0.15s steps(2) infinite;
}
@keyframes scan-flicker {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Moving scan line */
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.15), transparent);
  z-index: 4;
  pointer-events: none;
  animation: scan-down 4s ease-in-out infinite;
}
@keyframes scan-down {
  0% { top: -80px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* HUD corner brackets - Star Wars style */
.hud-frame {
  position: absolute;
  inset: 24px;
  z-index: 4;
  pointer-events: none;
}
.hud-frame::before, .hud-frame::after,
.hud-frame > span:nth-child(1), .hud-frame > span:nth-child(2) {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--cyan);
  border-style: solid;
  border-width: 0;
  filter: drop-shadow(0 0 4px var(--cyan));
}
.hud-frame::before { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.hud-frame::after { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.hud-frame > span:nth-child(1) { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.hud-frame > span:nth-child(2) { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

/* HUD telemetry text */
.hud-telemetry {
  position: absolute;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 0 4px var(--cyan);
  white-space: nowrap;
}
.hud-telemetry.tl { top: 36px; left: 36px; }
.hud-telemetry.tr { top: 36px; right: 36px; text-align: right; }
.hud-telemetry.bl { bottom: 36px; left: 36px; }
.hud-telemetry.br { bottom: 36px; right: 36px; text-align: right; }

.hud-telemetry .blink::before {
  content: '●';
  margin-right: 6px;
  color: var(--green);
  text-shadow: 0 0 6px var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Hologram text glitch on hero headline */
.hero-galaxy .hero-headline {
  position: relative;
  text-shadow:
    0 0 1px var(--cyan),
    0 0 20px rgba(0, 212, 255, 0.3);
  animation: holo-flicker 6s infinite;
}
@keyframes holo-flicker {
  0%, 96%, 100% { opacity: 1; }
  97% { opacity: 0.8; }
  98% { opacity: 1; }
  99% { opacity: 0.85; }
}

/* Texas star marker */
.texas-star {
  position: absolute;
  top: 22%;
  right: 12%;
  font-size: 1.6rem;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px var(--cyan));
  animation: pulse 2s ease-in-out infinite;
  z-index: 5;
}

@media (max-width: 980px) {
  .globe-stage { max-width: 360px; }
  .hud-telemetry { font-size: 0.6rem; }
  .hud-telemetry.tl, .hud-telemetry.tr { top: 100px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hyperspace::before, .hyperspace::after,
  .scan-line, .hologram-overlay { animation: none; }
}

/* Globe canvas cursor — clearly grabbable */
#globe-canvas {
  cursor: grab;
  touch-action: none; /* prevent page scroll while dragging on mobile */
}
#globe-canvas:active { cursor: grabbing; }

/* Drag hint that fades after interaction */
.globe-stage::after {
  content: '↕ DRAG TO ROTATE ↕';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-shadow: 0 0 6px var(--cyan);
  opacity: 0.7;
  animation: pulse 2.5s ease-in-out infinite;
  pointer-events: none;
  white-space: nowrap;
}

/* ============================================================
   BRIGHT DAYLIGHT MODE — overrides applied last so they win
   ============================================================ */
:root {
  --bg-deep: #eaf2fb;
  --bg-1: #ffffff;
  --bg-2: #f3f7fc;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-2: rgba(248, 251, 254, 0.95);
  --border: rgba(0, 119, 191, 0.16);
  --border-strong: rgba(0, 119, 191, 0.4);
  --text: #0c1840;
  --text-dim: #495876;
  --text-faint: #8090aa;
  --cyan: #0099d4;
  --cyan-soft: #34b6e6;
  --magenta: #d92078;
  --violet: #5d3ed8;
  --green: #00a86b;
  --gold: #d49a17;
  --gradient-bg: radial-gradient(ellipse at top, #ffffff 0%, #e2ecf8 50%, #c5d8ed 100%);
  --glow-cyan: 0 0 20px rgba(0, 153, 212, 0.35), 0 0 40px rgba(0, 153, 212, 0.18);
}

body {
  background: #eaf2fb;
  color: var(--text);
}

h1, h2, h3, h4, h5 { color: #0c1840; }

/* Cosmic background → daylight sky */
.cosmic-bg { background: var(--gradient-bg); }
.cosmic-bg::before { display: none; }
.cosmic-bg::after {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 153, 212, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(94, 62, 216, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(217, 32, 120, 0.05) 0%, transparent 60%);
  filter: blur(40px);
}

/* Subtle grid overlay on light */
.grid-overlay {
  background-image:
    linear-gradient(rgba(0, 119, 191, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 119, 191, 0.06) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Header — frosted white */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 14px rgba(10, 24, 64, 0.08);
}

.nav-links a { color: var(--text-dim); }
.nav-links a:hover {
  color: var(--text);
  background: rgba(0, 153, 212, 0.08);
}

.dropdown {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(10, 24, 64, 0.15), 0 0 30px rgba(0, 153, 212, 0.10);
}

/* Cards */
.card, .post-card, .price-card, .step, .contact-info li {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(10, 24, 64, 0.05);
}
.card:hover, .post-card:hover, .price-card:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(10, 24, 64, 0.12), 0 0 36px rgba(0, 153, 212, 0.10);
  border-color: var(--border-strong);
}
.card h3, .post-card h3, .price-card h3, .step h4 { color: var(--text); }
.card p, .post-card-excerpt { color: var(--text-dim); }

.card-icon {
  background: rgba(0, 153, 212, 0.08);
  border: 1px solid var(--border-strong);
}

/* Hero */
.hero { background: transparent; }
.hero.hero-galaxy {
  background: linear-gradient(180deg, #d4e3f3 0%, #b3cfea 60%, #93b8df 100%);
}
.hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(245, 250, 255, 0.55) 70%, rgba(255, 255, 255, 0.85) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(0, 153, 212, 0.18) 0%, transparent 60%);
}
.hero-headline { color: var(--text); }
.hero-sub { color: var(--text-dim); }

/* Hero stats panel */
.hero-stats {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
}
.stat-label { color: var(--text-faint); }

/* HUD telemetry — make readable on bright */
.hud-telemetry { color: var(--cyan); text-shadow: 0 0 4px rgba(0, 153, 212, 0.5); }

/* Eyebrow on light */
.eyebrow {
  background: rgba(0, 153, 212, 0.08);
  color: var(--cyan);
}

/* Buttons */
.btn-ghost {
  background: rgba(0, 153, 212, 0.06);
  color: var(--cyan);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(0, 153, 212, 0.13);
  color: var(--cyan);
}

/* Article body */
.article-body p, .article-body li { color: var(--text-dim); }
.article-body strong { color: var(--text); }
.article-body em { color: var(--cyan); }
.article-body img {
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(10, 24, 64, 0.10);
}
.article-body table {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
}
.article-body th { background: rgba(0, 153, 212, 0.08); color: var(--cyan); }
.article-body td { border-top: 1px solid var(--border); }
.article-body blockquote {
  background: rgba(0, 153, 212, 0.06);
  border-left-color: var(--cyan);
}

/* Page hero */
.breadcrumbs { color: var(--text-faint); }
.breadcrumbs a { color: var(--cyan); }
.article-meta { color: var(--text-faint); }

/* Forms */
.form input, .form textarea, .form select {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border: 1px solid var(--border);
}
.form input:focus, .form textarea:focus {
  background: white;
  border-color: var(--cyan);
}

/* CTA banner */
.cta-banner {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-strong);
  box-shadow: 0 12px 40px rgba(10, 24, 64, 0.10);
}
.cta-banner::after { background: #f3f7fc; }
.cta-banner h2 { color: var(--text); }
.cta-banner p { color: var(--text-dim); }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(0, 153, 212, 0.06));
  border-top: 1px solid var(--border);
}
.site-footer h5 { color: var(--text); }
.footer-grid li a { color: var(--text-dim); }
.footer-grid li a:hover { color: var(--cyan); }
.footer-bottom { color: var(--text-faint); border-top-color: var(--border); }
.footer-brand p { color: var(--text-dim); }

/* Logo wordmark stays vibrant */
.logo span { color: var(--text); }

/* Pricing card amount */
.price-amount { filter: none; }
.price-features li { color: var(--text-dim); }

/* Scan / hyperspace effects — too jarring on bright; tone down */
.hyperspace { opacity: 0.3; }
.hologram-overlay { opacity: 0.3; mix-blend-mode: multiply; }
.scan-line { opacity: 0.4; }



/* ====== Hero text legibility on bright theme ====== */
.hero.hero-galaxy .hero-headline {
  color: #061030;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.6);
}
.hero.hero-galaxy .hero-headline .gradient-text {
  filter: drop-shadow(0 1px 8px rgba(255, 255, 255, 0.8));
}
.hero.hero-galaxy .hero-sub {
  color: #1a2a48;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.85);
}
.hero.hero-galaxy .eyebrow {
  background: rgba(255, 255, 255, 0.8);
  color: #0c1840;
  border-color: rgba(0, 119, 191, 0.5);
  text-shadow: none;
}
.hero.hero-galaxy .stat-num {
  filter: drop-shadow(0 1px 4px rgba(255, 255, 255, 0.9));
}
.hero.hero-galaxy .stat-label {
  color: #1a2a48;
  font-weight: 600;
}

/* Stronger overlay over Kraken video to improve text contrast */
.hero.hero-video .hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(245, 250, 255, 0.55) 0%, rgba(234, 242, 251, 0.7) 50%, rgba(234, 242, 251, 0.85) 100%);
}

/* ====== Hero text — strong legibility pass ====== */

/* Beef up the overlay over the Kraken video so text reads */
.hero.hero-video .hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(245, 250, 255, 0.78) 0%, rgba(234, 242, 251, 0.85) 50%, rgba(234, 242, 251, 0.95) 100%);
}

/* Headline — black, bold, dark-side text-shadow */
.hero.hero-galaxy .hero-headline,
.hero .hero-headline {
  color: #050a20 !important;
  font-weight: 900;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9),
    0 4px 20px rgba(255, 255, 255, 0.85),
    0 0 40px rgba(255, 255, 255, 0.6);
  letter-spacing: -0.025em;
}
.hero .hero-headline .gradient-text {
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 10px rgba(0, 119, 191, 0.4));
}

/* Subtitle — solid dark, weight 600 with white halo */
.hero.hero-galaxy .hero-sub,
.hero .hero-sub {
  color: #0c1a3a !important;
  font-weight: 600;
  font-size: 1.18rem;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 12px rgba(255, 255, 255, 0.85);
}

/* Eyebrow pill — high-contrast white background */
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #0c1840 !important;
  border: 2px solid #0099d4 !important;
  font-weight: 700;
  text-shadow: none;
  box-shadow: 0 2px 12px rgba(10, 24, 64, 0.15);
}
.hero .eyebrow::before {
  background: #d92078;
  box-shadow: 0 0 8px #d92078;
}

/* HUD telemetry corners — solid pills with strong contrast */
.hud-telemetry {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #0c1840 !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1.5px solid #0099d4;
  text-shadow: none !important;
  box-shadow: 0 2px 10px rgba(10, 24, 64, 0.18);
  letter-spacing: 0.12em;
}
.hud-telemetry .blink::before {
  color: #00a86b;
  text-shadow: 0 0 6px #00a86b;
}

/* HUD corner brackets — stronger, more visible cyan */
.hud-frame::before, .hud-frame::after,
.hud-frame > span:nth-child(1), .hud-frame > span:nth-child(2) {
  border-color: #0099d4 !important;
  border-width: 3px !important;
  filter: drop-shadow(0 0 6px rgba(0, 153, 212, 0.6)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.9));
}

/* Stat numbers and labels in hero — pop against light bg */
.hero .stat-num {
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.95));
  font-weight: 900 !important;
}
.hero .stat-label {
  color: #1a2a48 !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Hero stats panel — more visible */
.hero-stats {
  background: rgba(255, 255, 255, 0.96) !important;
  border: 2px solid rgba(0, 153, 212, 0.3) !important;
  box-shadow: 0 8px 30px rgba(10, 24, 64, 0.12) !important;
}

/* DRAG TO ROTATE hint — readable on light */
.globe-stage::after {
  color: #0c1840 !important;
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 10px;
  border-radius: 4px;
  text-shadow: none !important;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* ====== Office photo background — "What We Do" section ====== */
.section.office-bg {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.section.office-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../../uploads/office-banner.webp');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  filter: contrast(1.2) saturate(1.15) brightness(1.05);
  z-index: 0;
}
.section.office-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(234, 242, 251, 0.7) 0%, rgba(234, 242, 251, 0.5) 50%, rgba(234, 242, 251, 0.78) 100%);
  z-index: 1;
  pointer-events: none;
}
.section.office-bg > * { position: relative; z-index: 2; }
.section.office-bg .section-header { margin-bottom: 36px; }
.section.office-bg .section-header h2 { font-size: clamp(1.7rem, 2.6vw + 0.5rem, 2.4rem); }

/* ====== Launching rocket — arcs diagonally across headline ====== */
.hero-rocket-launch {
  position: absolute;
  left: -40px;
  bottom: 40px;
  width: 80px;
  height: 320px;
  z-index: 4;
  pointer-events: none;
  animation: rocket-arc 11s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 170, 0, 0.55)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}
.hero-rocket-svg { width: 100%; height: 100%; }

@keyframes rocket-arc {
  0%   { transform: translate(0, 0) rotate(-5deg) scale(0.9); opacity: 0; }
  8%   { opacity: 1; }
  25%  { transform: translate(18vw, -22vh) rotate(20deg) scale(0.95); opacity: 1; }
  50%  { transform: translate(45vw, -42vh) rotate(40deg) scale(1); opacity: 1; }
  70%  { transform: translate(70vw, -55vh) rotate(55deg) scale(0.85); opacity: 1; }
  88%  { transform: translate(95vw, -68vh) rotate(65deg) scale(0.55); opacity: 0.6; }
  100% { transform: translate(110vw, -75vh) rotate(70deg) scale(0.3); opacity: 0; }
}

@media (max-width: 980px) {
  .hero-rocket-launch { left: -25px; bottom: 20px; width: 50px; height: 200px; }
  @keyframes rocket-arc {
    0%   { transform: translate(0, 0) rotate(-5deg) scale(0.85); opacity: 0; }
    10%  { opacity: 1; }
    50%  { transform: translate(45vw, -30vh) rotate(35deg); opacity: 1; }
    100% { transform: translate(105vw, -55vh) rotate(60deg) scale(0.3); opacity: 0; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rocket-launch { animation: none; opacity: 0.5; }
}

/* ====== HEADLINE — more pronounced ====== */
.hero .hero-headline,
.hero.hero-galaxy .hero-headline {
  font-size: clamp(2.8rem, 6vw + 0.5rem, 5.6rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
  margin-bottom: 1.4rem !important;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.95),
    0 4px 24px rgba(255, 255, 255, 0.85),
    0 0 50px rgba(0, 153, 212, 0.35) !important;
}
.hero .hero-headline .gradient-text {
  background: linear-gradient(135deg, #0099d4 0%, #5d3ed8 50%, #d92078 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 14px rgba(0, 153, 212, 0.5)) !important;
  font-style: italic;
  font-weight: 900;
}

/* ====== Performance: content-visibility on offscreen sections ====== */
.section { content-visibility: auto; contain-intrinsic-size: 600px; }
.hero, .site-header, .site-footer { content-visibility: visible; }
