:root {
  --bg-deep: #030510;
  --bg-card: rgba(12, 18, 36, 0.65);
  --stroke: rgba(125, 211, 252, 0.14);
  --stroke-bright: rgba(125, 211, 252, 0.35);
  --text: #f1f5fd;
  --muted: #8b9cb8;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --indigo: #6366f1;
  --violet: #a78bfa;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 80px -20px rgba(59, 130, 246, 0.55);
  --safe-top: max(env(safe-area-inset-top), 0px);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .orb,
  .shine-sweep,
  .float-card {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.12em 0.45em;
  border-radius: 7px;
  border: 1px solid var(--stroke);
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--blue);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% -30%, rgba(59, 130, 246, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 50%, rgba(99, 102, 241, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(34, 211, 238, 0.1), transparent 45%);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-drift 22s ease-in-out infinite;
}

.orb-a {
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.7), transparent 70%);
}

.orb-b {
  width: min(440px, 80vw);
  height: min(440px, 80vw);
  bottom: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.55), transparent 68%);
  animation-delay: -11s;
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -24px) scale(1.06);
  }
}

.shell {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
}

.wrap {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

header.site-header {
  padding-top: calc(var(--safe-top) + 1.1rem);
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--cyan);
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(59, 130, 246, 0.35));
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding-right: 0.35rem;
  margin-right: 0.25rem;
  border-right: 1px solid var(--stroke);
}

.lang-switch .lang-btn {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.lang-switch .lang-btn:hover {
  color: var(--text);
  border-color: var(--stroke);
}

.lang-switch .lang-btn.is-active {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.08);
}

@media (max-width: 820px) {
  .lang-switch {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 0.35rem;
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid var(--stroke);
    padding-bottom: 0.65rem;
  }
}

nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

nav.primary-nav a:not(.btn) {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

nav.primary-nav a:not(.btn):hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  font-family: inherit;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  nav.primary-nav {
    position: fixed;
    inset: auto 1.25rem auto 1.25rem;
    top: calc(var(--safe-top) + 4.5rem);
    padding: 0.85rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 12, 28, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }

  nav.primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav.primary-nav a {
    padding: 0.75rem 0.65rem;
    border-radius: 10px;
  }

  nav.primary-nav a:not(.btn):hover {
    background: rgba(255, 255, 255, 0.05);
  }

  nav.primary-nav .btn {
    margin-top: 0.35rem;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #041018;
  box-shadow: 0 12px 36px -8px rgba(34, 211, 238, 0.45), 0 4px 16px -6px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 16px 44px -8px rgba(34, 211, 238, 0.55), 0 8px 24px -6px rgba(59, 130, 246, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke-bright);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: rgba(125, 211, 252, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero-grid {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1.08fr;
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.15);
  }
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.gradient-text {
  background: linear-gradient(105deg, #fff 12%, var(--cyan) 42%, var(--blue) 72%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 1.85rem;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 38ch;
}

.hero-lead strong {
  color: rgba(226, 232, 255, 0.92);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-row svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.mock-wrap {
  position: relative;
  perspective: 1200px;
}

.float-card {
  animation: float-y 7s ease-in-out infinite;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0) rotateX(2deg);
  }
  50% {
    transform: translateY(-10px) rotateX(2deg);
  }
}

.mock-rim {
  position: relative;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(125, 211, 252, 0.45),
    rgba(99, 102, 241, 0.15) 40%,
    rgba(59, 130, 246, 0.35) 100%
  );
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.85), var(--shadow-glow);
}

.mock-inner {
  border-radius: 21px;
  overflow: hidden;
  background: rgba(5, 8, 20, 0.92);
  backdrop-filter: blur(20px);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.35);
  min-width: 0;
}

.mock-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mock-dot:nth-child(1) {
  background: #fb7185;
}

.mock-dot:nth-child(2) {
  background: #fbbf24;
}

.mock-dot:nth-child(3) {
  background: #4ade80;
}

.mock-url {
  flex: 1;
  min-width: 0;
  margin-left: 0.5rem;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-family: ui-monospace, monospace;
}

.mock-frame {
  aspect-ratio: 16 / 10;
  position: relative;
  background: linear-gradient(165deg, #070b18 0%, #0c1228 50%, #070b14 100%);
}

.mock-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.97;
}

