:root {
  --bg: #0d0f12;
  --panel: #15181d;
  --panel-2: #1c2026;
  --line: #262b33;
  --text: #e8eaed;
  --muted: #7a828e;
  --hi-vis: #d4ff3a;
  --safety-orange: #ff6b1a;
  --green-home: #4ade80;
  --red-away: #ef4444;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hidden-honeypot { display: none; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(13, 15, 18, 0.7);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--hi-vis);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--hi-vis);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.nav-cta {
  background: var(--hi-vis);
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px 32px 80px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(212, 255, 58, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255, 107, 26, 0.05) 0%, transparent 50%);
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--hi-vis);
  background: rgba(212, 255, 58, 0.08);
  border: 1px solid rgba(212, 255, 58, 0.2);
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--hi-vis);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
}

.hero h1 span.hi-vis { color: var(--hi-vis); }
.hero h1 span.line { display: block; }

.hero p.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero p.lede strong { color: var(--text); font-weight: 600; }

/* Form */
.signup-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
}

.signup-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.signup-form input::placeholder { color: var(--muted); }

.signup-form button {
  background: var(--hi-vis);
  color: #000;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.signup-form button:hover { transform: translateY(-1px); }
.signup-form button:disabled { opacity: 0.5; cursor: wait; }

.form-meta {
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-meta strong { color: var(--hi-vis); font-weight: 500; }

.success-state {
  background: var(--panel);
  border: 1px solid var(--green-home);
  border-radius: 14px;
  padding: 20px;
  max-width: 480px;
  display: none;
}

.success-state.show { display: block; }

.success-state .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-home);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.success-state h4 { margin-bottom: 6px; }
.success-state p { color: var(--muted); font-size: 14px; }

/* Hero phone visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 320px;
  height: 660px;
  background: #000;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #2a2f38,
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(212, 255, 58, 0.1);
  transform: rotate(-3deg);
  position: relative;
}

.phone-screen-mini {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mini-status {
  height: 36px;
  padding: 12px 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}

.mini-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-header .mini-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-header .logo-dot { width: 7px; height: 7px; }

.mini-overlap {
  margin: 12px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.04));
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-left: 3px solid var(--green-home);
  border-radius: 10px;
}

.mini-overlap .mlabel {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--green-home);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mini-overlap .mtitle { font-size: 14px; font-weight: 700; margin-top: 4px; }
.mini-overlap .msub { font-size: 11px; color: var(--muted); margin-top: 2px; }

.mini-gantt { padding: 10px 12px; flex: 1; }

.mini-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  height: 36px;
}

.mini-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.av-you { background: var(--hi-vis); color: #000; }
.av-1 { background: linear-gradient(135deg, #6366f1, #3b82f6); color: #fff; }
.av-2 { background: linear-gradient(135deg, #f59e0b, #d97706); color: #000; }
.av-3 { background: linear-gradient(135deg, #ec4899, #be185d); color: #fff; }
.av-4 { background: linear-gradient(135deg, #14b8a6, #0d9488); color: #000; }

.mini-name {
  font-size: 11px;
  font-weight: 700;
  width: 50px;
  flex-shrink: 0;
}

.mini-bars {
  flex: 1;
  height: 22px;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  background: var(--panel);
}

.mini-bar { height: 100%; }

.mb-home { background: var(--green-home); }
.mb-away {
  background: var(--red-away);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(0,0,0,0.2) 3px, rgba(0,0,0,0.2) 6px);
}

.floating-badge {
  position: absolute;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.floating-badge.tl { top: 5%; left: -10%; animation: float 6s ease-in-out infinite; }
.floating-badge.br { bottom: 12%; right: -8%; animation: float 7s ease-in-out infinite reverse; }

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

.badge-label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.badge-value {
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  font-family: 'Inter Tight', sans-serif;
}

.badge-value .accent { color: var(--hi-vis); }

/* SECTIONS */
.section {
  padding: 100px 32px;
  position: relative;
  z-index: 2;
}

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--hi-vis);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin-bottom: 24px;
}

