:root {
  --bg: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --soft: #94a3b8;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;
  --panel: #f8fafc;
  --cyan: #0099cc;
  --cyan-dark: #0077aa;
  --cyan-soft: #e0f7ff;
  --violet: #6d28d9;
  --violet-soft: #f3e8ff;
  --green: #059669;
  --green-soft: rgba(16, 185, 129, 0.1);
  --shadow-cyan: 0 4px 16px rgba(0, 153, 204, 0.08);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
}

body {
  color: var(--ink);
}

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

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

body.modal-open {
  overflow: hidden;
}

.container {
  width: min(100% - 3rem, 1280px);
  margin: 0 auto;
}

.container.narrow {
  max-width: 896px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  height: 4rem;
  width: min(100% - 3rem, 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.brand-mark,
.footer-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  overflow: hidden;
}

.footer-mark {
  width: 1.75rem;
  height: 1.75rem;
}

.brand-name {
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.brand-mark img,
.footer-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-name span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.4rem 0.9rem;
  border-radius: 4px 4px 0 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-link.active,
.nav-link:hover {
  color: var(--cyan);
  background: var(--cyan-soft);
  border-bottom-color: var(--cyan);
  font-weight: 600;
}

.nav-cta,
.btn.primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  font-weight: 700;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
}

.mobile-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 0;
}

.hero-home {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 153, 204, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(109, 40, 217, 0.06) 0%, transparent 60%),
    #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.38rem 0.75rem;
  border-radius: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.eyebrow.cyan {
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 153, 204, 0.25);
}

