:root {
  --bg: #060910;
  --bg-soft: #0d1220;
  --bg-soft-2: #121933;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f3f6ff;
  --muted: #a8b0c4;
  --muted-2: #727b92;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #7c5cff;
  --accent-2: #31d7c5;
  --accent-3: #96a7ff;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --max: 1180px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #060910 0%, #080d18 36%, #060910 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  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: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 72%);
  opacity: 0.42;
}

.page-glow {
  position: fixed;
  pointer-events: none;
  z-index: -4;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
}

.page-glow-a {
  top: -150px;
  left: -120px;
  background: #7c5cff;
}

.page-glow-b {
  top: 40px;
  right: -180px;
  background: #31d7c5;
}

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

p {
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 6.5vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4rem);
}

h3 {
  font-size: 1.2rem;
}

img,
svg,
iframe {
  max-width: 100%;
  height: auto;
}

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

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  color: var(--accent-2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 18px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(18px);
  background: rgba(7, 10, 18, 0.68);
  border-bottom: 1px solid var(--line);
  transition: background 0.24s ease, box-shadow 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 10, 18, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(124, 92, 255, 0.18);
}

.brand-logo {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.brand-text {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  padding: 4px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

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

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
}

.hero-text {
  max-width: 680px;
  font-size: 1.15rem;
  margin-top: 22px;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-meta span {
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.035);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  will-change: transform;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  background-size: 180% 180%;
  color: white;
  box-shadow: 0 20px 50px rgba(124, 92, 255, 0.28);
  animation: gradientDrift 8s ease infinite;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 90%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}

.btn-shine:hover::before {
  left: 130%;
}

.full {
  width: 100%;
}

@keyframes gradientDrift {
  0%, 100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.interactive-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --x: 50%;
  --y: 50%;
}

.interactive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      320px circle at var(--x) var(--y),
      rgba(49, 215, 197, 0.11),
      transparent 45%
    );
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 0;
  pointer-events: none;
}

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

.interactive-card > * {
  position: relative;
  z-index: 1;
}

.tilt-card {
  transform-style: preserve-3d;
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.tilt-card:hover {
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.audit-snapshot,
.pdf-callout,
.benchmark-box,
.price-card,
.form-placeholder {
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.96), rgba(8, 13, 24, 0.82)) padding-box,
    linear-gradient(135deg, rgba(124, 92, 255, 0.45), rgba(49, 215, 197, 0.22), rgba(255, 255, 255, 0.08)) border-box;
}

.audit-snapshot {
  position: relative;
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.audit-snapshot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(49, 215, 197, 0.07) 46%,
      rgba(49, 215, 197, 0.16) 50%,
      rgba(49, 215, 197, 0.07) 54%,
      transparent 100%
    );
  transform: translateY(-120%);
  animation: scanSweep 5.5s ease-in-out infinite;
  opacity: 0.75;
}

@keyframes scanSweep {
  0%, 24% {
    transform: translateY(-120%);
  }

  46%, 54% {
    transform: translateY(0%);
  }

  76%, 100% {
    transform: translateY(120%);
  }
}

.snapshot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.snapshot-kicker {
  display: block;
  color: var(--accent-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 8px;
}

.snapshot-header h2 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -0.04em;
}

.snapshot-badge {
  display: inline-flex;
  border: 1px solid rgba(49, 215, 197, 0.35);
  color: var(--accent-2);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.snapshot-score-block {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(49, 215, 197, 0.12), transparent 30%),
    rgba(255,255,255,0.04);
  margin-bottom: 22px;
}

.snapshot-score strong {
  display: block;
  font-size: 5.4rem;
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.snapshot-score span {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}

.snapshot-summary p {
  font-size: 1.02rem;
}

.snapshot-metrics {
  display: grid;
  gap: 13px;
  margin-bottom: 22px;
}

.metric-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.metric-top strong {
  color: var(--text);
}

.metric-bar,
.screen-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.metric-bar i,
.screen-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left;
  animation: metricLoad 1.15s ease both;
}

@keyframes metricLoad {
  from {
    transform: scaleX(0);
    opacity: 0.45;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.snapshot-priorities {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255,255,255,0.035);
  margin-bottom: 18px;
}

.priority-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.priority-title span {
  color: var(--muted);
}

.priority-title strong {
  color: var(--text);
}

.snapshot-priorities ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.snapshot-priorities li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}

