:root {
  --bg: #08111f;
  --bg-soft: #0d1729;
  --panel: rgba(12, 23, 41, 0.78);
  --panel-strong: rgba(12, 23, 41, 0.95);
  --border: rgba(255, 255, 255, 0.12);
  --text: #eaf2ff;
  --muted: #9eb0ce;
  --muted-strong: #c6d4ee;
  --primary: #6ea8fe;
  --primary-2: #8b5cf6;
  --success: #22c55e;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(110, 168, 254, 0.16), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.18), transparent 28%),
    linear-gradient(180deg, #08111f 0%, #0a1322 48%, #0b1420 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.bg-orb,
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.bg-orb {
  filter: blur(70px);
  opacity: 0.55;
  z-index: -3;
}

.orb-1 {
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: rgba(110, 168, 254, 0.18);
  top: -120px;
  left: -60px;
}

.orb-2 {
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  right: -80px;
  top: 180px;
}

.bg-grid {
  z-index: -4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 80%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 31, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 30px rgba(110, 168, 254, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted-strong);
}

.main-nav a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: white;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 34px rgba(110, 168, 254, 0.28);
}

.btn-secondary,
.btn-outline,
.btn-glass {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.btn-full {
  width: 100%;
}

.btn-large {
  min-height: 56px;
  padding: 0 24px;
}

.hero {
  padding: 74px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: #d9e7ff;
  background: rgba(110, 168, 254, 0.1);
  border-color: rgba(110, 168, 254, 0.16);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 10ch;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.hero-text {
  max-width: 64ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 20px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 30px rgba(0, 0, 0, 0.18);
  color: var(--muted-strong);
  font-size: 1.02rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.trust-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 168, 254, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 38px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(110, 168, 254, 0.06);
}

.trust-pill-wide {
  padding-right: 24px;
}

.trust-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(134, 239, 172, 0.24), rgba(34, 197, 94, 0.16));
  border: 1px solid rgba(134, 239, 172, 0.28);
  color: #8df4a8;
  font-size: 0.95rem;
  font-weight: 900;
  flex: 0 0 28px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.floating-card {
  background: linear-gradient(180deg, rgba(19, 31, 54, 0.92), rgba(10, 17, 31, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.dashboard-shell {
  position: relative;
  padding: 18px;
  overflow: hidden;
  max-width: 560px;
  margin-left: auto;
}

.dashboard-shell::after {
  content: "";
  position: absolute;
  inset: auto 20px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(110, 168, 254, 0.22), transparent 70%);
  filter: blur(10px);
}

.dashboard-topbar {
  display: flex;
  gap: 7px;
  padding: 6px 4px 16px;
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-sidebar {
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-logo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(110, 168, 254, 0.9), rgba(139, 92, 246, 0.7));
  margin-bottom: 8px;
}

.side-link {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.side-link.active {
  background: linear-gradient(90deg, var(--primary), rgba(139, 92, 246, 0.95));
}

.dashboard-main {
  display: grid;
  gap: 16px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card,
.job-card,
.chart-card,
.feature-card,
.pricing-card,
.showcase-card,
.stat-box,
.faq-item,
.final-cta-box,
.workflow-step,
.credit-card,
.credit-highlight {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 18px;
}

.stat-card small,
.stat-box small {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.stat-card strong,
.stat-box strong {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.job-card {
  padding: 18px;
}

.job-card-top,
.job-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.job-card-top p,
.job-card-meta {
  margin: 0;
  font-size: 0.92rem;
}

.status-badge {
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #07110d;
  background: linear-gradient(135deg, #86efac, #22c55e);
}

.progress-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  margin: 18px 0 14px;
}

.progress-bar-fill {
  width: 83%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  animation: progressPulse 3s ease-in-out infinite;
}

.chart-card {
  height: 170px;
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.chart-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 32px, 40px 100%;
}

.chart-line {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 80px;
  border-radius: 999px;
  border: 2px solid transparent;
  border-top-color: rgba(110, 168, 254, 0.85);
  border-right-color: rgba(110, 168, 254, 0.45);
  transform-origin: left center;
}

.chart-line-1 {
  bottom: 28px;
}

.chart-line-2 {
  bottom: 48px;
  transform: scaleX(0.86);
  border-top-color: rgba(139, 92, 246, 0.72);
}

.chart-line-3 {
  bottom: 68px;
  transform: scaleX(0.68);
  border-top-color: rgba(255, 255, 255, 0.5);
}

.chart-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -30px;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 168, 254, 0.3), transparent 70%);
  filter: blur(20px);
}

.floating-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}

.pill-1 {
  top: 30px;
  left: 8px;
}

.pill-2 {
  right: -10px;
  top: 220px;
  animation-delay: 0.8s;
}

.pill-3 {
  left: 48px;
  bottom: 18px;
  animation-delay: 1.6s;
}

.trust-strip {
  padding: 24px 0 34px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.trust-strip-card {
  min-height: 142px;
  padding: 26px 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 38px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.trust-strip-card:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 168, 254, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 48px rgba(0, 0, 0, 0.24);
}

.trust-strip-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #edf3ff;
  margin-bottom: 10px;
  font-weight: 700;
}

.trust-strip-card span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 26ch;
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 38px;
}

.feature-grid,
.pricing-grid,
.showcase-grid,
.stats-panel,
.credit-explainer-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 26px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(110, 168, 254, 0.22), rgba(139, 92, 246, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.workflow-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(110, 168, 254, 0.08), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(139, 92, 246, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent 90%);
  pointer-events: none;
}

.workflow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.workflow-copy {
  max-width: 520px;
  padding-top: 10px;
}

.workflow-eyebrow {
  background: rgba(110, 168, 254, 0.1);
  border: 1px solid rgba(110, 168, 254, 0.16);
  color: #e6efff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.workflow-copy h2 {
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  max-width: 8.5ch;
  margin-bottom: 22px;
}

.workflow-copy p {
  max-width: 32ch;
  font-size: 1.12rem;
  line-height: 1.72;
  color: var(--muted);
}

.workflow-steps {
  display: grid;
  gap: 22px;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(10, 22, 42, 0.96), rgba(7, 16, 32, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.workflow-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(110, 168, 254, 0.18),
    rgba(139, 92, 246, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 168, 254, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(110, 168, 254, 0.06);
}

.workflow-step-badge {
  width: 88px;
  height: 88px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #ffffff;
  background: linear-gradient(135deg, #78a7ff 0%, #8b5cf6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 32px rgba(110, 168, 254, 0.18);
  flex-shrink: 0;
}

.workflow-step-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #f4f7ff;
}

.workflow-step-content p {
  margin: 0;
  max-width: 34ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #9db0cf;
}

.credit-explainer-section {
  position: relative;
}

.credit-explainer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.credit-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(110, 168, 254, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(14, 25, 45, 0.92), rgba(8, 17, 31, 0.92));
}

.credit-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 28px rgba(110, 168, 254, 0.18);
}

.credit-card h3 {
  font-size: 1.22rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #f4f7ff;
}

.credit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.credit-highlight {
  padding: 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at right center, rgba(139, 92, 246, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(17, 31, 56, 0.95), rgba(10, 18, 33, 0.95));
  border-color: rgba(110, 168, 254, 0.22);
}

.credit-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.credit-highlight h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  color: #f7f9ff;
}

.credit-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
  max-width: 62ch;
}

.credit-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.credit-metric {
  padding: 22px 14px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.credit-metric strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin-bottom: 8px;
}

.credit-metric span {
  display: block;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.4;
}

.seo-content-section .seo-grid .feature-card h3 {
  font-size: 1.24rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  padding: 28px;
  position: relative;
}

.pricing-card.featured {
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(17, 31, 56, 0.96), rgba(10, 18, 33, 0.96));
  border-color: rgba(110, 168, 254, 0.34);
}

