/* ========================
   ROADREST — Landing Page
   Industrial warmth. Truck stop, not yoga studio.
   ======================== */

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

:root {
  --bg: #111318;
  --bg-2: #181B21;
  --surface: #1E2228;
  --fg: #F0EDE6;
  --fg-muted: #7A776F;
  --accent: #F97316;
  --accent-dark: #C25A10;
  --border: #2A2D34;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body.roadrest {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========================
   NAV
   ======================== */
.rr-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(17,19,24,0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.rr-nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.rr-nav-logo span { color: var(--accent); }

.rr-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.rr-nav-links a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.rr-nav-links a:hover { color: var(--fg); }

.rr-nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em;
  transition: background 0.2s !important;
}

.rr-nav-cta:hover { background: var(--accent-dark) !important; color: #fff !important; }

/* ========================
   HERO
   ======================== */
.rr-hero {
  padding: 120px 64px 96px;
  position: relative;
  overflow: hidden;
}

.rr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(249,115,22,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(249,115,22,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.rr-hero-inner { max-width: 860px; position: relative; z-index: 1; }

.rr-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.rr-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 28px;
}

.rr-hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.rr-hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.rr-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 0;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--fg); }

.rr-hero-rule {
  width: 64px;
  height: 3px;
  background: var(--accent);
  margin: 48px 0;
}

.rr-hero-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ========================
   PRODUCTS
   ======================== */
.rr-products {
  padding: 96px 64px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rr-section-overline {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}

.rr-section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 48px;
  line-height: 1.1;
}

.rr-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
}

.rr-product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.rr-product-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-3px);
}

.rr-product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--bg);
}

.rr-product-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #1E2228 0%, #262A33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr-product-img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

.rr-product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.rr-product-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.rr-product-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.3;
}

.rr-product-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
}

.rr-product-price {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.rr-product-price strong { color: var(--fg); font-weight: 600; }

.rr-btn-cart {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: auto;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.rr-btn-cart:hover { background: var(--accent-dark); }

/* ========================
   WHY ROADREST
   ======================== */
.rr-why {
  padding: 96px 64px;
  background: var(--bg);
}

.rr-why-inner { max-width: 900px; }

.rr-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.rr-pillar {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.rr-pillar:last-child { border-right: none; }
.rr-pillar:hover { background: rgba(249,115,22,0.03); }

.rr-pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(249,115,22,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.rr-pillar-icon svg { width: 20px; height: 20px; stroke: var(--accent); }

.rr-pillar-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.rr-pillar-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ========================
   SOCIAL PROOF
   ======================== */
.rr-proof {
  padding: 80px 64px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rr-proof-inner { max-width: 1100px; }

.rr-proof-overline {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}

.rr-proof-headline {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 40px;
}

.rr-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rr-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
}

.rr-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.rr-stars svg { width: 14px; height: 14px; fill: var(--accent); }

.rr-quote {
  font-size: 0.875rem;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.rr-quote-author {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.rr-quote-author span { color: var(--accent); }

.rr-rating-strip {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 32px;
}

.rr-big-rating {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.rr-rating-meta { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.5; }
.rr-rating-meta strong { color: var(--fg); }

/* ========================
   FOOTER
   ======================== */
.rr-footer {
  padding: 64px 64px 32px;
  background: var(--bg);
}

.rr-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.rr-footer-brand { max-width: 280px; }

.rr-footer-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}

.rr-footer-logo span { color: var(--accent); }

.rr-footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.rr-footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg);
  margin-bottom: 16px;
}

.rr-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.rr-footer-links a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.rr-footer-links a:hover { color: var(--fg); }

.rr-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rr-footer-copy { font-size: 0.8rem; color: var(--fg-muted); }
.rr-footer-copy a { color: var(--fg-muted); text-decoration: none; }
.rr-footer-copy a:hover { color: var(--fg); }

.rr-footer-legal {
  display: flex;
  gap: 20px;
}

.rr-footer-legal a {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.rr-footer-legal a:hover { color: var(--fg); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .rr-product-grid { grid-template-columns: repeat(2, 1fr); }
  .rr-testimonials { grid-template-columns: repeat(2, 1fr); }
  .rr-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .rr-nav { padding: 20px 24px; }
  .rr-nav-links { display: none; }
  .rr-hero { padding: 80px 24px 64px; }
  .rr-products { padding: 64px 24px; }
  .rr-why { padding: 64px 24px; }
  .rr-proof { padding: 64px 24px; }
  .rr-footer { padding: 48px 24px 24px; }

  .rr-product-grid { grid-template-columns: 1fr; }
  .rr-pillars { grid-template-columns: 1fr; }
  .rr-pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .rr-pillar:last-child { border-bottom: none; }
  .rr-testimonials { grid-template-columns: 1fr; }
  .rr-footer-top { grid-template-columns: 1fr; }
  .rr-footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}