:root {
  --bg: #040813;
  --bg-soft: #08101e;
  --bg-card: rgba(10, 17, 30, 0.9);
  --bg-card-strong: rgba(8, 13, 23, 0.96);
  --surface-light: #f8f7f4;
  --surface-light-strong: #ffffff;
  --ink: #0b1220;
  --ink-soft: #4d5a70;
  --text: #f5f7fb;
  --text-soft: #a8b4c8;
  --gold: #f2b94b;
  --gold-strong: #c98618;
  --gold-soft: rgba(242, 185, 75, 0.18);
  --blue: #2b74ff;
  --blue-soft: rgba(43, 116, 255, 0.22);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(242, 185, 75, 0.32);
  --line-light: rgba(10, 18, 31, 0.08);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-light: 0 18px 60px rgba(5, 18, 43, 0.08);
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-xl: 46px;
  --container: min(1180px, calc(100% - 24px));
  --section-space: clamp(4.5rem, 7vw, 7rem);
  --card-padding: clamp(1.2rem, 3vw, 1.7rem);
  --wave-lines: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 720' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop stop-color='%23004dff'/%3E%3Cstop offset='0.55' stop-color='%23158cff'/%3E%3Cstop offset='1' stop-color='%2367c2ff'/%3E%3C/linearGradient%3E%3Cfilter id='b'%3E%3CfeGaussianBlur stdDeviation='7'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M-120 600 C 180 420 350 690 690 520 S 1280 410 1710 510' stroke='url(%23g)' stroke-width='10' fill='none' opacity='.95' filter='url(%23b)'/%3E%3Cpath d='M-90 628 C 250 500 425 735 770 565 S 1340 455 1710 552' stroke='%23008bff' stroke-width='2' fill='none' opacity='.96'/%3E%3Cpath d='M-120 666 C 220 580 430 770 850 620 S 1320 565 1705 650' stroke='%232e6cff' stroke-width='2' fill='none' opacity='.78'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(21, 81, 255, 0.18), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(55, 144, 255, 0.18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(7, 48, 165, 0.16), transparent 34%),
    linear-gradient(180deg, #040813 0%, #07101c 36%, #050912 70%, #040711 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 92%);
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
input,
summary {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
strong {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 10px 0;
  backdrop-filter: none;
  background: transparent;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(10, 17, 30, 0.9), rgba(7, 12, 22, 0.72));
  box-shadow: 0 18px 44px rgba(3, 9, 22, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand span {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

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

.button-primary {
  color: #171106;
  background: linear-gradient(135deg, #ffd978, #eca32a);
  box-shadow: 0 18px 34px rgba(242, 185, 75, 0.22);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.button-large {
  min-height: 60px;
  padding-inline: 26px;
  font-size: 1rem;
}

.button-full {
  width: 100%;
}

.button-compact {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.88rem;
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 76px;
  left: 12px;
  right: 12px;
  z-index: 55;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(10, 17, 30, 0.98), rgba(7, 12, 22, 0.98)),
    radial-gradient(circle at top, rgba(242, 185, 75, 0.12), transparent 52%);
  box-shadow: var(--shadow-dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a:not(.button) {
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 700;
}

.mobile-menu a:not(.button):hover,
.mobile-menu a:not(.button):focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-promo {
  position: relative;
  display: grid;
  gap: 7px;
  margin: 4px 0 2px;
  padding: 18px 16px 16px !important;
  overflow: hidden;
  border: 1px solid rgba(242, 185, 75, 0.28);
  border-radius: 20px !important;
  background:
    radial-gradient(circle at top right, rgba(242, 185, 75, 0.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(43, 116, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(17, 27, 45, 0.98), rgba(8, 13, 23, 0.98));
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
}

.mobile-menu-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 24%, rgba(255, 255, 255, 0.12) 42%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%);
  opacity: 0.8;
  pointer-events: none;
}

.mobile-menu-promo:hover,
.mobile-menu-promo:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 217, 120, 0.54);
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 217, 120, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 185, 75, 0.28), transparent 36%),
    radial-gradient(circle at bottom left, rgba(43, 116, 255, 0.22), transparent 46%),
    linear-gradient(145deg, rgba(19, 30, 49, 1), rgba(8, 13, 23, 1));
}

.mobile-menu-promo > * {
  position: relative;
  z-index: 1;
}

.mobile-menu-promo__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8c6c, #ff4d6d);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 22px rgba(255, 77, 109, 0.22);
}

.mobile-menu-promo__eyebrow {
  color: #f8d980;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu-promo strong {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.mobile-menu-promo__copy {
  color: #d6dfed;
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 600;
  max-width: 28ch;
}

.hero,
.dashboard-section,
.value-section,
.testimonials-section,
.final-cta {
  position: relative;
  isolation: isolate;
}

.hero-wave::before,
.hero-wave::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  pointer-events: none;
  z-index: -1;
}

.hero-wave::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(12, 75, 255, 0.24), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(80, 164, 255, 0.16), transparent 24%);
}