.plan-chip,
.popular-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.plan-chip {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
}

.popular-chip {
  position: absolute;
  top: -14px;
  right: 18px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 22px rgba(110, 168, 254, 0.24);
}

.price {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 18px 0 6px;
  color: white;
}

.credit-count {
  font-size: 1.25rem;
  font-weight: 700;
  color: #dce8ff;
  margin: 0 0 18px;
}

.showcase-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: 24px;
}

.showcase-card {
  padding: 32px;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-content: start;
}

.stat-box {
  padding: 0;
}

.stat-box-feature {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 78% 84%, rgba(139, 92, 246, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(110, 168, 254, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(7, 22, 48, 0.98), rgba(3, 14, 35, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.26);
}

.stat-box-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 32%, transparent 68%, rgba(110,168,254,0.06));
  opacity: 0.9;
}

.stat-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(110, 168, 254, 0.18), rgba(139, 92, 246, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.16);
  flex: 0 0 64px;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: #f5f7ff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-icon-setup {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.09), transparent 55%),
    linear-gradient(135deg, rgba(110, 168, 254, 0.18), rgba(139, 92, 246, 0.24));
}

.stat-icon-live {
  background:
    radial-gradient(circle at 30% 30%, rgba(110, 168, 254, 0.2), transparent 55%),
    linear-gradient(135deg, rgba(82, 140, 255, 0.22), rgba(139, 92, 246, 0.18));
}

