/* ============================================================
   TuneTracker Systems — Shared Stylesheet
   tunetracker.css
   ============================================================ */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400&family=Barlow+Condensed:wght@400;600;700;900&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --dark:    #2d2a2b;
  --dark2:   #333031;
  --dark3:   #3b3839;
  --dark4:   #272526;
  --white:   #f0f0f0;
  --muted:   rgba(240,240,240,0.60);
  --dimmed:  rgba(240,240,240,0.30);
  --accent:  #F23D45; /* Main Accent Color */
  --ac:      var(--accent);
  --green:   #2ECC71;
  --green-dark: #27AE60;
  --max:     1160px;
  --gutter:  48px;
  --radius:  18px;

  /* App accent colors */
  --autocast:   #D4531E;
  --clockwork:  #6BCC64;
  --librarian:  #B088D8;
  --signalcast: #FFC757;
  --fetchit:    #E49951;
  --airstaff:   #76AAF2;

  /* Shorthand app colors (used in homepage cards) */
  --cw: #6BCC64;
  --lb: #B088D8;
  --sc: #FFC757;
  --as: #4EA8DE;
  --fi: #E05A6A;
  --tb: #5EC4B0;
  --ta: #5BADE8;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 62px; display: flex; align-items: center;
  background: rgba(11,13,18,0.90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
/* Transparent-on-load variant — add class "nav-transparent" to nav element */
nav.nav-transparent {
  background: transparent;
  border-bottom-color: transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}
nav.nav-transparent.scrolled {
  background: rgba(11,13,18,0.93);
  border-bottom-color: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 21px;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 1px; line-height: 1;
}
.nav-logo-wordmark { display: flex; align-items: baseline; }
.nav-logo-tune { color: var(--white); }
.nav-logo-tracker { color: var(--ac); }
.nav-logo-llc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 10px;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.32);
  text-transform: uppercase; display: block;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.60); text-decoration: none;
  font-size: 15px; font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--ac); }
.nav-cta {
  background: var(--ac); color: var(--white) !important;
  padding: 9px 22px; border-radius: 22px;
  font-weight: 600 !important; font-size: 14px !important;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
/* Green CTA variant (used on product pages for "Download" ) */
.nav-cta.green { background: var(--green-dark); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 130px var(--gutter) 100px;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ac); margin-bottom: 30px;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(60px, 9vw, 104px); line-height: 0.93;
  letter-spacing: -0.01em; color: var(--white); margin-bottom: 30px;
}
.hero-headline .colon { color: var(--ac); }
.hero-sub {
  font-size: clamp(18px, 2.2vw, 23px); font-weight: 300;
  color: rgba(255,255,255,0.70); line-height: 1.5; margin-bottom: 52px;
}
.hero-actions {
  display: flex; gap: 20px; justify-content: center;
  align-items: center; flex-wrap: wrap;
}
.hero-footnote {
  margin-top: 52px; font-size: 13px; color: var(--dimmed); font-weight: 300;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--ac); color: var(--white);
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 18px; padding: 18px 40px; border-radius: 50px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  color: rgba(255,255,255,0.60); font-size: 17px; font-weight: 400;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px; transition: color 0.2s;
}
.btn-secondary:hover { color: var(--white); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.60);
  padding: 14px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; text-transform: uppercase;
  transition: all 0.2s; background: transparent;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.40); color: var(--white); }

/* ── SECTION SHARED ───────────────────────────────────────── */
section { padding: 60px 0; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dimmed); margin-bottom: 16px;
}
.section-headline {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(42px, 5vw, 64px); line-height: 1.0;
  color: var(--white); margin-bottom: 56px;
}
.section-intro {
  font-size: 20px; font-weight: 300;
  color: var(--muted); line-height: 1.75;
  max-width: 600px; margin-bottom: 56px;
}
.section-divider { height: 1px; background: rgba(255,255,255,0.06); }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  font-size: 14px; color: var(--muted);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: var(--dimmed); }

/* ── SUITE CARDS — full-bleed gradient ────────────────────── */
.suite { background: var(--dark2); padding-bottom: 20px; }