.hero-wave::after {
  left: -6%;
  right: -6%;
  bottom: 0;
  height: 78%;
  background: var(--wave-lines) bottom center / cover no-repeat;
  opacity: 0.9;
}

.hero {
  padding: 22px 0 18px;
}

.hero-grid {
  display: grid;
  gap: 20px;
}

.hero-copy {
  display: grid;
  gap: 0;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pill-badge--dark,
.pill-badge--outline {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
}

.pill-badge--light {
  border: 1px solid rgba(201, 134, 24, 0.18);
  background: rgba(242, 185, 75, 0.08);
  color: var(--gold-strong);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(242, 185, 75, 0.65);
}

h1,
h2,
h3 {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 11ch;
  margin-top: 16px;
  font-size: clamp(2.5rem, 10vw, 4.9rem);
  line-height: 0.98;
}

.hero-lead,
.dashboard-copy > p,
.value-copy p,
.testimonial-card p,
.trust-block p,
.faq-item p,
.final-cta-card p,
.site-footer p {
  color: var(--text-soft);
  line-height: 1.68;
}

.hero-lead {
  max-width: 56ch;
  margin-top: 18px;
  font-size: clamp(1rem, 3.2vw, 1.1rem);
}

.hero-cta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.micro-trust {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.micro-trust li {
  position: relative;
  padding-left: 20px;
  color: #d4dbe7;
  font-size: 0.95rem;
  font-weight: 600;
}

.micro-trust li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(242, 185, 75, 0.48);
}

.hero-visual-wrap {
  position: relative;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(300px, 82vw, 540px);
  border-radius: 34px;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 34px 50px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 24px rgba(43, 116, 255, 0.18));
}

.hero-metrics {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.metric-card,
.dashboard-benefit,
.testimonial-card,
.trust-block,
.value-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.92), rgba(9, 13, 22, 0.98));
  box-shadow: var(--shadow-dark);
}

.metric-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(242, 185, 75, 0.22);
  background: rgba(242, 185, 75, 0.08);
  color: var(--gold);
}

.metric-icon svg,
.process-icon svg,
.step-icon svg,
.feature-icon svg,
.tool-point__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-card strong {
  font-size: 1.1rem;
}

.metric-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.62;
}

.section-shell {
  padding: var(--section-space) 0 0;
}

.section-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: clamp(32px, 5vw, 52px);
  background: linear-gradient(180deg, var(--surface-light-strong), var(--surface-light));
  box-shadow: var(--shadow-light);
}

.section-card--narrow {
  max-width: 980px;
}

.section-heading {
  display: grid;
  gap: 12px;
}

.section-heading p {
  max-width: 60ch;
  color: var(--ink-soft);
  line-height: 1.68;
}

.section-heading--center {
  justify-items: center;
  text-align: center;
}

