/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0C0B09;
  --bg-2:         #131210;
  --bg-3:         #1A1815;
  --bg-4:         #201E1A;
  --sage:         #7A9E7E;
  --sage-light:   #9DC4A1;
  --sage-dim:     rgba(122, 158, 126, 0.15);
  --brown:        #C4905A;
  --brown-dim:    rgba(196, 144, 90, 0.15);
  --text:         #F5F0E8;
  --text-muted:   #8A8278;
  --text-faint:   #5A5650;
  --border:       rgba(245, 240, 232, 0.07);
  --border-light: rgba(245, 240, 232, 0.12);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
}

html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.15rem; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.grad-text {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--brown) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--sage);
  color: #0C0B09;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary:hover { background: var(--sage-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-outline:hover { border-color: var(--sage); color: var(--sage-light); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 14px 16px;
  transition: color 0.2s ease;
}
.btn-ghost:hover { color: var(--text); }

.full-width { width: 100%; }

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo-mark { flex-shrink: 0; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(12, 11, 9, 0.75);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Hamburger button (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
#main-nav.nav-open .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(0, 6.5px); }
#main-nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
#main-nav.nav-open .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(0, -6.5px); }

/* ── Mobile dropdown menu (hidden by default) ── */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 4px 16px 16px;
  border-top: 1px solid var(--border);
}
.nav-mobile-menu a {
  display: block;
  padding: 13px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-mobile-menu a:hover { color: var(--text); }
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-cta {
  color: var(--sage) !important;
  font-weight: 500;
}
#main-nav.nav-open .nav-mobile-menu { display: flex; }

.nav-blog {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.nav-blog:hover { color: var(--text); border-color: var(--border-light); }
.nav-blog.nav-current { color: var(--text); border-color: var(--border-light); }

.nav-links a.nav-current { color: var(--text); }

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-light);
  border: 1px solid rgba(122, 158, 126, 0.35);
  padding: 9px 20px;
  border-radius: 100px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--sage-dim); border-color: var(--sage); }

/* ── Section Shared ── */
.section { padding: 110px 0; }

.dark-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-sub {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 170px 0 120px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(122, 158, 126, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--brown);
  border: 1px solid rgba(196, 144, 90, 0.25);
  background: rgba(196, 144, 90, 0.07);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-left h1 { margin-bottom: 24px; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 48px;
}


/* ── Stats Bar ── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 36px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.stat-big {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid transparent;
  padding: 28px;
  border-radius: 0;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.feature-card:first-child { border-radius: var(--radius) 0 0 0; }
.feature-card:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.feature-card:nth-last-child(2) { border-radius: 0 0 0 var(--radius); }
.feature-card:last-child { border-radius: 0 0 var(--radius) 0; }

.feature-card:hover { background: var(--bg-3); border-color: var(--border-light); z-index: 1; }

.feature-card.large {
  grid-column: span 2;
  padding: 36px;
}

.feature-icon {
  color: var(--sage);
  margin-bottom: 16px;
  opacity: 0.85;
}

.feature-card h3 { margin-bottom: 10px; font-size: 1rem; }

.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── Why Real Devices ── */
.devices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.device-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.device-point:first-child { border-top: 1px solid var(--border); }

.device-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-faint);
  padding-top: 3px;
}

.device-body h3 { margin-bottom: 10px; font-size: 0.95rem; }
.device-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

.compare-card {
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  align-items: center;
}

.compare-row:last-child { border-bottom: none; }