.snapshot-priorities li span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(49, 215, 197, 0.12);
  color: var(--accent-2);
  font-weight: 850;
  font-size: 0.82rem;
}

.snapshot-priorities li p {
  padding-top: 3px;
}

.snapshot-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.snapshot-footer a {
  color: var(--accent-2);
  font-weight: 800;
  position: relative;
}

.snapshot-footer a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

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

.signal-strip {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.028);
}

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

.signal-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.signal-item:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 215, 197, 0.3);
  background: rgba(255,255,255,0.06);
}

.signal-item span {
  display: block;
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
}

.signal-item p {
  font-size: 0.92rem;
}

.problem {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02), transparent);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.problem-copy h2 {
  margin-bottom: 20px;
}

.problem-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.card-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--accent-2);
  font-size: 0.8rem;
}

.problem-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.method {
  padding-top: 72px;
  padding-bottom: 72px;
}

.method-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.method-heading h2 {
  margin-bottom: 12px;
}

.method-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

.method-step {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(49, 215, 197, 0.08), transparent 30%),
    rgba(255,255,255,0.045);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.method-step:hover {
  transform: translateY(-5px);
  background:
    radial-gradient(circle at 20% 10%, rgba(49, 215, 197, 0.13), transparent 32%),
    rgba(255,255,255,0.062);
}

.method-step span {
  display: inline-flex;
  color: var(--accent-2);
  font-weight: 850;
  margin-bottom: 28px;
  position: relative;
}

.method-step span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.22s ease;
}

.method-step:hover span::after {
  width: 44px;
}

.method-step h3 {
  margin-bottom: 12px;
}

.method-arrow {
  display: grid;
  place-items: center;
  color: var(--accent-2);
  font-size: 1.4rem;
  opacity: 0.8;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

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

.feature-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.feature-card:hover,
.audit-snapshot:hover,
.report-main:hover,
.report-side-card:hover,
.method-step:hover,
.signal-item:hover,
.price-card:hover,
.form-placeholder:hover {
  border-color: rgba(49, 215, 197, 0.38);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.07);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(49, 215, 197, 0.42), transparent 38%),
    linear-gradient(135deg, rgba(124, 92, 255, 0.25), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.report-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.report-main,
.report-side-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.report-main:hover,
.report-side-card:hover {
  transform: translateY(-5px);
}

.report-main {
  grid-row: span 2;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.report-screen {
  min-height: 370px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    rgba(9, 13, 24, 0.6);
}

.screen-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
}

.screen-header-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  margin-bottom: 10px;
}

.screen-header-line.large {
  width: 58%;
}

.screen-header-line.medium {
  width: 38%;
  margin-bottom: 26px;
}

.screen-main-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
}

.screen-big-number {
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.screen-bars {
  display: grid;
  gap: 12px;
  align-content: start;
}

.screen-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.screen-mini-grid div {
  height: 72px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}

.report-copy {
  margin-top: 20px;
}

.preview-label {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--accent-2);
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.report-copy h3,
.report-side-card h3 {
  margin-bottom: 12px;
}

.report-side-card {
  min-height: 290px;
}

.mini-report-visual {
  height: 112px;
  border-radius: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}

.mini-report-visual::before,
.mini-report-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.visual-tech {
  background:
    linear-gradient(90deg, rgba(124,92,255,0.38), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 2px, transparent 2px 22px);
}

.visual-tech::before {
  left: 20px;
  top: 22px;
  width: 48px;
  height: 48px;
  background: rgba(49,215,197,0.45);
}

.visual-comm {
  background:
    linear-gradient(135deg, rgba(49,215,197,0.32), transparent),
    linear-gradient(rgba(255,255,255,0.11) 0 0) 20px 24px / 65% 10px no-repeat,
    linear-gradient(rgba(255,255,255,0.08) 0 0) 20px 50px / 45% 10px no-repeat,
    rgba(255,255,255,0.04);
}

.visual-arch {
  background:
    radial-gradient(circle at 50% 50%, rgba(124,92,255,0.4) 0 18%, transparent 19%),
    radial-gradient(circle at 25% 30%, rgba(49,215,197,0.28) 0 10%, transparent 11%),
    radial-gradient(circle at 75% 68%, rgba(255,255,255,0.18) 0 10%, transparent 11%),
    rgba(255,255,255,0.04);
}

.visual-roadmap {
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,0.16) 18% 20%, transparent 20%),
    linear-gradient(rgba(124,92,255,0.38) 0 0) 28% 28px / 56% 12px no-repeat,
    linear-gradient(rgba(49,215,197,0.34) 0 0) 28% 58px / 42% 12px no-repeat,
    linear-gradient(rgba(255,255,255,0.14) 0 0) 28% 88px / 66% 12px no-repeat,
    rgba(255,255,255,0.04);
}