.section-accent {
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading h2,
.dashboard-copy h2,
.value-copy h2,
.final-cta-card h2 {
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1.02;
}

.section-card h2,
.section-card h3,
.section-card p,
.section-card li,
.section-card summary,
.feature-card h3,
.feature-card p {
  color: var(--ink);
}

.section-card p,
.feature-card p,
.faq-item p {
  line-height: 1.65;
}

.process-grid,
.feature-grid,
.pricing-grid,
.testimonial-grid,
.trust-blocks {
  display: grid;
  gap: 16px;
}

.process-grid,
.feature-grid,
.pricing-grid {
  margin-top: 26px;
}

.process-card,
.feature-card,
.pricing-card {
  display: grid;
  gap: 14px;
  padding: var(--card-padding);
  border-radius: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(15, 31, 60, 0.07);
}

.process-icon,
.step-icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-icon {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: #0b1220;
  color: var(--gold);
}

.process-card h3,
.step-card h3,
.dashboard-benefit h3,
.feature-card h3,
.value-item h3,
.testimonial-card strong,
.pricing-card h3,
.faq-panel h2 {
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  line-height: 1.08;
}

.mini-ui {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(10, 18, 31, 0.08);
  background: rgba(245, 247, 251, 0.92);
}

.mini-ui span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.mini-ui strong {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.mini-ui-pill {
  width: fit-content;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  color: #146d35;
  background: rgba(42, 196, 104, 0.12);
}

.mini-ui--risk {
  grid-template-columns: 1fr auto;
}

.mini-bar {
  grid-column: 1 / -1;
  height: 8px;
  border-radius: 999px;
  background: rgba(14, 25, 41, 0.08);
  overflow: hidden;
}

.mini-bar span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #41d478, #7be989);
}

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

.mini-chart {
  height: 52px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(43, 116, 255, 0.04), rgba(43, 116, 255, 0)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 280 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 C 28 44 36 22 64 28 S 102 52 130 39 S 175 15 198 28 S 232 58 280 20' stroke='%232b74ff' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
      center / cover no-repeat;
}

.steps-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(15, 31, 60, 0.06);
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #0b1220;
  color: var(--gold);
}

.step-content {
  display: grid;
  gap: 10px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(242, 185, 75, 0.18);
  color: var(--gold-strong);
  font-size: 0.95rem;
  font-weight: 800;
}

.step-arrow {
  width: 1px;
  height: 34px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(201, 134, 24, 0.18), rgba(201, 134, 24, 0.56));
}

.step-arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 22px 0 0 -4.5px;
  border-right: 2px solid rgba(201, 134, 24, 0.8);
  border-bottom: 2px solid rgba(201, 134, 24, 0.8);
  transform: rotate(45deg);
}

.dashboard-section {
  padding: var(--section-space) 0 0;
}

.dashboard-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}

.dashboard-copy {
  display: grid;
  gap: 16px;
}

.dashboard-copy h2,
.value-copy h2,
.final-cta-card h2,
.section-heading--light h2 {
  color: #ffffff;
}

.dashboard-benefits {
  display: grid;
  gap: 10px;
}

.dashboard-benefit {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0 14px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dashboard-benefit::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(242, 185, 75, 0.92), rgba(92, 134, 245, 0.22));
}

.dashboard-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.dashboard-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.dashboard-benefit__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-benefit h3 {
  font-size: 1.14rem;
  line-height: 1.1;
  color: #f8fafc;
}

.dashboard-benefit p,
.value-item p {
  font-size: 0.96rem;
}

.section-footnote {
  color: #d4dbe7;
  font-size: 0.95rem;
}

.dashboard-visual {
  margin: 0;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 18px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 72% 18%, rgba(37, 114, 255, 0.18), transparent 22%),
    radial-gradient(circle at 25% 72%, rgba(242, 185, 75, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(8, 13, 23, 0.34), rgba(8, 13, 23, 0.08));
}

.dashboard-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  height: auto;
  filter:
    drop-shadow(0 34px 60px rgba(0, 0, 0, 0.56))
    drop-shadow(0 0 20px rgba(43, 116, 255, 0.16));
}

.tools-grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

.tools-section-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3.2vw, 2.2rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(43, 116, 255, 0.08), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(220, 38, 38, 0.05), transparent 24%),
    linear-gradient(180deg, #ffffff, #f5f7fb);
}

.tools-section-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(43, 116, 255, 0.06), transparent 24%, transparent 76%, rgba(220, 38, 38, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 18%);
}

.tools-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.tools-copy h2 {
  color: var(--ink);
  font-size: clamp(1.72rem, 5.2vw, 2.65rem);
  line-height: 1.05;
}

.tools-copy > p {
  max-width: 56ch;
  color: #5b677b;
  font-size: 0.98rem;
  line-height: 1.62;
}

.tools-list {
  display: grid;
  gap: 10px;
}

.tool-point {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(10, 18, 31, 0.07);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 246, 251, 0.94));
  box-shadow:
    0 12px 24px rgba(15, 31, 60, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.tool-point::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: rgba(122, 138, 164, 0.28);
}