.suite-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; min-height: 340px;
  margin-bottom: 20px;
  display: flex; align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(255,255,255,0.07);
}
.suite-card.flip { justify-content: flex-end; }

.card-bg { position: absolute; inset: 0; z-index: 0; }
.card-grad-left {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(11,13,18,0.97) 0%, rgba(11,13,18,0.93) 28%,
    rgba(11,13,18,0.72) 46%, rgba(11,13,18,0.18) 65%,
    rgba(11,13,18,0.00) 100%
  );
}
.card-grad-right {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to left,
    rgba(11,13,18,0.97) 0%, rgba(11,13,18,0.93) 28%,
    rgba(11,13,18,0.72) 46%, rgba(11,13,18,0.18) 65%,
    rgba(11,13,18,0.00) 100%
  );
}
.card-content {
  position: relative; z-index: 2;
  padding: 56px 60px; max-width: 520px;
}
.card-app-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 16px;
}
.card-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(52px, 6.5vw, 80px); line-height: 0.91;
  color: var(--white); margin-bottom: 20px;
}
.card-tagline {
  font-size: 22px; font-weight: 600;
  color: var(--muted); line-height: 1.4; margin-bottom: 32px;
}
.card-link {
  display: inline-flex; align-items: center;
  font-size: 18px; font-weight: 700; text-decoration: none;
}
.card-link::after { content: ' \2192'; }

.card-ph {
  position: absolute; z-index: 2;
  top: 50%; transform: translateY(-50%);
  text-align: center; max-width: 220px;
}
.card-ph.ph-right { right: 44px; }
.card-ph.ph-left  { left: 44px; }
.card-ph-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; opacity: 0.5; margin-bottom: 8px;
}
.card-ph-note {
  font-size: 11px; font-weight: 300; font-style: italic;
  opacity: 0.32; line-height: 1.6;
}

/* Per-app card backgrounds */
.bg-ac {
  background:
    radial-gradient(ellipse 65% 75% at 85% 50%, color-mix(in srgb, var(--accent) 38%, transparent) 0%, transparent 68%),
    radial-gradient(ellipse 35% 50% at 95% 15%, rgba(180,55,10,0.18) 0%, transparent 55%),
    url('images/card_autocast.jpg') center/cover no-repeat;
}
.bg-cw {
  background:
    radial-gradient(ellipse 65% 75% at 15% 50%, rgba(107,204,100,0.32) 0%, transparent 68%),
    radial-gradient(ellipse 35% 50% at 5% 85%, rgba(60,160,55,0.16) 0%, transparent 55%),
    url('images/card_clockwork.jpg') center/cover no-repeat;
}
.bg-lb {
  background:
    radial-gradient(ellipse 65% 75% at 85% 50%, rgba(176,136,216,0.30) 0%, transparent 68%),
    radial-gradient(ellipse 35% 50% at 95% 85%, rgba(130,90,180,0.15) 0%, transparent 55%),
    url('images/card_librarian.jpg') center/cover no-repeat;
}
.bg-sc {
  background:
    radial-gradient(ellipse 65% 75% at 15% 50%, rgba(255,199,87,0.30) 0%, transparent 68%),
    radial-gradient(ellipse 35% 50% at 5% 15%, rgba(200,150,40,0.15) 0%, transparent 55%),
    url('images/card_signalcaster.jpg') center/cover no-repeat;
}

/* Suite card border accents */
.border-ac { border-color: color-mix(in srgb, var(--accent) 28%, transparent) !important; }
.border-cw { border-color: rgba(107,204,100,0.22) !important; }
.border-lb { border-color: rgba(176,136,216,0.22) !important; }
.border-sc { border-color: rgba(255,199,87,0.22) !important; }
.border-as { border-color: rgba(78,168,222,0.22) !important; }
.border-fi { border-color: rgba(224,90,106,0.22) !important; }
.border-tb { border-color: rgba(94,196,176,0.20) !important; }
.border-ta { border-color: rgba(244,158,63,0.20) !important; }

.suite-footnote {
  margin-top: 20px; font-size: 13px;
  color: var(--dimmed); font-style: italic;
}

