:root {
  --bg: #030712;
  --bg-alt: #0a1020;
  --surface: rgba(10, 16, 30, 0.9);
  --surface-alt: rgba(16, 22, 38, 0.82);
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #f3f6ff;
  --text-muted: rgba(225, 233, 255, 0.72);
  --accent: #4ef3c5;
  --accent-soft: rgba(78, 243, 197, 0.14);
  --accent-strong: #4ec8ff;
  --highlight: #ffd166;
  --success: #7cf5df;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px -32px rgba(6, 12, 28, 0.75);
  --font-body: 'Sora', 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 18% 20%, rgba(78, 243, 197, 0.1), transparent 30%),
    radial-gradient(circle at 85% 8%, rgba(78, 200, 255, 0.15), transparent 28%),
    radial-gradient(circle at 40% 90%, rgba(255, 209, 102, 0.08), transparent 30%),
    linear-gradient(140deg, #050915 0%, #05070f 40%, #030712 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(8, 13, 25, 0.95), rgba(8, 13, 20, 0.9));
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.site-header .shell {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(78, 243, 197, 0.16), rgba(78, 200, 255, 0.16));
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px rgba(7, 15, 28, 0.45);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  font-size: 0.96rem;
  color: rgba(235, 240, 255, 0.7);
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  transform: scaleX(1);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.2s ease, border-color 0.2s ease;
  color: var(--text);
  cursor: pointer;
}

.primary-button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 50%, #8ae7ff 100%);
  color: #061019;
  box-shadow: 0 16px 36px rgba(78, 243, 197, 0.35);
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(78, 243, 197, 0.42);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--border-soft);
  background: rgba(6, 10, 20, 0.95);
  backdrop-filter: blur(12px);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.8rem;
  gap: 1rem;
}

.mobile-nav a {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0.25rem 0;
}

.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(78, 243, 197, 0.24) 0%, rgba(78, 243, 197, 0) 65%);
  z-index: 0;
  filter: blur(4px);
}

.hero::before {
  top: -220px;
  left: -160px;
}

.hero::after {
  right: -240px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(78, 200, 255, 0.2) 0%, rgba(78, 200, 255, 0) 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.8rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  line-height: 1.08;
  margin: 1rem 0 1.2rem;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 1.04rem;
  margin-bottom: 2.2rem;
  max-width: 34rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(78, 243, 197, 0.4);
  color: #0ef0ba;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.hero-pill .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #7cf5df;
  box-shadow: 0 0 20px rgba(124, 245, 223, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  color: #e6fbff;
  letter-spacing: -0.01em;
}

.hero-preview {
  position: relative;
}

.preview-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(9, 14, 28, 0.92), rgba(13, 20, 36, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.preview-video {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(39, 55, 83, 0.55));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-media {
  background: rgba(11, 17, 31, 0.9);
}

.video-media video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #0b111f;
}

.video-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 13, 25, 0.85);
}

.video-header p {
  margin: 0;
  font-weight: 600;
}

.video-header span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.3s ease, transform 0.2s ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.icon-button svg path {
  fill: currentColor;
}

.video-body {
  padding: 1.6rem 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.waveform {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: flex-end;
  gap: 6px;
  height: 90px;
}

.waveform span {
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(126, 255, 225, 0.85), rgba(78, 200, 255, 0.65));
  height: var(--h, 40%);
  animation: pulse 2.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.08s);
}

.waveform span:nth-child(odd) {
  --i: 1;
}

.waveform span:nth-child(even) {
  --i: 2;
}

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

