/* ============================================================
   Gang Sheet Automator — Website Styles
   UploadDTF.com
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --orange:        #F7921A;
  --orange-dark:   #d97c12;
  --orange-glow:   rgba(247, 146, 26, 0.12);
  --bg:            #111111;
  --bg-card:       #1c1c1c;
  --bg-nav:        #0d0d0d;
  --border:        #2a2a2a;
  --border-light:  #333333;
  --text:          #f0f0f0;
  --text-muted:    #888888;
  --text-dim:      #444444;
  --radius:        8px;
  --radius-lg:     14px;
  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --shadow-orange: 0 4px 24px rgba(247,146,26,0.28);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-dark); }
img { max-width: 100%; display: block; }

/* ===== NAVIGATION ===== */
nav {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
/* ===== LOGO IMAGE ===== */
.nav-logo-img {
  display: block;
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.05);
}
.footer-logo-img {
  display: block;
  height: 56px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.05);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--orange) !important;
  color: #000 !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px;
}

/* ===== NOTICE BAR ===== */
.notice-bar {
  background: linear-gradient(90deg, #1a1000, #221500, #1a1000);
  border-bottom: 1px solid rgba(247,146,26,0.2);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.notice-bar strong { color: var(--orange); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--orange); color: #000; }
.btn-primary:hover {
  background: var(--orange-dark);
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 1.05rem; border-radius: 10px; }
.btn-full { width: 100%; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; }
section { padding: 88px 24px; }
.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
}
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 80px 24px 64px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse at 50% -10%, rgba(247,146,26,0.07) 0%, transparent 60%);
  text-align: center;
}
.page-hero .section-subtitle { margin: 0 auto; }