/* ── ADD-ONS — 2x2 square cards ───────────────────────────── */
.addons { background: var(--dark); padding-top: 20px; }
.addons-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.addon-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column;
}
.addon-graphic {
  width: 100%; aspect-ratio: 1 / 1;
  position: relative; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.bg-as { background: url('images/addon_airstaff.jpg') center/cover no-repeat; }
.bg-fi { background: url('images/addon_fetchit.jpg') center/cover no-repeat; }
.bg-tb { background: url('images/addon_tunebacker.jpg') center/cover no-repeat; }
.bg-ta { background: url('images/addon_tempannounce.jpg') center/cover no-repeat; }

.addon-ph { text-align: center; padding: 32px; }
.addon-ph-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; opacity: 0.5; margin-bottom: 10px;
}
.addon-ph-note {
  font-size: 11px; font-weight: 300; font-style: italic;
  opacity: 0.32; line-height: 1.6; max-width: 240px; margin: 0 auto;
}
.addon-caption {
  padding: 28px 32px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.addon-app-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 10px;
}
.addon-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(32px, 3.5vw, 44px); line-height: 0.95;
  color: var(--white); margin-bottom: 12px;
}
.addon-tagline {
  font-size: 18px; font-weight: 400;
  color: var(--muted); line-height: 1.5; margin-bottom: 20px;
}
.addon-footer {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.addon-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 22px; color: var(--white);
}
.addon-link {
  font-size: 17px; font-weight: 700; text-decoration: none;
}
.addon-link::after { content: ' \2192'; }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing { background: var(--dark2); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pricing-card {
  border-radius: var(--radius); padding: 44px 38px;
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);
  position: relative; display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  background: #130f0c;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ac); color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.pricing-tier {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 26px; color: var(--white); margin-bottom: 10px;
}
.pricing-price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 56px; color: var(--white); line-height: 1; margin-bottom: 10px;
}
.pricing-price sup {
  font-size: 24px; font-weight: 300; color: var(--muted); vertical-align: super;
}
.pricing-desc {
  font-size: 16px; font-weight: 300; color: var(--muted);
  line-height: 1.6; margin-bottom: 28px; flex: 1;
}
.pricing-includes {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dimmed); margin-bottom: 12px;
}
.pricing-item {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.60);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 10px;
}
.pricing-item::before {
  content: '\2713'; font-size: 11px; color: var(--ac);
  font-weight: 700; flex-shrink: 0;
}
.pricing-btn {
  display: block; margin-top: 28px; text-align: center;
  padding: 15px; border-radius: 50px; font-weight: 700;
  font-size: 16px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.16); color: var(--white);
  transition: border-color 0.2s;
}
.pricing-btn:hover { border-color: rgba(255,255,255,0.40); }
.pricing-btn.hot { background: var(--ac); border-color: var(--ac); }
.pricing-btn.hot:hover { opacity: 0.88; }
.pricing-see-all { text-align: center; margin-top: 44px; }
.pricing-see-all a {
  font-size: 17px; color: var(--ac); text-decoration: none;
  font-weight: 600; border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  padding-bottom: 2px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials { background: var(--dark); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 40px;
}
.testimonial-quote {
  font-size: 18px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 28px;
}
.testimonial-quote::before {
  content: '\201C'; color: var(--ac); font-size: 32px;
  line-height: 0; vertical-align: -12px; margin-right: 2px;
}
.testimonial-author { font-size: 16px; font-weight: 700; color: var(--white); }
.testimonial-station {
  font-size: 14px; font-weight: 300; color: var(--muted); margin-top: 4px;
}

/* ── FEATURE GRID (shared pattern) ────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden;
}
.feature-item {
  background: var(--dark3); padding: 28px 24px; transition: background 0.2s;
}
.feature-item:hover { background: var(--dark2); }
.feature-icon { font-size: 26px; margin-bottom: 12px; }
.feature-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.feature-item p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── SCREEN MOCKUP CHROME ─────────────────────────────────── */
.hero-screen {
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
}
.screen-chrome {
  background: #131720; height: 36px;
  display: flex; align-items: center; padding: 0 14px; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.screen-title-bar { font-size: 12px; color: rgba(255,255,255,0.22); margin: 0 auto; }
.screen-caption {
  padding: 9px 16px; background: #131720;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px; color: rgba(255,255,255,0.22);
  text-align: center; font-style: italic;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--dark4);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 44px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 48px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 20px; letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; display: flex; flex-direction: column;
  align-items: flex-start; gap: 2px; margin-bottom: 14px; line-height: 1;
}
.footer-tagline {
  font-size: 14px; font-weight: 300; color: var(--muted);
  line-height: 1.7; max-width: 230px;
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.42); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 52px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; font-weight: 300; color: var(--dimmed); }