.tool-point--blue::before {
  background: linear-gradient(180deg, rgba(43, 116, 255, 0.9), rgba(96, 165, 250, 0.5));
}

.tool-point--red::before {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.92), rgba(248, 113, 113, 0.48));
}

.tool-point--gold::before {
  background: linear-gradient(180deg, rgba(242, 185, 75, 0.96), rgba(242, 185, 75, 0.4));
}

.tool-point--ink::before {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(59, 130, 246, 0.24));
}

.tool-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(180deg, #0d1728, #121d31);
  color: #dbe6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tool-point--blue .tool-point__icon {
  color: #8cc2ff;
  background: linear-gradient(180deg, #102142, #12284d);
}

.tool-point--red .tool-point__icon {
  color: #ffb0b0;
  background: linear-gradient(180deg, #35131a, #45141b);
}

.tool-point--gold .tool-point__icon {
  color: #f6d28a;
  background: linear-gradient(180deg, #271e0f, #34250f);
}

.tool-point--ink .tool-point__icon {
  color: #c9d4e6;
}

.tool-point h3 {
  font-size: 0.98rem;
  line-height: 1.12;
  color: #111827;
}

.tool-point p {
  margin-top: 4px;
  color: #5b677b;
  font-size: 0.87rem;
  line-height: 1.52;
}

.tools-actions {
  display: grid;
  gap: 10px;
}

.section-footnote--dark {
  color: #66748a;
  font-size: 0.84rem;
  line-height: 1.48;
}

.tool-preview {
  position: relative;
  z-index: 1;
  display: grid;
}

.tool-preview__card {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.45rem);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 14%, rgba(54, 124, 255, 0.24), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(95, 167, 255, 0.16), transparent 20%),
    radial-gradient(circle at 82% 82%, rgba(8, 15, 30, 0.42), transparent 22%),
    linear-gradient(180deg, #0b1530 0%, #0d1934 46%, #0a1224 100%);
  box-shadow:
    0 26px 54px rgba(2, 8, 22, 0.34),
    0 10px 24px rgba(4, 10, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tool-preview__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(6, 11, 22, 0), rgba(6, 11, 22, 0.3));
}

.tool-preview__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(118, 182, 255, 0.46), rgba(255, 255, 255, 0.12), rgba(118, 182, 255, 0.28));
  pointer-events: none;
}

.tool-preview__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tool-preview__eyebrow {
  color: #c7d9f4;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tool-preview__head h3 {
  margin-top: 6px;
  color: #ffffff;
  font-size: clamp(1.16rem, 3.8vw, 1.58rem);
  line-height: 1.06;
}

.tool-preview__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(135, 180, 255, 0.18);
  border-radius: 999px;
  background: rgba(86, 143, 255, 0.12);
  color: #d9e8ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tool-preview__score {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(122, 171, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(9, 19, 39, 0.94), rgba(13, 25, 46, 0.88)),
    radial-gradient(circle at top right, rgba(76, 140, 255, 0.12), transparent 30%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 20px rgba(2, 8, 20, 0.16);
}

.tool-preview__score span {
  color: #bcd6ff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-preview__score strong {
  color: #ffffff;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: clamp(1.75rem, 6vw, 2.45rem);
  line-height: 1;
}

.tool-preview__score-value {
  display: inline-block;
  letter-spacing: -0.05em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.tool-preview__score-value.is-calculating {
  background: linear-gradient(90deg, #f87171, #60a5fa, #f6d28a, #f87171);
  background-size: 220% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: score-shift 1.2s linear infinite;
  text-shadow: 0 0 18px rgba(96, 165, 250, 0.18);
}

.tool-preview__score-value.is-complete {
  color: #f6f9ff;
  text-shadow:
    0 0 22px rgba(96, 165, 250, 0.18),
    0 0 10px rgba(96, 165, 250, 0.1);
}

.tool-preview__score p,
.tool-preview__item p {
  color: #c9d6e8;
}

.tool-preview__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.tool-signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.1;
}

.tool-signal--blue {
  background: rgba(59, 130, 246, 0.14);
  color: #d5e7ff;
  border: 1px solid rgba(120, 177, 255, 0.18);
}

.tool-signal--red {
  background: rgba(239, 68, 68, 0.14);
  color: #ffd1d1;
  border: 1px solid rgba(248, 113, 113, 0.16);
}

.tool-signal--gold {
  background: rgba(255, 255, 255, 0.06);
  color: #edf4ff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-preview__card .tool-preview__summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 8px;
  color: #f3f7ff;
  font-size: 0.84rem;
  line-height: 1.48;
}

.tool-preview__summary-mark {
  display: inline-block;
  width: 3px;
  min-height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #9ec8ff, #5d8fff);
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.24);
}

