/* =============================================================
   Jetstream Hosting — Stylesheet
   Locked brand palette, Geist typography, jet-inspired UI.
   ============================================================= */

:root {
  /* Brand */
  --navy:        #002b66;
  --navy-dark:   #001840;
  --navy-mid:    #003d8f;
  --blue:        #1565c0;
  --sky:         #2196f3;
  --sky-light:   #bbdefb;
  --cloud:       #f0f8ff;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --text:        #1a2332;
  --muted:       #546e7a;
  --border:      #e2e8f0;
  --accent:      #64b5f6;

  /* System */
  --max-w: 1240px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(0, 43, 102, 0.06);
  --shadow:    0 12px 36px rgba(0, 43, 102, 0.10);
  --shadow-lg: 0 28px 72px rgba(0, 43, 102, 0.18);
  --shadow-glow: 0 0 0 1px rgba(33, 150, 243, 0.18), 0 12px 32px rgba(33, 150, 243, 0.30);
  --font:      'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--sky); color: var(--white); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-feature-settings: 'ss01', 'cv11';
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* =============================================================
   LAYOUT
   ============================================================= */

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

section { position: relative; }

/* Subtle horizon divider used between sections */
.horizon {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 43, 102, 0.10) 20%,
    rgba(33, 150, 243, 0.45) 50%,
    rgba(0, 43, 102, 0.10) 80%,
    transparent 100%);
  margin: 0 auto;
  max-width: var(--max-w);
}

/* =============================================================
   NAVIGATION
   ============================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(0, 43, 102, 0.08);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.brand {
  display: inline-flex; align-items: center;
  color: var(--navy);
}
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  transition: opacity 0.2s var(--ease), transform 0.3s var(--ease);
}
.brand:hover .brand-logo { opacity: 0.82; }
.footer .brand-logo {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer .brand:hover .brand-logo { opacity: 1; }
@media (max-width: 600px) {
  .brand-logo { height: 28px; }
  .footer .brand-logo { height: 26px; }
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 500;
  border-radius: 10px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--navy); background: rgba(33, 150, 243, 0.08); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
}

.nav-cta {
  margin-left: 8px;
  padding: 11px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-cta:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 43, 102, 0.25);
}
.nav-cta:active { transform: translateY(0); }
.nav-cta svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.nav-cta:hover svg { transform: translateX(3px); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  color: var(--navy);
}
.nav-burger:hover { background: rgba(0, 43, 102, 0.06); }
.nav-burger svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 72px; left: 16px; right: 16px;
    padding: 12px; gap: 4px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }
  .nav.open .nav-cta {
    display: inline-flex; justify-content: center;
    margin: 4px 0 0 0;
  }
}

/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-size: 0.98rem; font-weight: 500;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--sky);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--off-white); border-color: var(--navy); }

.btn-large { padding: 16px 26px; font-size: 1.02rem; }

/* =============================================================
   HERO
   ============================================================= */

.hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 8%, rgba(33, 150, 243, 0.18), transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(100, 181, 246, 0.20), transparent 42%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

/* Faint grid overlay — instrument grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Diagonal contrail lines sweeping across */
.contrails {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.contrails svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 120px 24px 110px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--sky-light) 0%, var(--accent) 60%, var(--sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 36px;
}

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

.hero-meta {
  margin-top: 56px;
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.hero-meta .stat { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .stat .num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-meta .stat .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero visual — jet + HUD */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 0 0 auto;
}
.hero-visual .hud {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  animation: rotate 60s linear infinite;
}
.hero-visual .hud::before, .hero-visual .hud::after {
  content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06);
}
.hero-visual .hud::before { inset: 12%; }
.hero-visual .hud::after { inset: 26%; border-color: rgba(255,255,255,0.10); }
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-visual .compass {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.hero-visual .compass-mark {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
}
.hero-visual .compass-mark.n { top: 10px; left: 50%; transform: translateX(-50%); }
.hero-visual .compass-mark.s { bottom: 10px; left: 50%; transform: translateX(-50%); }
.hero-visual .compass-mark.e { right: 10px; top: 50%; transform: translateY(-50%); }
.hero-visual .compass-mark.w { left: 10px; top: 50%; transform: translateY(-50%); }

.hero-visual .jet-wrap {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.hero-visual .jet-svg {
  width: 78%; height: auto;
  filter: drop-shadow(0 24px 48px rgba(33, 150, 243, 0.45));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(-6deg); }
}

/* Floating stat cards — instrument panel composition */
.stat-card {
  position: absolute;
  background: linear-gradient(160deg, rgba(0, 24, 64, 0.92), rgba(0, 43, 102, 0.78));
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--white);
  display: flex; align-items: center; gap: 14px;
  z-index: 3;
}
.stat-card .sc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(33,150,243,0.30), rgba(100,181,246,0.06));
  border: 1px solid rgba(100,181,246,0.18);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.stat-card .sc-icon svg { width: 18px; height: 18px; stroke-width: 1.5; }