/* ── COLOR HELPERS ────────────────────────────────────────── */
.ac { color: var(--ac); }
.cw { color: var(--cw); }
.lb { color: var(--lb); }
.sc { color: var(--sc); }
.as { color: var(--as); }
.fi { color: var(--fi); }
.tb { color: var(--tb); }
.ta { color: var(--ta); }

/* ── PRICING BADGE (used on product pages) ────────────────── */
.pricing-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(107,204,100,0.1); border: 1px solid rgba(107,204,100,0.25);
  border-radius: 20px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 28px;
}
.pricing-badge::before { content: '\2713'; }

/* ── PRICE TAG (hero inline) ──────────────────────────────── */
.price-tag {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: rgba(228,153,81,0.1);
  border: 1px solid rgba(228,153,81,0.2);
  border-radius: 6px; padding: 8px 16px;
}
.price-tag-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 900; color: var(--ac);
}
.price-tag-note { font-size: 12px; color: var(--muted); }

/* ── SUITE NAV (bottom of product pages) ──────────────────── */
.suite-nav {
  background: var(--dark3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 48px;
}
.suite-nav-inner { max-width: var(--max); margin: 0 auto; }
.suite-nav-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 20px;
}
.suite-nav-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.suite-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 18px; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; text-decoration: none;
  color: var(--muted); font-size: 15px; font-weight: 600;
  transition: all 0.2s;
}
.suite-nav-item:hover {
  border-color: rgba(255,255,255,0.16); color: var(--white);
  background: var(--dark2);
}
.suite-nav-item.current {
  border-color: var(--ac); color: var(--ac);
  background: color-mix(in srgb, var(--accent) 4%, transparent);
}
.suite-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── FINAL CTA (shared pattern) ───────────────────────────── */
.final-cta {
  background: var(--dark3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 100px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: 0;
  left: 50%; transform: translateX(-50%);
  width: 500px; height: 2px;
  background: linear-gradient(to right, transparent, var(--ac), transparent);
}
.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta p { font-size: 18px; color: var(--muted); margin-bottom: 40px; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   Tablet <= 900px  |  Mobile <= 600px
   ============================================================ */

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { font-size: 12px; padding: 7px 14px; }

  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .hero-screen { display: none; }

  section { padding: 48px 0; }

  .suite-card { min-height: 260px; }
  .card-content { padding: 36px 32px; }
  .card-name { font-size: clamp(40px, 8vw, 60px); }

  .addons-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr !important; max-width: 500px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .feature-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .suite-nav { padding: 32px 24px; }
  .suite-nav-grid { gap: 8px; }
  .suite-nav-item { font-size: 12px; padding: 8px 12px; }

  .final-cta { padding: 60px 24px; }
  .hero-actions { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 600px) {
  nav { padding: 0 16px; height: 56px; }
  .nav-cta { font-size: 11px; padding: 6px 12px; letter-spacing: 0; }

  .hero-headline { font-size: clamp(40px, 10vw, 56px) !important; }
  .section-headline { font-size: clamp(30px, 7vw, 40px) !important; }
  .hero-sub { font-size: 17px !important; }
  .section-intro { font-size: 17px !important; }

  .hero { padding: 88px 16px 48px; }
  .hero-eyebrow { font-size: 10px; }

  .card-content { padding: 28px 24px; }
  .card-tagline { font-size: 18px; }
  .card-ph { display: none; }

  .addon-graphic { aspect-ratio: 4/3; }

  .feature-grid { grid-template-columns: 1fr !important; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 48px 0 32px; }

  .final-cta { padding: 48px 16px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn-primary,
  .cta-row .btn-ghost { text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .price-tag { align-self: center; }
}

/* ── HAMBURGER & MOBILE MENU ──────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.25s;
}

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--dark3);
  border-left: 1px solid rgba(255,255,255,0.07);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  padding: 24px 0 32px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  align-self: flex-end; margin-right: 20px; margin-bottom: 16px;
  background: none; border: none; color: var(--muted);
  font-size: 20px; cursor: pointer; padding: 4px 8px;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--white); }

.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
  padding: 13px 28px;
  font-size: 16px; font-weight: 600;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s, background 0.2s;
  border-left: 3px solid transparent;
}
.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.03);
  border-left-color: var(--ac);
}
.mobile-nav a.active { color: var(--ac); border-left-color: var(--ac); }
.mobile-nav-section {
  padding: 16px 28px 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dimmed);
}
.mobile-nav-divider {
  height: 1px; background: rgba(255,255,255,0.06);
  margin: 10px 28px;
}
.mobile-nav .mobile-nav-cta {
  margin: 12px 20px 0;
  padding: 14px 20px;
  background: var(--ac); color: white !important;
  border-radius: 4px; text-align: center;
  font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  text-transform: uppercase; border-left: none !important;
}
.mobile-nav .mobile-nav-cta:hover { opacity: 0.88; background: var(--ac); }

.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
}


/* ── SHOPPING CART ────────────────────────────────────────── */

/* Nav cart icon */
.nav-cart-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.60); position: relative;
  padding: 6px; margin-left: 8px;
  display: flex; align-items: center;
  transition: color 0.2s;
}
.nav-cart-btn:hover { color: var(--white); }
.nav-cart-badge {
  position: absolute; top: -4px; right: -6px;
  background: var(--accent); color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 700; line-height: 1;
  min-width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* Cart overlay */
.cart-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.60);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* Cart drawer */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 90vw;
  background: var(--dark2);
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 301;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-drawer-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 24px; color: var(--white); margin: 0;
}
.cart-drawer-close {
  background: none; border: none; color: rgba(255,255,255,0.40);
  font-size: 28px; cursor: pointer; padding: 4px 8px; line-height: 1;
  transition: color 0.2s;
}
.cart-drawer-close:hover { color: var(--white); }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 24px 28px; }