.waveform.mini {
  height: 48px;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.caption {
  margin: 0;
  font-style: italic;
  color: rgba(235, 243, 255, 0.72);
  font-size: 0.95rem;
}

.steps-card {
  background: linear-gradient(155deg, rgba(10, 18, 32, 0.95), rgba(9, 16, 30, 0.78));
  border-radius: var(--radius-md);
  border: 1px solid rgba(78, 243, 197, 0.28);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.steps-card h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.steps-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.steps-card li {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(78, 243, 197, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
}

.steps-card li p {
  margin: 0;
  font-weight: 600;
}

.steps-card li span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.metrics {
  padding: 4.5rem 0 3rem;
}

.metrics-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.metrics article {
  background: linear-gradient(160deg, rgba(9, 14, 26, 0.9), rgba(10, 16, 30, 0.78));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.9rem;
  box-shadow: 0 18px 45px rgba(8, 12, 24, 0.5);
  position: relative;
  overflow: hidden;
}

.metrics h3 {
  margin: 0 0 0.6rem;
  font-size: 1.18rem;
}

.metrics p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  max-width: 28rem;
}

.section-label {
  display: inline-flex;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0ef0ba;
  background: rgba(78, 243, 197, 0.12);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(78, 243, 197, 0.3);
}

.how-it-works {
  padding: 4.75rem 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  background: linear-gradient(150deg, rgba(7, 12, 24, 0.95), rgba(11, 18, 34, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(8, 14, 28, 0.5);
  overflow: hidden;
}

.timeline-number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(78, 200, 255, 0.15);
}

.timeline-item h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.demo-gallery {
  padding: 4.5rem 0;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.demo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 280px;
  box-shadow: 0 18px 55px rgba(6, 10, 20, 0.6);
}

.demo-card img {
  width: 100%;
  height: 100%;
}

.demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(3, 7, 14, 0.1) 25%, rgba(3, 7, 14, 0.82) 100%);
  gap: 1.2rem;
  transition: transform 0.3s ease;
}

.demo-card:hover .demo-overlay {
  transform: translateY(-6px);
}

.demo-overlay span {
  font-weight: 600;
  font-size: 1.05rem;
}

.testimonial {
  padding: 4rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

blockquote {
  margin: 0;
  background: linear-gradient(150deg, rgba(8, 13, 25, 0.94), rgba(10, 18, 34, 0.8));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 55px rgba(5, 10, 18, 0.65);
}

blockquote p {
  margin: 0;
}

blockquote::before {
  content: '“';
  position: absolute;
  top: 1.2rem;
  left: 1.6rem;
  font-size: 3rem;
  color: rgba(78, 243, 197, 0.25);
}

blockquote cite {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-card {
  background: linear-gradient(155deg, rgba(8, 14, 26, 0.9), rgba(12, 19, 34, 0.8));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.testimonial-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: var(--text-muted);
}

.testimonial-card li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.testimonial-icon {
  font-size: 1.45rem;
  color: var(--accent);
  flex-shrink: 0;
}

.faq {
  padding: 4.5rem 0 5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: linear-gradient(155deg, rgba(8, 14, 26, 0.92), rgba(10, 16, 28, 0.78));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 1.6rem 1.3rem;
  box-shadow: 0 18px 45px rgba(6, 10, 20, 0.45);
}

.faq-item h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

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

.site-footer {
  padding: 3.8rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(4, 7, 13, 0.96), rgba(6, 10, 18, 0.9));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.footer-grid > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-self: end;
  text-align: right;
}

.footer-grid > div:last-child ul {
  align-items: flex-end;
}

.site-footer p {
  margin: 0.6rem 0 0;
  color: var(--text-muted);
}

.site-footer h4 {
  margin: 0 0 0.8rem;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 12, 22, 0.7);
  color: var(--text);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 3.2rem;
  font-size: 0.85rem;
}

/* Wizard */
.wizard {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: rgba(3, 6, 12, 0.7);
  backdrop-filter: blur(14px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.wizard.is-open {
  visibility: visible;
  opacity: 1;
}

.wizard__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wizard__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 3rem);
  background: linear-gradient(160deg, rgba(6, 10, 20, 0.95), rgba(9, 14, 26, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 40px 70px rgba(5, 8, 18, 0.8);
  display: flex;
  flex-direction: column;
}

.wizard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 2rem 1.2rem;
  gap: 1rem;
}

.wizard__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: rgba(78, 243, 197, 0.75);
}

.wizard__header h2 {
  margin: 0.4rem 0 0;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.wizard__progress {
  padding: 0 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wizard__progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(78, 243, 197, 0.18);
  overflow: hidden;
}

.wizard__progress-fill {
  display: block;
  height: 100%;
  width: 14%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #6de5ff);
  transition: width 0.4s ease;
}

.wizard__progress-steps {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(215, 222, 255, 0.4);
  width: 100%;
}

.wizard__progress-steps li.active {
  color: rgba(215, 222, 255, 0.95);
}

.wizard__progress-steps li {
  flex: 1;
  text-align: center;
}

.wizard__body {
  padding: 0 2rem 2rem;
  overflow-y: auto;
}

.wizard-step {
  display: none;
  animation: slideIn 0.35s ease;
}

.wizard-step.is-active {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.wizard-step h3 {
  margin: 0;
  font-size: 1.4rem;
}

.wizard-step p {
  margin: 0;
  color: rgba(223, 230, 255, 0.76);
}

.dropzone {
  position: relative;
  border: 2px dashed rgba(78, 243, 197, 0.35);
  border-radius: 18px;
  padding: 2rem;
  background: rgba(8, 14, 26, 0.7);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.dropzone.is-hidden {
  display: none;
}

.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.dropzone.drag-over {
  border-color: rgba(78, 243, 197, 0.7);
  background: rgba(12, 22, 40, 0.85);
}

.dropzone__inner {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.dropzone__icon {
  font-size: 2rem;
  filter: drop-shadow(0 8px 24px rgba(124, 245, 223, 0.4));
}

.dropzone__title {
  margin: 0;
  font-weight: 700;
}

.dropzone__hint {
  color: rgba(210, 225, 245, 0.7);
  font-size: 0.9rem;
}

.link-button {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}

.link-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(10, 18, 32, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.2rem;
}

.file-preview img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.file-name {
  margin: 0;
  font-weight: 600;
}

.file-meta {
  color: rgba(197, 204, 239, 0.7);
  font-size: 0.85rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field__label {
  color: rgba(220, 226, 255, 0.75);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field textarea {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 14, 24, 0.8);
  color: var(--text);
  padding: 1rem 1.2rem;
  font-size: 1rem;
  resize: vertical;
  min-height: 140px;
}

.field textarea:focus {
  outline: none;
  border-color: rgba(78, 243, 197, 0.6);
  box-shadow: 0 0 0 1px rgba(78, 243, 197, 0.35);
}

.field__meta {
  align-self: flex-end;
  font-size: 0.8rem;
  color: rgba(200, 210, 245, 0.7);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 17, 30, 0.6);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.chip:hover {
  background: rgba(78, 243, 197, 0.2);
  color: var(--text);
  transform: translateY(-1px);
}

.photo-upload,
.audio-upload {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.photo-upload__area,
.audio-upload__area {
  position: relative;
}

.photo-preview-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(78, 243, 197, 0.35);
  background: rgba(10, 16, 32, 0.72);
  padding: 2rem;
  box-shadow: 0 22px 45px rgba(8, 12, 26, 0.5);
}

.photo-preview-card[hidden] {
  display: none !important;
}

.photo-preview-card img {
  width: 180px;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
  border: 3px solid rgba(78, 243, 197, 0.35);
  box-shadow: 0 18px 35px rgba(8, 12, 26, 0.45);
}

.photo-preview-card__meta {
  text-align: center;
}

.photo-preview-card__meta .file-name {
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.photo-preview-card__meta .file-meta {
  color: rgba(197, 204, 239, 0.7);
  font-size: 0.85rem;
}

.photo-preview-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.photo-preview-card__actions .secondary-button {
  min-width: 160px;
}

.audio-preview-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(78, 243, 197, 0.35);
  background: rgba(10, 16, 32, 0.72);
  padding: 1.8rem;
  box-shadow: 0 22px 45px rgba(8, 12, 26, 0.5);
}

.audio-preview-card[hidden] {
  display: none !important;
}

.audio-preview-card__player audio {
  width: 100%;
  border-radius: 12px;
  background: rgba(13, 20, 36, 0.85);
}

.audio-preview-card__meta {
  text-align: center;
}

.audio-preview-card__meta .file-name {
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.audio-preview-card__meta .file-meta {
  color: rgba(197, 204, 239, 0.7);
  font-size: 0.85rem;
}

.audio-preview-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.audio-preview-card__actions .secondary-button {
  min-width: 160px;
}

.photo-guidelines,
.audio-guidelines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.photo-guidelines li,
.audio-guidelines li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(215, 222, 255, 0.8);
}

.photo-guidelines__icon,
.audio-guidelines__icon {
  font-size: 1.35rem;
  color: rgba(215, 222, 255, 0.95);
  flex-shrink: 0;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
  background: rgba(10, 18, 34, 0.7);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.review-photo {
  width: 128px;
  height: 128px;
  border-radius: 16px;
  border: 1px dashed rgba(78, 243, 197, 0.35);
  background: rgba(11, 17, 30, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-photo .placeholder {
  color: rgba(207, 217, 255, 0.5);
  text-align: center;
  font-size: 0.85rem;
  padding: 0.5rem;
}
.review-audio {
  width: min(320px, 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-audio audio {
  width: 100%;
  border-radius: 12px;
}

.review-audio.is-empty audio {
  opacity: 0.5;
  pointer-events: none;
}

.review-message {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.review-message span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(207, 216, 255, 0.6);
}

.review-message p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.plan-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 0;
}

.plan-options--landing {
  margin: 2.4rem 0 1.4rem;
  gap: 1.2rem;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 18% 12%, rgba(78, 243, 197, 0.18), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(78, 200, 255, 0.16), transparent 32%),
    linear-gradient(155deg, rgba(8, 14, 26, 0.9), rgba(12, 18, 32, 0.82));
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  overflow: visible;
}

.plan-card:hover {
  border-color: rgba(78, 243, 197, 0.6);
  box-shadow: 0 14px 28px rgba(8, 12, 26, 0.45);
  transform: translateY(-4px);
}

.plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(78, 243, 197, 0.22);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.plan-card:hover::after,
.plan-card.is-selected::after {
  opacity: 1;
}

.plan-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 18px 30px rgba(16, 23, 43, 0.6);
}

.plan-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text) !important;
}

.plan-card__subtitle {
  margin: 0.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: rgba(207, 216, 255, 0.8);
}

.plan-card__credits {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  width: fit-content;
  border-radius: 999px;
  background: rgba(78, 243, 197, 0.14);
  border: 1px solid rgba(78, 243, 197, 0.35);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ddfff6;
}

.plan-card__meta {
  font-size: 0.85rem;
  color: rgba(207, 216, 255, 0.72);
}

.plan-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.plan-card__price {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  color: #e7fff8;
  letter-spacing: -0.01em;
}

.plan-card__tagline {
  font-size: 0.85rem;
  color: rgba(220, 235, 255, 0.78);
  text-align: center;
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  right: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(78, 243, 197, 0.95), rgba(78, 200, 255, 0.92));
  color: #031019;
  box-shadow: 0 8px 18px rgba(12, 18, 32, 0.45);
}

.plan-card--popular {
  background: linear-gradient(155deg, rgba(9, 16, 30, 0.96), rgba(11, 20, 38, 0.88));
  border-color: rgba(78, 200, 255, 0.75);
  transform: translateY(-2px);
}

.plan-card--value {
  background: linear-gradient(140deg, rgba(78, 243, 197, 0.16), rgba(78, 200, 255, 0.12));
  border-color: rgba(78, 243, 197, 0.6);
}

.plan-card button[data-plan-select] {
  min-width: 110px;
  width: 100%;
}

.plan-card.is-selected button[data-plan-select] {
  background: var(--accent);
  border-color: transparent;
  color: #0b0f1e;
}

.plan-note {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: rgba(207, 216, 255, 0.85);
  margin-bottom: 1rem;
}

.plan-note p {
  margin: 0;
  font-weight: 600;
}

.plan-note span {
  font-size: 0.8rem;
  color: rgba(207, 216, 255, 0.7);
}

.plan-note--landing {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(8, 14, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-section {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
}

.pricing-section::before,
.pricing-section::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.pricing-section::before {
  top: -140px;
  left: -180px;
  background: radial-gradient(circle, rgba(78, 243, 197, 0.32), transparent 60%);
}

.pricing-section::after {
  bottom: -180px;
  right: -200px;
  background: radial-gradient(circle, rgba(78, 200, 255, 0.28), transparent 60%);
}

.pricing-section .shell {
  position: relative;
  z-index: 1;
}

.consent-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: rgba(220, 228, 255, 0.8);
}

.consent input {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(13, 20, 35, 0.8);
}

.consent a {
  color: var(--accent);
}

.wizard-error {
  color: #ff8b8b;
  font-size: 0.85rem;
  display: none;
}

.wizard-error:not(:empty) {
  display: block;
}

.wizard-error--inline {
  margin-top: 0.75rem;
  color: #ff4d4f;
  font-weight: 600;
}

.photo-upload .wizard-error,
.audio-upload .wizard-error {
  color: #ff4d4f;
  font-weight: 600;
}

.wizard__footer {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wizard__footer .primary-button[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-stats {
    gap: 1.5rem;
  }

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

  .wizard__panel {
    max-height: calc(100vh - 2rem);
  }
}

@media (max-width: 768px) {
  .site-header .shell {
    padding: 0.8rem 1.2rem;
  }

  .hero {
    padding: 4.5rem 0 3.5rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    flex: 1;
  }

  .preview-card {
    padding: 1.25rem;
  }

  .metrics {
    padding: 3.5rem 0 2rem;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-grid > div:last-child {
    justify-self: start;
    text-align: left;
  }

  .wizard__header,
  .wizard__progress,
  .wizard__body,
  .wizard__footer {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .wizard {
    padding: 1.5rem 0.75rem;
  }
}

@media (max-width: 520px) {
  .hero-copy h1 {
    font-size: 2.15rem;
  }

  .hero-pill {
    font-size: 0.75rem;
  }

  .hero-stats strong {
    font-size: 1.4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .wizard__progress-steps {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .wizard__footer {
    flex-direction: column;
  }

  .wizard__footer .primary-button,
  .wizard__footer .secondary-button {
    width: 100%;
  }

  .file-preview {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-preview-card__actions {
    flex-direction: column;
    width: 100%;
  }

  .photo-preview-card__actions .primary-button,
  .photo-preview-card__actions .secondary-button,
  .photo-preview-card__actions .ghost-button {
    width: 100%;
  }

  .audio-preview-card__actions {
    flex-direction: column;
    width: 100%;
  }

  .audio-preview-card__actions .secondary-button,
  .audio-preview-card__actions .ghost-button {
    width: 100%;
  }

  .photo-guidelines,
  .audio-guidelines {
    grid-template-columns: 1fr;
  }

  .newsletter {
    flex-direction: column;
  }
}