.pdf-callout {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
}

.pdf-callout h3 {
  margin-bottom: 10px;
}

.benchmark-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-radius: 28px;
  padding: 34px;
}

.benchmark-copy h2 {
  margin-bottom: 16px;
}

.benchmark-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.tag {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 0.9rem;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.tag:hover {
  transform: translateY(-3px);
  border-color: rgba(49, 215, 197, 0.35);
  background: rgba(49, 215, 197, 0.07);
}

.beta-grid,
.order-box {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: stretch;
}

.beta-left {
  padding-right: 10px;
}

.beta-left h2,
.order-copy h2 {
  margin-bottom: 14px;
}

.process-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.mini-step {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  text-align: center;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

.mini-step:hover {
  transform: translateY(-3px);
  border-color: rgba(49, 215, 197, 0.28);
}

.mini-step span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 800;
}

.mini-step p {
  font-size: 0.88rem;
}

.price-card,
.form-placeholder {
  padding: 28px;
  border-radius: 24px;
}

.price-label {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.price-card strong {
  display: block;
  font-size: 3.2rem;
  letter-spacing: -0.06em;
  margin-bottom: 4px;
}

.old-price {
  display: block;
  color: var(--muted-2);
  text-decoration: line-through;
  margin-bottom: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.045);
}

summary {
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 14px;
}

.form-placeholder h3 {
  margin-bottom: 10px;
}

.form-placeholder .btn {
  margin-top: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links a {
  position: relative;
}

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

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .problem-grid,
  .benchmark-box,
  .beta-grid,
  .order-box {
    grid-template-columns: 1fr;
  }

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

  .method-flow {
    grid-template-columns: 1fr;
  }

  .method-arrow {
    transform: rotate(90deg);
    min-height: 18px;
  }

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

  .report-main {
    grid-column: span 2;
    min-height: 520px;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }

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

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .feature-grid,
  .signal-grid,
  .report-grid,
  .process-mini {
    grid-template-columns: 1fr;
  }

  .report-main {
    grid-column: auto;
    min-height: auto;
  }

  .snapshot-score-block,
  .screen-main-row {
    grid-template-columns: 1fr;
  }

  .snapshot-score strong,
  .screen-big-number {
    font-size: 4.5rem;
  }

  .screen-mini-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions .btn,
  .section-actions .btn {
    width: 100%;
  }

  .pdf-callout {
    grid-template-columns: 1fr;
  }

  .pdf-callout .btn {
    width: 100%;
  }

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

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 200;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(49, 215, 197, 0.34);
    background:
      linear-gradient(135deg, rgba(124, 92, 255, 0.92), rgba(49, 215, 197, 0.86));
    box-shadow:
      0 22px 70px rgba(0, 0, 0, 0.46),
      0 0 0 1px rgba(255,255,255,0.08) inset;
    backdrop-filter: blur(18px);
    color: white;
    font-weight: 850;
  }

  .mobile-sticky-cta span {
    font-size: 0.96rem;
  }

  .mobile-sticky-cta strong {
    font-size: 0.92rem;
    opacity: 0.92;
  }

  .audit-snapshot::after {
    animation-duration: 7s;
    opacity: 0.5;
  }

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

@media (prefers-reduced-motion: reduce) {
  .audit-snapshot::after,
  .btn-primary,
  .metric-bar i,
  .screen-bar i,
  .mobile-sticky-cta {
    animation: none;
  }

  .reveal {
    transition: none;
  }
}

/* Legal pages */

.legal-page {
  padding-top: 118px;
  padding-bottom: 110px;
}

.legal-page .section-heading {
  max-width: 920px;
  margin-bottom: 28px;
}

.legal-page .section-heading h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 18px;
}

