:root {
  --color-bg: #1a2332;
  --color-bg-elevated: #223042;
  --color-text: #e8f4f8;
  --color-text-muted: #8ba8b5;
  --color-accent: #00ff8f;
  --color-accent-2: #00a1ff;
  --color-accent-dim: rgba(0, 255, 143, 0.4);
  --gradient-primary: linear-gradient(135deg, #00ff8f 0%, #00a1ff 100%);
  --gradient-subtle: linear-gradient(180deg, rgba(0, 255, 143, 0.06) 0%, rgba(0, 161, 255, 0.06) 100%);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(to bottom, var(--color-bg) 60%, transparent);
  transition: background var(--transition);
}

.header.scrolled {
  background: var(--color-bg);
  box-shadow: 0 1px 0 rgba(0, 255, 143, 0.1);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-accent);
}

.nav-link--login {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(0, 255, 143, 0.5);
  border-radius: 6px;
  margin-left: var(--space-sm);
}

.nav-link--login:hover {
  border-color: var(--color-accent);
  background: rgba(0, 255, 143, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.visible[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* Hero */
@keyframes gradient-shift {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
  background: var(--color-bg);
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(0, 255, 143, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 80% 80%, rgba(0, 161, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 255, 143, 0.08) 0%, transparent 60%);
  animation: gradient-shift 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.hero-content {
  text-align: left;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-screenshot-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 255, 143, 0.2),
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(0, 161, 255, 0.15);
  animation: float 6s ease-in-out infinite;
}

.hero-screenshot-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}

.hero-screenshot-wrap img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
}

.hero-logo {
  width: min(260px, 50vw);
  height: auto;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 4px 24px rgba(0, 161, 255, 0.2));
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.hero-stats span {
  display: flex;
  align-items: center;
  gap: 0.35em;
}

.hero-stats strong {
  color: var(--color-accent);
  font-weight: 600;
}

.hero-stats span:not(:last-child)::after {
  content: " • ";
  margin-left: 0.25em;
  color: rgba(0, 255, 143, 0.5);
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-weight: 400;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
}

.cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}

.cta-button:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--color-bg);
}

.cta-primary {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--color-bg);
}

.cta-primary:hover {
  filter: brightness(1.1);
  color: var(--color-bg);
}

.cta-secondary {
  background: transparent;
  border-color: rgba(0, 255, 143, 0.6);
  color: var(--color-accent);
}

.cta-secondary:hover {
  border-color: var(--color-accent);
  background: rgba(0, 255, 143, 0.08);
  color: var(--color-accent);
}

.hero-accent {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-2));
  opacity: 0.6;
}