.tool-preview__summary-blue {
  color: #aed4ff;
  font-weight: 800;
}

.tool-preview__summary-red {
  color: #ffc3c3;
  font-weight: 800;
}

.tool-preview__items {
  display: grid;
  gap: 2px;
  margin-top: 14px;
}

.tool-preview__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tool-preview__dot {
  width: 10px;
  height: 10px;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #7db7ff, #5a88ff);
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.1);
}

.tool-preview__item strong {
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.15;
}

.tool-preview__item p {
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.46;
}

@keyframes score-shift {
  0% {
    background-position: 0% 50%;
  }

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

.feature-card {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #0b1220;
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.value-section {
  padding: var(--section-space) 0 0;
}

.value-grid {
  display: grid;
  gap: 22px;
}

.value-copy {
  display: grid;
  gap: 14px;
}

.value-list {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 26px;
}

.value-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 9px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(242, 185, 75, 0.92), rgba(117, 154, 255, 0.38));
}

.value-item {
  position: relative;
  display: block;
  padding: 20px 20px 20px 24px;
  border-radius: 24px;
  border: 1px solid rgba(242, 185, 75, 0.18);
  background: #1b2433;
  box-shadow:
    0 18px 42px rgba(5, 10, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.value-item::before {
  content: "";
  position: absolute;
  top: 28px;
  left: -26px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(242, 185, 75, 0.92);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(242, 185, 75, 0.96) 0 35%, rgba(12, 18, 31, 1) 40% 100%);
  box-shadow: 0 0 0 5px rgba(242, 185, 75, 0.08);
}

.value-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(111, 148, 255, 0.08);
}

.value-item h3 {
  color: #f8fafc;
}

.value-item p {
  color: #bcc8d9;
}

.testimonials-section {
  padding: var(--section-space) 0 0;
}

.section-heading--light {
  gap: 14px;
}

.section-heading--light p {
  color: var(--text-soft);
}

.testimonial-grid {
  margin-top: 28px;
}

.testimonial-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 26px;
}

.stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}

.testimonial-card strong,
.trust-block strong {
  color: #ffffff;
}

.testimonial-card span {
  color: #c8d2df;
  font-size: 0.94rem;
}

.trust-blocks {
  margin-top: 18px;
}

.trust-block {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
}

.pricing-card {
  position: relative;
  gap: 16px;
}

