:root {
  --bg: #05070b;
  --panel: rgba(11, 16, 28, 0.82);
  --panel-strong: rgba(10, 16, 27, 0.96);
  --text: #f8fafc;
  --muted: #9aa8bd;
  --line: rgba(148, 163, 184, 0.16);
  --blue: #0b8dff;
  --deep-blue: #0f46ff;
  --purple: #7b3ff2;
  --pink: #f2439c;
  --orange: #ff7a18;
  --green: #46e6a3;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --max: 1180px;
  --brand-gradient: linear-gradient(
    100deg,
    var(--deep-blue),
    var(--blue) 28%,
    var(--purple) 52%,
    var(--pink) 70%,
    var(--orange) 92%
  );
}

* {
  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 18% 4%, rgba(11, 141, 255, 0.24), transparent 30%),
    radial-gradient(circle at 86% 9%, rgba(255, 122, 24, 0.18), transparent 32%),
    radial-gradient(circle at 55% 88%, rgba(123, 63, 242, 0.18), transparent 34%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.background-glow::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: 70px 70px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(86px);
  opacity: 0.3;
}

.glow.one {
  top: 80px;
  left: -170px;
  background: var(--blue);
}

.glow.two {
  top: 420px;
  right: -150px;
  background: var(--orange);
}

.glow.three {
  bottom: -180px;
  left: 30%;
  background: var(--purple);
  opacity: 0.18;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 11, 0.76);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 22px;
}

.brand-logo {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(11, 141, 255, 0.28));
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.footer-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: white;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  color: white;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 2px;
}

.mobile-panel {
  display: none;
  padding: 0 0 18px;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.09);
  color: #cbd5e1;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 18px;
  padding: 14px 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: var(--brand-gradient);
  box-shadow:
    0 18px 48px rgba(255, 122, 24, 0.18),
    0 10px 34px rgba(11, 141, 255, 0.18);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: white;
  background: rgba(15, 23, 42, 0.72);
}

.btn-small {
  padding: 11px 16px;
  border-radius: 15px;
  font-size: 0.9rem;
}

.hero {
  padding: 92px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 122, 24, 0.3);
  border-radius: 999px;
  color: #ffe0cc;
  background: linear-gradient(90deg, rgba(11, 141, 255, 0.1), rgba(255, 122, 24, 0.1));
  font-weight: 900;
  font-size: 0.86rem;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(70, 230, 163, 0.12);
}

h1 {
  margin: 24px 0 0;
  font-size: clamp(3.1rem, 6vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 26px 0 0;
  max-width: 650px;
  color: #cbd5e1;
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.microcopy {
  margin-top: 17px;
  color: #718096;
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(8, 13, 24, 0.68);
  box-shadow:
    0 30px 110px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(11, 141, 255, 0.16);
  padding: 8px;
  overflow: hidden;
  transform: scale(1.035);
  transform-origin: center right;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 35px;
  padding: 1px;
  background: var(--brand-gradient);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.75;
  pointer-events: none;
}

.hero-visual img {
  border-radius: 26px;
  width: 100%;
  height: auto;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
  max-width: 760px;
}

.proof-item {
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.55);
  border-radius: 18px;
  padding: 14px;
}

.proof-item strong {
  display: block;
  font-size: 1rem;
}

.proof-item span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
  line-height: 1.55;
}

section {
  padding: 76px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--orange);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  margin-bottom: 12px;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.section-copy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.demo-wrap,
.workflow,
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.bundle-demo {
  align-items: stretch;
}

.demo-copy,
.workflow-panel,
.pricing-card,
.plan-card,
.trust-card,
.faq-item,
.app-shot,
.settings-shot {
  padding: 34px;
}

.demo-image-card {
  padding: 8px;
  overflow: hidden;
  border-color: rgba(255, 122, 24, 0.28);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.32),
    0 0 55px rgba(255, 122, 24, 0.1);
}

.demo-image-card img,
.settings-shot img,
.app-shot img {
  border-radius: 22px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.demo-bullets,
.check-list,
.faq-grid,
.step-list {
  display: grid;
  gap: 13px;
}

.demo-bullets {
  margin: 24px 0 0;
}

.demo-bullet,
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #dbeafe;
  font-weight: 750;
}

.demo-bullet::before,
.check::before {
  content: "+";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 122, 24, 0.14);
  font-weight: 1000;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 26px;
  min-height: 248px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.18), transparent 65%);
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(11, 141, 255, 0.18), rgba(255, 122, 24, 0.13));
  color: white;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card h3,