/* Sections */
.section {
  padding: var(--space-2xl) var(--space-lg);
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.container--wide {
  max-width: 960px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.section .lead {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* Section alternates */
.features--alt {
  background: var(--color-bg-elevated);
}

.contact--gradient {
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(0, 255, 143, 0.04) 50%, var(--color-bg) 100%);
}

/* Screenshots */
.screenshots {
  background: var(--color-bg-elevated);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.screenshot-card {
  background: var(--color-bg);
  border: 1px solid rgba(0, 161, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  text-align: left;
}

.screenshot-card--clickable {
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(0, 161, 255, 0.12);
  padding: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  background: var(--color-bg);
}

.screenshot-card--clickable:hover {
  border-color: rgba(0, 255, 143, 0.3);
  box-shadow: 0 8px 32px rgba(0, 161, 255, 0.12);
  transform: translateY(-2px);
}

.screenshot-card--clickable:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.screenshot-card-expand {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0.35rem 0.6rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1;
  pointer-events: none;
}

.screenshot-card--clickable:hover .screenshot-card-expand,
.screenshot-card--clickable:focus .screenshot-card-expand {
  opacity: 1;
  transform: translateY(0);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(0, 161, 255, 0.12);
}

.screenshot-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: var(--space-md) var(--space-md) var(--space-xs);
  color: var(--color-text);
}

.screenshot-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 var(--space-md) var(--space-md);
  line-height: 1.5;
}

.screenshots-cta {
  text-align: center;
  margin-top: var(--space-xl);
  margin-bottom: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightbox-in 0.3s ease;
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-img-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0, 255, 143, 0.2), 0 24px 48px rgba(0, 0, 0, 0.5);
}

/* Tour spotlight overlay - dims image except highlighted region */
.lightbox-spotlight {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox-spotlight.lightbox-spotlight--active {
  opacity: 1;
  background: radial-gradient(
    circle at var(--spot-x, 50%) var(--spot-y, 50%),
    transparent var(--spot-r, 15%),
    rgba(0, 0, 0, 0.78) calc(var(--spot-r, 15%) + 1px)
  );
}

.lightbox-spotlight.lightbox-spotlight--transitioning {
  opacity: 0;
}

/* Tour popover - Driver.js style */
.lightbox-tour-popover {
  position: absolute;
  z-index: 10;
  max-width: 260px;
  margin: 8px;
  padding: var(--space-md);
  background: var(--color-bg-elevated);
  border: 1px solid rgba(0, 255, 143, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 0.2s ease;
}

.lightbox-tour-popover[hidden] {
  display: none !important;
}

.lightbox-tour-popover.lightbox-popover--fade-out {
  opacity: 0;
  pointer-events: none;
}

.lightbox-tour-arrow {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-bg-elevated);
  border: 1px solid rgba(0, 255, 143, 0.3);
  transform: rotate(45deg);
}

.lightbox-tour-popover[data-side="top"] .lightbox-tour-arrow {
  bottom: -7px;
  left: 50%;
  margin-left: -6px;
  border-bottom: none;
  border-right: none;
}

.lightbox-tour-popover[data-side="bottom"] .lightbox-tour-arrow {
  top: -7px;
  left: 50%;
  margin-left: -6px;
  border-top: none;
  border-left: none;
}

.lightbox-tour-popover[data-side="left"] .lightbox-tour-arrow {
  right: -7px;
  top: 50%;
  margin-top: -6px;
  border-bottom: none;
  border-left: none;
}

.lightbox-tour-popover[data-side="right"] .lightbox-tour-arrow {
  left: -7px;
  top: 50%;
  margin-top: -6px;
  border-top: none;
  border-right: none;
}

.lightbox-tour-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.lightbox-tour-description {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Tour controls */
.lightbox-tour-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.lightbox-tour-prev,
.lightbox-tour-next {
  padding: var(--space-xs) var(--space-md);
  background: transparent;
  border: 2px solid rgba(0, 255, 143, 0.5);
  border-radius: 6px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-tour-prev:hover:not(:disabled),
.lightbox-tour-next:hover {
  background: rgba(0, 255, 143, 0.1);
  border-color: var(--color-accent);
}

.lightbox-tour-prev:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.lightbox-tour-progress {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  min-width: 4ch;
  text-align: center;
}

.lightbox-caption--hidden {
  display: none;
}

.lightbox-caption {
  margin-top: var(--space-md);
  text-align: center;
  max-width: 480px;
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.lightbox-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent);
}

.lightbox-close:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* About */
.about-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.about .lead em {
  font-style: italic;
  color: var(--color-accent);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.about-card {
  display: block;
  padding: var(--space-lg);
  background: var(--color-bg-elevated);
  border: 1px solid rgba(0, 161, 255, 0.12);
  border-radius: 12px;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.about-card:hover {
  border-color: rgba(0, 255, 143, 0.35);
  box-shadow: 0 8px 32px rgba(0, 161, 255, 0.12);
  transform: translateY(-2px);
}

.about-card:hover .about-card-link {
  opacity: 1;
}

.about-card:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.about-card:focus:not(:focus-visible) {
  outline: none;
}

.about-card-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 255, 143, 0.4);
  letter-spacing: 0.05em;
}

.about-card-image {
  margin-bottom: var(--space-md);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 161, 255, 0.06);
  aspect-ratio: 1;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.about-card-link {
  display: block;
  margin-top: var(--space-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

/* Features */
.features-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.features-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  display: block;
  padding: 0;
  background: var(--color-bg);
  border: 1px solid rgba(0, 161, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.feature-card:hover {
  border-color: rgba(0, 255, 143, 0.35);
  box-shadow: 0 8px 32px rgba(0, 161, 255, 0.12);
  transform: translateY(-2px);
}

.feature-card:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.feature-card:focus:not(:focus-visible) {
  outline: none;
}

.feature-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(0, 161, 255, 0.06);
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-image img {
  transform: scale(1.03);
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.feature-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0 var(--space-md) var(--space-md);
}

/* Pricing / Get Access */
.pricing {
  background: var(--color-bg);
}

.pricing-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.pricing-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.pricing-toggle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pricing-toggle-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.pricing-toggle-buttons {
  display: flex;
  background: var(--color-bg-elevated);
  border: 1px solid rgba(0, 161, 255, 0.2);
  border-radius: 8px;
  padding: 4px;
}

.pricing-toggle-btn {
  padding: var(--space-xs) var(--space-md);
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-toggle-btn:hover {
  color: var(--color-text);
}

.pricing-toggle-btn.active {
  background: var(--gradient-primary);
  color: var(--color-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.pricing-card {
  padding: var(--space-lg);
  background: var(--color-bg-elevated);
  border: 1px solid rgba(0, 161, 255, 0.12);
  border-radius: 12px;
  transition: all 0.25s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(0, 255, 143, 0.3);
  box-shadow: 0 8px 32px rgba(0, 161, 255, 0.08);
}

.pricing-card--featured {
  border-color: rgba(0, 255, 143, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 255, 143, 0.2);
  padding-top: calc(var(--space-lg) + 14px);
}

.pricing-card-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.6rem;
  background: var(--gradient-primary);
  color: var(--color-bg);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
}

.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.pricing-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

.pricing-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  background: rgba(0, 161, 255, 0.2);
  color: var(--color-accent);
  border-radius: 6px;
}

.pricing-badge--free {
  background: rgba(0, 255, 143, 0.15);
  color: var(--color-accent);
}

.pricing-price {
  margin-bottom: var(--space-md);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
}

.pricing-amount--contact {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-period {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
}

.pricing-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
}

.pricing-note {
  margin-top: var(--space-xl);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-list {
  margin-top: var(--space-xl);
}

.faq-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0, 161, 255, 0.12);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.faq-item p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.faq-item a {
  color: var(--color-accent);
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Contact */
.contact {
  text-align: center;
}

.contact p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.contact .cta-button {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-email {
  font-size: 0.95rem;
  margin-top: var(--space-sm);
}

.contact-email a {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid rgba(0, 161, 255, 0.15);
  text-align: center;
}

.footer p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 28px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-screenshot-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: var(--space-md);
    background: var(--color-bg);
    gap: var(--space-sm);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}