.stat-card .sc-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.stat-card .sc-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  white-space: nowrap;
}
.stat-card .sc-value {
  font-family: var(--font-mono);
  font-size: 1.42rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 3px;
  white-space: nowrap;
}
.stat-card .sc-value .unit { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.stat-card .sc-value .pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s ease-in-out infinite;
  margin-right: 6px;
  align-self: center;
}

/* Signal-strength bars accessory */
.sc-bars { display: flex; gap: 3px; align-items: flex-end; height: 26px; margin-left: 4px; }
.sc-bars span { width: 4px; background: var(--accent); border-radius: 2px; }
.sc-bars span:nth-child(1) { height: 30%; opacity: 0.45; }
.sc-bars span:nth-child(2) { height: 50%; opacity: 0.55; }
.sc-bars span:nth-child(3) { height: 70%; opacity: 0.70; }
.sc-bars span:nth-child(4) { height: 85%; opacity: 0.85; }
.sc-bars span:nth-child(5) { height: 100%; opacity: 1; box-shadow: 0 0 10px rgba(100,181,246,0.7); }

/* Sparkline accessory */
.sc-spark { width: 64px; height: 28px; flex-shrink: 0; margin-left: 2px; }
.sc-spark .area { fill: url(#sparkFill); stroke: none; }
.sc-spark .line { stroke: var(--accent); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Card positions — asymmetric dashboard composition */
.sc-uptime  { top: 0%;     right: -6%; animation: float-a 5.4s ease-in-out infinite; }
.sc-load    { top: 22%;    left: -10%; animation: float-b 6.2s ease-in-out infinite 0.3s; }
.sc-ssl     { top: 50%;    right: -10%; animation: float-a 5.0s ease-in-out infinite 0.6s; }
.sc-backup  { bottom: 22%; left: -8%;  animation: float-b 5.6s ease-in-out infinite 0.2s; }
.sc-cache   { bottom: -2%; right: 4%;  animation: float-a 6.4s ease-in-out infinite 0.5s; }

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(12px); }
}

@media (max-width: 1100px) {
  .stat-card { padding: 14px 16px; gap: 12px; }
  .stat-card .sc-value { font-size: 1.28rem; }
  .stat-card .sc-icon { width: 34px; height: 34px; }
  .sc-spark { width: 54px; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 80px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .sc-uptime  { right: 0; }
  .sc-load    { left: 0; }
  .sc-ssl     { right: 0; }
  .sc-backup  { left: 0; }
  .sc-cache   { right: 8%; }
}

@media (max-width: 768px) {
  .hero-visual { display: none; }
  .hero-inner { padding-bottom: 64px; }
}

/* =============================================================
   SECTION HEADER
   ============================================================= */

.section { padding: 120px 0; }
.section-tight { padding: 88px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sky);
  margin-bottom: 16px;
}
.section-tag::before {
  content: ''; width: 28px; height: 1px; background: var(--sky);
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--navy);
  max-width: 760px;
}
.section-lede {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.65;
}
.section-head { margin-bottom: 64px; }

/* =============================================================
   PROBLEM SECTION
   ============================================================= */

.problem {
  background: var(--off-white);
  position: relative;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.problem-card {
  position: relative;
  padding: 36px 32px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.problem-card:hover { transform: translateY(-4px); border-color: var(--sky-light); box-shadow: var(--shadow); }
.problem-card:hover::before { transform: scaleX(1); }

.problem-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cloud), var(--sky-light));
  border-radius: 12px;
  margin-bottom: 22px;
  color: var(--navy);
}
.problem-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.problem-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.problem-card p { color: var(--muted); font-size: 0.96rem; line-height: 1.65; }

@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; } }

/* =============================================================
   SOLUTION / 3 PROMISES
   ============================================================= */

.solution {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.solution-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.solution-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); line-height: 1.08; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 22px; font-weight: 600; }
.solution-copy h2 em { font-style: normal; color: var(--sky); }
.solution-copy p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin-bottom: 28px; }

.promises { display: flex; flex-direction: column; gap: 18px; }
.promise {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.promise::after {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,243,0.18), transparent 70%);
  pointer-events: none;
}
.promise:hover { transform: translateX(6px); }
.promise:nth-child(2) { transform: translateX(28px); }
.promise:nth-child(2):hover { transform: translateX(34px); }
.promise:nth-child(3) { transform: translateX(56px); }
.promise:nth-child(3):hover { transform: translateX(62px); }

.promise-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  border: 1px solid rgba(100, 181, 246, 0.3);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: grid; place-items: center;
}
.promise h4 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.promise p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.55; max-width: 380px; }
.promise svg.arrow { width: 18px; height: 18px; color: var(--accent); }