.compare-row.header {
  background: var(--bg-4);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.compare-col { text-align: center; font-weight: 600; }
.compare-col.them { color: var(--text-faint); }
.compare-col.us { color: var(--sage-light); }
.compare-col.bad { color: var(--text-faint); }
.compare-col.good { color: var(--sage); }

/* ── Results ── */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.results-col { display: flex; flex-direction: column; gap: 20px; }

.result-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.result-card.featured {
  background: var(--bg-3);
  border-color: var(--border-light);
  height: 100%;
}

.result-metric {
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--sage-light), var(--brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.result-context {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.result-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.result-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.result-source {
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.03em;
}

/* ── Pricing ── */
/* ── Pricing rate callout ── */
.pricing-rate-callout {
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.rate-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}

.rate-num {
  font-family: 'Inter', sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--sage-light);
  line-height: 1;
}

.rate-unit {
  font-size: 1rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.rate-examples {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  flex-wrap: wrap;
}

.rate-eg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
  flex: 1;
}

.rate-eg:first-child { padding-left: 0; }

.rate-eg-n {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rate-eg-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.rate-eg-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.rate-eg-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Pricing grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 158, 126, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(122, 158, 126, 0.12);
}

.pricing-card.popular {
  border-color: rgba(122, 158, 126, 0.4);
  background: linear-gradient(180deg, rgba(122, 158, 126, 0.06) 0%, var(--bg-3) 60%);
}
.pricing-card.popular:hover {
  border-color: rgba(122, 158, 126, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(122, 158, 126, 0.2), 0 0 40px rgba(122, 158, 126, 0.08);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.enterprise-badge {
  background: var(--brown);
  color: var(--bg);
}

.plan-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
}

.price-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.price-per {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-bottom: 6px;
}

.plan-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.plan-features li strong { color: var(--text); font-weight: 500; }

.feat-check { color: var(--sage); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }

.feat-missing { opacity: 0.4; }
.feat-missing span { color: var(--text-faint); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-note a { color: var(--sage-light); text-decoration: underline; text-underline-offset: 3px; }

/* ── FAQ ── */
.faq-container { max-width: 760px; }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--sage);
}

.faq-item[open] summary { color: var(--sage-light); }

.faq-item p {
  padding: 0 0 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 0; left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(122, 158, 126, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.cta-left h2 { margin-bottom: 18px; }

.cta-left p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cta-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.cta-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cta-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-4); }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: -4px;
}

.form-error {
  text-align: center;
  font-size: 0.82rem;
  color: #e05c5c;
  margin-top: 8px;
}
.form-error a { color: #e05c5c; text-decoration: underline; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 48px 32px;
}
.form-success-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(122, 158, 126, 0.15);
  border: 1px solid var(--sage);
  color: var(--sage);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 { font-size: 1.3rem; margin: 0; }
.form-success p { font-size: 0.9rem; color: var(--text-muted); margin: 0; max-width: 280px; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-links {
  display: flex;
  gap: 28px;
}

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

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

.footer-bottom span {
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ── Hero Badge Live (green) ── */
.hero-badge-live {
  color: var(--sage-light);
  border-color: rgba(122, 158, 126, 0.3);
  background: rgba(122, 158, 126, 0.08);
}
.badge-dot-live {
  background: var(--sage);
  animation: blink-live 1.4s ease-in-out infinite;
}
@keyframes blink-live {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(122,158,126,0.5); }
  50% { opacity: 0.6; transform: scale(0.85); box-shadow: 0 0 0 4px rgba(122,158,126,0); }
}

/* ── Hero Trial inline ── */
.hero-trial-inline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-trial-inline svg { color: var(--sage); flex-shrink: 0; }

/* ── Hero proof row ── */
.hero-proof-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}
.hero-proof-card {
  flex: 1;
  min-width: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hpc-stars { font-size: 0.65rem; color: var(--brown); letter-spacing: 1px; }
.hpc-text { font-size: 0.82rem; color: var(--text); line-height: 1.45; }
.hpc-author { font-size: 0.68rem; color: var(--text-faint); }

/* ── Hero Animation SVG ── */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }

.hero-anim-svg {
  width: 100%;
  max-width: 500px;
  height: auto;
  overflow: visible;
  margin-top: -48px;
}

/*
 * All animations: 10s infinite, all same duration — no sync drift.
 * 0-8%   laptop in
 * 8-22%  arc1 draws + traveler moves (same window, same ease)
 * 20-28% phone in
 * 23-29% mid dot in
 * 27-33% target-a
 * 30-36% target-b
 * 33-39% target-c
 * 37-50% arc2 draws
 * 48-58% growth blooms
 * 58-68% HOLD (1s)
 * 68-83% fade out
 * 83-100% black reset
 */

.ha-laptop    { animation: ha-laptop-loop   10s ease infinite; will-change: transform, opacity; }
.ha-dot-start { animation: ha-dot-start-loop 10s ease infinite; will-change: transform, opacity; }
.ha-arc1      { stroke-dasharray: 200; stroke-dashoffset: 200;
                animation: ha-arc1-loop     10s ease infinite; will-change: stroke-dashoffset, opacity; }
.ha-traveler  { animation: ha-travel-loop   10s ease infinite; will-change: transform, opacity; }
.ha-phone     { animation: ha-phone-loop    10s ease infinite; will-change: transform, opacity; }
.ha-dot-mid   { animation: ha-mid-loop      10s ease infinite; will-change: transform, opacity; }
.ha-target-a  { animation: ha-target-a-loop 10s ease infinite; will-change: transform, opacity; }
.ha-target-b  { animation: ha-target-b-loop 10s ease infinite; will-change: transform, opacity; }
.ha-target-c  { animation: ha-target-c-loop 10s ease infinite; will-change: transform, opacity; }
.ha-arc2      { stroke-dasharray: 320; stroke-dashoffset: 320;
                animation: ha-arc2-loop     10s ease infinite; will-change: stroke-dashoffset, opacity; }
.ha-growth    { animation: ha-growth-loop   10s ease infinite; will-change: transform, opacity; }

/* ── Keyframes ── */
@keyframes ha-laptop-loop {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  68%  { opacity: 1; }
  83%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes ha-dot-start-loop {
  0%   { opacity: 0; }
  8%   { opacity: 0; }
  12%  { opacity: 1; }
  20%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes ha-arc1-loop {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  8%   { stroke-dashoffset: 200; opacity: 0.7; }
  22%  { stroke-dashoffset: 0;   opacity: 0.7; }
  68%  { stroke-dashoffset: 0;   opacity: 0.7; }
  83%  { stroke-dashoffset: 200; opacity: 0; }
  100% { stroke-dashoffset: 200; opacity: 0; }
}

@keyframes ha-travel-loop {
  0%   { transform: translate(0px, 0px);     opacity: 0; }
  8%   { transform: translate(0px, 0px);     opacity: 1; }
  22%  { transform: translate(132px, 154px); opacity: 0; }
  100% { transform: translate(0px, 0px);     opacity: 0; }
}

@keyframes ha-phone-loop {
  0%   { opacity: 0; }
  20%  { opacity: 0; }
  28%  { opacity: 1; }
  68%  { opacity: 1; }
  83%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes ha-mid-loop {
  0%   { opacity: 0; }
  23%  { opacity: 0; }
  29%  { opacity: 1; }
  68%  { opacity: 1; }
  83%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes ha-target-a-loop {
  0%   { opacity: 0; transform: translateY(8px); }
  27%  { opacity: 0; transform: translateY(8px); }
  33%  { opacity: 1; transform: translateY(0); }
  68%  { opacity: 1; transform: translateY(0); }
  83%  { opacity: 0; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}

@keyframes ha-target-b-loop {
  0%   { opacity: 0; transform: translateY(8px); }
  30%  { opacity: 0; transform: translateY(8px); }
  36%  { opacity: 1; transform: translateY(0); }
  68%  { opacity: 1; transform: translateY(0); }
  83%  { opacity: 0; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}

@keyframes ha-target-c-loop {
  0%   { opacity: 0; transform: translateY(8px); }
  33%  { opacity: 0; transform: translateY(8px); }
  39%  { opacity: 1; transform: translateY(0); }
  68%  { opacity: 1; transform: translateY(0); }
  83%  { opacity: 0; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}

@keyframes ha-arc2-loop {
  0%   { stroke-dashoffset: 320; opacity: 0; }
  37%  { stroke-dashoffset: 320; opacity: 0; }
  38%  { stroke-dashoffset: 320; opacity: 0.7; }
  50%  { stroke-dashoffset: 0;   opacity: 0.7; }
  68%  { stroke-dashoffset: 0;   opacity: 0.7; }
  83%  { stroke-dashoffset: 320; opacity: 0; }
  100% { stroke-dashoffset: 320; opacity: 0; }
}

@keyframes ha-growth-loop {
  0%   { opacity: 0; transform: scale(0.4); transform-box: fill-box; transform-origin: center; }
  48%  { opacity: 0; transform: scale(0.4); transform-box: fill-box; transform-origin: center; }
  58%  { opacity: 1; transform: scale(1);   transform-box: fill-box; transform-origin: center; }
  68%  { opacity: 1; transform: scale(1);   transform-box: fill-box; transform-origin: center; }
  83%  { opacity: 0; transform: scale(0.8); transform-box: fill-box; transform-origin: center; }
  100% { opacity: 0; transform: scale(0.4); transform-box: fill-box; transform-origin: center; }
}

/* ── Stats icons ── */
.stat-icon {
  color: var(--sage);
  opacity: 0.7;
  margin-bottom: 6px;
}

/* ── Use Cases ── */
.uc-layout { display: flex; flex-direction: column; gap: 0; }

.uc-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}

.uc-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.uc-tab:hover { border-color: var(--border-light); color: var(--text); }
.uc-tab.active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--bg);
  font-weight: 700;
}

.uc-panels { position: relative; margin-top: 28px; }

.uc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  animation: fade-in 0.25s ease;
}
.uc-panel.active { display: grid; }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.uc-panel-left h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  line-height: 1.3;
}
.uc-panel-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.uc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.uc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.uc-bullets li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 7px;
}

.uc-panel-cta { margin-top: 8px; }

.uc-metric-card {
  background: var(--bg-4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.uc-metric-n {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.uc-metric-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.uc-metric-quote {
  font-size: 0.875rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
}
.uc-metric-source {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: -4px;
}

/* ── Next Steps ── */
.nsteps { display: flex; flex-direction: column; gap: 0; }

.nstep {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 8px;
  background: var(--bg-2);
  transition: border-color 0.2s;
}
.nstep-open {
  border-color: var(--border-light);
}

.nstep-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.nstep-left { display: flex; gap: 20px; align-items: flex-start; }

.nstep-n {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex-shrink: 0;
  width: 24px;
}

.nstep-body h3 { margin-bottom: 6px; font-size: 1rem; }
.nstep-brief { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.nstep-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: all 0.2s;
}
.nstep-toggle:hover { border-color: var(--border-light); color: var(--text); }
.nstep-toggle-icon {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}

.nstep-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.nstep-cta-note {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.nstep-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.nstep-fyi {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.nstep-fyi strong { color: var(--text); font-weight: 600; }

.nstep-callout {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(122,158,126,0.07);
  border: 1px solid rgba(122,158,126,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--sage-light);
  line-height: 1.6;
}
.nstep-callout svg { flex-shrink: 0; margin-top: 2px; }

/* ── Pricing trial note ── */
.plan-trial-note {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sage-light);
  white-space: nowrap;
  margin-top: 4px;
  padding: 8px 16px;
  background: rgba(122, 158, 126, 0.1);
  border: 1px solid rgba(122, 158, 126, 0.25);
  border-radius: var(--radius-sm);
}

/* ── Pricing Calculator ── */
.pricing-calc {
  margin-top: 56px;
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.pcalc-header { margin-bottom: 36px; }
.pcalc-header .section-label { margin-bottom: 8px; }
.pcalc-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pcalc-header p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.pcalc-inputs {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pcalc-slider-wrap { flex: 1; min-width: 200px; }
.pcalc-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.pcalc-price-label {
  font-size: 0.72rem;
  color: var(--text-faint);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.pcalc-price-input-row {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
}
.pcalc-price-dollar { font-size: 1rem; font-weight: 700; color: var(--text); }
.pcalc-price-unit { font-size: 0.8rem; color: var(--text-faint); }
#pcalc-price {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  width: 64px;
  text-align: right;
  -moz-appearance: textfield;
}
#pcalc-price::-webkit-inner-spin-button,
#pcalc-price::-webkit-outer-spin-button { -webkit-appearance: none; }
.pcalc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 10px;
}
#pcalc-n-label { color: var(--text); font-weight: 600; }

input[type="range"]#pcalc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border-light);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
}
input[type="range"]#pcalc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage);
  border: 3px solid var(--bg-2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: background 0.2s;
}
input[type="range"]#pcalc-slider::-webkit-slider-thumb:hover { background: var(--sage-light); }

.pcalc-results {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pcalc-col {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.pcalc-col-highlight {
  border-color: rgba(122,158,126,0.35);
  background: linear-gradient(180deg, rgba(122,158,126,0.06) 0%, var(--bg-3) 80%);
}

.pcalc-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.pcalc-value {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}
.pcalc-value span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pcalc-margin { color: var(--sage-light); }
.pcalc-sub { font-size: 0.75rem; color: var(--text-faint); margin-top: 2px; }

.pcalc-arrow {
  font-size: 1.2rem;
  color: var(--text-faint);
  flex-shrink: 0;
}

.pcalc-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.6;
}

.pcalc-cta { margin-top: 20px; display: inline-flex; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.large { grid-column: span 2; }
  .feature-card:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .feature-card:nth-child(2) { border-radius: 0; }
  .feature-card:last-child { border-radius: 0 0 var(--radius) var(--radius); }

  .devices-grid { grid-template-columns: 1fr; gap: 48px; }

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pricing-rate-callout { flex-direction: column; gap: 28px; padding: 28px 24px; }
  .rate-eg { padding: 0 16px; }
  .rate-eg:first-child { padding-left: 16px; }

  .cta-inner { grid-template-columns: 1fr; gap: 48px; }

  .form-row { grid-template-columns: 1fr; }

  .stats-inner { flex-wrap: wrap; gap: 28px; }
  .stat-divider { display: none; }
  .stat-item { min-width: 120px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .footer-top { flex-direction: column; gap: 28px; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }

  .uc-panel { grid-template-columns: 1fr; gap: 28px; }
  .uc-tabs { gap: 6px; }
  .pcalc-results { flex-direction: column; }
  .pcalc-arrow { transform: rotate(90deg); }
  .pricing-calc { padding: 28px 24px; }
  .nstep { padding: 20px 20px; }
  .nstep-header { flex-direction: column; gap: 12px; }
  .nstep-cta-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-proof-row { gap: 8px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  /* ── Base ── */
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }

  /* ── Nav ── */
  nav { padding: 0; }
  .nav-inner { padding: 10px 16px; gap: 12px; }
  .logo svg { width: 84px; height: 52px; }
  .nav-actions .nav-blog { display: none; }
  .nav-cta { font-size: 0.78rem; padding: 8px 14px; }

  /* ── Hero ── */
  /* padding-top clears the 72px fixed nav */
  .hero { padding: 76px 0 52px; }
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-left { display: flex; flex-direction: column; }
  /* Animation first, above all text */
  .hero-right {
    order: -1;
    position: static;
    width: 100%;
    margin: 0 0 8px;
    display: flex;
    justify-content: center;
  }
  .hero-anim-svg {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); padding-right: 0; }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  /* Proof cards: single column */
  .hero-proof-row { flex-direction: column; gap: 10px; }
  .hero-proof-card { flex: none; width: 100%; min-width: 0; }

  /* ── Stats bar — 2×2 grid, left-aligned ── */
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 28px 16px;
    padding: 28px 16px;
  }
  .stat-divider { display: none; }
  .stat-item {
    text-align: left;
    width: 100%;
    padding: 0;
  }
  .stat-icon { display: none; }
  .stat-big { font-size: 1.7rem; text-align: left; }
  .stat-desc { font-size: 0.8rem; text-align: left; }

  /* ── Use cases ── */
  .uc-tabs {
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .uc-tabs::-webkit-scrollbar { display: none; }
  .uc-tab { white-space: nowrap; flex-shrink: 0; font-size: 0.8rem; padding: 8px 14px; }
  .uc-panel { grid-template-columns: 1fr; gap: 24px; }
  .uc-metrics { grid-template-columns: 1fr 1fr; }

  /* ── Next steps ── */
  .nstep-num { width: 32px; height: 32px; font-size: 0.8rem; }
  .nstep-title { font-size: 1rem; }

  /* ── Pricing — force single column, full width ── */
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 100% !important; margin: 0 !important; }
  .pricing-card { padding: 24px 18px; }
  .pricing-rate-callout { flex-direction: column; gap: 20px; padding: 24px 18px; }

  /* ── Margin calculator ── */
  .pcalc-inputs { flex-direction: column; gap: 20px; }
  .pcalc-slider-wrap { min-width: 0; width: 100%; }
  .pcalc-price-wrap { width: 100%; }
  .pcalc-price-input-row { justify-content: flex-start; }
  .pcalc-results { flex-direction: column; gap: 0; }
  /* calc boxes: full-width with proper padding */
  .pcalc-col { width: 100%; box-sizing: border-box; padding: 18px 16px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .pcalc-col:first-child { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .pcalc-col:last-child { border-bottom: none; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
  .pcalc-arrow { transform: rotate(90deg); font-size: 1rem; padding: 4px 0; text-align: center; display: block; }
  .pcalc-value { font-size: 1.7rem; }
  .pricing-calc { padding: 22px 18px; }

  /* ── Results ── */
  .results-grid { grid-template-columns: 1fr; }

  /* ── FAQ ── */
  .faq-item summary { font-size: 0.92rem; }

  /* ── Contact form ── */
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }

  /* ── Footer ── */
  .footer-top { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
  .footer-bottom { flex-direction: column; gap: 6px; align-items: flex-start; }

  /* ── Features ── */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.large { grid-column: span 1; }
  .feature-card { border-radius: var(--radius) !important; }
}

/* ── Focus visible ── */
a:focus-visible,
button:focus-visible,
.uc-tab:focus-visible,
.nstep-toggle:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ha-laptop, .ha-dot-start, .ha-arc1, .ha-traveler, .ha-phone,
  .ha-dot-mid, .ha-target-a, .ha-target-b, .ha-target-c,
  .ha-arc2, .ha-growth {
    animation: none;
    opacity: 1;
  }
  .ha-arc1 { stroke-dashoffset: 0; }
  .ha-arc2 { stroke-dashoffset: 0; }

  .badge-pulse { animation: none; }

  .uc-panel { animation: none; }

  .pricing-card { transition: none; }
}