/* Badge in chrome bar — stays off the iframe so store modals aren’t covered */
.mock-bar-badge {
  flex-shrink: 0;
  max-width: 42%;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(3, 5, 16, 0.85);
  border: 1px solid rgba(34, 211, 238, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shine-sweep {
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 48%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 52%,
    transparent 58%
  );
  animation: shine 9s linear infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translateX(-30%) rotate(12deg);
  }
  100% {
    transform: translateX(30%) rotate(12deg);
  }
}

section.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-banner {
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.06));
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.split-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(226, 232, 255, 0.88);
  max-width: 52ch;
}

.feature-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 1.45rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 20%) var(--my, 0%), rgba(59, 130, 246, 0.14), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(125, 211, 252, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(59, 130, 246, 0.35);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.18), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(125, 211, 252, 0.2);
  color: var(--cyan);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px dashed var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 880px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-card {
  position: relative;
  padding: 1.65rem 1.45rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.08), 0 32px 64px -36px rgba(59, 130, 246, 0.45);
}

.price-badge {
  position: absolute;
  top: -11px;
  right: 1.25rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #041018;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.35rem;
}

.price-tag span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.price-desc {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: rgba(203, 213, 235, 0.82);
  font-size: 0.9rem;
  flex: 1;
}

.price-card li {
  margin-bottom: 0.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

details.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

details.faq-item summary {
  padding: 1.05rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
}

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

details.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}

details.faq-item[open] summary::after {
  content: "−";
}

details.faq-item .faq-body {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band {
  margin: clamp(2rem, 5vw, 3rem) 0;
  padding: clamp(2.25rem, 5vw, 3.25rem);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--stroke-bright);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.08) 45%, rgba(5, 8, 22, 0.85));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 211, 238, 0.18), transparent 55%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 48ch;
  color: rgba(226, 232, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

footer.site-footer {
  padding: 2.75rem 0 calc(2rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cyan);
}

/* --- File protocol warning --- */
.file-warning {
  position: relative;
  z-index: 50;
  margin: 0;
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  color: #fef08a;
  background: rgba(113, 63, 18, 0.35);
  border-bottom: 1px solid rgba(251, 191, 36, 0.35);
}

.file-warning strong {
  color: #fde047;
}

/* --- Marquee --- */
.marquee-wrap {
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  max-width: min(1140px, calc(100% - 2.5rem));
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-inner {
  display: flex;
  gap: 3rem;
  padding: 0.65rem 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner {
    animation: none;
    justify-content: center;
    width: auto;
    flex-wrap: wrap;
    padding: 0.85rem 1rem;
  }
}

.marquee-inner span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-inner span em {
  font-style: normal;
  color: var(--cyan);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Stats --- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stroke);
}

@media (max-width: 640px) {
  .stats-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.stat-item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* --- Value proposition panel --- */
.deploy-panel {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--stroke-bright);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.9), rgba(5, 8, 20, 0.95));
  overflow: hidden;
  box-shadow: 0 40px 80px -48px rgba(59, 130, 246, 0.4);
}

.deploy-panel-head {
  padding: 1.25rem 1.35rem 0.85rem;
  border-bottom: 1px solid var(--stroke);
}

.deploy-panel-head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.03em;
}

.deploy-panel-head p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 62ch;
}

.deploy-panel-head .value-lead {
  margin: 0.65rem 0 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 65ch;
}

.deploy-panel-head .value-lead strong {
  color: var(--text);
}

.value-grid {
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.35rem 1.35rem;
}

@media (min-width: 720px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.value-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.value-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.terminal {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.82rem;
  line-height: 1.55;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid var(--stroke);
  font-size: 0.72rem;
  color: var(--muted);
}

.terminal-body {
  padding: 1rem 1.15rem 1.2rem;
  background: rgba(2, 6, 18, 0.85);
  color: rgba(203, 213, 245, 0.92);
  overflow-x: auto;
}

.terminal-body .prompt {
  color: var(--cyan);
  user-select: none;
}

.terminal-body .hl {
  color: #fef08a;
}

.terminal-note {
  padding: 0.85rem 1.25rem 1.15rem;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.hero-glow {
  position: relative;
}

.hero-glow::before {
  content: "";
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.14), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.mock-frame.has-shade iframe {
  filter: saturate(1.06) contrast(1.02);
}