.section-title .hi-vis { color: var(--hi-vis); }

.section-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 60px;
}

/* PROBLEM */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--safety-orange);
}

.problem-card .pnum {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--muted);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}

.problem-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.problem-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* FEATURES */
.features-section {
  background: linear-gradient(180deg, var(--bg), var(--panel-2), var(--bg));
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.feature:last-child { margin-bottom: 0; }

.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }

.feature-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  margin-bottom: 20px;
}

.feature-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-list { list-style: none; }

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.feature-list li::before {
  content: '✓';
  color: var(--hi-vis);
  font-weight: 700;
  flex-shrink: 0;
}

.feature-visual {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 255, 58, 0.08), transparent 70%);
}

.demo-gantt { width: 100%; position: relative; z-index: 2; }

.demo-gantt-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.demo-gantt-row:last-child { margin-bottom: 0; }

.demo-gantt-label {
  width: 60px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

.demo-gantt-track {
  flex: 1;
  height: 24px;
  background: var(--panel-2);
  border-radius: 4px;
  display: flex;
  overflow: hidden;
}

.demo-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.demo-day {
  aspect-ratio: 1;
  background: var(--panel-2);
  border-radius: 6px;
  padding: 4px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demo-day.all-home {
  background: rgba(74, 222, 128, 0.2);
  border: 1px solid rgba(74, 222, 128, 0.5);
  color: var(--green-home);
}

.demo-day .ddots { display: flex; gap: 2px; }

.demo-day .ddot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.demo-day .ddot.g { background: var(--green-home); }
.demo-day .ddot.r { background: var(--red-away); opacity: 0.7; }

/* Notification cards */
.notif-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}

.notif-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.notif-title { font-size: 14px; font-weight: 700; }
.notif-body { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* WHO IT'S FOR */
.for-section {
  background: var(--panel-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.for-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.for-card:hover {
  transform: translateY(-4px);
  border-color: var(--hi-vis);
}

.for-card .ficon { font-size: 28px; margin-bottom: 12px; }
.for-card h4 { font-size: 16px; margin-bottom: 6px; }
.for-card p { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* PRICING */
.pricing-teaser {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.pricing-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 255, 58, 0.1), transparent 60%);
  pointer-events: none;
}

.price-tiers {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
}

.price-tier {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  min-width: 220px;
  text-align: left;
}

.price-tier.pro {
  border-color: var(--hi-vis);
  background: linear-gradient(180deg, rgba(212, 255, 58, 0.04), var(--bg));
}

.price-tier .ptier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.price-tier.pro .ptier { color: var(--hi-vis); }

.price-tier .pamount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 4px;
}

.price-tier .pper { color: var(--muted); font-size: 13px; margin-bottom: 16px; }

.price-tier ul { list-style: none; text-align: left; }

.price-tier li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--muted);
}

.price-tier li::before { content: '· '; color: var(--hi-vis); }

/* FINAL CTA */
.final-cta {
  padding: 120px 32px;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(212, 255, 58, 0.06) 0%, transparent 50%);
}

.final-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.9;
  max-width: 900px;
  margin: 0 auto 24px;
}

.final-cta h2 .hi-vis { color: var(--hi-vis); }

.final-cta p {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.final-cta .signup-form { margin: 0 auto; }

/* Footer */
footer {
  padding: 40px 32px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--hi-vis); }

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 120px 20px 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual { order: -1; }
  .phone-frame { width: 260px; height: 540px; }
  .floating-badge { display: none; }
  .section { padding: 60px 20px; }
  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .feature.reverse { direction: ltr; }
  .price-tiers { gap: 20px; }
  .pricing-teaser { padding: 40px 24px; }
  .signup-form {
    flex-direction: column;
    padding: 12px;
  }
  .signup-form button { width: 100%; }
  nav { padding: 16px 20px; }
  footer { padding: 30px 20px; }
  .footer-content { flex-direction: column; text-align: center; }
}