@media (max-width: 960px) {
  .solution-grid { grid-template-columns: 1fr; gap: 48px; }
  .promise, .promise:nth-child(2), .promise:nth-child(3) { transform: none; }
  .promise:hover, .promise:nth-child(2):hover, .promise:nth-child(3):hover { transform: translateY(-2px); }
  .promise { grid-template-columns: 48px 1fr; padding: 22px; }
  .promise-num { width: 48px; height: 48px; }
  .promise svg.arrow { display: none; }
}

/* =============================================================
   SERVICES — INSTRUMENT PANEL
   ============================================================= */

.services { background: var(--off-white); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service {
  position: relative;
  padding: 38px 36px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  bottom: -120px; right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,243,0.10), transparent 70%);
}

.service-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(33,150,243,0.30);
}
.service-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.service h3 {
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 12px;
}
.service p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; }
.service-tags {
  margin-top: 20px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.service-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--navy);
  background: var(--cloud);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

@media (max-width: 860px) { .service-grid { grid-template-columns: 1fr; } }

/* =============================================================
   PRE-FLIGHT CHECKLIST (PROCESS)
   ============================================================= */

.process {
  background: var(--white);
  position: relative;
}
.process-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--off-white);
}
.process-step {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--white);
  border-radius: var(--radius);
  margin: 4px;
  transition: background 0.3s var(--ease);
}
.process-step:hover { background: var(--cloud); }
.step-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--sky);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.step-check {
  width: 22px; height: 22px;
  border: 1.5px solid var(--sky);
  border-radius: 6px;
  display: grid; place-items: center;
  background: var(--white);
  color: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.step-check svg { width: 14px; height: 14px; }
.process-step:hover .step-check { background: var(--sky); color: var(--white); }
.process-step h4 {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

@media (max-width: 860px) {
  .process-board { grid-template-columns: 1fr; }
}

/* =============================================================
   PORTFOLIO TEASER
   ============================================================= */

.portfolio-teaser {
  background: var(--off-white);
  position: relative;
}
.flights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.flight-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: block;
}
.flight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.flight-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--cloud), var(--sky-light));
  position: relative;
  overflow: hidden;
}
.flight-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.flight-card:hover .flight-thumb img { transform: scale(1.04); }

.flight-meta {
  padding: 24px 28px 26px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.flight-info h4 {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin-bottom: 6px;
}
.flight-info .industry {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.flight-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cloud);
  color: var(--navy);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.flight-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.flight-card:hover .flight-link { background: var(--sky); color: var(--white); }
.flight-card:hover .flight-link svg { transform: translate(2px, -2px); }

.flight-tail {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--white);
  background: rgba(0, 24, 64, 0.78);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.flight-coming {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    var(--cloud),
    var(--cloud) 10px,
    var(--off-white) 10px,
    var(--off-white) 20px
  );
  border: 1px dashed var(--border);
  color: var(--muted);
  text-align: center;
  padding: 60px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.portfolio-foot {
  margin-top: 48px;
  display: flex; justify-content: center;
}

@media (max-width: 760px) { .flights-grid { grid-template-columns: 1fr; } }

/* =============================================================
   FINAL CTA
   ============================================================= */

.cta-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.22), transparent 50%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 840px; margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 22px;
}
.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}

/* =============================================================
   FOOTER
   ============================================================= */

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.6; max-width: 320px; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.94rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bot {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =============================================================
   PAGE HEADER (sub-pages)
   ============================================================= */

.page-head {
  position: relative;
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at 18% 20%, rgba(33, 150, 243, 0.18), transparent 40%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head .section-tag { color: var(--accent); }
.page-head .section-tag::before { background: var(--accent); }
.page-head h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--white);
  max-width: 800px;
}
.page-head p {
  margin-top: 18px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.74);
  max-width: 620px;
  line-height: 1.65;
}

/* =============================================================
   ABOUT PAGE
   ============================================================= */

/* Why we exist — textured background section */
.about-section {
  position: relative;
  background: var(--off-white);
  overflow: hidden;
  isolation: isolate;
}
/* Soft sky-blue glow in the top-right */
.about-section::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
/* Network constellation — connected nodes */
.about-section .network-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  mask-image: radial-gradient(ellipse 95% 75% at 50% 50%, black 35%, transparent 92%);
  -webkit-mask-image: radial-gradient(ellipse 95% 75% at 50% 50%, black 35%, transparent 92%);
}
.about-section .network-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-section > .wrap { position: relative; z-index: 1; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-side {
  position: sticky; top: 100px;
}
.about-side .section-tag { color: var(--sky); }
.about-side h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 600;
}
.about-side p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

