:root {
  --ink: #07183d;
  --navy: #06276b;
  --navy-2: #0b347d;
  --blue: #0d5bd6;
  --blue-2: #1f6fea;
  --blue-soft: #eaf2ff;
  --teal: #078f8b;
  --teal-soft: #e8f7f5;
  --green: #269b5a;
  --green-soft: #e9f7ed;
  --orange: #f59e19;
  --orange-soft: #fff4dc;
  --red: #ef4054;
  --red-soft: #ffe8eb;
  --line: #dbe4f2;
  --line-strong: #b9c9e2;
  --muted: #5c6b86;
  --bg: #ffffff;
  --tint: #f5f8fd;
  --surface: #fbfdff;
  --shadow: 0 8px 18px rgba(7, 24, 61, 0.08);
  --shadow-strong: 0 18px 36px rgba(7, 24, 61, 0.12);
  --focus-ring: 0 0 0 4px rgba(13, 91, 214, 0.14);
  --radius: 8px;
  --header-h: 66px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 70;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.big-icon {
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  width: 24px;
  height: 24px;
}

.big-icon {
  width: 58px;
  height: 58px;
}

.container {
  width: min(100% - 48px, 1260px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

body.admin-bar .scroll-progress,
body.admin-bar .site-header {
  top: 32px;
}

body.is-scrolled .site-header {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(185, 201, 226, 0.82);
  box-shadow: 0 8px 24px rgba(7, 24, 61, 0.07);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink);
  white-space: nowrap;
}

.brand span {
  color: #086ee2;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.brand strong {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
}

.brand.small span {
  font-size: 28px;
}

.brand.small strong {
  font-size: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 20px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--blue);
}

.page-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 36px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-width: 76px;
  padding: 3px;
  background: #edf4ff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switcher button,
.language-switcher a {
  min-width: 32px;
  min-height: 28px;
  padding: 0 8px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.language-switcher button[aria-pressed="true"],
.language-switcher a[aria-current="page"] {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 4px 10px rgba(7, 24, 61, 0.1);
}

.language-switcher button:focus-visible,
.language-switcher a:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  padding: 42px 0 44px;
  overflow: hidden;
  border-bottom: 1px solid #d8e5f6;
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 91, 214, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, rgba(13, 91, 214, 0.035) 1px, transparent 1px) 0 0 / 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

.hero > .container {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.hero-copy h1,
.page-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.34;
  font-weight: 900;
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

@supports not (word-break: auto-phrase) {
  .hero-copy h1,
  .page-title h2 {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

.lead {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.72;
  font-weight: 800;
}

.intro {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 7px 15px;
  color: var(--ink);
  background: #fff3c9;
  border: 1px solid rgba(245, 158, 25, 0.16);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 5px 12px rgba(245, 158, 25, 0.09);
}

.audience-pill .icon {
  color: var(--blue);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 22px 0 24px;
}

.hero-benefits div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.hero-benefits div:last-child {
  border-right: 0;
}

.hero-benefits .icon {
  width: 44px;
  height: 44px;
  color: var(--navy);
}

.cta-row {
  display: grid;
  grid-template-columns: 1.04fr 1.12fr 1.04fr;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 66px;
  padding: 13px 16px;
  border: 2px solid currentColor;
  border-radius: 7px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 38%);
  opacity: 0;
  transition: opacity 0.16s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.faq-item button:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.btn .arrow {
  margin-left: auto;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #145fe0 0%, #084ec6 100%);
  border-color: #0b54ce;
}

.btn-secondary {
  color: #0b54ce;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border-color: #0b54ce;
}

.btn-teal {
  color: var(--teal);
  background: linear-gradient(180deg, #ffffff 0%, #f7fffe 100%);
  border-color: var(--teal);
}

.btn-teal:hover,
.btn-teal:focus-visible {
  color: #fff;
  background: var(--teal);
}

.btn-light {
  color: var(--blue);
  background: #fff;
  border-color: #fff;
}

.btn-white-teal {
  color: var(--teal);
  background: #fff;
  border-color: var(--teal);
}

.btn.full {
  width: 100%;
  margin-top: auto;
}

.btn.compact {
  min-height: 48px;
  padding: 9px 14px;
  font-size: 14px;
}

.note {
  margin: 18px 0 0;
  color: #6d778c;
  font-size: 13px;
  font-weight: 700;
}

.note span {
  color: #6d778c;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 3px 10px rgba(7, 24, 61, 0.06);
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef5ff;
}

.hero-video-card + .diagram-card {
  display: none;
}

.diagram-card,
.requirements-card,
.small-card,
.problem-card,
.feature-card,
.report-board,
.metric-card,
.flow-card,
.domain-card,
.validation-card,
.download-card,
.price-card,
.faq-list,
.large-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 3px 10px rgba(7, 24, 61, 0.06);
}

.small-card,
.problem-card,
.feature-card,
.domain-card,
.validation-card,
.download-card,
.price-card,
.flow-card,
.metric-card,
.report-board {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.small-card:hover,
.problem-card:hover,
.feature-card:hover,
.domain-card:hover,
.validation-card:hover,
.download-card:hover,
.price-card:hover,
.flow-card:hover,
.metric-card:hover,
.report-board:hover {
  border-color: #c4d3eb;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.diagram-card {
  padding: 20px 20px 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.9), #fff 46%),
    #fff;
}

.diagram-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.diagram-steps b {
  color: var(--blue);
  font-size: 22px;
}

.diagram-flow {
  display: grid;
  grid-template-columns: 82px 24px 84px 24px 128px 24px 78px;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
}

.visual-file {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 128px;
  color: #5b6477;
}

.visual-file .icon {
  width: 72px;
  height: 88px;
  stroke-width: 1.6;
}

.csv-file strong {
  position: absolute;
  top: 52px;
  left: 14px;
  padding: 4px 8px;
  color: #fff;
  background: #27a05b;
  border-radius: 4px;
  font-size: 15px;
}

.csv-file span {
  position: absolute;
  right: 12px;
  bottom: 15px;
  width: 46px;
  height: 24px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 8px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 11px 100%;
  border: 1px solid var(--line);
}

.flow-arrow {
  color: #6c7891;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.window-stack {
  display: grid;
  gap: 8px;
  padding: 7px;
  border: 1px solid #9fb9e5;
  border-radius: 4px;
}

.window-stack div {
  height: 42px;
  background:
    linear-gradient(90deg, rgba(13, 91, 214, 0.06) 1px, transparent 1px) 0 0 / 18px 100%,
    #fff;
  border: 1px solid #adc1df;
}

.window-stack svg {
  width: 100%;
  height: 100%;
}

.window-stack polyline {
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 3;
}

.window-stack span {
  color: var(--muted);
  text-align: center;
  line-height: 1;
}

.status-map {
  display: grid;
  gap: 9px;
  position: relative;
}

.status-map::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: -10px;
  width: 1px;
  content: "";
  background: var(--blue-2);
}

.status-map .status-chip::before {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--blue-2);
}

.status-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 5px 12px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.normal {
  color: #257d3e;
  background: var(--green-soft);
}

.structured {
  color: #0e5ed5;
  background: #edf4ff;
}

.caution {
  color: #d88400;
  background: var(--orange-soft);
}

.degenerate {
  color: #e6293d;
  background: var(--red-soft);
}

.report-file {
  color: #647086;
}

.report-file .bars {
  position: absolute;
  bottom: 43px;
  left: 14px;
  display: flex;
  align-items: end;
  gap: 4px;
  height: 32px;
}

.report-file .bars i {
  width: 7px;
  background: #4a90e8;
}

.report-file .bars i:nth-child(1) {
  height: 16px;
}

.report-file .bars i:nth-child(2) {
  height: 26px;
}

.report-file .bars i:nth-child(3) {
  height: 22px;
}

.report-file .bars i:nth-child(4) {
  height: 34px;
}

.report-file .pie {
  position: absolute;
  right: 9px;
  bottom: 38px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: conic-gradient(#4a90e8 0 35%, #83b8f4 35% 60%, #c6d8ef 60% 100%);
}

.diagram-captions {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 20px;
  margin-top: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.mobile-diagram {
  display: none;
}

.requirements-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 22px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f9fcff 0%, #f3f8ff 100%);
}

.requirements-card > .icon,
.requirements-card > .big-icon {
  color: var(--blue);
}

.requirements-card h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 900;
}

.check-list,
.x-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.x-list li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "×";
  font-weight: 900;
}

.section,
.sample,
.pricing {
  position: relative;
  padding: 56px 0 62px;
  border-top: 1px solid #d8e5f6;
}

.section::before,
.sample::before,
.pricing::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(180px, 34vw);
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.section:not(.tint),
.sample,
.pricing {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.section.tint,
.tint {
  background:
    linear-gradient(180deg, #f1f6ff 0%, #f7fbff 100%);
}

.section h2,
.pricing h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
  text-wrap: balance;
}

.section h2::after,
.pricing h2::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 10px auto 0;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 999px;
}

.section-sub {
  max-width: 1000px;
  margin: 0 auto 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.comparison-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  background: #fff;
  border: 1px solid #cbdcf2;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(7, 24, 61, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #dbe6f5;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: #fff;
  background: #073d90;
  font-size: 14px;
  font-weight: 900;
}

.comparison-table tbody th {
  width: 24%;
  color: var(--navy);
  background: #f4f8ff;
  font-size: 15px;
  font-weight: 900;
}

.comparison-table tbody td {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.comparison-table tbody td:last-child {
  background: #fbfdff;
  color: #0b347d;
  font-weight: 800;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-note {
  max-width: 980px;
  margin: 14px auto 0;
  color: #58677e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.cards {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

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

.cards.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cards.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.small-card,
.problem-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 106px;
  padding: 20px;
}

.small-card p,
.problem-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
}

.small-card .big-icon,
.problem-card .big-icon {
  color: var(--blue);
}

.small-card.vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-height: 122px;
}

.small-card.vertical h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.small-card.vertical p {
  font-size: 14px;
  line-height: 1.45;
}

.small-card.vertical .big-icon,
.small-card.vertical .csv-mini {
  margin-bottom: 2px;
}

.problem-card {
  position: relative;
  min-height: 116px;
  padding-left: 22px;
}

.num,
.letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.problem-card .num {
  position: absolute;
  top: 10px;
  left: 10px;
}

.problem-card .big-icon {
  margin-left: 8px;
}

.feature-grid {
  align-items: stretch;
}

.feature-card {
  position: relative;
  min-height: 208px;
  padding: 22px 18px 16px;
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 91, 214, 0.055) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(13, 91, 214, 0.055) 1px, transparent 1px) 0 0 / 18px 18px;
  border-radius: 8px;
  opacity: 0.85;
}

