:root {
  --bg: #0f172a;
  --bg-deep: #080d16;
  --panel: #172033;
  --panel-2: #1e293b;
  --line: #334155;
  --text: #cbd5e1;
  --muted: #94a3b8;
  --white: #f8fafc;
  --orange: #f97316;
  --orange-2: #fb923c;
  --green: #22c55e;
  --red: #ef4444;
  --shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: white;
  color: black;
  padding: .75rem 1rem;
  border-radius: .5rem;
}

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 2rem));
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-deep);
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(15, 23, 42, .9);
  border-bottom: 1px solid rgba(148, 163, 184, .16);
}

.nav-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--white);
}

.brand strong {
  color: var(--orange);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), #dc2626);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a,
.text-link {
  text-decoration: none;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 600;
}

.main-nav a:hover,
.text-link:hover {
  color: white;
}

.nav-actions {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: .9rem 1.2rem;
  font-weight: 800;
  transition: .2s ease;
  border: 1px solid transparent;
}

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

.button-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 12px 30px rgba(249, 115, 22, .22);
}

.button-primary:hover {
  background: #ea580c;
}

.button-secondary {
  background: var(--panel);
  border-color: #475569;
  color: white;
}

.button-secondary:hover {
  background: var(--panel-2);
}

.button-small {
  padding: .62rem .9rem;
  font-size: .9rem;
}

.full {
  width: 100%;
}

.hero {
  padding-top: 110px;
  overflow: hidden;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  right: -180px;
  top: 30px;
  background: rgba(249, 115, 22, .11);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow,
.badge,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fdba74;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow {
  padding: .4rem .65rem;
  border: 1px solid #374151;
  background: #172033;
  border-radius: 999px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(34, 197, 94, .7);
}

h1,
h2,
h3 {
  color: var(--white);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 1.1rem 0 1.2rem;
  letter-spacing: -.04em;
}

h1 span {
  color: var(--orange-2);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: .5rem 0 1rem;
  letter-spacing: -.025em;
}

h3 {
  margin: .4rem 0 .7rem;
}

.lead {
  font-size: 1.16rem;
  color: #aab8cc;
  max-width: 650px;
}

.lead-small {
  font-size: 1.08rem;
  color: #b6c2d3;
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
  color: #9aa9bc;
  font-size: .9rem;
}

.product-card {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1deg);
}

.product-card-top {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid #334155;
  background: #101827;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
}

.window-dot:nth-child(1) {
  background: #ef4444
}

.window-dot:nth-child(2) {
  background: #f59e0b
}

.window-dot:nth-child(3) {
  background: #22c55e
}

.window-title {
  margin-left: auto;
  font-size: .72rem;
  color: #64748b;
  font-weight: 800;
  letter-spacing: .08em;
}

.product-card-body {
  padding: 1.4rem;
}

.product-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #263247;
}

.product-head h2 {
  font-size: 1.4rem;
  margin: .2rem 0 0;
}

.right {
  text-align: right;
}

.small {
  font-size: .68rem;
}

.muted {
  color: var(--muted);
}

.formula-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: .8rem;
  padding: 1rem;
  border: 1px solid #334155;
  border-radius: 12px;
  background: #172033;
}

.formula-row div:first-child {
  display: flex;
  flex-direction: column;
}

.formula-row span {
  color: var(--muted);
  font-size: .8rem;
}

.alert-row {
  border-color: rgba(239, 68, 68, .55);
  background: rgba(127, 29, 29, .12);
}

.danger {
  color: #fca5a5 !important;
}

.mini-note {
  margin-top: 1rem;
  color: #7f8ea4;
  font-size: .78rem;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}

.feature-card .icon {
  font-size: 1.8rem;
  margin-bottom: .8rem;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.privacy-card {
  background: #0c1320;
  border: 1px solid #334155;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.privacy-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #243043;
}

.privacy-line:last-child {
  border-bottom: 0;
}

.privacy-line strong {
  color: #86efac;
}

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

.demo-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
}

.demo-card label {
  display: block;
  margin: 1.5rem 0 .7rem;
  color: #d5deea;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
}

.metric-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin: 1.5rem 0 1rem;
}

.metric-box.one {
  grid-template-columns: 1fr;
}

.metric-box>div {
  background: #0b111c;
  border: 1px solid #2a3547;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.metric-box span {
  font-size: .76rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}

.metric-box strong {
  color: white;
  font-size: 1.35rem;
  margin-top: .3rem;
}

.status {
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.status-ok {
  border: 1px solid rgba(34, 197, 94, .55);
  background: rgba(20, 83, 45, .22);
}

.status-ok strong {
  color: #86efac;
}

.status-bad {
  border: 1px solid rgba(239, 68, 68, .65);
  background: rgba(127, 29, 29, .22);
}

.status-bad strong {
  color: #fca5a5;
}

.bar-chart {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bar-item {
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  gap: .8rem;
}

.bar-track {
  height: 12px;
  background: #0b111c;
  border-radius: 99px;
  overflow: hidden;
}

.bar {
  height: 100%;
  border-radius: 99px;
}

.bar.base {
  background: #475569;
}

.bar.accent {
  background: var(--orange);
}

.pdf-section {
  background: linear-gradient(180deg, #101827, #0f172a);
}

.pdf-preview {
  background: #fff;
  color: #111827;
  min-height: 360px;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.pdf-header {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.pdf-header>div {
  display: flex;
  flex-direction: column;
}

.pdf-header>b {
  margin-left: auto;
  color: #15803d;
  font-size: .75rem;
}

.small-mark {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.pdf-line {
  height: 18px;
  background: #e5e7eb;
  margin-top: 1rem;
}

.pdf-line.thick {
  height: 28px;
}

.pdf-line.short {
  width: 65%;
}

.pdf-table {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  margin-top: .8rem;
  border: 1px solid #cbd5e1;
}

.pdf-table span {
  height: 38px;
  border-right: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
}

.disclaimer {
  margin-top: 1.2rem;
  padding: 1rem;
  border-left: 3px solid var(--orange);
  color: #9aa9bc;
  background: #111827;
  border-radius: 0 8px 8px 0;
}

.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
}

.price-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 22px 70px rgba(249, 115, 22, .14);
}

.recommended {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.price {
  font-size: 2.6rem;
  color: white;
  font-weight: 900;
  margin: .5rem 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  color: #d5deea;
}

.microcopy {
  font-size: .76rem !important;
  color: #7f8ea4 !important;
  text-align: center;
}

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

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}

summary {
  cursor: pointer;
  color: white;
  font-weight: 800;
}

details p {
  color: var(--muted);
  margin: .8rem 0 .2rem;
}

.final-cta {
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, .15), transparent 46%);
}

.final-cta p {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.site-footer {
  background: #05080f;
  border-top: 1px solid #1f2937;
  padding: 3rem 0 1.2rem;
}

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

.footer-grid p {
  color: #748297;
  font-size: .87rem;
}

.footer-grid a {
  color: #cbd5e1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #1f2937;
  padding-top: 1rem;
  margin-top: 2rem;
  color: #64748b;
  font-size: .78rem;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .split,
  .demo-grid,
  .pricing-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split {
    gap: 2.5rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    transform: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .nav-actions .text-link {
    display: none;
  }

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

  h1 {
    font-size: 2.65rem;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    font-size: .82rem;
  }

  .metric-box {
    grid-template-columns: 1fr;
  }

  .bar-item {
    grid-template-columns: 70px 1fr;
  }

  .bar-item b {
    grid-column: 2;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}