.about-blocks { display: flex; flex-direction: column; gap: 28px; }
.about-block {
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.about-block::before {
  content: '';
  position: absolute; left: -1px; top: 28px; bottom: 28px;
  width: 3px;
  background: linear-gradient(180deg, var(--sky), var(--navy));
  border-radius: 3px;
}
.about-block h3 {
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin-bottom: 12px;
}
.about-block p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

@media (max-width: 960px) {
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .about-side { position: static; }
}

/* Philosophy strip */
.philosophy {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.phil-item h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sky);
  margin-bottom: 14px;
}
.phil-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.012em;
}
.phil-item p { color: var(--muted); font-size: 0.97rem; line-height: 1.7; }

@media (max-width: 760px) { .philosophy-grid { grid-template-columns: 1fr; } }

/* Three Promises — dark gradient cards (matches home page promise style) */
.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promise-card {
  position: relative;
  padding: 36px 32px 34px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  isolation: isolate;
}
.promise-card::after {
  content: '';
  position: absolute;
  right: -50px; top: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.20), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 24, 64, 0.30);
}
.promise-card > * { position: relative; z-index: 1; }

.promise-card .promise-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  border: 1px solid rgba(100, 181, 246, 0.32);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.promise-card .promise-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}
.promise-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.promise-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .promises-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   PORTFOLIO PAGE
   ============================================================= */

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
@media (max-width: 760px) { .portfolio-page-grid { grid-template-columns: 1fr; } }

.flight-large {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.flight-large:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky-light); }
.flight-large .flight-thumb {
  aspect-ratio: 16/10;
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cloud), var(--sky-light));
}
.flight-large .flight-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.flight-large:hover .flight-thumb img { transform: scale(1.04); }

.flight-large .flight-body { padding: 28px 32px 30px; }
.flight-large .flight-body-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.flight-large .flight-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}
.flight-large .flight-info .industry {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.flight-large .flight-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cloud);
  color: var(--navy);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.flight-large .flight-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.flight-large:hover .flight-link { background: var(--sky); color: var(--white); }
.flight-large:hover .flight-link svg { transform: translate(2px, -2px); }

.flight-large .flight-body p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.flight-large .flight-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.flight-large .view-live {
  color: var(--sky);
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.flight-large .view-live svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.flight-large:hover .view-live { color: var(--blue); }
.flight-large:hover .view-live svg { transform: translateX(4px); }
.flight-large .shipped {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* =============================================================
   CONTACT PAGE
   ============================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-side {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  position: sticky; top: 100px;
  overflow: hidden;
}
.contact-side::before {
  content: '';
  position: absolute; right: -60px; bottom: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,243,0.20), transparent 70%);
}
.contact-side h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
}
.contact-side p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.65; margin-bottom: 32px; }
.contact-detail {
  position: relative; z-index: 1;
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.contact-detail:last-child { border-bottom: 1px solid rgba(255,255,255,0.10); }
.contact-detail .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail .ico svg { width: 18px; height: 18px; stroke-width: 1.5; }
.contact-detail h5 { font-size: 0.78rem; font-family: var(--font-mono); letter-spacing: 0.1em; color: rgba(255,255,255,0.55); text-transform: uppercase; margin-bottom: 6px; }
.contact-detail a, .contact-detail span { font-size: 0.98rem; color: var(--white); }
.contact-detail a:hover { color: var(--accent); }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field label {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.form-field label .req { color: var(--sky); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.96rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(33,150,243,0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-help { font-size: 0.82rem; color: var(--muted); margin-top: -10px; margin-bottom: 18px; }
.form-submit {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-top: 8px;
}
.form-submit .privacy { font-size: 0.82rem; color: var(--muted); max-width: 320px; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-side { position: static; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
}

/* =============================================================
   404 / ERROR PAGE
   ============================================================= */

.error-hero {
  position: relative;
  min-height: calc(100dvh - 72px);
  background:
    radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(100, 181, 246, 0.16), transparent 45%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  display: grid; place-items: center;
}
.error-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.error-inner {
  position: relative; z-index: 2;
  max-width: 760px;
  padding: 80px 24px 100px;
  text-align: center;
}

.error-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
}
.error-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #f87171;
  box-shadow: 0 0 12px #f87171;
  animation: pulse 1.6s ease-in-out infinite;
}

.error-code {
  font-family: var(--font-mono);
  font-size: clamp(6rem, 18vw, 11rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--white) 0%, rgba(100, 181, 246, 0.45) 70%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.error-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}

.error-lede {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 36px;
}

.error-actions {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px;
  margin-bottom: 48px;
}

.error-meta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}
.error-meta a {
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
}
.error-meta a:hover { color: var(--accent); }
.error-meta .dot-sep { color: rgba(255, 255, 255, 0.22); }

@media (max-width: 600px) {
  .error-meta { flex-direction: column; gap: 8px; }
  .error-meta .dot-sep { display: none; }
}

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