.feature-card .letter {
  position: absolute;
  top: 14px;
  left: 14px;
}

.feature-card h3 {
  margin: 0 0 12px 42px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.mini-chart {
  height: 82px;
  border-bottom: 2px solid #9aabc4;
  border-left: 2px solid #9aabc4;
  background:
    repeating-linear-gradient(90deg, transparent 0 49px, #b9c9e2 49px 51px),
    linear-gradient(#ffffff, #ffffff);
}

.mini-chart.line {
  position: relative;
}

.mini-chart.line::after {
  position: absolute;
  inset: 16px 10px 8px 12px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 90'%3E%3Cpolyline fill='none' stroke='%230d5bd6' stroke-width='5' stroke-linecap='round' stroke-linejoin='round' points='4,70 24,53 44,60 64,38 84,48 104,32 124,44 144,27 164,35 184,30 204,48 224,39 244,50 264,32 286,25 316,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.bell-compare {
  position: relative;
  height: 94px;
  border: 0;
  background: none;
}

.bell-compare::before,
.bell-compare::after {
  position: absolute;
  bottom: 14px;
  width: 42%;
  height: 68px;
  content: "";
  border-bottom: 2px solid currentColor;
  color: var(--blue);
  background: radial-gradient(ellipse at center bottom, transparent 38%, currentColor 39%, transparent 41%);
}

.bell-compare::before {
  left: 4%;
}

.bell-compare::after {
  right: 4%;
  color: #8a8f9a;
  border-style: dashed;
}

.bell-compare {
  color: var(--blue);
}

.bell-compare span {
  display: none;
}

.bell-compare + p::before {
  content: "";
}

.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.report-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 92px;
  color: var(--muted);
  font-size: 34px;
  font-weight: 900;
}

.csv-mini {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 44px;
  color: #fff;
  background: var(--teal);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 900;
}

.csv-mini.large {
  min-width: 62px;
  height: 58px;
}

.results-strip {
  padding-bottom: 56px;
}

.validation-section {
  position: relative;
  overflow: hidden;
}

.validation-section::after {
  position: absolute;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 30px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 91, 214, 0.06) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(180deg, rgba(13, 91, 214, 0.06) 1px, transparent 1px) 0 0 / 22px 22px;
  border-radius: 10px;
  opacity: 0.72;
  transform: rotate(-2deg);
}

.validation-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 26px;
  align-items: end;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 11px;
  color: var(--teal);
  background: #eafafa;
  border: 1px solid #b9e3e1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.validation-note {
  color: var(--ink);
  background: #f7fbff;
  border: 1px solid #cbdcf2;
  border-radius: 7px;
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 800;
}

.validation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.validation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 242px;
  padding: 22px;
  overflow: hidden;
}

