/* ============ TOKENS ============ */
:root {
  --black: #0d0d0d;
  --panel: #161616;
  --panel-2: #1c1c1c;
  --border: #2a2a2a;
  --steel: #3a3a3a;
  --orange: #e8541e;
  --orange-dim: #a53f16;
  --white: #f5f5f5;
  --gray: #9a9a9a;
  --gray-dim: #6b6b6b;

  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;

  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin: 0 0 14px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.05;
}

h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 44px;
  max-width: 14ch;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* subtle grain, purely decorative, ignored by AT */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  border-radius: 3px;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #0d0d0d; }
.btn-primary:hover { background: #ff6a34; }
.btn-ghost { border-color: var(--steel); color: var(--white); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.2) 70%, rgba(13,13,13,0) 100%);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: 100px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 5px rgba(0,0,0,0.85);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: #0d0d0d !important;
  padding: 9px 18px;
  border-radius: 3px;
}
.nav-cta:hover { background: #ff6a34; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.65) 0%, rgba(13,13,13,0.35) 30%, rgba(13,13,13,0.08) 55%, rgba(13,13,13,0) 100%),
              linear-gradient(0deg, rgba(13,13,13,0.35) 0%, rgba(13,13,13,0) 30%);
}
.hero h1 { max-width: 11ch; }
.hero-sub { max-width: 46ch; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 150px 24px 70px;
  width: 100%;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(46px, 7.5vw, 88px);
  color: var(--white);
  max-width: 11ch;
}
.hero .accent { color: var(--orange); }
.hero-sub {
  margin: 26px 0 0;
  max-width: 46ch;
  font-size: 17px;
  color: var(--gray);
}
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* ============ PROBLEM ============ */
.problem {
  padding: 110px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.problem-quote {
  font-size: clamp(40px, 6vw, 64px);
  color: var(--white);
  margin: 0 auto 28px;
}
.problem-lede {
  max-width: 58ch;
  margin: 0 auto;
  color: var(--gray);
  font-size: 17px;
}
.problem-founder {
  margin: 46px auto 0;
  max-width: 46ch;
  font-style: italic;
  font-size: 19px;
  color: var(--white);
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.problem-founder span {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--orange);
}

/* ============ STATS ============ */
.stats { padding: 70px 0; border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 72px);
  color: var(--orange);
  line-height: 1;
}
.stat-num small { font-size: 0.4em; color: var(--orange); }
.stat-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gray);
}

/* ============ PLATE CARDS (signature element) ============ */
.plate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plate-grid-4 { grid-template-columns: repeat(4, 1fr); margin-top: 46px; }
.plate {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 30px 26px 26px;
  background-image:
    radial-gradient(circle at 14px 14px, var(--steel) 0 2px, transparent 2.6px),
    radial-gradient(circle at calc(100% - 14px) 14px, var(--steel) 0 2px, transparent 2.6px),
    radial-gradient(circle at 14px calc(100% - 14px), var(--steel) 0 2px, transparent 2.6px),
    radial-gradient(circle at calc(100% - 14px) calc(100% - 14px), var(--steel) 0 2px, transparent 2.6px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.plate-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange-dim);
  letter-spacing: 1px;
}
.plate h3 { font-family: var(--body); font-size: 18px; font-weight: 700; margin: 12px 0 10px; letter-spacing: 0; }
.plate p { margin: 0; color: var(--gray); font-size: 14.5px; }
.plate-sm { padding: 24px 22px 22px; }
.plate-sm h3 { margin-top: 0; }

/* ============ FEATURES / APP SECTIONS ============ */
.features, .app { padding: 100px 0; border-bottom: 1px solid var(--border); }
.app-lede { color: var(--gray); font-size: 17px; max-width: 52ch; margin: -20px 0 0; }

/* ============ ORGANIZE ============ */
/* ============ VIDEO DEMO ============ */
.video-demo { padding: 100px 0; border-bottom: 1px solid var(--border); text-align: center; }
.video-demo h2 { margin-left: auto; margin-right: auto; }
.video-frame {
  max-width: 380px;
  margin: 44px auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  background: #000;
}
.video-frame video { width: 100%; height: auto; display: block; background: #000; }

.organize { padding: 100px 0; border-bottom: 1px solid var(--border); }
.organize-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.organize-media img { border-radius: 6px; border: 1px solid var(--border); }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
  mask: radial-gradient(circle 3px at 6px 9px, transparent 98%, #000 100%);
}
.check-list li strong { display: block; font-size: 17px; margin-bottom: 4px; }
.check-list li span { color: var(--gray); font-size: 14.5px; }

/* ============ PRICING ============ */
.pricing { padding: 100px 0; border-bottom: 1px solid var(--border); }
.pricing-header { text-align: center; }
.pricing-header h2 { margin-left: auto; margin-right: auto; }
.pricing-total { text-align: center; margin: 8px 0 48px; }
.pricing-total-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray);
  margin: 0 0 8px;
}
.pricing-total-num {
  font-family: var(--display);
  font-size: 56px;
  color: var(--orange);
  margin: 0;
  line-height: 1;
}
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.price-card {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 40px 36px;
  background: var(--panel);
}
.price-card-accent { border-color: var(--orange); }
.price-label {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin: 0 0 12px;
}
.price-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--orange);
  background: rgba(232, 84, 30, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.price-num { font-family: var(--display); font-size: 56px; color: var(--white); margin-bottom: 6px; }
.price-num span { color: var(--white); }
.price-sub { font-size: 15px; color: var(--gray); margin: 0 0 18px; }
.price-note { font-size: 13.5px; color: var(--gray-dim); margin: 0; border-top: 1px solid var(--border); padding-top: 18px; }

/* ============ CTA ============ */
.cta { padding: 120px 0; text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-logo { width: 220px; margin-bottom: 34px; }
.cta-tag { font-family: var(--mono); font-size: 14px; letter-spacing: 2.5px; color: var(--orange); margin: 0 0 16px; }
.cta-sub { color: var(--gray); max-width: 46ch; margin: 0 0 34px; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--border); padding: 26px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--gray-dim);
  letter-spacing: 0.5px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 120px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .nav-toggle { display: block; }

  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .plate-grid, .plate-grid-4 { grid-template-columns: 1fr; }
  .organize-grid { grid-template-columns: 1fr; gap: 40px; }
  .organize-media { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  h2 { max-width: none; }
}