.pricing-card h3,
.faq-item h3,
.trust-card h3,
.plan-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.faq-item p,
.trust-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 12px 0 0;
  font-size: 0.94rem;
}

.workflow-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.1);
  font-weight: 850;
}

.step-num {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: var(--brand-gradient);
  font-weight: 1000;
  box-shadow: 0 10px 24px rgba(255, 122, 24, 0.18);
}

.app-gallery,
.settings-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.shot-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.72);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 122, 24, 0.32);
}

.pricing-card::after,
.plan-card.featured::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.24), rgba(11, 141, 255, 0.12), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.pricing-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #dbeafe;
}

.email-input-row {
  display: flex;
  gap: 12px;
}

.email-input-row input {
  flex: 1 1 auto;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(8, 13, 24, 0.72);
  color: var(--text);
  padding: 0 16px;
  font-size: 1rem;
}

.helper-text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.helper-text.error {
  color: #ffb5b5;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  gap: 12px;
}

.plan-tier {
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.price strong {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.055em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 8px;
}

.price span {
  color: var(--muted);
  padding-bottom: 8px;
}

.price-custom {
  align-items: baseline;
  gap: 10px 12px;
}

.price-custom span {
  padding-bottom: 0;
  font-size: 1.2rem;
}

.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.16);
  color: #ffd2ad;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 16px;
}

.plan-card .btn {
  margin-top: auto;
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.plan-card .section-copy {
  margin-top: 6px;
  font-size: 0.98rem;
}

.check-list {
  gap: 12px;
  margin-top: 4px;
}

.check {
  font-size: 0.98rem;
  line-height: 1.35;
}

.trust-section {
  padding-top: 0;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.install-card {
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.install-card h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.install-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.install-meta {
  color: #dbeafe;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.6;
}

.install-card .btn {
  margin-top: auto;
  width: 100%;
  min-height: 56px;
}

.btn-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.trust-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  margin: 30px 0 18px;
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
  border-radius: 0 22px 22px 0;
  background: rgba(18, 33, 50, 0.9);
  color: #fff;
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.35;
  font-weight: 700;
}

.cta {
  padding: 88px 0;
}

.cta-box {
  border: 1px solid rgba(255, 122, 24, 0.24);
  border-radius: 34px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(11, 141, 255, 0.16), rgba(123, 63, 242, 0.1), rgba(255, 122, 24, 0.12)),
    rgba(12, 18, 29, 0.76);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding: 34px 0;
  color: #748197;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.92rem;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-legal {
  color: #748197;
  font-size: 0.84rem;
}

.footer-logo {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(255, 122, 24, 0.18));
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
}

.simple-hero {
  padding: 72px 0 34px;
}

.simple-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.simple-hero .lead {
  max-width: 760px;
  margin-top: 18px;
}

.content-stack {
  display: grid;
  gap: 20px;
  padding-bottom: 72px;
}

.content-card {
  padding: 30px 32px;
}

.content-card h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  letter-spacing: -0.04em;
}

.content-card h3 {
  margin: 24px 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.content-card p,
.content-card li {
  color: #d2dbea;
  font-size: 1rem;
  line-height: 1.75;
}

.content-card p {
  margin: 12px 0 0;
}

.content-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.content-card li + li {
  margin-top: 8px;
}

.support-email-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.email-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-weight: 800;
}

.mini-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .plan-grid,
  .install-grid,
  .feature-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .workflow,
  .pricing-wrap,
  .cta-box,
  .demo-wrap,
  .app-gallery,
  .settings-gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-visual {
    transform: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    height: 76px;
  }

  .brand-logo,
  .footer-logo {
    width: 205px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions .btn,
  .email-input-row,
  .email-input-row .btn,
  .cta-box .btn {
    width: 100%;
  }

  .email-input-row {
    flex-direction: column;
  }

  .proof-strip,
  .feature-grid,
  .plan-grid,
  .install-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }

  .workflow-panel,
  .pricing-card,
  .install-card,
  .cta-box,
  .demo-copy,
  .plan-card,
  .trust-card,
  .faq-item,
  .app-shot,
  .settings-shot {
    padding: 24px;
    border-radius: 26px;
  }

  .price strong {
    font-size: 3.35rem;
    padding-right: 8px;
  }

  .footer-row {
    align-items: flex-start;
  }

  .content-card {
    padding: 24px;
  }

  .simple-hero {
    padding: 56px 0 24px;
  }
}