/* ===== HOME HERO ===== */
.hero {
  padding: 96px 24px 80px;
  background: radial-gradient(ellipse at 60% -20%, rgba(247,146,26,0.09) 0%, transparent 55%);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== APP MOCKUP ===== */
.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mockup-wrap { aspect-ratio: 16 / 10; display: flex; flex-direction: column; }
.mockup-titlebar {
  height: 32px;
  background: #0e0e0e;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mdot { width: 10px; height: 10px; border-radius: 50%; }
.mdot.r { background: #ff5f57; }
.mdot.y { background: #febc2e; }
.mdot.g { background: #28c840; }
.mockup-appname { margin: 0 auto; color: #555; font-size: 0.7rem; letter-spacing: 0.06em; }
.mockup-body { flex: 1; display: grid; grid-template-columns: 1fr 220px; min-height: 0; }
.mockup-canvas {
  background: repeating-conic-gradient(#1a1a1a 0% 25%, #151515 0% 50%) 0 0 / 18px 18px;
  position: relative;
  overflow: hidden;
}
.mblock {
  position: absolute;
  border-radius: 3px;
}
.mblock.c1 { background: rgba(247,146,26,0.75); top: 8%;  left: 5%;  width: 28%; height: 22%; }
.mblock.c2 { background: rgba(247,146,26,0.5);  top: 8%;  left: 35%; width: 22%; height: 30%; }
.mblock.c3 { background: rgba(247,120,26,0.6);  top: 8%;  left: 59%; width: 36%; height: 18%; }
.mblock.c4 { background: rgba(200,100,20,0.5);  top: 33%; left: 5%;  width: 18%; height: 25%; }
.mblock.c5 { background: rgba(247,146,26,0.35); top: 33%; left: 25%; width: 32%; height: 20%; }
.mblock.c6 { background: rgba(247,146,26,0.6);  top: 33%; left: 59%; width: 26%; height: 28%; }
.mblock.c7 { background: rgba(180,90,10,0.5);   top: 60%; left: 5%;  width: 42%; height: 22%; }
.mblock.c8 { background: rgba(247,146,26,0.4);  top: 60%; left: 50%; width: 20%; height: 16%; }
.mblock.c9 { background: rgba(247,130,26,0.55); top: 60%; left: 73%; width: 22%; height: 22%; }
.mockup-panel {
  background: #161616;
  border-left: 1px solid var(--border);
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.mprow { height: 7px; border-radius: 3px; background: #2a2a2a; }
.mprow.full { width: 100%; }
.mprow.lg   { width: 72%; }
.mprow.md   { width: 52%; }
.mprow.sm   { width: 36%; }
.mprow.obtn { background: var(--orange); width: 100%; height: 22px; border-radius: 5px; }
.mprow.sep  { height: 1px; background: var(--border); margin: 5px 0; }
.mprow.th   { height: 22px; background: #222; border-radius: 4px; }

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  border: 1px solid rgba(247,146,26,0.2);
}
.feature-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.feature-desc  { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.steps-section {
  background: #131313;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--orange-dark));
  opacity: 0.3;
}
.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(247,146,26,0.12);
}
.step-title { font-weight: 600; font-size: 1.05rem; margin-bottom: 8px; }
.step-desc  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* ===== FORMATS ===== */
.formats-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  justify-content: center;
}
.format-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.format-pill:hover { border-color: var(--orange); color: var(--orange); }
.format-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, #1f1a0e 0%, var(--bg-card) 60%);
  box-shadow: 0 0 40px rgba(247,146,26,0.1);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.plan-price {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup  { font-size: 1.4rem; font-weight: 400; vertical-align: super; }
.plan-price .per { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.plan-tagline { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; line-height: 1.5; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.93rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .chk { color: var(--orange); font-weight: 700; flex-shrink: 0; }
.plan-features li.dim { opacity: 0.35; }
.plan-features li.dim .chk { color: var(--text-dim); }
.plan-note { font-size: 0.8rem; color: var(--text-dim); text-align: center; margin-top: 14px; }

/* ===== COMPARE TABLE ===== */
.compare-wrap { overflow-x: auto; margin-top: 52px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 600px;
}
.compare-table th {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 2px solid var(--border);
  font-weight: 600;
  font-size: 0.85rem;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.hi { color: var(--orange); }
.compare-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
}
.compare-table td:first-child { text-align: left; color: var(--text); }
.compare-table .y { color: var(--orange); font-size: 1.05rem; }
.compare-table .n { color: var(--text-dim); font-size: 1.05rem; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 52px auto 0; }
.faq-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 40px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.faq-cat:first-child { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon { font-size: 1.25rem; color: var(--orange); flex-shrink: 0; transition: transform 0.25s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { color: var(--text-muted); line-height: 1.75; padding-bottom: 20px; font-size: 0.96rem; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(160deg, #1a1400 0%, #131313 50%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 24px;
  text-align: center;
}
.cta-banner .section-title { margin-bottom: 16px; }
.cta-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== WAITLIST / FORMS ===== */
.waitlist-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 500px;
  margin: 0 auto;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #161616;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 12px 16px;
  font-size: 0.97rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247,146,26,0.1);
}
.form-group textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.form-hint { font-size: 0.82rem; color: var(--text-dim); margin-top: 6px; }

/* ===== SYSTEM REQUIREMENTS ===== */
.sysreq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.sysreq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.sysreq-card h3 {
  font-size: 0.75rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  margin-bottom: 10px;
}
.sysreq-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

/* ===== FEATURES DETAIL (features page) ===== */
.features-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.fdc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: border-color 0.25s;
}
.fdc:hover { border-color: var(--orange); }
.fdc-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--orange-glow);
  border: 1px solid rgba(247,146,26,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}
.fdc-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.fdc-desc  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* ===== SPECS TABLE ===== */
.specs-wrap { overflow-x: auto; }
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.specs-table th {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.specs-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td:first-child { color: var(--text-muted); width: 40%; }
.specs-table td:last-child  { font-weight: 500; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 52px;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.info-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.info-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img {
  height: 42px;
  margin-bottom: 16px;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; max-width: 270px; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .features-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
    z-index: 200;
  }
  .nav-links.open .nav-cta { align-self: flex-start; }
  section { padding: 64px 16px; }
  .hero { padding: 72px 16px 60px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .waitlist-box { padding: 28px 20px; }
  .hero-stats { gap: 24px; }
}
