/* StormMic — Landing Page Styles */

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}
[data-theme="light"] .nav.scrolled {
  background: rgba(240, 244, 248, 0.92);
}
.nav-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links a:not(.btn) {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}
.nav-links a:not(.btn):hover { color: var(--color-text); }
.nav-mobile-toggle { display: none; color: var(--color-text); padding: var(--space-2); }

/* Mobile nav drawer */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6) var(--space-5);
  background: rgba(10, 15, 26, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}
[data-theme="light"] .nav-mobile-menu {
  background: rgba(240, 244, 248, 0.97);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}
.nav-mobile-link:hover { color: var(--color-accent); }
.nav-mobile-cta { margin-top: var(--space-3); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 70% at 60% 30%, rgba(56,189,248,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(56,189,248,0.04) 0%, transparent 60%),
              linear-gradient(135deg, #0a0f1a 0%, #0d1525 40%, #091220 100%);
}
[data-theme="light"] .hero-bg {
  background: radial-gradient(ellipse 80% 70% at 60% 30%, rgba(2,132,199,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(2,132,199,0.05) 0%, transparent 60%),
              linear-gradient(135deg, #dbeafe 0%, #e0f2fe 40%, #f0f9ff 100%);
}
#radarCanvas {
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.hero-fog {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, transparent 0%, var(--color-bg) 70%),
              linear-gradient(to bottom, transparent 0%, var(--color-bg) 95%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-20);
  padding-bottom: var(--space-8);
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.hero-accent { color: var(--color-accent); }
.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, var(--text-xl, 1.25rem));
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: var(--space-8);
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}
.hero-trial-note {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-accent);
  margin-top: var(--space-3);
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-full);
  display: inline-block;
  padding: var(--space-2) var(--space-5);
}

.pricing-trial-note {
  text-align: center;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-trial-note strong {
  color: var(--color-accent);
  font-weight: 700;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  flex-wrap: wrap;
}
.hero-proof .divider { opacity: 0.4; }

/* Audio preview card */
.hero-card {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-20);
}
.audio-preview-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  max-width: 580px;
  box-shadow: var(--shadow-lg), var(--shadow-accent);
}
.audio-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}
.station-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.audio-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-full);
}
.audio-status.live {
  color: var(--color-success);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.audio-card-forecast {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--color-accent);
  padding-left: var(--space-4);
  margin-bottom: var(--space-5);
}
.audio-card-controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}
.play-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #0a0f1a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.play-btn:hover { background: var(--color-accent-hover); transform: scale(1.05); }
.waveform {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 28px;
}
.waveform span {
  flex: 1;
  background: var(--color-border-2);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1)  { height: 8px;  animation-delay: 0s; }
.waveform span:nth-child(2)  { height: 14px; animation-delay: 0.1s; }
.waveform span:nth-child(3)  { height: 20px; animation-delay: 0.2s; }
.waveform span:nth-child(4)  { height: 18px; animation-delay: 0.3s; }
.waveform span:nth-child(5)  { height: 24px; animation-delay: 0.4s; }
.waveform span:nth-child(6)  { height: 16px; animation-delay: 0.5s; }
.waveform span:nth-child(7)  { height: 22px; animation-delay: 0.6s; }
.waveform span:nth-child(8)  { height: 20px; animation-delay: 0.7s; }
.waveform span:nth-child(9)  { height: 26px; animation-delay: 0.8s; }
.waveform span:nth-child(10) { height: 22px; animation-delay: 0.9s; }
.waveform span:nth-child(11) { height: 18px; animation-delay: 1.0s; }
.waveform span:nth-child(12) { height: 20px; animation-delay: 0.8s; }
.waveform span:nth-child(13) { height: 24px; animation-delay: 0.6s; }
.waveform span:nth-child(14) { height: 16px; animation-delay: 0.4s; }
.waveform span:nth-child(15) { height: 12px; animation-delay: 0.2s; }
.waveform span:nth-child(16) { height: 18px; animation-delay: 0.3s; }
.waveform span:nth-child(17) { height: 14px; animation-delay: 0.5s; }
.waveform span:nth-child(18) { height: 10px; animation-delay: 0.7s; }
.waveform span:nth-child(19) { height: 8px;  animation-delay: 0.9s; }
.waveform span:nth-child(20) { height: 6px;  animation-delay: 1.1s; }
@keyframes wave {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}
.audio-duration {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-variant-numeric: tabular-nums;
}
.download-btn-sm {
  color: var(--color-text-faint);
  padding: var(--space-2);
  border-radius: var(--radius-sm);
}
.download-btn-sm:hover { color: var(--color-accent); }
.audio-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-divider);
}

/* SECTIONS */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.section-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, var(--text-2xl));
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.section-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: var(--space-12);
  line-height: 1.7;
}

/* HOW IT WORKS */
.how { background: var(--color-surface); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.step-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.12);
  letter-spacing: 0;
}
.step-icon {
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  margin-top: var(--space-3);
}
.step-card h3 {
  font-size: var(--text-md, 1.05rem);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.step-card p { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.65; }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}
