/* ===========================================================
   BWITMS — Coming Soon landing page
   BigWheel IT brand: dark olive/charcoal + lime accent
   =========================================================== */
:root {
  --bg:        #14180D;   /* very dark olive */
  --bg-2:      #1A1F11;   /* alt section */
  --panel:     #1E2316;   /* card-dark / charcoal */
  --panel-2:   #232919;
  --line:      #2c3320;
  --line-soft: #232a17;
  --fg:        #EDEFE6;
  --fg-2:      #B9BEA8;
  --fg-3:      #868c75;
  --accent:    #B5C232;   /* BigWheel lime */
  --accent-deep:#A2B02B;
  --accent-tint:#cdd96a;
  --ok:        #5bbd7e;
  --prep:      #6aa8e0;
  --prog:      #d8a23e;
  --card:      #FFFFFF;
  --card-fg:   #25251E;
  --card-fg-2: #595948;
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px;
  --sp: 16px;
  --maxw: 1120px;
  --font: 'Geist', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; line-height: 1.12; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); }
.accent { color: var(--accent); }

.skip {
  position: absolute; left: -999px; top: 0; background: var(--accent); color: #14140F;
  padding: 8px 14px; border-radius: var(--r-sm); z-index: 100; font-weight: 600;
}
.skip:focus { left: 16px; top: 16px; }

/* ─── buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 22px; border-radius: var(--r-sm);
  font: 600 14.5px var(--font); cursor: pointer; border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #14140F; }
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-tint); }
.btn--sm { height: 36px; padding: 0 16px; font-size: 13.5px; }
.btn--lg { height: 50px; padding: 0 28px; font-size: 15.5px; }

/* ─── nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 24, 13, 0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { display: inline-flex; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.brand__text em { font-style: normal; font-size: 11px; color: var(--accent); font-family: var(--mono); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: 14px; color: var(--fg-2); transition: color .15s; }
.nav__links a:hover { color: var(--fg); }
.nav__links .btn { color: var(--fg); }

/* ─── hero ─── */
.hero { position: relative; overflow: hidden; padding: 96px 0 84px; }
.hero__glow {
  position: absolute; top: -260px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 620px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(181,194,50,0.20), rgba(181,194,50,0.04) 55%, transparent 72%);
}
.hero__inner { position: relative; text-align: center; max-width: 820px; }
.hero__title { font-size: clamp(34px, 6vw, 60px); font-weight: 600; margin-top: 24px; }
.hero__sub { font-size: clamp(15px, 2.2vw, 18.5px); color: var(--fg-2); margin: 22px auto 0; max-width: 680px; }
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.hero__note {
  margin: 30px auto 0; max-width: 560px; font-size: 13px; color: var(--fg-3);
  border-top: 1px solid var(--line-soft); padding-top: 18px;
}

.status-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(181,194,50,0.08); border: 1px solid rgba(181,194,50,0.28);
  color: var(--accent-tint); font: 600 12.5px var(--font); letter-spacing: 0.01em;
}
.status-badge__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(181,194,50,0.5); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(181,194,50,0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(181,194,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(181,194,50,0); }
}

/* ─── sections ─── */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section__head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section__head--left { text-align: left; margin: 0 0 8px; }
.section__head h2 { font-size: clamp(24px, 3.6vw, 34px); font-weight: 600; }
.section__head p { color: var(--fg-2); margin-top: 14px; font-size: 15.5px; }
.eyebrow {
  display: inline-block; font: 600 11.5px var(--font); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}

/* ─── grid + cards ─── */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); color: var(--card-fg);
  border-radius: var(--r-md); padding: 20px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.card h3 { font-size: 15.5px; font-weight: 600; color: var(--card-fg); }
.card p { font-size: 13px; color: var(--card-fg-2); margin-top: 7px; }
.card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.card__ic {
  width: 38px; height: 38px; border-radius: 9px; background: #F4F6E1;
  display: inline-flex; align-items: center; justify-content: center;
}
.card__ic svg { width: 20px; height: 20px; }
.card--sec { background: var(--panel); color: var(--fg); border: 1px solid var(--line); box-shadow: none; }
.card--sec h3 { color: var(--fg); }
.card--sec p { color: var(--fg-2); }
.card--sec .card__ic { background: rgba(181,194,50,0.10); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 10.5px var(--mono); letter-spacing: 0.03em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
}
.tag--prog { background: #FBEFD9; color: #8a560f; }
.tag--plan { background: #ECEEF1; color: #555548; }
.tag__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ─── infra status ─── */
.infra { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.status-list { list-style: none; margin: 0; padding: 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--panel); }
.status-list li {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 16px;
  padding: 15px 18px; border-bottom: 1px solid var(--line-soft);
}
.status-list li:last-child { border-bottom: 0; }
.status-list__label { font-size: 14px; color: var(--fg); font-weight: 500; }
.status-list .mono { font-size: 12.5px; color: var(--fg-3); }
.pill {
  font: 600 11px var(--font); padding: 4px 11px; border-radius: 999px; white-space: nowrap;
}
.pill--ok   { background: rgba(91,189,126,0.14);  color: var(--ok); }
.pill--prep { background: rgba(106,168,224,0.14); color: var(--prep); }
.pill--prog { background: rgba(216,162,62,0.16);  color: var(--prog); }

/* ─── cta ─── */
.cta__inner { text-align: center; max-width: 600px; }
.cta__inner h2 { font-size: clamp(24px, 3.6vw, 32px); font-weight: 600; }
.cta__inner p { color: var(--fg-2); margin-top: 12px; font-size: 15.5px; }
.cta__inner .btn { margin-top: 26px; }
.cta__meta { margin-top: 18px; font-size: 12.5px; color: var(--fg-3); }

/* ─── footer ─── */
.footer { border-top: 1px solid var(--line-soft); padding: 40px 0; background: var(--bg-2); }
.footer__inner { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__brand strong { font-size: 15px; }
.footer__brand span { font-size: 12.5px; color: var(--fg-3); }
.footer__meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fg-2); }
.footer__meta .dot { color: var(--accent); }
.footer__contact { font-size: 12.5px; color: var(--fg-3); }
.footer__contact a { color: var(--accent-tint); }
.footer__copy { font-size: 11.5px; color: var(--fg-3); margin-top: 4px; }

/* ─── reveal animation (content visible by default; animates if JS present) ─── */
.reveal { opacity: 1; transform: none; }
@keyframes bwFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.js .reveal.in { animation: bwFadeUp .6s ease both; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal.in { animation: none; }
  .status-badge__dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── responsive ─── */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
  .infra { grid-template-columns: 1fr; gap: 28px; }
  .section__head--left { text-align: center; margin-bottom: 8px; }
}
@media (max-width: 560px) {
  .nav__links a:not(.btn) { display: none; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 60px; }
  .section { padding: 56px 0; }
  .status-list li { grid-template-columns: 1fr auto; }
  .status-list .mono { grid-column: 1 / -1; order: 3; }
}