.pricing-note {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pricing-subtitle {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.price {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.price span {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  line-height: 1;
}

.pricing-list {
  display: grid;
  gap: 12px;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 600;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.pricing-card--featured {
  border-color: rgba(201, 134, 24, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 229, 0.98));
  box-shadow: 0 24px 52px rgba(201, 134, 24, 0.14);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8a526, #c98618);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.section-shell--light .button-secondary {
  color: var(--ink);
  border-color: rgba(10, 18, 31, 0.14);
  background: #ffffff;
}

.section-shell--light .button-secondary:hover,
.section-shell--light .button-secondary:focus-visible {
  border-color: rgba(10, 18, 31, 0.28);
  background: rgba(10, 18, 31, 0.04);
}

.faq-panel {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding-top: 12px;
}

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

.faq-item {
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 18px 52px 18px 18px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 700;
}

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

.faq-item p {
  padding: 0 18px 18px;
  color: var(--ink-soft);
}

.account-performance-promo {
  padding: 0 0 var(--section-space);
}

.account-performance-promo__card {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(220px, 1fr);
  gap: clamp(1rem, 2.6vw, 1.6rem);
  align-items: stretch;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: clamp(28px, 5vw, 40px);
  background:
    linear-gradient(180deg, rgba(10, 17, 30, 0.94), rgba(8, 13, 23, 0.98)),
    radial-gradient(circle at top right, rgba(242, 185, 75, 0.08), transparent 32%);
  box-shadow: var(--shadow-dark);
}

.account-performance-promo__copy {
  display: grid;
  align-content: center;
  gap: 16px;
  min-width: 0;
}

.account-performance-promo__copy h2 {
  max-width: 15ch;
}

.account-performance-promo__copy p {
  max-width: 66ch;
}

.account-performance-promo__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-performance-promo__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.account-performance-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.account-performance-promo__preview {
  display: grid;
  min-width: 0;
}

.account-performance-promo__mini-card {
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(242, 185, 75, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(16, 24, 39, 0.96), rgba(10, 16, 28, 0.96));
}

.account-performance-promo__eyebrow {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-performance-promo__mini-card strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 0.95;
  color: #ffffff;
}

.account-performance-promo__mini-card p {
  max-width: 26ch;
}

.account-performance-promo__line {
  height: 92px;
  border-radius: 18px;
  background:
    var(--wave-lines) center bottom / cover no-repeat,
    linear-gradient(180deg, rgba(42, 113, 255, 0.12), rgba(242, 185, 75, 0.08));
  opacity: 0.92;
}

.final-cta {
  padding: var(--section-space) 0;
}

.final-cta-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(1.8rem, 5vw, 3.3rem);
  border: 1px solid var(--line);
  border-radius: clamp(28px, 5vw, 40px);
  background:
    linear-gradient(180deg, rgba(8, 13, 23, 0.84), rgba(6, 11, 20, 0.96)),
    radial-gradient(circle at top, rgba(242, 185, 75, 0.06), transparent 54%);
  text-align: center;
  box-shadow: var(--shadow-dark);
}

.final-cta-actions {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-top: 6px;
}

.micro-trust--center {
  justify-items: center;
}

.site-footer {
  padding: 0 0 32px;
}

.footer-shell {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.brand--footer img {
  opacity: 0.92;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-nav a {
  color: var(--text-soft);
  font-weight: 700;
}

.footer-note {
  max-width: 56ch;
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(242, 185, 75, 0.52);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .site-header {
    backdrop-filter: none;
    background: transparent;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .account-performance-promo__card {
    grid-template-columns: 1fr;
  }

  .account-performance-promo__copy h2,
  .account-performance-promo__copy p {
    max-width: none;
  }

  .account-performance-promo__actions {
    display: grid;
  }

  .account-performance-promo__actions .button {
    width: 100%;
  }

  .account-performance-promo__mini-card {
    min-height: 220px;
  }

  .hero-copy h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-cta {
    width: 100%;
  }

  .micro-trust {
    justify-items: center;
  }

  .micro-trust li {
    width: fit-content;
    text-align: left;
  }

  .tools-grid {
    gap: 14px;
  }

  .tools-copy {
    gap: 12px;
  }

  .tools-copy h2 {
    font-size: clamp(1.52rem, 6.4vw, 1.92rem);
    line-height: 1.08;
  }

  .tools-copy > p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .tools-list {
    gap: 8px;
  }

  .tool-point {
    gap: 10px;
    padding: 11px 11px 11px 13px;
    border-radius: 15px;
  }

  .tool-point__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .tool-point__icon svg {
    width: 18px;
    height: 18px;
  }

  .tool-point h3 {
    font-size: 0.9rem;
    line-height: 1.16;
  }

  .tool-point p {
    margin-top: 4px;
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .tools-actions {
    gap: 8px;
  }

  .tools-actions .button {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.84rem;
  }

  .section-footnote--dark {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .tool-preview__signals {
    gap: 8px;
    margin-top: 12px;
  }

  .tool-signal {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .tool-preview__card .tool-preview__summary {
    margin-top: 8px;
    color: #f3f7ff;
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .tool-preview__head {
    display: grid;
    gap: 10px;
  }

  .tool-preview__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
  }

  .tool-preview__head h3 {
    margin-top: 4px;
    font-size: 1.04rem;
    line-height: 1.06;
  }

  .tool-preview__badge {
    justify-self: start;
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .tool-preview__card {
    padding: 12px;
    border-radius: 20px;
  }

  .tool-preview__score {
    margin-top: 14px;
    gap: 6px;
    padding: 10px 11px;
    border-radius: 14px;
  }

  .tool-preview__score strong {
    font-size: clamp(1.2rem, 5.8vw, 1.58rem);
  }

  .tool-preview__score p {
    font-size: 0.7rem;
    line-height: 1.28;
  }

  .tool-preview__score span {
    font-size: 0.6rem;
    letter-spacing: 0.07em;
  }

  .tool-preview__items {
    display: none;
  }

  .value-list {
    gap: 10px;
    padding-left: 20px;
  }

  .value-list::before {
    top: 8px;
    bottom: 8px;
    left: 7px;
    width: 1.5px;
    background: linear-gradient(180deg, rgba(232, 186, 86, 0.86), rgba(126, 153, 214, 0.26));
  }

  .value-item {
    padding: 16px 16px 16px 18px;
    border-radius: 18px;
    border-color: rgba(225, 183, 92, 0.16);
    background: #202938;
    box-shadow:
      0 12px 28px rgba(4, 10, 22, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.025);
  }

  .value-item::before {
    top: 22px;
    left: -20px;
    width: 14px;
    height: 14px;
    border-width: 1.5px;
    box-shadow: 0 0 0 4px rgba(242, 185, 75, 0.06);
  }

  .value-item h3 {
    font-size: 1.02rem;
    line-height: 1.22;
    letter-spacing: -0.03em;
    color: #f4f7fb;
  }

  .value-item p {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.58;
    color: #c3ccd8;
  }
}

@media (max-width: 380px) {
  :root {
    --container: calc(100% - 16px);
  }

  .header-shell {
    padding: 10px 12px;
  }

  .brand span {
    font-size: 1rem;
  }

  .header-actions .button-compact {
    padding-inline: 10px;
    font-size: 0.8rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.1rem, 12vw, 2.5rem);
  }

  .hero-visual {
    min-height: 280px;
    padding: 18px 8px 10px;
  }

  .metric-card,
  .dashboard-benefit,
  .testimonial-card,
  .trust-block,
  .value-item,
  .process-card,
  .feature-card,
  .pricing-card,
  .step-card {
    padding: 16px;
  }

  .faq-item summary {
    padding-right: 44px;
  }

  .tools-copy h2 {
    font-size: 1.4rem;
  }

  .tools-copy > p {
    font-size: 0.82rem;
  }

  .tool-point {
    grid-template-columns: 34px 1fr;
    gap: 8px;
    padding: 10px 10px 10px 12px;
  }

  .tool-point__icon {
    width: 34px;
    height: 34px;
  }

  .tool-point__icon svg {
    width: 17px;
    height: 17px;
  }

  .tool-point h3 {
    font-size: 0.86rem;
  }

  .tool-point p {
    font-size: 0.76rem;
  }

  .tools-actions .button {
    min-height: 42px;
    font-size: 0.8rem;
  }

  .tool-preview__head h3 {
    font-size: 0.98rem;
  }

  .tool-preview__signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .tool-signal {
    min-height: 26px;
    padding: 0 6px;
    font-size: 0.62rem;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
  }

  .tool-preview__card .tool-preview__summary {
    color: #f3f7ff;
    font-size: 0.7rem;
    line-height: 1.28;
  }

  .tool-preview__score span {
    font-size: 0.56rem;
  }

  .tool-preview__score strong {
    font-size: 1.08rem;
  }

  .tool-preview__score p {
    font-size: 0.66rem;
  }
}

@media (min-width: 381px) and (max-width: 480px) {
  .hero-visual img {
    width: min(100%, 270px);
  }
}

@media (min-width: 481px) {
  :root {
    --container: min(1180px, calc(100% - 32px));
  }

  .hero-cta,
  .final-cta-actions,
  .tools-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics,
  .feature-grid,
  .pricing-grid,
  .trust-blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 769px) {
  :root {
    --container: min(1180px, calc(100% - 48px));
  }

  .site-header {
    padding-top: 14px;
  }

  .header-shell {
    padding: 14px 16px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .desktop-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.94rem;
    font-weight: 700;
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: center;
  }

  .hero-visual {
    min-height: 560px;
    padding: 24px 14px 12px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 28px;
  }

  .tools-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
    gap: 22px;
  }

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

  .value-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: start;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-blocks {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .footer-shell {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1181px) {
  :root {
    --container: min(1240px, calc(100% - 64px));
  }

  .header-shell {
    padding-inline: 18px;
  }

  .dashboard-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 600px;
  }

  .section-card {
    padding: clamp(2rem, 4vw, 3.4rem);
  }
}