.cart-empty { text-align: center; padding: 48px 0; }
.cart-empty p { color: var(--muted); font-size: 17px; margin: 0; }
.cart-empty .cart-empty-hint { font-size: 14px; color: var(--dimmed); margin-top: 8px; }

/* Cart items */
.cart-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item:first-child { padding-top: 0; }
.cart-item-type {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dimmed); margin-bottom: 4px;
}
.cart-item-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px; color: var(--white);
}
.cart-item-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cart-item-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px; color: var(--accent);
}
.cart-item-remove {
  background: none; border: none; color: rgba(255,255,255,0.30);
  font-size: 22px; cursor: pointer; padding: 4px; line-height: 1;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #ff4444; }

/* Cart footer */
.cart-drawer-footer { padding: 24px 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.cart-total > span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px; color: var(--muted);
}
.cart-total-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 28px; color: var(--white);
}
.cart-checkout-btn {
  display: block; text-align: center;
  background: var(--accent); color: var(--white);
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 17px; padding: 16px; border-radius: 50px;
  text-decoration: none; transition: opacity 0.2s, transform 0.15s;
}
.cart-checkout-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.cart-secure {
  text-align: center; font-size: 12px; color: var(--dimmed); margin-top: 14px;
}

/* Add-to-cart buttons (order page cards) */
.order-add-btn {
  display: block; width: 100%; margin-top: 24px;
  padding: 16px 24px; border-radius: 50px;
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 17px; text-decoration: none;
  background: var(--accent); color: var(--white);
  border: 1.5px solid var(--accent);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, background 0.2s, border-color 0.2s;
}
.order-add-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.order-add-btn.in-cart {
  background: transparent;
  border-color: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.60);
}
.order-add-btn.in-cart:hover { border-color: rgba(255,255,255,0.40); color: var(--white); }