.legal-page .section-heading p {
  max-width: 720px;
  font-size: 1.05rem;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid transparent;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.97), rgba(8, 13, 24, 0.86)) padding-box,
    linear-gradient(135deg, rgba(124, 92, 255, 0.38), rgba(49, 215, 197, 0.2), rgba(255, 255, 255, 0.06)) border-box;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  position: relative;
  overflow: hidden;
}

.legal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 0%, rgba(124, 92, 255, 0.11), transparent 34%),
    radial-gradient(circle at 100% 6%, rgba(49, 215, 197, 0.09), transparent 28%);
  opacity: 0.9;
}

.legal-content > * {
  position: relative;
  z-index: 1;
}

.legal-content p:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 28px;
  border-radius: 999px;
  border: 1px solid rgba(49, 215, 197, 0.22);
  background: rgba(49, 215, 197, 0.055);
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content h2 {
  font-size: clamp(1.28rem, 2.2vw, 1.85rem);
  margin-top: 42px;
  margin-bottom: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  letter-spacing: -0.035em;
}

.legal-content h2:first-of-type {
  margin-top: 10px;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  max-width: 760px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 1rem;
}

.legal-content strong {
  color: var(--text);
  font-weight: 800;
}

.legal-content a {
  color: var(--accent-2);
  font-weight: 750;
  position: relative;
}

.legal-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.legal-content a:hover::after {
  transform: scaleX(1);
}

.legal-backlink {
  margin-top: 46px;
}

.legal-backlink a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.legal-backlink a:hover {
  background: rgba(49, 215, 197, 0.07);
  border-color: rgba(49, 215, 197, 0.32);
}

@media (max-width: 760px) {
  .legal-page {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .legal-content {
    padding: 22px;
    border-radius: 24px;
  }

  .legal-content h2 {
    margin-top: 34px;
    padding-top: 22px;
  }

  .legal-content p {
    font-size: 0.96rem;
  }

  .legal-content p:first-child {
    display: flex;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
  }
}

.form-popup-card {
  position: relative;
  overflow: hidden;

  max-width: 760px;
  margin: 0 auto;

  padding: 56px 52px;

  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);

  text-align: center;

  box-shadow:
    0 12px 40px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.popup-glow {
  position: absolute;
  inset: auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(255,140,0,0.18),
    transparent 70%
  );
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,140,0,0.12);
  border: 1px solid rgba(255,140,0,0.25);
  color: #ffb15c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.form-popup-card h3 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.form-popup-card p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
}

.popup-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;

  margin: 34px 0 30px;
}

.popup-features span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.tally-trigger {
  width: auto;
  min-width: 320px;
}

.popup-note {
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.62;
}

@media (max-width: 768px) {
  .form-popup-card {
    padding: 34px 24px;
  }

  .popup-features {
    flex-direction: column;
    align-items: center;
  }

  .tally-trigger {
    width: 100%;
    min-width: unset;
  }

  .form-popup-card h3 {
    font-size: 30px;
  }
}


/* SIGEL v3 additions: archetypes, agency, engine, services */

.archetype-core {
  padding-top: 92px;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 15% 0%, rgba(124, 92, 255, 0.12), transparent 32%),
    radial-gradient(circle at 82% 30%, rgba(49, 215, 197, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent);
}

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

.core-card {
  min-height: 280px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.96), rgba(8, 13, 24, 0.78)) padding-box,
    linear-gradient(135deg, rgba(124, 92, 255, 0.42), rgba(49, 215, 197, 0.24), rgba(255,255,255,0.07)) border-box;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.core-card:hover {
  transform: translateY(-5px);
}

.core-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 28px;
  background: rgba(49, 215, 197, 0.11);
  color: var(--accent-2);
  font-weight: 900;
  border: 1px solid rgba(49, 215, 197, 0.24);
}

.core-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.engine-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.engine-box,
.agency-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid transparent;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.96), rgba(8, 13, 24, 0.82)) padding-box,
    linear-gradient(135deg, rgba(124, 92, 255, 0.42), rgba(49, 215, 197, 0.24), rgba(255,255,255,0.06)) border-box;
  box-shadow: var(--shadow);
}