.stat-icon-protect {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(110, 168, 254, 0.16), rgba(139, 92, 246, 0.22));
}

.stat-icon-smooth {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(110, 168, 254, 0.16), rgba(139, 92, 246, 0.22));
}

.stat-kicker {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted-strong);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.stat-box-feature strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(2.3rem, 3.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 0 0 18px;
  color: #f7f9ff;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

.stat-box-feature p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 22ch;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  padding: 8px 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 18px 0;
  position: relative;
  padding-right: 30px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-strong);
  font-size: 1.35rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 18px;
}

.final-cta-section {
  padding-top: 70px;
}

.final-cta-box {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(17, 31, 56, 0.95), rgba(10, 18, 33, 0.95));
  border-color: rgba(110, 168, 254, 0.22);
}

.final-cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

.delay-pulse {
  animation-delay: 0.6s;
}

@keyframes progressPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.18);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 18px 44px rgba(110, 168, 254, 0.18);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1200px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .final-cta-box,
  .workflow-grid,
  .credit-highlight {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-grid,
  .credit-explainer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard-shell {
    margin: 0 auto;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }

  .workflow-copy {
    max-width: 720px;
  }

  .workflow-copy h2 {
    max-width: 10ch;
  }

  .workflow-copy p {
    max-width: 58ch;
  }

  .credit-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .stats-panel {
    grid-template-columns: 1fr;
  }

  .stat-box-feature {
    min-height: auto;
  }

  .stat-box-feature p {
    max-width: none;
  }

  .stat-kicker {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: rgba(8, 17, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .trust-strip-grid,
  .feature-grid,
  .pricing-grid,
  .credit-explainer-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .final-cta-actions .btn {
    width: 100%;
  }

  .floating-pill {
    position: static;
    margin: 12px 0 0;
    display: inline-flex;
  }

  .hero-visual {
    display: grid;
    gap: 10px;
  }

  .hero-trust {
    gap: 12px;
  }

  .trust-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .trust-strip-card {
    min-height: auto;
    text-align: left;
    align-items: flex-start;
    padding: 22px 20px;
  }

  .trust-strip-card span {
    max-width: none;
    margin: 0;
  }

  .credit-metrics {
    grid-template-columns: 1fr;
  }

  .credit-highlight {
    padding: 24px;
  }
}

@media (max-width: 700px) {
  .workflow-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
  }

  .workflow-step-badge {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    font-size: 1.45rem;
  }

  .workflow-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: 10ch;
  }

  .workflow-copy p,
  .workflow-step-content p {
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .pricing-card.featured {
    transform: none;
  }

  .final-cta-box,
  .showcase-card,
  .pricing-card,
  .feature-card,
  .workflow-step,
  .credit-card,
  .stat-box-feature {
    padding: 22px;
  }

  .faq-item {
    padding: 6px 18px;
  }

  .trust-pill {
    min-height: 56px;
    padding: 0 16px;
    font-size: 0.96rem;
  }

  .trust-pill-icon {
    width: 26px;
    height: 26px;
    font-size: 0.88rem;
  }

  .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    flex-basis: 56px;
  }

  .stat-icon svg {
    width: 24px;
    height: 24px;
  }

  .stat-box-feature strong {
    font-size: clamp(2.6rem, 13vw, 3.6rem);
    margin-bottom: 18px;
  }

  .stat-box-feature p {
    font-size: 0.98rem;
  }

  .credit-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .credit-highlight {
    padding: 22px;
  }
}