/* ====================================================================
   GUNSMITHAPP.COM — WAITLIST LANDING PAGE
   Dark tactical palette · Amber accent · Barlow fonts
   ==================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; border: none; outline: none; }

/* ---- TOKENS -------------------------------------------------------- */
:root {
  --accent:       #B45309;
  --accent-light: #D97706;
  --accent-glow:  rgba(180, 83, 9, 0.25);
  --accent-bg:    rgba(180, 83, 9, 0.10);

  --bg:        #0C0B0A;
  --surface:   #141210;
  --surface-2: #1A1815;
  --border:    #272422;

  --text:      #EAE8E4;
  --muted:     #7A7672;
  --faint:     #3E3C3A;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 999px;

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;         /* desktop baseline */
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- CONTAINER ---------------------------------------------------- */
.container {
  width: min(960px, 100% - 64px);
  margin-inline: auto;
}

/* ---- NAV ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 11, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: min(960px, 100% - 48px);
  margin-inline: auto;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
}
.logo-tm {
  font-size: 15px;
  font-weight: 800;
  vertical-align: super;
  line-height: 0;
  color: var(--accent-light);
  font-style: normal;
  letter-spacing: 0;
}
/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: var(--r-md);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.nav-social:hover {
  color: var(--accent-light);
  background: var(--accent-bg);
}

.nav-cta {
  height: 53px;
  padding: 0 24px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background 0.15s, transform 0.1s var(--spring);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }

.nav-smith-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
  padding: 0 4px;
}
.nav-smith-link span { color: var(--accent-light); font-weight: 700; }
.nav-smith-link:hover { color: var(--text); }
@media (max-width: 700px) { .nav-smith-link { display: none; } }

/* ---- HERO --------------------------------------------------------- */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 240px;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
  max-width: min(1100px, 100%);
  margin-inline: auto;
  padding-left: clamp(24px, 4vw, 80px);
  padding-right: clamp(24px, 4vw, 80px);
}
.hero > .container { grid-column: 1; z-index: 2; padding-top: 36px; width: 100%; }
.hero-mockup { grid-column: 2; z-index: 2; padding-top: 36px; padding-right: 0; display: flex; justify-content: center; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid { position: absolute; inset: 0; }
.hero-glow {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(180,83,9,0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
}
.hero-content { z-index: 2; position: relative; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-bg);
  border: 1px solid rgba(180,83,9,0.35);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(56px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 14px;
  text-wrap: balance;
}
.hero-accent { color: var(--accent-light); }

.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* ---- WAITLIST FORM ------------------------------------------------ */
.waitlist-form { max-width: 520px; }
.form-row {
  display: flex;
  gap: 8px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 20px;
  transition: border-color 0.2s;
}
.form-row:focus-within { border-color: var(--accent); }

.email-input {
  flex: 1;
  background: none;
  font-size: 15px;
  color: var(--text);
  min-width: 0;
}
.email-input::placeholder { color: var(--muted); }

.submit-btn {
  height: 46px;
  padding: 0 22px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s var(--spring);
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.submit-btn:hover { background: var(--accent-light); transform: scale(1.02); }
.submit-btn:active { transform: scale(0.97); }

.form-note {
  font-size: 17px;
  color: var(--faint);
  margin-top: 10px;
  padding-left: 4px;
}

/* SUCCESS */
.success-state {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(22, 163, 74, 0.10);
  border: 1.5px solid rgba(22, 163, 74, 0.3);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  max-width: 520px;
  animation: fadeUp 0.4s var(--ease) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.success-title { font-size: 15px; font-weight: 700; color: var(--text); }
.success-sub   { font-size: 13px; color: var(--muted); }

/* PROOF */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #1c2a1a, #2d4a20); }
.av2 { background: linear-gradient(135deg, #1a1f2e, #2a3050); }
.av3 { background: linear-gradient(135deg, #2a1a10, #4a2a15); }
.av4 { background: linear-gradient(135deg, #1a2520, #2a4030); }
.proof-text { font-size: 13px; color: var(--muted); }
.proof-text strong { color: var(--text); }

/* ---- HERO TESTIMONIAL --------------------------------------------- */
.hero-testimonial {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  max-width: 460px;
}
.ht-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a1a10, #5a2d0c);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-light);
}
.ht-body { display: flex; flex-direction: column; gap: 2px; }
.ht-stars { color: #F59E0B; font-size: 12px; letter-spacing: 0.05em; }
.ht-quote { font-size: 13px; color: var(--muted); line-height: 1.4; }
.ht-name { font-size: 11px; color: var(--faint); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---- MOCKUP STATUS BAR ------------------------------------------- */
.mockup-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 6px;
  flex-shrink: 0;
}
.msb-time {
  font-size: 8px;
  font-weight: 700;
  color: #eae8e4;
  letter-spacing: 0.02em;
}
.msb-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #eae8e4;
}
.msb-battery {
  width: 16px;
  height: 8px;
  border: 1.5px solid #eae8e4;
  border-radius: 2px;
  position: relative;
  opacity: 0.85;
}
.msb-battery::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 4px;
  background: #eae8e4;
  border-radius: 0 1px 1px 0;
}
.msb-bfill {
  width: 70%;
  height: 100%;
  background: #4ade80;
  border-radius: 1px;
}

/* ---- MOCKUP SECTION LABEL ---------------------------------------- */
.mockup-section-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #eae8e4;
  padding: 2px 0;
  flex-shrink: 0;
}

/* ---- MOCKUP STATUS BADGE ----------------------------------------- */
.mcard-status-badge {
  display: inline-block;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
  line-height: 1;
  position: absolute;
  bottom: 4px;
  left: 4px;
}
.mbadge-open {
  background: rgba(22, 163, 74, 0.85);
  color: #fff;
}
.mbadge-busy {
  background: rgba(180, 83, 9, 0.85);
  color: #fff;
}
/* The parent .mcard-img needs position:relative for absolute badge */
.mcard-img {
  position: relative;
}

/* ---- APP MOCKUP --------------------------------------------------- */
.mockup-phone {
  width: 220px;
  height: 420px;
  background: #141210;
  border-radius: 36px;
  border: 1.5px solid #272422;
  overflow: hidden;
  box-shadow:
    0 0 0 8px #111009,
    0 0 0 9px #272422,
    0 40px 80px rgba(0,0,0,0.7);
  position: relative;
}
.mockup-screen {
  padding: 18px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.mockup-header { display: flex; align-items: center; justify-content: space-between; }
.mockup-greeting { display: flex; flex-direction: column; }
.mg-sub  { font-size: 9px; color: #7a7672; }
.mg-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #eae8e4; line-height: 1.1; }
.mockup-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B45309, #D97706);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}
.mockup-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1a1815;
  border: 1px solid #272422;
  border-radius: 20px;
  padding: 7px 10px;
  font-size: 9px;
  color: #7a7672;
}
.mockup-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; max-height: 80px; overflow: hidden; }
.mc-card {
  background: #1a1815;
  border: 1px solid #272422;
  border-radius: 8px;
  padding: 7px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 7px;
  color: #7a7672;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mc-card span:last-child { font-size: 7px; }
.mc-card span:first-child { font-size: 14px; line-height: 1; }
.mc-c1 .mc-icon, .mc-c2 .mc-icon { color: #D97706; }

.mockup-nearby-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #eae8e4;
}
.mockup-card {
  display: flex;
  gap: 8px;
  background: #1a1815;
  border: 1px solid #272422;
  border-radius: 10px;
  overflow: hidden;
}
.mcard-img { width: 54px; height: 52px; flex-shrink: 0; }
.mimg1 { background: linear-gradient(135deg, #1c2a1a, #2d4a20); }
.mimg2 { background: linear-gradient(135deg, #1a1f2e, #2a3050); }
.mcard-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 6px 8px 6px 0;
}
.mcard-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.mcard-name  { font-size: 9px; font-weight: 700; color: #eae8e4; }
.mcard-badge {
  font-size: 7px;
  font-weight: 800;
  color: #D97706;
  background: rgba(180,83,9,0.18);
  border: 1px solid rgba(180,83,9,0.35);
  border-radius: 4px;
  padding: 1px 4px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.mcard-stars { font-size: 8px; color: #F59E0B; }
.mcard-dist  { font-size: 8px; color: #7a7672; }
.mc-active {
  border-color: rgba(180,83,9,0.5) !important;
  color: var(--accent-light) !important;
  background: rgba(180,83,9,0.12) !important;
}

.mockup-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 44px;
  background: #141210;
  border-top: 1px solid #272422;
  margin: 0 -12px;
  margin-top: auto;
}
.mn-tab { color: #3E3C3A; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
.mn-active { color: #D97706; }

/* ---- TRUST STAT BAR ----------------------------------------------- */
.stat-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 0;
  overflow: hidden;
}
.stat-bar-inner {
  width: min(960px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: stretch;
}
.stat-bar-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: background 0.15s;
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-item svg { color: var(--accent-light); flex-shrink: 0; }
.stat-bar-item strong { color: var(--text); font-weight: 700; }
@media (max-width: 600px) {
  .stat-bar-inner { flex-wrap: wrap; }
  .stat-bar-item { flex: 1 1 50%; border-bottom: 1px solid var(--border); font-size: 18px; padding: 14px 12px; }
  .stat-bar-item:nth-child(even) { border-right: none; }
}

/* ---- HOW IT WORKS ------------------------------------------------- */
.how-section {
  padding: clamp(44px, 5vw, 72px) 0;
  border-top: 1px solid var(--border);
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 30px;
  text-wrap: balance;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-card {
  flex: 1;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 20px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s var(--spring);
}
.step-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--faint);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc { font-size: 17px; color: var(--muted); line-height: 1.6; }

.step-connector {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.5;
}

/* ---- FEATURE HIGHLIGHT (new features) ----------------------------- */
.feature-highlight {
  position: relative;
  border-color: rgba(180,83,9,0.25);
}
.feat-new-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-bg);
  border: 1px solid rgba(180,83,9,0.3);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}

/* ---- FEATURES ----------------------------------------------------- */
.features-section {
  padding: clamp(40px, 4.5vw, 68px) 0;
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s var(--spring);
}
.feature-card:hover { border-color: rgba(180,83,9,0.4); transform: translateY(-3px); }

.feature-large { grid-column: span 1; }
.feature-large-right { grid-column: span 1; }

/* Give the wide cards more vertical presence */
.feature-large .feat-desc,
.feature-large-right .feat-desc {
  max-width: 560px;
  font-size: 15px;
  margin-bottom: 20px;
}

.feat-icon-wrap {
  width: 58px;
  height: 58px;
  background: var(--accent-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.feat-icon-sm { width: 46px; height: 46px; margin-bottom: 8px; }
.feat-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.feat-desc { font-size: 17px; color: var(--muted); line-height: 1.6; margin-bottom: 8px; }
.feat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-bg);
  border: 1px solid rgba(180,83,9,0.3);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.service-chips-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.service-chips-mini span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

/* ---- MISC / PHOTO DIAGNOSIS SECTION ------------------------------- */
.misc-section {
  padding: clamp(36px, 4vw, 56px) 0;
  border-top: 1px solid var(--border);
}
.misc-card {
  background: var(--surface);
  border: 1.5px solid rgba(180,83,9,0.2);
  border-radius: var(--r-xl);
  padding: clamp(22px, 2.5vw, 36px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.misc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(180,83,9,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.misc-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--accent-bg);
  border: 1px solid rgba(180,83,9,0.25);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.misc-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 6px;
}
.misc-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 8px;
}
.misc-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 520px;
}
.misc-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.misc-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 16px 8px 8px;
}
.ms-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ms-label { font-size: 13px; font-weight: 600; color: var(--text); }

/* ---- FINAL SUCCESS STATE ------------------------------------------ */
.final-success-state {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(22, 163, 74, 0.10);
  border: 1.5px solid rgba(22, 163, 74, 0.3);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  max-width: 520px;
  margin-inline: auto;
  margin-top: 20px;
  animation: fadeUp 0.4s var(--ease) forwards;
}

/* ---- GUNSMITH CTA SECTION ----------------------------------------- */
.gunsmith-cta-section {
  padding: clamp(44px, 5vw, 72px) 0;
  border-top: 1px solid var(--border);
}
.gunsmith-cta-card {
  background: linear-gradient(135deg, #1a0e05 0%, #2a1508 50%, #1f1108 100%);
  border: 1.5px solid rgba(180,83,9,0.3);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 44px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.gunsmith-cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(180,83,9,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.gcta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 8px;
}
.gcta-desc { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 14px; max-width: 440px; }
.gcta-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.gcta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.gcta-list li svg { color: var(--accent-light); flex-shrink: 0; }

/* Light form variant */
.waitlist-form-light .form-row {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.waitlist-form-light .form-row:focus-within { border-color: var(--accent); }
.email-input-light::placeholder { color: rgba(255,255,255,0.4); }
.email-input-light { color: #fff; }
.submit-btn-light { background: var(--accent); }

/* Stat cards */
.gcta-visual { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
.gcta-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  text-align: center;
  min-width: 160px;
}
.gcta-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1.1;
}
.gcta-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ---- FINAL CTA ---------------------------------------------------- */
.final-cta-section {
  padding: clamp(48px, 5.5vw, 80px) 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.final-cta-inner { max-width: 600px; }
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 12px;
}
.final-cta-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
}
.waitlist-form-center { max-width: 500px; margin-inline: auto; }
.form-row-center { justify-content: center; }

/* ---- QR CODE SECTION --------------------------------------------- */
.qr-section {
  padding: clamp(36px, 4vw, 56px) 0;
  border-top: 1px solid var(--border);
}
.qr-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(22px, 2.5vw, 38px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.qr-code-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.qr-img {
  width: 160px;
  height: 160px;
  border-radius: var(--r-md);
  border: 2px solid rgba(180,83,9,0.3);
  padding: 8px;
  background: #141210;
  display: block;
}
.qr-scan-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.qr-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
}
.qr-desc {
  font-size: 21px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 480px;
}
.qr-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.qr-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.qr-social-btn:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-bg);
}
@media (max-width: 600px) {
  .qr-card { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .qr-code-wrap { margin: 0 auto; }
  .qr-actions { justify-content: center; }
}

/* ---- FOOTER SOCIAL ------------------------------------------------ */
.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: var(--r-md);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.footer-social-link:hover {
  color: var(--accent-light);
  background: var(--accent-bg);
}

/* ---- FOOTER ------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}
.footer-copy  { font-size: 13px; color: var(--muted); }
.footer-legal { font-size: 12px; color: var(--faint); max-width: 480px; line-height: 1.6; }

/* ---- APP STORE BADGES --------------------------------------------- */
.appstore-badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 16px;
  opacity: 0.55;
  cursor: not-allowed;
  user-select: none;
}
.appstore-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.abt-soon {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.abt-store {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* ---- WHAT HAPPENS NEXT -------------------------------------------- */
.whats-next {
  max-width: 520px;
  margin-top: 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  animation: fadeUp 0.5s var(--ease) forwards;
}
.whats-next-center {
  margin-inline: auto;
  text-align: left;
}
.wn-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.wn-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wn-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.wn-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.wn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wn-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.wn-text span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---- GUNSMITH PRO BADGE ------------------------------------------- */
.gcta-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}

/* ---- FAQ SECTION -------------------------------------------------- */
.faq-section {
  padding: clamp(44px, 5vw, 72px) 0;
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.faq-q:hover { background: var(--surface-2); }
.faq-item.faq-open .faq-q { background: var(--surface-2); color: var(--accent-light); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s var(--ease);
}
.faq-item.faq-open .faq-chevron { transform: rotate(180deg); color: var(--accent-light); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  background: var(--surface-2);
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-link {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(217,119,6,0.3);
  transition: border-color 0.15s;
}
.faq-link:hover { border-color: var(--accent-light); }
@media (max-width: 600px) {
  .faq-q   { font-size: 15px; padding: 16px 18px; }
  .faq-a p { font-size: 15px; padding: 0 18px 16px; }
  .appstore-badges { gap: 8px; }
  .appstore-badge { padding: 8px 12px; }
  .abt-store { font-size: 13px; }
}

/* ---- JS ANIMATION FALLBACK ----------------------------------------
   If IntersectionObserver never fires (e.g. element in viewport at load
   but observer threshold not met), fade in after 800ms via CSS so
   cards are never permanently invisible. The JS animation runs at opacity:0
   so we only override if the element still has opacity:0 after delay. */
@keyframes revealFallback {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step-card,
.feature-card,
.gcta-stat-card,
.misc-step {
  animation: revealFallback 0.6s ease 1.2s forwards;
}

/* ---- INTERMEDIATE HERO BREAKPOINT --------------------------------- */
@media (max-width: 1024px) and (min-width: 901px) {
  .hero { gap: 24px; }
  .hero-mockup { padding-right: clamp(16px, 2vw, 32px); }
  .mockup-phone { width: 190px; height: 370px; }
}

/* ---- RESPONSIVE --------------------------------------------------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
    text-align: left;
  }
  .hero-mockup { display: none; }
  .hero > .container { padding-top: 40px; }

  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }

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

  .gunsmith-cta-card {
    grid-template-columns: 1fr;
  }
  .gcta-visual { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .gcta-stat-card { min-width: 120px; }

  .misc-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .misc-icon-wrap { width: 56px; height: 56px; }
  .misc-steps { flex-direction: column; }
}

@media (max-width: 600px) {
  body { font-size: 16px; } /* slight reduction only on very small screens */

  .form-row {
    flex-direction: column;
    padding: 12px;
    border-radius: var(--r-lg);
    gap: 10px;
  }
  .email-input { padding: 8px 4px; font-size: 16px; } /* 16px prevents iOS auto-zoom */
  .submit-btn { width: 100%; justify-content: center; height: 50px; border-radius: var(--r-pill); }
  .nav-cta { font-size: 14px; padding: 0 12px; height: 40px; }
  .nav-inner { height: 64px; }
  .logo-text { font-size: 22px; }
  .logo-tm { font-size: 11px; }
  .nav-social { width: 30px; height: 30px; }
  .nav-right { gap: 4px; }

  /* Hero */
  .hero-heading { font-size: clamp(44px, 11vw, 64px); }
  .hero-sub     { font-size: 16px; }

  /* Sections */
  .section-title  { font-size: clamp(28px, 7vw, 40px); }
  .step-title     { font-size: 20px; }
  .step-desc      { font-size: 15px; }
  .feat-title     { font-size: 19px; }
  .feat-desc      { font-size: 15px; }
  .misc-title     { font-size: clamp(20px, 5.5vw, 28px); }
  .misc-desc      { font-size: 15px; }
  .gcta-title     { font-size: clamp(28px, 7vw, 38px); }
  .gcta-desc      { font-size: 15px; }
  .gcta-list li   { font-size: 15px; }
  .qr-title       { font-size: clamp(20px, 5vw, 26px); }
  .qr-desc        { font-size: 20px; }
  .final-cta-title { font-size: clamp(36px, 9vw, 52px); }
  .final-cta-sub   { font-size: 15px; }
  .proof-text      { font-size: 14px; }
  .ms-label        { font-size: 14px; }
  .footer-copy     { font-size: 13px; }
  .footer-legal    { font-size: 12px; }
}

/* ── FOOTER LEGAL NAV (added June 2026) ─────────────────────────────── */
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin: 10px 0 6px;
}
.footer-legal-nav a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal-nav a:hover { color: var(--accent-light); }

/* ── HERO DUAL SIGN-UP PANELS ────────────────────────────────────────── */
.hero-signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 16px;
  max-width: 860px;
  margin: 32px auto 0;
}

.signup-panel {
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Left panel — Gun Owner — amber-tinted dark */
.signup-panel-owner {
  background: rgba(180, 83, 9, 0.12);
  border: 1px solid rgba(180, 83, 9, 0.35);
}

/* Right panel — Gunsmith — steel-blue-tinted dark */
.signup-panel-smith {
  background: rgba(30, 58, 95, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.signup-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.signup-panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(180, 83, 9, 0.25);
  border: 1px solid rgba(180, 83, 9, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #D97706;
}

.signup-panel-icon-smith {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.35);
  color: #60a5fa;
}

.signup-panel-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F5F0EB;
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.signup-panel-role-smith {
  color: #93c5fd;
}

.signup-panel-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.signup-input-row {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(180, 83, 9, 0.4);
  background: rgba(0,0,0,0.3);
  transition: border-color 0.2s;
}
.signup-input-row:focus-within { border-color: var(--accent); }

.signup-panel-smith .signup-input-row {
  border-color: rgba(59, 130, 246, 0.35);
}
.signup-panel-smith .signup-input-row:focus-within {
  border-color: #60a5fa;
}

.signup-email-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #F5F0EB;
  font-size: 14px;
  padding: 12px 14px;
  min-width: 0;
}
.signup-email-input::placeholder { color: var(--muted); }

.signup-submit-btn {
  height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}

.signup-submit-btn-owner {
  background: var(--accent);
  color: #fff;
}
.signup-submit-btn-owner:hover { background: var(--accent-light); }

.signup-submit-btn-smith {
  background: #1d4ed8;
  color: #fff;
}
.signup-submit-btn-smith:hover { background: #2563eb; }

.signup-submit-btn:active { transform: scale(0.97); }
.signup-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.signup-success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #c9b897;
  font-weight: 500;
  padding: 4px 0;
}

/* "What happens next" — compact inline version inside panel */
.wn-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.wni-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.wni-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(180, 83, 9, 0.25);
  border: 1px solid rgba(180, 83, 9, 0.4);
  color: #D97706;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Owner perks row — amber tint */
.spp-item-owner {
  background: rgba(180, 83, 9, 0.1);
  border-color: rgba(180, 83, 9, 0.25);
}
.spp-val-owner {
  color: #D97706;
}

/* Gunsmith perks row */
.signup-panel-perks {
  display: flex;
  gap: 12px;
  padding-top: 4px;
}
.spp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  flex: 1;
  min-height: 56px;
  white-space: nowrap;
}
.spp-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #93c5fd;
  line-height: 1;
}
.spp-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  text-align: center;
}

/* Stack panels on mobile */
@media (max-width: 640px) {
  .hero-signup-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="100"] { transition-delay: 0.10s; }
[data-reveal][data-delay="200"] { transition-delay: 0.20s; }
[data-reveal][data-delay="300"] { transition-delay: 0.30s; }
[data-reveal][data-delay="400"] { transition-delay: 0.40s; }
[data-reveal][data-delay="500"] { transition-delay: 0.50s; }

/* ── NAV SCROLLED STATE ─────────────────────────────────────────────── */
.nav-scrolled {
  background: rgba(12, 11, 10, 0.97);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
}

/* ── COUNTER HIGHLIGHT ──────────────────────────────────────────────── */
.counter-num {
  font-variant-numeric: tabular-nums;
  color: var(--text);
  font-weight: 700;
}

/* ── FAQ OPEN STATE (class-based) ───────────────────────────────────── */
.faq-q.faq-open {
  background: var(--surface-2);
  color: var(--accent-light);
}
.faq-q.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-light);
}

/* ── HERO BADGE PILL ─────────────────────────────────────────────────── */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-bg);
  border: 1px solid rgba(180,83,9,0.35);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ── COMMUNITY STRIP ─────────────────────────────────────────────────── */
.community-strip {
  padding: clamp(48px, 5.5vw, 80px) 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}
.cs-inner {
  width: min(960px, 100% - 64px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* LEFT — headline block */
.cs-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cs-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  margin: 0;
}
.cs-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: 380px;
}

/* RIGHT — 2x2 pillar grid */
.cs-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cs-pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s;
}
.cs-pillar:hover {
  border-color: rgba(180, 83, 9, 0.4);
}
.cs-pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--accent-bg);
  border: 1px solid rgba(180, 83, 9, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}
.cs-pillar strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}
.cs-pillar span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 780px) {
  .cs-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cs-sub { max-width: 100%; }
}
@media (max-width: 480px) {
  .cs-pillars { grid-template-columns: 1fr; }
}