.engine-copy h2,
.agency-copy h2 {
  margin-bottom: 16px;
}

.engine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.engine-grid span {
  display: inline-flex;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 0.92rem;
}

.agency-section {
  padding-top: 82px;
  padding-bottom: 82px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.018), transparent);
}

.agency-copy p + p {
  margin-top: 14px;
}

.agency-points {
  display: grid;
  gap: 14px;
}

.agency-points div {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
}

.agency-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.services-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

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

.service-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 215, 197, 0.35);
  background: rgba(255,255,255,0.066);
}

.service-card span {
  display: inline-flex;
  color: var(--accent-2);
  font-weight: 900;
  margin-bottom: 24px;
}

.service-card h3 {
  margin-bottom: 12px;
}

@media (max-width: 1080px) {
  .core-grid,
  .engine-box,
  .agency-box,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .engine-box,
  .agency-box {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .core-grid,
  .engine-box,
  .agency-box,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .core-card,
  .engine-box,
  .agency-box,
  .service-card {
    border-radius: 24px;
  }

  .engine-box,
  .agency-box {
    padding: 24px;
  }
}


/* Solution cards + responsive detail modals */

.solution-section {
  padding-top: 88px;
  padding-bottom: 88px;
  background:
    radial-gradient(circle at 12% 0%, rgba(124, 92, 255, 0.08), transparent 34%),
    radial-gradient(circle at 88% 24%, rgba(49, 215, 197, 0.06), transparent 30%);
}

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

.solution-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 8%, rgba(49, 215, 197, 0.075), transparent 30%),
    rgba(255,255,255,0.045);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 215, 197, 0.38);
  background:
    radial-gradient(circle at 20% 8%, rgba(49, 215, 197, 0.11), transparent 32%),
    rgba(255,255,255,0.065);
}

.solution-label {
  display: inline-flex;
  color: var(--accent-2);
  font-weight: 850;
  margin-bottom: 22px;
  letter-spacing: 0.08em;
}

.solution-card h3 {
  margin-bottom: 12px;
}

.solution-card p {
  margin-bottom: 22px;
}

.btn-mini,
.text-link {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  color: var(--accent-2);
  background: transparent;
  padding: 0;
  font-weight: 850;
}

.btn-mini {
  margin-top: auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(49, 215, 197, 0.28);
  background: rgba(49, 215, 197, 0.065);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn-mini:hover,
.btn-mini:focus-visible {
  transform: translateY(-2px);
  background: rgba(49, 215, 197, 0.11);
  border-color: rgba(49, 215, 197, 0.44);
}

.text-link {
  margin-top: 18px;
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.modal-opened {
  overflow: hidden;
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-layer.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(124, 92, 255, 0.18), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(49, 215, 197, 0.13), transparent 28%),
    rgba(3, 5, 10, 0.78);
  backdrop-filter: blur(18px);
}

.sigel-modal {
  position: relative;
  z-index: 1;
  display: none;
  width: min(720px, 100%);
  max-height: min(82vh, 780px);
  overflow: auto;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 32px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.98), rgba(8, 13, 24, 0.91)) padding-box,
    linear-gradient(135deg, rgba(124, 92, 255, 0.5), rgba(49, 215, 197, 0.28), rgba(255, 255, 255, 0.08)) border-box;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255,255,255,0.03) inset;
}

.sigel-modal.is-open {
  display: block;
  animation: modalIn 0.22s ease both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: -10px;
  margin-right: -10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  transform: translateY(-1px);
  background: rgba(49, 215, 197, 0.1);
  border-color: rgba(49, 215, 197, 0.36);
}

.modal-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.sigel-modal h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  margin-bottom: 18px;
  padding-right: 34px;
}

.sigel-modal p {
  font-size: 1.02rem;
  max-width: 620px;
}

.sigel-modal ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sigel-modal li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.sigel-modal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 1080px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 0;
  }

  .modal-layer {
    align-items: flex-end;
    padding: 10px;
  }

  .sigel-modal {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 28px;
    padding: 28px 22px 24px;
  }

  .sigel-modal h2 {
    padding-right: 0;
  }

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

  .modal-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sigel-modal.is-open {
    animation: none;
  }
}
