/* Marketing site — component styles */

.page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.page-glow::before {
  content: "";
  position: absolute;
  top: -320px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(255,122,43,0.35) 0%,
    rgba(255,122,43,0.08) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ========== Nav ========== */
.site-nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; gap: 32px;
  padding: 12px 24px;
  background: rgba(10, 9, 8, 0.72);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--line-1);
}
.site-nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--fg-1); letter-spacing: -0.02em;
  border: none;
}
.site-nav__links {
  display: flex; gap: 24px;
}
.site-nav__links a {
  font-size: 14px; color: var(--fg-2); border: none;
}
.site-nav__links a:hover { color: var(--fg-1); }
.site-nav__actions {
  margin-left: auto; display: flex; gap: 10px; align-items: center;
}

/* ========== Buttons ========== */
.btn {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  border: none; border-radius: 10px; padding: 10px 18px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; border-bottom: none;
  transition: transform 90ms cubic-bezier(0.4,0,0.2,1), background 140ms, box-shadow 140ms, color 140ms;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-primary {
  background: var(--orange-500); color: #1A0F05;
  box-shadow: 0 8px 24px rgba(255,122,43,0.32), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { background: var(--orange-600); }
.btn-secondary {
  background: var(--ink-2); color: var(--fg-1);
  border: 1px solid var(--line-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.btn-secondary:hover { background: var(--ink-3); }
.btn-ghost {
  background: transparent; color: var(--fg-2);
}
.btn-ghost:hover { background: var(--ink-2); color: var(--fg-1); }
.icon { width: 16px; height: 16px; stroke-width: 1.75; }
.icon-sm { width: 13px; height: 13px; stroke-width: 1.75; }

/* ========== Hero ========== */
.hero {
  padding: 96px 24px 72px;
  text-align: center;
  position: relative;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange-300);
  padding: 6px 12px;
  border: 1px solid rgba(255,122,43,0.25);
  background: rgba(255,122,43,0.08);
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero__sub {
  font-size: 18px; line-height: 1.55;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.hero__cta {
  display: flex; gap: 10px; justify-content: center;
  margin-bottom: 28px;
}
.hero__meta {
  display: flex; gap: 24px; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-3);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ========== Lineup ========== */
.lineup { padding: 72px 24px; position: relative; z-index: 1; }
.lineup__head {
  max-width: 720px; margin: 0 auto 40px;
  text-align: center;
}
.eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange-400); margin-bottom: 12px;
}
.lineup__grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
  max-width: 720px; margin: 0 auto;
}
.product-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--ink-1);
  border: 1px solid var(--line-1);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  color: inherit; text-decoration: none; border-bottom: none;
  transition: background 140ms, box-shadow 140ms, transform 140ms;
  position: relative;
}
.product-card:hover {
  background: var(--ink-2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.product-card:active { transform: scale(0.995); }
.product-card.is-featured {
  background: var(--ink-2);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,122,43,0.18), inset 0 1px 0 rgba(255,255,255,0.04), 0 -12px 60px -20px rgba(255,122,43,0.3);
}
.product-card__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--ink-3);
  border-radius: 10px;
  border: 1px solid var(--line-1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-500);
}
.product-card__icon .icon { width: 18px; height: 18px; }
.product-card__body { flex: 1; min-width: 0; }
.product-card__name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--fg-1); }
.product-card__tag { font-size: 13px; color: var(--fg-2); margin-top: 2px; }
.product-card__meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); }
.product-card__arrow { width: 16px; height: 16px; color: var(--fg-3); stroke-width: 1.75; }
.product-card:hover .product-card__arrow { color: var(--orange-400); }

/* ========== Feature row ========== */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
  padding: 72px 24px;
  max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 1;
}
.feature-row--reverse .feature-row__text { order: 2; }
.feature-row__text h3 { margin: 0 0 16px; }
.feature-row__text p { max-width: 420px; }
.mock-window {
  background: var(--ink-1);
  border: 1px solid var(--line-1);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.mock-window__bar {
  display: flex; gap: 6px;
  padding: 10px 14px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-1);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-4); }
.mock-dot:first-child { background: var(--orange-500); }
.mock-window__content { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.mock-line { height: 10px; background: var(--ink-3); border-radius: 4px; }
.mock-line--accent { background: linear-gradient(90deg, var(--orange-500), transparent); }

/* ========== Footer ========== */
.site-footer {
  border-top: 1px solid var(--line-1);
  padding: 48px 24px 32px;
  max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 1;
}
.site-footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--fg-1); letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.site-footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-bottom: 32px;
}
.site-footer__cols a {
  display: block; padding: 4px 0;
  font-size: 14px; color: var(--fg-2); border: none;
}
.site-footer__cols a:hover { color: var(--fg-1); }
.site-footer__copy { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); }

@media (max-width: 720px) {
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row--reverse .feature-row__text { order: 0; }
  .site-nav__links { display: none; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
}