.eyebrow.purple {
  color: var(--violet);
  background: var(--violet-soft);
  border: 1px solid rgba(109, 40, 217, 0.2);
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

.hero-title,
.page-hero h1,
.page-header h1,
.about-hero h1 {
  margin: 0 0 1.5rem;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-title {
  font-size: 3.8rem;
}

.hero-title span,
.about-hero h1 span {
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  max-width: 520px;
  margin: 0 0 2.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.btn.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  font-weight: 500;
}

.btn.glow {
  box-shadow: 0 4px 14px rgba(0, 153, 204, 0.3);
}

.btn::after,
.nav-cta::after,
.filter-pill::after {
  content: "";
  position: absolute;
  top: -90%;
  left: -70%;
  width: 34%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%) rotate(32deg);
  transition:
    opacity 0.2s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover::after,
.btn:focus-visible::after,
.nav-cta:hover::after,
.nav-cta:focus-visible::after,
.filter-pill:hover::after,
.filter-pill:focus-visible::after {
  opacity: 1;
  transform: translateX(560%) rotate(32deg);
}

.chart-card {
  border-radius: 12px;
  padding: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.chart-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.trend-badge {
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.72rem;
  white-space: nowrap;
}

.chart-caption {
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  color: var(--soft);
}

.line-chart {
  height: 220px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 1rem;
  padding-top: 1rem;
}

.line-col {
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.3rem;
  position: relative;
}

.line-col span {
  width: 0.45rem;
  min-height: 12px;
  border-radius: 999px 999px 0 0;
  display: block;
  transition:
    filter 0.22s ease,
    opacity 0.22s ease,
    box-shadow 0.22s ease;
}

.line-before {
  background: linear-gradient(to top, rgba(109, 40, 217, 0.18), var(--violet));
}

.line-after {
  background: linear-gradient(to top, rgba(0, 153, 204, 0.18), var(--cyan));
}

.line-col em,
.bar-item em {
  position: absolute;
  bottom: -1.5rem;
  color: var(--soft);
  font-style: normal;
  font-size: 0.68rem;
}

.legend {
  display: flex;
  gap: 1rem;
  margin-top: 2.25rem;
  color: var(--soft);
  font-size: 0.72rem;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.legend i {
  width: 0.75rem;
  height: 2px;
  display: inline-block;
}

.legend .purple {
  background: var(--violet);
}

.legend .cyan-line {
  background: var(--cyan);
}

.stats-band {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding: 2.5rem 0;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--cyan);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  padding: 6rem 0;
}

.section.white {
  background: #ffffff;
}

.section.tinted {
  background: var(--panel);
}

.section.bordered {
  border-top: 1px solid var(--line);
}

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

.section.compact-bottom {
  padding-bottom: 5rem;
}

.section-heading {
  margin-bottom: 3.5rem;
}

.section-heading h2,
.section-title,
.timeline-title {
  margin: 0;
  color: var(--ink);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
}

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

.feature-card,
.platform-card,
.article-card,
.value-card,
.team-card,
.contact-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.feature-card::before,
.platform-card::before,
.article-card::before,
.value-card::before,
.team-card::before,
.contact-panel::before,
.timeline-card::before,
.case-card::before,
.faq-item::before,
.result-card::before,
.contact-card::before,
.legal-panel::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -70%;
  z-index: 2;
  width: 28%;
  height: 260%;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.12) 18%,
      rgba(255, 255, 255, 0.72) 48%,
      rgba(224, 247, 255, 0.44) 62%,
      transparent 100%
    );
  opacity: 0;
  pointer-events: none;
  transform: translateX(-145%) rotate(34deg);
  transition:
    opacity 0.18s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover::before,
.feature-card:focus-within::before,
.platform-card:hover::before,
.platform-card:focus-within::before,
.article-card:hover::before,
.article-card:focus-within::before,
.value-card:hover::before,
.value-card:focus-within::before,
.team-card:hover::before,
.team-card:focus-within::before,
.contact-panel:hover::before,
.contact-panel:focus-within::before,
.timeline-card:hover::before,
.timeline-card:focus-within::before,
.case-card:hover::before,
.case-card:focus-within::before,
.faq-item:hover::before,
.faq-item:focus-within::before,
.result-card:hover::before,
.result-card:focus-within::before,
.contact-card:hover::before,
.contact-card:focus-within::before,
.legal-panel:hover::before,
.legal-panel:focus-within::before {
  opacity: 1;
  transform: translateX(640%) rotate(34deg);
}

.feature-card,
.value-card {
  padding: 1.75rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.team-card,
.contact-panel,
.legal-panel {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.tinted .feature-card {
  background: #ffffff;
}

.feature-card:hover,
.article-card:hover,
.platform-card:hover,
.value-card:hover,
.team-card:hover,
.contact-panel:hover,
.timeline-card:hover,
.case-card:hover,
.faq-item:hover,
.result-card:hover,
.contact-card:hover,
.legal-panel:hover {
  border-color: rgba(0, 153, 204, 0.35);
  box-shadow: var(--shadow-cyan);
  background: #ffffff;
}

.icon-box {
  position: relative;
  overflow: hidden;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 800;
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.icon-box svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.feature-card:hover .icon-box,
.value-card:hover .icon-box {
  background: linear-gradient(135deg, var(--cyan-soft), #eef2ff);
  box-shadow: 0 8px 22px rgba(0, 153, 204, 0.14);
  transform: translateY(-2px);
}

.feature-card:hover .icon-box svg,
.value-card:hover .icon-box svg {
  transform: scale(1.08);
}

.feature-card h3,
.value-card h3 {
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.feature-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.cta-section {
  padding: 6rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--cyan-soft) 0%, var(--violet-soft) 100%);
}

.cta-inner {
  max-width: 672px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 800;
}

.cta-inner p {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.page-hero,
.page-header {
  padding: 8rem 1.5rem 5rem;
}

.page-hero {
  text-align: center;
}

.page-hero.violet-center {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(109, 40, 217, 0.07) 0%, transparent 60%), #ffffff;
}

.page-header.cyan-left {
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 153, 204, 0.06) 0%, transparent 60%), #ffffff;
}

.page-header.violet-left {
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(109, 40, 217, 0.06) 0%, transparent 60%), #ffffff;
}

.page-hero h1,
.page-header h1 {
  font-size: 3.2rem;
}

.page-hero p,
.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-header p {
  margin-left: 0;
  font-size: 1rem;
  max-width: 520px;
}

.block-title {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
}

.block-subtitle {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.platform-card {
  padding: 1.25rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.platform-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.platform-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.platform-head span {
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.72rem;
}

.coverage strong {
  color: var(--cyan);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.coverage em {
  color: var(--soft);
  font-size: 0.85rem;
  font-style: normal;
  margin-left: 0.15rem;
}

.progress-track {
  overflow: hidden;
  height: 0.375rem;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: var(--line);
}

.progress-track div {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.progress-track div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 0.2s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.platform-card:hover .progress-track div::after {
  opacity: 1;
  transform: translateX(140%);
}

.platform-card p {
  margin: 0.5rem 0 0;
  color: var(--soft);
  font-size: 0.75rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.radar-box {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-svg {
  width: min(100%, 520px);
  height: 100%;
  display: block;
  overflow: visible;
}

.radar-grid polygon,
.radar-grid line {
  fill: none;
  stroke: #dbe5f1;
  stroke-width: 1.25;
}

.radar-fill {
  fill: rgba(0, 153, 204, 0.12);
  stroke: none;
}

.radar-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.5;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.radar-labels text {
  fill: #64748b;
  font-size: 15px;
  font-weight: 600;
}

.bar-chart {
  height: 280px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 1rem;
}

.bar-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
}

.bar-wrap {
  width: 1.75rem;
  height: calc(100% - 2rem);
  display: flex;
  align-items: end;
}

.bar-wrap span {
  position: relative;
  display: block;
  width: 100%;
  min-height: 1rem;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--cyan), var(--violet));
  opacity: 0.85;
  transition:
    filter 0.22s ease,
    opacity 0.22s ease,
    box-shadow 0.22s ease;
}

.bar-chart:hover .bar-wrap span,
.spark-chart:hover span,
.line-chart:hover .line-col span {
  opacity: 1;
  filter: brightness(1.05);
  box-shadow: 0 0 18px rgba(0, 153, 204, 0.18);
}

.timeline-title {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), var(--violet), transparent);
}

.timeline-row {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.timeline-dot {
  width: 4rem;
  flex: 0 0 4rem;
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

.timeline-dot span {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: #ffffff;
  box-shadow: inset 0 0 0 5px #ffffff;
}

.timeline-dot span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--cyan);
  transform: translate(-50%, -50%);
}

.timeline-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.step-num {
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.timeline-card h3 {
  margin: 0.25rem 0 0.5rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.timeline-card strong {
  align-self: flex-start;
  flex: 0 0 auto;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: 0.72rem;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.table-heading {
  margin-bottom: 2rem;
}

.table-shell {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

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

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  font-size: 0.85rem;
  border-top: 1px solid var(--line-soft);
}

.comparison-table th {
  background: var(--panel);
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table td {
  color: var(--muted);
  text-align: center;
}

.comparison-table td:last-child,
.comparison-table th:last-child {
  color: var(--cyan);
  font-weight: 600;
}

.filter-row {
  padding: 0 0 2.5rem;
  background: #ffffff;
}

.filter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-pill {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.4rem 1rem;
  color: var(--muted);
  background: var(--panel);
  font-size: 0.82rem;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.filter-pill.active,
.filter-pill:hover {
  color: #ffffff;
  background: var(--cyan);
  border-color: var(--cyan);
  font-weight: 600;
}

.case-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 6rem;
}

.case-card {
  position: relative;
  isolation: isolate;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.case-card[open] {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(0, 153, 204, 0.1);
}

.case-card summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.case-summary-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.case-category {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--violet-soft);
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
}

.case-summary-left h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.case-summary-left p {
  margin: 0.15rem 0 0;
  color: var(--soft);
  font-size: 0.78rem;
}

.case-summary-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.case-summary-right div {
  text-align: right;
}

.case-summary-right strong {
  display: block;
  color: var(--cyan);
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 800;
}

.case-summary-right span {
  display: block;
  color: var(--soft);
  font-size: 0.72rem;
  margin-top: 0.15rem;
}

.case-summary-right .chevron {
  color: var(--soft);
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.case-card[open] .chevron {
  transform: rotate(180deg);
}

.case-body {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
  gap: 2rem;
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid var(--line-soft);
}

.case-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.micro-title,
.chart-side-title,
.list-title {
  margin: 0 0 0.4rem;
  color: var(--soft);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.case-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.result-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.result-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  flex: 1 1 9rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f0f9ff;
  border: 1px solid rgba(0, 153, 204, 0.15);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.result-icon {
  color: var(--cyan);
  display: block;
  margin-bottom: 0.3rem;
}

.result-card strong {
  display: block;
  color: var(--cyan);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.result-card span:last-child {
  color: var(--muted);
  font-size: 0.72rem;
}

blockquote {
  margin: 0;
  padding: 1.25rem;
  border-left: 3px solid var(--violet);
  border-radius: 8px;
  background: #faf5ff;
}

blockquote p {
  color: var(--ink);
  font-size: 0.9rem;
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  color: var(--soft);
  font-size: 0.75rem;
  font-style: normal;
}

.spark-chart {
  height: 200px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 0.5rem;
}

.spark-chart div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 0.45rem;
}

.spark-chart span {
  position: relative;
  width: 0.5rem;
  min-height: 0.5rem;
  border-radius: 999px 999px 0 0;
  background: var(--cyan);
  transition:
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

.spark-chart em {
  color: var(--soft);
  font-size: 0.62rem;
  font-style: normal;
}

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

.faq-category {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-soft);
}

.faq-category span {
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  font-weight: 600;
}

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

.faq-item {
  position: relative;
  isolation: isolate;
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.faq-item[open] {
  background: #f0f9ff;
  border-color: rgba(0, 153, 204, 0.3);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.faq-item h2 {
  margin: 0;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.faq-item[open] h2 {
  color: var(--ink);
  font-weight: 600;
}

.faq-item summary span {
  color: var(--soft);
  flex: 0 0 auto;
  transition: transform 0.2s;
}

.faq-item[open] summary span {
  color: var(--cyan);
  transform: rotate(180deg);
}

.faq-item div {
  padding: 0 1.5rem 1.5rem;
}

.faq-item p {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--cyan-soft);
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

.contact-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: 4rem;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan-soft), var(--violet-soft));
  border: 1px solid rgba(0, 153, 204, 0.15);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-card p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.legal-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.legal-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-panel p:last-child {
  margin-bottom: 0;
  color: var(--soft);
  font-size: 0.78rem;
}

.search-box {
  max-width: 448px;
  margin-top: 1.5rem;
}

.search-box input,
.newsletter-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  font-size: 0.875rem;
  padding: 0.65rem 1rem;
  outline: none;
}

.article-list {
  padding-bottom: 6rem;
}

.article-block {
  margin-bottom: 2.5rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.article-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.article-card:focus-visible {
  outline: 3px solid rgba(0, 153, 204, 0.26);
  outline-offset: 3px;
}

.article-meta,
.article-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.article-meta > div,
.article-foot > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.type-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 500;
}

.article-category,
.article-meta time {
  color: var(--soft);
  font-size: 0.75rem;
}

.article-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 700;
}

.article-card.large h2 {
  font-size: 1.1rem;
}

.article-card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.article-foot {
  padding-top: 0.5rem;
  border-top: 1px solid var(--line-soft);
}

.tag {
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--line-soft);
  color: var(--muted);
  font-size: 0.68rem;
}

.article-read {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.article-card:hover .article-read,
.article-card:focus-visible .article-read,
.article-card:focus-within .article-read {
  transform: translateX(3px);
}

.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.article-detail-meta span,
.article-detail-meta time {
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  color: var(--muted);
  font-size: 0.75rem;
}

.article-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 6rem;
}

.article-detail > section {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.article-detail h2 {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
}

.article-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.85;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.article-tags span {
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--line-soft);
  color: var(--muted);
  font-size: 0.75rem;
}

.empty-state {
  display: none;
  text-align: center;
  padding: 5rem 0;
  color: var(--soft);
}

.about-hero {
  padding: 8rem 0 5rem;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(0, 153, 204, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(109, 40, 217, 0.05) 0%, transparent 60%),
    #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}

.about-hero h1 {
  font-size: 3.2rem;
}

.about-hero p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-stats div,
.team-card,
.contact-panel {
  padding: 1.5rem;
}

.about-stats div {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.about-stats strong {
  display: block;
  color: var(--cyan);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.about-stats span {
  display: block;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.about-stats em {
  display: block;
  color: var(--soft);
  font-size: 0.72rem;
  font-style: normal;
}

.value-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.value-card {
  background: #ffffff;
}

.team-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan-soft), var(--violet-soft));
  border: 1px solid rgba(0, 153, 204, 0.2);
}

.team-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.team-head p,
.team-card > p {
  margin: 0;
  color: var(--soft);
  font-size: 0.75rem;
}

.team-card > p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.expertise-list span {
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--line-soft);
  color: var(--muted);
  font-size: 0.68rem;
}

.history {
  position: relative;
}

.history::before {
  content: "";
  position: absolute;
  left: 6rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), var(--violet), transparent);
}

.history-row {
  display: grid;
  grid-template-columns: 6rem 1.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.5rem;
}

.history-row time {
  text-align: right;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.history-row span {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.25rem;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: #ffffff;
}

.history-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-panel h3 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.contact-panel dl {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 0.5rem 0.75rem;
  margin: 0;
}

.contact-panel dt {
  color: var(--soft);
  font-size: 0.8rem;
}

.contact-panel dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.8rem;
}

.contact-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-info-grid {
  display: grid;
  gap: 1.25rem;
}

.lead-board {
  padding: 1.1rem 1.25rem;
  background: #ffffff;
}

.lead-board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.lead-board-head h3,
.lead-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead-board-head h3 {
  font-size: 1.2rem;
}

.lead-board-head > span {
  flex: 0 0 auto;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
}

.lead-board-copy,
.lead-dialog-head p:last-child,
.lead-privacy,
.lead-status {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.lead-board-copy {
  max-width: 720px;
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  line-height: 1.55;
}

.lead-board .lead-form-grid {
  gap: 0.65rem;
}

.lead-board .lead-field {
  gap: 0.28rem;
}

.lead-board .lead-field input,
.lead-board .lead-field select,
.lead-board .lead-field textarea {
  padding: 0.58rem 0.72rem;
  font-size: 0.84rem;
}

.lead-board .lead-field textarea {
  min-height: 4.5rem;
}

.lead-board .lead-privacy {
  margin: 0.55rem 0 0.65rem;
  font-size: 0.78rem;
  line-height: 1.5;
}

.lead-board .lead-status {
  margin: 0.45rem 0 0;
  min-height: 1.1rem;
}

.lead-form {
  position: relative;
  z-index: 3;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lead-field-full {
  grid-column: 1 / -1;
}

.lead-field span {
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
}

.lead-field em {
  color: var(--cyan);
  font-style: normal;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.86rem;
  outline: none;
  padding: 0.72rem 0.85rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.lead-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.lead-form-compact .lead-field textarea {
  min-height: 5.8rem;
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: rgba(0, 153, 204, 0.55);
  background: #f8fdff;
  box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.12);
}

.lead-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-privacy {
  margin: 0.9rem 0 1rem;
}

.lead-submit {
  border: 0;
}

.lead-submit:disabled {
  cursor: progress;
  opacity: 0.7;
}

.lead-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  font-weight: 600;
}

.lead-status[data-state="success"] {
  color: var(--green);
}

.lead-status[data-state="error"] {
  color: #dc2626;
}

.lead-status[data-state="loading"] {
  color: var(--cyan);
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(10px);
}

.lead-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: min(90vh, 860px);
  overflow: auto;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.2);
  padding: 1.75rem;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-modal.is-open .lead-dialog {
  transform: translateY(0) scale(1);
}

.lead-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.lead-modal-close:hover,
.lead-modal-close:focus-visible {
  border-color: rgba(0, 153, 204, 0.35);
  background: var(--cyan-soft);
  color: var(--cyan);
}

.lead-dialog h2 {
  padding-right: 2.5rem;
  font-size: 1.55rem;
}

.lead-dialog-head {
  margin-bottom: 1.25rem;
}

.lead-dialog-head p:last-child {
  margin: 0.7rem 0 0;
  max-width: 560px;
}

.lead-dialog .lead-form-grid {
  gap: 0.75rem;
}

.lead-dialog .lead-field input,
.lead-dialog .lead-field select,
.lead-dialog .lead-field textarea {
  padding: 0.62rem 0.75rem;
}

.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding: 3rem 0 2.5rem;
}

.footer-copy {
  max-width: 240px;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 1rem;
  color: var(--soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.newsletter-copy {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.newsletter-fields {
  display: flex;
  gap: 0.5rem;
}

.newsletter-status {
  min-height: 1.1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.newsletter-status[data-state="success"] {
  color: var(--green);
}

.newsletter-status[data-state="error"] {
  color: #dc2626;
}

.newsletter-status[data-state="loading"] {
  color: var(--cyan);
}

.newsletter-form input {
  background: #ffffff;
  font-size: 0.8rem;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
}

.newsletter-form button {
  flex: 0 0 auto;
  border: none;
  border-radius: 4px;
  background: var(--cyan);
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.footer-bottom p,
.footer-bottom a {
  color: var(--soft);
  font-size: 0.72rem;
}

.footer-bottom div {
  display: flex;
  gap: 1rem;
}

/* Progressive motion layer: content stays server-rendered for GEO and AI crawlers. */
.motion-enhanced .reveal-on-scroll {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 22px), 0) scale(0.985);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 55ms);
  will-change: opacity, filter, transform;
}

.motion-enhanced .feature-card.reveal-on-scroll,
.motion-enhanced .platform-card.reveal-on-scroll,
.motion-enhanced .article-card.reveal-on-scroll,
.motion-enhanced .value-card.reveal-on-scroll,
.motion-enhanced .team-card.reveal-on-scroll,
.motion-enhanced .case-card.reveal-on-scroll,
.motion-enhanced .faq-section.reveal-on-scroll,
.motion-enhanced .contact-panel.reveal-on-scroll {
  --reveal-y: 28px;
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y), 0) scale(0.972);
}

.motion-enhanced .reveal-on-scroll.is-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-enhanced .motion-scale-x {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: transform;
}

.motion-enhanced .motion-scale-y {
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: transform;
}

.motion-enhanced .motion-scale-x.is-visible,
.motion-enhanced .motion-scale-y.is-visible {
  transform: scale(1);
}

.motion-enhanced .path-reveal::before {
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-enhanced .path-reveal.is-visible::before {
  transform: scaleY(1);
}

.motion-enhanced .timeline-row .timeline-dot span,
.motion-enhanced .history-row span {
  transform: scale(0.62);
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.48s ease;
}

.motion-enhanced .timeline-row.is-visible .timeline-dot span,
.motion-enhanced .history-row.is-visible span {
  transform: scale(1);
  box-shadow: 0 0 0 6px rgba(0, 153, 204, 0.08);
}

.motion-enhanced .radar-motion .radar-line {
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  transition: stroke-dashoffset 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
}

.motion-enhanced .radar-motion .radar-fill {
  opacity: 0;
  transform: scale(0.92);
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity 0.62s ease 0.45s,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

.motion-enhanced .radar-motion.is-visible .radar-line {
  stroke-dashoffset: 0;
}

.motion-enhanced .radar-motion.is-visible .radar-fill {
  opacity: 1;
  transform: scale(1);
}

.motion-enhanced .count-up {
  font-variant-numeric: tabular-nums;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .btn:focus-visible,
  .nav-cta:hover,
  .nav-cta:focus-visible,
  .filter-pill:hover,
  .filter-pill:focus-visible {
    transform: translateY(-1px);
  }

  .btn.primary:hover,
  .nav-cta:hover {
    box-shadow: 0 10px 26px rgba(0, 153, 204, 0.18);
  }

  .btn.secondary:hover,
  .filter-pill:hover {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  }

  .feature-card:hover,
  .platform-card:hover,
  .article-card:hover,
  .value-card:hover,
  .team-card:hover,
  .contact-panel:hover,
  .timeline-card:hover,
  .case-card:hover,
  .faq-item:hover,
  .result-card:hover,
  .contact-card:hover,
  .legal-panel:hover {
    transform: translateY(-4px);
  }

  .motion-enhanced .feature-card.reveal-on-scroll.is-visible:hover,
  .motion-enhanced .platform-card.reveal-on-scroll.is-visible:hover,
  .motion-enhanced .article-card.reveal-on-scroll.is-visible:hover,
  .motion-enhanced .value-card.reveal-on-scroll.is-visible:hover,
  .motion-enhanced .team-card.reveal-on-scroll.is-visible:hover,
  .motion-enhanced .case-card.reveal-on-scroll.is-visible:hover,
  .motion-enhanced .contact-panel.reveal-on-scroll.is-visible:hover {
    transform: translate3d(0, -4px, 0) scale(1.004);
  }

  .platform-card:hover .platform-head span,
  .case-card:hover .case-category,
  .article-card:hover .type-pill,
  .faq-item:hover summary span {
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .btn::after,
  .nav-cta::after,
  .filter-pill::after,
  .feature-card::before,
  .platform-card::before,
  .article-card::before,
  .value-card::before,
  .team-card::before,
  .contact-panel::before,
  .timeline-card::before,
  .case-card::before,
  .faq-item::before,
  .result-card::before,
  .contact-card::before,
  .legal-panel::before {
    display: none !important;
  }

  .btn:hover,
  .nav-cta:hover,
  .filter-pill:hover,
  .feature-card:hover,
  .platform-card:hover,
  .article-card:hover,
  .value-card:hover,
  .team-card:hover,
  .contact-panel:hover,
  .timeline-card:hover,
  .case-card:hover,
  .faq-item:hover,
  .result-card:hover,
  .contact-card:hover,
  .legal-panel:hover {
    transform: none !important;
  }
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
  }

  .mobile-toggle .toggle-close,
  .navbar.mobile-open .toggle-open {
    display: none;
  }

  .navbar.mobile-open .toggle-close {
    display: inline;
  }

  .navbar.mobile-open .mobile-nav {
    display: flex;
  }

  .mobile-nav {
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-top: 1px solid var(--line);
  }

  .mobile-link {
    color: var(--muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.9rem;
  }

  .mobile-link.active {
    color: var(--cyan);
    font-weight: 600;
  }

  .hero-grid,
  .about-grid,
  .two-col,
  .contact-lead-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.5rem;
  }

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

  .case-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container,
  .nav-inner {
    width: min(100% - 2rem, 1280px);
  }

  .hero,
  .about-hero {
    min-height: auto;
    padding-top: 5.5rem;
  }

  .hero-grid,
  .about-grid {
    padding: 3.5rem 0;
  }

  .hero-title,
  .page-hero h1,
  .page-header h1,
  .about-hero h1 {
    font-size: 2.35rem;
  }

  .hero-copy,
  .page-hero p,
  .page-header p {
    font-size: 1rem;
  }

  .stats-grid,
  .feature-grid,
  .platform-grid,
  .article-grid,
  .featured-grid,
  .value-grid,
  .team-grid,
  .about-stats,
  .contact-grid,
  .lead-form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lead-field-full {
    grid-column: auto;
  }

  .lead-board-head {
    flex-direction: column;
  }

  .lead-modal {
    align-items: end;
    padding: 0.75rem;
  }

  .lead-dialog {
    width: 100%;
    max-height: 92vh;
    padding: 1.25rem;
    border-radius: 12px;
  }

  .section,
  .cta-section {
    padding: 4rem 0;
  }

  .cta-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-heading h2,
  .cta-inner h2 {
    font-size: 1.8rem;
  }

  .case-card summary,
  .case-summary-left,
  .case-summary-right,
  .timeline-card,
  .article-meta,
  .article-foot,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-summary-right div {
    text-align: left;
  }

  .case-summary-right {
    width: 100%;
    gap: 0.75rem;
  }

  .timeline::before {
    left: 0.62rem;
  }

  .timeline-row {
    gap: 1rem;
  }

  .timeline-dot {
    width: 1.25rem;
    flex-basis: 1.25rem;
  }

  .history::before {
    left: 0.35rem;
  }

  .history-row {
    grid-template-columns: 1rem minmax(0, 1fr);
  }

  .history-row time {
    grid-column: 2;
    text-align: left;
  }

  .history-row span {
    grid-row: 1 / span 2;
  }

  .history-row p {
    grid-column: 2;
  }
}
