/* =========================================================
   MOBILE SERVICE OS — Landing Page Styles
   Theme: Premium SaaS · Black/Gold · Dark · Mobile-first
   ========================================================= */

:root {
  /* Color system */
  --bg: #0a0a0b;
  --bg-elev: #111114;
  --bg-card: #15151a;
  --bg-card-2: #1a1a20;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;

  --gold: #d4af37;
  --gold-bright: #f0c75e;
  --gold-deep: #a8851d;
  --gold-soft: rgba(212, 175, 55, 0.12);

  --green: #34d399;
  --amber: #fbbf24;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.6);
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.35);
}

* { box-sizing: border-box; }
*::selection { background: var(--gold); color: #0a0a0b; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1000px 600px at 80% -10%, rgba(212, 175, 55, 0.08), transparent 60%),
    radial-gradient(800px 500px at 0% 30%, rgba(212, 175, 55, 0.04), transparent 60%),
    var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Grain overlay */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  margin: 0;
}
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 500; }
h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0; color: var(--text-muted); }

.gold { color: var(--gold); font-style: italic; font-family: var(--font-display); font-weight: 500; }

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
  font-family: var(--font-mono);
}
.kicker.gold-kicker { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 0.95rem 1.5rem; font-size: 1rem; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #0a0a0b;
  box-shadow: var(--shadow-gold);
  border-color: rgba(255,255,255,0.12);
}
.btn-gold:hover { background: linear-gradient(180deg, #fad277, var(--gold-bright)); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.22); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); }

/* ==================== NAV ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 10, 11, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--bg-elev);
  padding: 4px;
  border: 1px solid var(--border);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-inner { padding: 0.7rem 1rem; gap: 0.75rem; }
  .nav-cta .btn { padding: 0.55rem 0.9rem; font-size: 0.85rem; }
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: 0.95rem; }
}
@media (max-width: 380px) {
  .brand-name { font-size: 0.88rem; }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 1.25rem clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  z-index: 2;
}
.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--gold-bright);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 1.5rem 0 2rem;
  line-height: 1.6;
}

.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }

.hero-meta {
  list-style: none;
  padding: 0; margin: 2rem 0 0;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.88rem; color: var(--text-dim);
}
.hero-meta li { display: flex; align-items: center; gap: 0.4rem; }
.hero-meta span { color: var(--gold); font-weight: 700; }

/* Hero phone mockup */
.hero-mock { display: flex; justify-content: center; align-items: center; }
.phone {
  width: 290px;
  height: 580px;
  background: linear-gradient(180deg, #1c1c22, #0f0f12);
  border-radius: 42px;
  padding: 14px;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 50px 80px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 60px -10px rgba(212, 175, 55, 0.15);
  position: relative;
  transform: rotate(-2deg);
}
.phone-notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0d0d10, #131318);
  border-radius: 32px;
  padding: 44px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  position: relative;
}
.mock-header {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-dim);
  font-family: var(--font-mono);
}
.mock-title { font-family: var(--font-display); color: var(--text); font-size: 0.95rem; font-weight: 600; }
.mock-icon { color: var(--gold); }

.mock-stat {
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.03));
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  padding: 14px;
}
.mock-stat-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.mock-stat-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.mock-stat-value span { font-size: 1rem; color: var(--gold-deep); }
.mock-stat-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

.mock-list { display: flex; flex-direction: column; gap: 8px; }
.mock-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}
.mock-row-l { display: flex; align-items: center; gap: 10px; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.mock-dot.amber { background: var(--amber); }
.mock-row-title { font-size: 0.78rem; color: var(--text); font-weight: 500; }
.mock-row-sub { font-size: 0.68rem; color: var(--text-dim); margin-top: 1px; }
.mock-row-r { font-size: 0.82rem; color: var(--gold-bright); font-weight: 600; font-family: var(--font-mono); }

.mock-cta {
  margin-top: auto;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #0a0a0b;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 2rem; }
  .hero-mock { order: 2; margin-top: 0.5rem; }
  .phone { transform: rotate(0deg); width: 220px; height: 440px; }
  .phone-screen { padding: 38px 14px 14px; gap: 10px; }
  .mock-stat-value { font-size: 1.5rem; }
  .mock-cta { padding: 10px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .phone { width: 200px; height: 400px; }
}

/* ==================== STRIP ==================== */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.strip-inner strong { color: var(--gold-bright); font-weight: 600; font-family: var(--font-display); font-style: italic; margin-right: 4px; }
.dotdiv { color: var(--text-dim); }

/* ==================== SECTIONS ==================== */
.section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.25rem;
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-left: auto; margin-right: auto;
}

/* PROBLEM */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.problem-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.problem-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.problem-card h3 { margin-bottom: 0.4rem; }
.problem-card p { font-size: 0.92rem; }

/* SOLUTION */
.solution-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
.solution-item {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}
.solution-item:hover { border-color: rgba(212, 175, 55, 0.25); }
.solution-item .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}
.solution-item h3 { margin-bottom: 0.35rem; }
.solution-item p { font-size: 0.92rem; }

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.feature {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(212, 175, 55, 0.15);
}
.feature:hover::before { opacity: 1; }
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
}
.feature h3 { margin-bottom: 0.4rem; }
.feature p { font-size: 0.9rem; }