.feature-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-block:hover { border-color: var(--color-accent); box-shadow: var(--shadow-accent); }
.feature-block--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.feature-block-content { }
.feature-icon {
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.feature-icon.sponsor-icon { color: var(--color-storm); }
.feature-block h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.feature-block p { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.65; }
.badge-pro {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--color-accent-dim);
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-storm {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--color-storm-dim);
  color: var(--color-storm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Dayparts visual */
.dayparts-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.daypart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.daypart.active {
  background: var(--color-accent-dim);
  border-color: var(--color-accent);
}
.dp-time { font-size: var(--text-xs); color: var(--color-text-muted); font-variant-numeric: tabular-nums; }
.dp-label { font-size: var(--text-xs); font-weight: 600; color: var(--color-text); }
.daypart.active .dp-time, .daypart.active .dp-label { color: var(--color-accent); }
/* Personality slider demo */
.slider-demo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.slider-label-l, .slider-label-r {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  white-space: nowrap;
}
.slider-track {
  flex: 1;
  height: 4px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  position: relative;
}
.slider-fill {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}
.slider-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-bg);
  box-shadow: var(--shadow-sm);
}

/* SEVERE */
.severe {
  position: relative;
  overflow: hidden;
}

/* Storm cloud animation */
.storm-cloud-wrap {
  margin: var(--space-5) 0 var(--space-4);
}
.storm-cloud-img {
  width: 200px;
  height: auto;
  animation: cloud-bob 3.5s ease-in-out infinite, cloud-flash 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.3));
}
@keyframes cloud-bob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@keyframes cloud-flash {
  0%, 100%  { filter: drop-shadow(0 0 12px rgba(56,189,248,0.3)); }
  10%, 42%  { filter: drop-shadow(0 0 24px rgba(249,200,50,0.9)) brightness(1.15); }
  20%, 50%  { filter: drop-shadow(0 0 12px rgba(56,189,248,0.3)); }
}
.severe-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(249,115,22,0.06) 0%, transparent 70%);
}
.severe-label { color: var(--color-storm); }
.severe-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.severe-text p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.severe-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.severe-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
}
/* Alert mockup */
.alert-card {
  background: var(--color-surface);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.1), var(--shadow-lg);
}
.alert-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.alert-icon-wrap {
  width: 40px; height: 40px;
  border-radius: var(--radius-lg);
  background: var(--color-storm-dim);
  color: var(--color-storm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.alert-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-storm);
  letter-spacing: 0.04em;
}
.alert-meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.alert-badge-new {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--color-storm);
  color: #fff;
  letter-spacing: 0.06em;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.alert-transcript {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--color-storm);
  padding-left: var(--space-4);
  margin-bottom: var(--space-5);
}
.alert-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.alert-time-ago {
  margin-left: auto;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* SPONSOR CALLOUT */
.sponsor-callout {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(34,197,94,0.12) 0%, rgba(22,163,74,0.06) 100%);
  border: 1px solid rgba(34,197,94,0.35);
  border-left: 4px solid #22c55e;
  border-radius: 12px;
  padding: var(--space-5) var(--space-6);
  margin: calc(var(--space-2) * -1) 0 var(--space-2);
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}
.sponsor-callout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34,197,94,0.2);
}
.sponsor-callout:active {
  transform: scale(0.98);
}
.sponsor-callout-inner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.sponsor-callout-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
}
.sponsor-callout-text {
  flex: 1;
}
.sponsor-callout-headline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #22c55e;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.sponsor-callout-body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}
/* Dollar rain animation */
@keyframes dollarFall {
  0%   { transform: translateY(-40px) rotate(0deg); opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
.dollar-rain-piece {
  position: fixed;
  pointer-events: none;
  font-size: 1.6rem;
  z-index: 9999;
  animation: dollarFall linear forwards;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* PRICING — single column vertical stack */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
  margin-top: var(--space-12);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card:nth-child(1) { grid-column: 1; }
.pricing-card--featured    { grid-column: 1; transform: none; }
.pricing-card--storm       { grid-column: 1; align-self: auto; }
.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
}
.pricing-card--featured {
  border-color: #0F52BA;
  box-shadow: 0 0 0 1px rgba(15,82,186,0.4), 0 8px 32px rgba(15,82,186,0.2);
  transform: scale(1.02);
}
.pricing-card--storm {
  border-color: rgba(220,38,38,0.35);
}
.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
/* Pricing card header: title left+large, price right */
.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}
.pricing-tier-label {
  font-size: var(--text-2xl);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
}
.storm-label { color: var(--color-storm); }
.pro-label   { color: #0F52BA; }
.basic-label { color: #94a3b8; }
.pricing-amount {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}
.price-dollar { font-size: var(--text-base); color: var(--color-text-muted); padding-bottom: 4px; }
.price-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.03em;
}
.price-per { font-size: var(--text-sm); color: var(--color-text-muted); padding-bottom: 6px; }

/* Pricing toggle */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  background: var(--color-surface-3);
  border: 1.5px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
  padding: 14px 28px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.06);
}
.pricing-toggle-label {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-toggle {
  position: relative;
  width: 56px;
  height: 30px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.pricing-toggle[aria-pressed="true"] {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.pricing-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.25);
}
.pricing-toggle[aria-pressed="true"] .pricing-toggle-knob {
  transform: translateX(26px);
}
.pricing-save-badge {
  background: rgba(56,189,248,0.15);
  color: var(--color-accent);
  border: 1px solid rgba(56,189,248,0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  letter-spacing: 0.02em;
}
.pricing-billed {
  font-size: 11px;
  color: var(--color-text-muted);
  margin: -12px 0 12px;
  min-height: 16px;
}
.annual-savings {
  color: #4ade80;
  font-weight: 600;
}

.pricing-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: var(--space-6);
  line-height: 1.6;
  text-align: center;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-weight: 500;
}
.pricing-features svg { color: #94a3b8; flex-shrink: 0; }
.pricing-card--featured .pricing-features svg { color: #0F52BA; }
.pricing-card--storm .pricing-features svg { color: var(--color-storm); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-12);
  background: var(--color-surface);
}
.footer-inner { display: flex; flex-direction: column; gap: var(--space-8); }
.footer-brand { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-tagline { font-size: var(--text-sm); color: var(--color-text-muted); }
.footer-links {
  display: flex;
  gap: var(--space-8);
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer-links a:hover { color: var(--color-accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.pplx-attr { color: var(--color-text-faint); }
.pplx-attr:hover { color: var(--color-accent); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-block--wide { grid-column: span 1; grid-template-columns: 1fr; }
  .severe-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-card--featured { transform: none; }
  .pricing-card--signature { grid-column: 1; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 4rem); }
  .pricing-grid { max-width: 100%; }
}

/* ── SIGNATURE TIER ─────────────────────────────────── */
.pricing-card--signature {
  grid-column: 1;
  border-color: rgba(167, 139, 250, 0.4);
  background: linear-gradient(135deg, #0f1520 0%, #13102a 100%);
  box-shadow: 0 0 32px rgba(167, 139, 250, 0.08);
}
[data-theme="light"] .pricing-card--signature {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}
[data-theme="light"] .pricing-toggle {
  background: #cbd5e1;
  border-color: #94a3b8;
}
/* Light mode: Pro cobalt brightens to a readable royal blue, Basic gray darkens slightly */
[data-theme="light"] .pro-label { color: #1a56db; }
[data-theme="light"] .pricing-card--featured .pricing-features svg { color: #1a56db; }
[data-theme="light"] .pricing-card--featured { border-color: #1a56db; box-shadow: 0 0 0 1px rgba(26,86,219,0.3), 0 8px 32px rgba(26,86,219,0.15); }
[data-theme="light"] .pricing-card-badge { background: #1a56db; }
[data-theme="light"] .basic-label { color: #64748b; }
[data-theme="light"] .pricing-features svg { color: #64748b; }

.pricing-card-badge--signature {
  background: #7c3aed;
  color: #fff;
}

.signature-label {
  color: #a78bfa;
}

.pricing-card--signature .pricing-features svg {
  color: #a78bfa;
}

.btn-signature {
  background: #7c3aed;
  color: #fff;
  border: 1.5px solid #7c3aed;
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-signature:hover {
  background: #6d28d9;
  border-color: #6d28d9;
}

.signature-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-4);
  font-size: var(--text-xs);
  color: #a78bfa;
  font-weight: 600;
}

.sig-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a78bfa;
  animation: sig-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

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

.sig-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--color-text-faint);
  margin-top: var(--space-3);
  line-height: 1.4;
}

.pricing-card--sig-auto {
  grid-column: 1;
  border-color: rgba(20, 184, 166, 0.4);
  background: linear-gradient(135deg, #0a1a1a 0%, #0a1f1e 100%);
  box-shadow: 0 0 32px rgba(20, 184, 166, 0.08);
}
[data-theme="light"] .pricing-card--sig-auto {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.pricing-card-badge--sig-auto {
  background: linear-gradient(90deg, #0d9488, #0891b2);
  color: #fff;
}

.sig-auto-label {
  color: #14b8a6;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-card--sig-auto .pricing-features svg {
  color: #14b8a6;
}

.btn-sig-auto {
  background: linear-gradient(135deg, #0d9488, #0891b2);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-sig-auto:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.sig-auto-how {
  background: rgba(20, 184, 166, 0.07);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: var(--space-5);
}
[data-theme="light"] .sig-auto-how {
  background: rgba(20, 184, 166, 0.08);
}

.sig-auto-how-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #14b8a6;
  margin-bottom: 10px;
}

.sig-auto-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sig-auto-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.sig-auto-num {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.2);
  color: #14b8a6;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pricing-annual-note {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.pricing-annual-note strong {
  color: #4ade80;
}

/* Option B — pricing section pulse on scroll */
@keyframes pricingPulse {
  0%   { box-shadow: inset 0 0 0 0 rgba(56,189,248,0); }
  40%  { box-shadow: inset 0 0 0 4px rgba(56,189,248,0.5); }
  100% { box-shadow: inset 0 0 0 0 rgba(56,189,248,0); }
}
.pricing-highlight {
  animation: pricingPulse 1.2s ease-out forwards;
  border-radius: 16px;
}