.validation-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), #7fb3ff);
}

.validation-card-main::before {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.validation-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.validation-card-head .big-icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--blue);
  background: #edf5ff;
  border: 1px solid #b8d3f8;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill.primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.validation-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
}

.validation-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.validation-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.validation-points li {
  position: relative;
  padding-left: 18px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 900;
}

.validation-points li::before {
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.validation-guard {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, #07245d 0%, #0b3f8d 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.validation-guard h3 {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.validation-guard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 800;
}

.guard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.guard-grid p {
  padding: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
}

.guard-grid strong,
.guard-grid span {
  display: block;
}

.guard-grid strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.page-title {
  margin-bottom: 16px;
}

.page-title p {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.sample-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: 48px;
  align-items: start;
}

.report-board {
  padding: 0 14px 12px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.report-board > header {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.report-layout {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 10px;
  padding: 12px 0 0;
}

.report-panel {
  min-height: 142px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.report-panel h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.donut-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.donut {
  position: relative;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 60%, var(--blue) 60% 80%, var(--orange) 80% 92.5%, var(--red) 92.5% 100%);
}

.donut::after {
  position: absolute;
  inset: 24px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.donut span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
  text-align: center;
}

.legend,
.mini-legend,
.summary-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.legend li,
.mini-legend li,
.summary-panel li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.legend li {
  justify-content: space-between;
  min-width: 160px;
  margin-bottom: 6px;
}

.legend i,
.mini-legend i,
.summary-panel i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

i.green,
.timeline-bar .green {
  background: var(--green);
}

i.blue,
.timeline-bar .blue {
  background: var(--blue);
}

i.orange,
.timeline-bar .orange {
  background: var(--orange);
}

i.red,
.timeline-bar .red {
  background: var(--red);
}

.timeline-bar {
  display: grid;
  grid-template-columns: 26fr 20fr 15fr 13fr 17fr 9fr;
  height: 28px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}

.timeline-bar i {
  display: block;
}

.axis {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mini-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.line-panel {
  min-height: 172px;
}

.sample-line-chart {
  height: 135px;
  overflow: hidden;
}

.sample-line-chart svg {
  width: 100%;
  height: 100%;
}

.summary-panel li {
  margin: 8px 0;
  font-size: 12px;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 12px 8px 0;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.report-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.report-meta .icon {
  width: 21px;
  height: 21px;
  color: var(--navy);
}

.metric-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.metric-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "label label"
    "icon value";
  align-items: center;
  min-height: 128px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.metric-card span {
  grid-area: label;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.metric-card .big-icon,
.tiny-bell {
  grid-area: icon;
  color: var(--blue);
}

.metric-card strong {
  grid-area: value;
  justify-self: end;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.metric-card.pass .big-icon,
.metric-card.pass strong {
  color: var(--green);
}

.metric-card.caution-color .big-icon,
.metric-card.caution-color strong {
  color: #ff7618;
}

.metric-card.anomaly {
  grid-column: 1 / -1;
  min-height: 108px;
}

.metric-card.anomaly .big-icon,
.metric-card.anomaly strong {
  color: var(--red);
}

.tiny-bell {
  width: 64px;
  height: 42px;
  border-bottom: 2px dashed var(--blue);
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at center bottom, transparent 48%, var(--blue) 50%, transparent 53%);
}

.sample-copy {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.blue-note {
  max-width: 670px;
  margin-top: 10px;
  padding: 16px 20px;
  color: var(--navy);
  background: #f2f7ff;
  border: 1px solid #87b7ff;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 1.12fr;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
}

.flow-card {
  position: relative;
  min-height: 158px;
  padding: 20px 18px 18px 84px;
}

.flow-card .num {
  position: absolute;
  top: 18px;
  left: 22px;
}

.flow-card .big-icon {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: var(--blue);
}

.flow-card h3 {
  margin: 2px 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.flow-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.flow-sep {
  color: var(--blue);
  font-size: 46px;
  line-height: 1;
  text-align: center;
}

.requirements-inline {
  padding-left: 94px;
}

.requirements-inline h3 {
  font-size: 17px;
}

.requirements-inline .check-list li {
  font-size: 13px;
}

.use-grid .small-card {
  min-height: 126px;
  align-items: center;
}

.domain-section {
  padding-top: 34px;
}

.domain-card {
  display: flex;
  gap: 18px;
  min-height: 134px;
  padding: 22px;
}

.domain-card .big-icon {
  color: var(--blue);
}

.domain-card h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}

.domain-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.sample-downloads {
  padding-top: 44px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.download-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.download-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.download-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.download-head .big-icon {
  width: 54px;
  height: 54px;
  color: var(--blue);
}

.download-head span {
  display: block;
  margin-bottom: 1px;
  color: var(--teal);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.download-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
}

.download-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.download-meta {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.download-meta li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 800;
}

.download-meta li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--teal);
  border-radius: 999px;
}

.download-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
}

.btn-download {
  justify-content: space-between;
  min-height: 52px;
  padding: 10px 14px;
  font-size: 14px;
}

.download-note {
  max-width: none;
  margin-top: 18px;
}

.warning-band,
.info-band,
.next-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7) inset;
}

.warning-band {
  color: var(--ink);
  background: #fff9ec;
  border: 1px solid #f5bf48;
}

.warning-band .icon {
  color: var(--orange);
}

.info-band {
  color: var(--navy);
  background: #eef7ff;
  border: 1px solid #9ec5ff;
}

.info-band .icon {
  color: var(--blue);
}

.info-band.light {
  justify-content: center;
  margin: 18px 0;
}

.next-banner {
  max-width: 960px;
  min-height: 68px;
  margin: 22px auto 0;
  color: #fff;
  background: linear-gradient(180deg, #08357f 0%, #06296d 100%);
  border: 0;
  font-size: 22px;
  box-shadow: 0 14px 26px rgba(6, 39, 107, 0.18);
}

.next-banner .icon {
  margin-left: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1260px;
  margin: 18px auto 0;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 448px;
  padding: 28px 22px 24px;
  overflow: visible;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.price-card::before {
  position: absolute;
  top: -1px;
  right: 20px;
  left: 20px;
  height: 3px;
  content: "";
  background: #dce8fb;
  border-radius: 0 0 999px 999px;
}

.price-card.recommended {
  border: 2px solid var(--blue);
  box-shadow: 0 18px 34px rgba(13, 91, 214, 0.12);
}

.price-card.recommended::before {
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #3f8cff);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  min-width: 96px;
  padding: 4px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transform: translateX(-50%);
}

.plan-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.plan-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--blue);
  background: #eaf1ff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.34);
}

.plan-icon.soft-bg {
  color: var(--navy);
  background: #eef4ff;
}

.plan-icon.teal-bg {
  color: var(--teal);
  background: #e2f4f2;
}

.plan-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.price {
  margin: 6px 0 4px;
  color: var(--blue);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 900;
}

.price span {
  margin-left: 4px;
  font-size: 20px;
}

.teal-text {
  color: var(--teal);
  font-size: 40px;
  white-space: nowrap;
}

.teal-text span {
  font-size: 20px;
}

.consult-price {
  color: var(--navy);
  font-size: 36px;
  letter-spacing: 0;
}

.free-price {
  color: var(--navy);
}

.plan-head p:not(.price) {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.plan-list {
  padding: 20px 0 24px;
}

.plan-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

.plan-list li::before {
  color: var(--blue);
}

.teal-check li::before {
  color: var(--teal);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin: 18px auto 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid #cfdcf0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(7, 24, 61, 0.05);
}

.faq-item button {
  display: grid;
  grid-template-columns: 38px 1fr 28px;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding: 16px 18px;
  color: var(--ink);
  background: #fff;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.faq-item button:hover {
  background: #f8fbff;
}

.faq-item span,
.faq-item em {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.faq-item strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.faq-item p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  transition: opacity 0.16s ease;
}

.faq-answer {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 0 18px 18px;
}

.faq-item em {
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid rgba(7, 143, 139, 0.28);
}

.faq-item .icon {
  grid-column: 3;
  margin-top: 0;
  color: var(--navy);
  transform: rotate(90deg);
  transition: transform 0.15s ease;
}

.faq-item:not(.open) .faq-answer {
  display: none;
}

.faq-item:not(.open) .icon {
  transform: rotate(0deg);
}

.notice-grid .small-card {
  justify-content: flex-start;
  min-height: 124px;
}

.split-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.large-card {
  min-height: 168px;
}

.large-card .big-icon {
  width: 74px;
  height: 74px;
}

.not-fit {
  background: #fff;
}

.not-fit > .big-icon {
  color: var(--red);
  padding: 13px;
  background: var(--red-soft);
  border-radius: 50%;
}

.final-cta {
  padding: 46px 0 50px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(180deg, #073d90 0%, #062b73 100%);
  border-top: 1px solid #00235f;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) 1fr;
  gap: 24px 36px;
  align-items: center;
}

.final-cta h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 900;
}

.final-cta p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.cta-row.dark {
  grid-column: 1 / -1;
}

.legal-page {
  min-height: calc(100vh - var(--header-h));
  padding: 54px 0 76px;
  background:
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 72%);
}

.legal-card {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.3;
  font-weight: 900;
}

.legal-lead,
.legal-updated {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.legal-updated {
  margin-top: 8px;
}

.legal-section {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.legal-section p,
.legal-section li {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.legal-section p {
  margin: 0;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.25em;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.site-header > .legal-back {
  margin-bottom: 0;
  white-space: nowrap;
}

.site-footer {
  padding: 14px 0;
  background: #edf5ff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  color: #53627c;
  font-size: 13px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.footer-links a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(560px, calc(100% - 40px));
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #c8d8ef;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 24, 61, 0.18);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.is-scrolled.cta-ready:not(.in-contact):not(.in-conversion):not(.in-downloads):not(.in-validation) .floating-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-copy {
  display: grid;
  gap: 1px;
  padding-left: 4px;
}

.floating-copy strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
}

.floating-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.floating-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 18px;
    font-size: 13px;
  }

  .brand span {
    font-size: 32px;
  }

  .brand strong {
    font-size: 18px;
  }

  .hero-grid,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    align-items: start;
  }

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

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
  }

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

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

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

  .requirements-inline {
    grid-column: 1 / -1;
  }
}

@media (max-width: 940px) {
  .container {
    width: min(100% - 32px, 760px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.admin-bar .site-nav {
    top: calc(var(--header-h) + 32px);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    right: auto;
    bottom: 8px;
    width: 36px;
  }

  .page-indicator {
    margin-top: 12px;
  }

  .language-switcher {
    width: 116px;
    margin-top: 14px;
  }

  .hero-copy h1,
  .page-title h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 17px;
  }

  .cta-row,
  .cta-row.dark,
  .hero-benefits,
  .cards.four,
  .cards.five,
  .cards.six,
  .cards.three,
  .download-grid,
  .validation-intro,
  .validation-grid,
  .validation-guard,
  .guard-grid,
  .pricing-grid,
  .split-info,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .download-card:last-child {
    grid-column: auto;
  }

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

  .hero-benefits div {
    padding: 0 0 13px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

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

  .flow-arrow {
    transform: rotate(90deg);
  }

  .diagram-captions {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

  .flow-sep {
    transform: rotate(90deg);
  }

  .sample-grid {
    gap: 20px;
  }

  .faq-item button {
    grid-template-columns: 34px 1fr 24px;
    gap: 12px;
    padding: 14px 14px;
  }

  .faq-answer {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 0 14px 14px;
  }

  .faq-item span,
  .faq-item em {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .faq-item strong {
    font-size: 14px;
  }

  .faq-item p {
    font-size: 13px;
    line-height: 1.7;
  }

  .report-layout,
  .metric-side {
    grid-template-columns: 1fr;
  }

  .metric-card.anomaly,
  .sample-copy {
    grid-column: auto;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  .comparison-table-wrap {
    margin-top: 18px;
  }

  .comparison-note {
    text-align: left;
  }

  .legal-page {
    padding: 34px 0 56px;
  }

  .legal-card {
    padding: 24px 20px;
  }

  .legal-card h1 {
    font-size: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .floating-cta {
    right: 12px;
    bottom: 10px;
    left: 12px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 10px;
  }

  .floating-copy {
    display: none;
  }

  .floating-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 782px) {
  body.admin-bar .scroll-progress,
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .site-nav {
    top: calc(var(--header-h) + 46px);
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 62px;
  }

  body {
    background: var(--bg);
  }

  .hero {
    padding: 30px 0 34px;
  }

  .section,
  .sample,
  .pricing {
    padding: 42px 0 48px;
  }

  .section::before,
  .sample::before,
  .pricing::before {
    width: 128px;
    height: 3px;
  }

  .final-cta {
    padding: 38px 0 42px;
  }

  .site-header {
    min-height: var(--header-h);
    padding: 0 12px 0 14px;
  }

  .brand {
    align-items: center;
    gap: 8px;
  }

  .brand span {
    font-size: 30px;
  }

  .brand strong {
    max-width: 142px;
    font-size: 13px;
    line-height: 1.12;
    white-space: normal;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-color: #c8d8ef;
    box-shadow: 0 8px 18px rgba(7, 24, 61, 0.06);
  }

  .language-switcher {
    width: 100%;
  }

  .language-switcher button,
  .language-switcher a {
    min-height: 34px;
  }

  .container {
    width: min(100% - 24px, 560px);
  }

  .hero {
    padding: 30px 0 34px;
  }

  .hero::before {
    background-size: 36px 36px;
    opacity: 0.55;
  }

  .hero-copy h1,
  .page-title h2 {
    font-size: 27px;
    line-height: 1.42;
  }

  .lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.78;
  }

  .intro {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.72;
  }

  .audience-pill {
    display: flex;
    align-items: flex-start;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.55;
  }

  .section h2,
  .pricing h2 {
    font-size: 24px;
    line-height: 1.42;
  }

  .lead br,
  .final-cta p br {
    display: none;
  }

  .btn {
    min-height: 58px;
    justify-content: flex-start;
    font-size: 15px;
    border-radius: 8px;
  }

  .btn.compact {
    min-height: 48px;
    justify-content: center;
    font-size: 13px;
  }

  .diagram-card {
    padding: 15px 14px 14px;
    border-color: #cbdcf2;
    background:
      linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 16px 34px rgba(7, 24, 61, 0.1);
  }

  .diagram-steps {
    display: none;
  }

  .diagram-flow {
    display: none;
  }

  .diagram-captions {
    display: none;
  }

  .mobile-diagram {
    display: grid;
    gap: 12px;
  }

  .mobile-stepper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 3px 0 1px;
  }

  .mobile-stepper::before {
    position: absolute;
    top: 17px;
    right: 12%;
    left: 12%;
    height: 2px;
    content: "";
    background: #d4e2f5;
  }

  .mobile-stepper div {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 5px;
    min-width: 0;
    color: var(--navy);
  }

  .mobile-stepper span {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    color: #fff;
    background: linear-gradient(180deg, #1769e8 0%, #0b51c7 100%);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 7px 15px rgba(13, 91, 214, 0.2);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-stepper b {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-flow-board {
    display: grid;
    gap: 10px;
    padding: 12px;
    background:
      linear-gradient(90deg, rgba(13, 91, 214, 0.04) 1px, transparent 1px) 0 0 / 22px 22px,
      linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #c9dcf4;
    border-radius: 8px;
  }

  .mobile-flow-top {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .mobile-file-card,
  .mobile-window-card,
  .mobile-output-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #d5e3f6;
    border-radius: 7px;
    box-shadow: 0 8px 18px rgba(7, 24, 61, 0.05);
  }

  .mobile-file-card {
    display: grid;
    place-items: center;
    min-height: 104px;
  }

  .mobile-file-card span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 42px;
    color: #fff;
    background: linear-gradient(180deg, #1ca161 0%, #10844e 100%);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 9px 18px rgba(16, 132, 78, 0.18);
  }

  .mobile-window-card {
    display: grid;
    gap: 7px;
    padding: 10px;
  }

  .mobile-window-card i {
    position: relative;
    display: block;
    min-height: 26px;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(13, 91, 214, 0.08) 1px, transparent 1px) 0 0 / 18px 100%,
      #fff;
    border: 1px solid #b9cff0;
    border-radius: 4px;
  }

  .mobile-window-card i::after {
    position: absolute;
    inset: 7px 11px 7px 38px;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpolyline fill='none' stroke='%231f6fea' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' points='2,20 12,13 22,16 32,8 42,15 52,7 62,12 72,5 82,9 92,4 108,8 118,6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .mobile-window-card i:nth-child(2)::after {
    left: 48px;
    opacity: 0.82;
  }

  .mobile-window-card i:nth-child(3)::after {
    left: 58px;
    opacity: 0.7;
  }

  .mobile-status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .mobile-status-grid .status-chip {
    min-height: 34px;
    border-radius: 6px;
    font-size: 10px;
  }

  .mobile-output-card {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 66px;
    padding: 11px 12px;
  }

  .mobile-output-card .icon {
    width: 36px;
    height: 36px;
    color: #68758b;
  }

  .mobile-output-card div {
    display: grid;
    gap: 1px;
  }

  .mobile-output-card b {
    color: var(--navy);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
  }

  .mobile-output-card span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
  }

  .small-card,
  .problem-card,
  .domain-card,
  .validation-card,
  .download-card,
  .requirements-card {
    padding: 16px;
    border-radius: 8px;
  }

  .validation-intro {
    gap: 16px;
  }

  .validation-note {
    padding: 14px;
    font-size: 12px;
  }

  .validation-card-head .big-icon {
    width: 42px;
    height: 42px;
  }

  .validation-card h3 {
    font-size: 18px;
  }

  .validation-card p,
  .validation-points li {
    font-size: 12px;
  }

  .validation-guard {
    padding: 16px;
  }

  .validation-guard h3 {
    font-size: 18px;
  }

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

  .download-head {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .download-head .big-icon {
    width: 44px;
    height: 44px;
  }

  .download-head h3 {
    font-size: 18px;
  }

  .btn-download {
    justify-content: space-between;
    min-height: 50px;
    font-size: 13px;
  }

  .small-card,
  .problem-card {
    gap: 14px;
    box-shadow: 0 10px 24px rgba(7, 24, 61, 0.07);
  }

  .small-card p,
  .problem-card p {
    font-size: 14px;
    line-height: 1.58;
  }

  .problem-card {
    min-height: 0;
    padding: 16px 16px 16px 58px;
  }

  .problem-card .num {
    top: 16px;
    left: 16px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .problem-card .big-icon {
    width: 42px;
    height: 42px;
    margin-left: 0;
  }

  .feature-card h3 {
    margin-left: 40px;
    font-size: 16px;
  }

  .report-board > header {
    flex-direction: column;
    gap: 0;
    text-align: center;
    font-size: 16px;
  }

  .donut-wrap,
  .domain-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-head {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
  }

  .plan-icon {
    width: 76px;
    height: 76px;
  }

  .plan-icon .big-icon {
    width: 48px;
    height: 48px;
  }

  .plan-head h3 {
    font-size: 24px;
  }

  .plan-head p:not(.price) {
    font-size: 13px;
    line-height: 1.45;
  }

  .legend li {
    min-width: 0;
  }

  .report-panel {
    min-width: 0;
  }

  .report-meta {
    gap: 10px;
  }

  .metric-card {
    min-height: 110px;
  }

  .metric-card strong {
    font-size: 34px;
  }

  .flow-card {
    min-height: 152px;
  }

  .price-card {
    min-height: 0;
    padding: 24px 22px 22px;
    border-color: #cbdcf2;
    box-shadow: 0 14px 32px rgba(7, 24, 61, 0.08);
  }

  .price {
    font-size: 38px;
  }

  .teal-text {
    font-size: 36px;
  }

  .teal-text span {
    font-size: 17px;
  }

  .consult-price {
    font-size: 34px;
  }

  .plan-list {
    padding: 18px 0 20px;
  }

  .warning-band,
  .info-band,
  .next-banner {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    font-size: 14px;
  }

  .next-banner {
    min-height: 0;
    font-size: 17px;
  }

  .final-cta h2 {
    font-size: 27px;
  }

  .floating-actions {
    gap: 7px;
  }

  .floating-cta {
    border-color: #bcd1ed;
    box-shadow: 0 12px 32px rgba(7, 24, 61, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