/* WORKFLOW */
.workflow {
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.03), transparent);
}
.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0; margin: 0;
}
.flow li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.92rem;
}
.flow li:hover { border-color: rgba(212, 175, 55, 0.3); }
.flow-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  background: var(--gold-soft);
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}
.flow-label { color: var(--text); font-weight: 500; }
.flow-arrow {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  color: var(--gold);
  font-size: 1.2rem;
}

/* AUDIENCE */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s ease;
}
.audience-card:hover { transform: translateX(3px); }
.audience-card h3 { margin-bottom: 0.5rem; color: var(--gold-bright); }
.audience-card p { font-size: 0.92rem; }

/* PWA */
.pwa {
  background: radial-gradient(800px 400px at 50% 50%, rgba(212,175,55,0.06), transparent 70%);
}
.pwa-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.pwa h2 { margin-bottom: 1rem; }
.checklist {
  list-style: none;
  padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--text);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pwa-visual { display: flex; justify-content: center; }
.install-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 1.25rem;
  max-width: 360px;
  width: 100%;
  box-shadow: var(--shadow-card);
}
.install-card img {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--bg-elev);
  padding: 6px;
  border: 1px solid var(--border);
}
.install-title { font-weight: 600; color: var(--text); }
.install-sub { font-size: 0.85rem; color: var(--text-dim); font-family: var(--font-mono); }
.install-btn {
  margin-left: auto;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #0a0a0b;
  border: none;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

@media (max-width: 820px) {
  .pwa-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* PLANS */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.plan-pro {
  border-color: rgba(212, 175, 55, 0.35);
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(212,175,55,0.08), transparent 70%),
    var(--bg-card);
  box-shadow: 0 30px 60px -30px rgba(212, 175, 55, 0.25);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #0a0a0b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.plan-head { display: flex; justify-content: space-between; align-items: baseline; }
.plan-head h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text);
}
.plan-pro .plan-head h3 { color: var(--gold); font-style: italic; }
.plan-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
.plan-desc { font-size: 0.95rem; color: var(--text-muted); }
.plan-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text);
}
.plan-list li {
  position: relative;
  padding-left: 1.5rem;
}
.plan-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}
.plan .btn { margin-top: auto; }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s ease;
}
.faq-list details[open] { border-color: rgba(212,175,55,0.3); }
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.25s ease;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* FINAL CTA */
.final-cta {
  padding: clamp(4rem, 10vw, 8rem) 1.25rem;
}
.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(212,175,55,0.06), rgba(212,175,55,0.02));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  overflow: hidden;
}
.final-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
}
.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}
.final-cta .cta-row { position: relative; }

/* ==================== FOOTER ==================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.25rem 2rem;
  background: var(--bg-elev);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-brand img {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg);
  padding: 5px;
  border: 1px solid var(--border);
}
.brand-tag {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 2px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: right;
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-meta { text-align: left; }
}

/* Reveal animation */
@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .lede, .hero .cta-row, .hero .eyebrow, .hero .hero-meta {
    animation: fadeUp 0.7s ease both;
  }
  .hero .eyebrow { animation-delay: 0.05s; }
  .hero h1 { animation-delay: 0.15s; }
  .hero .lede { animation-delay: 0.25s; }
  .hero .cta-row { animation-delay: 0.35s; }
  .hero .hero-meta { animation-delay: 0.45s; }
  .phone { animation: fadeIn 1s 0.3s ease both; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* Focus styles */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
