:root {
  --container: 100%;
  --gutter: 12px;
  --section-y: 40px;
  --topbar-offset: 68px;

  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --ctc-dark: hsl(225 8% 15%);
  --ctc-charcoal: hsl(225 6% 22%);
  --ctc-orange: hsl(16 95% 46%);
  --ctc-orange-hover: hsl(16 95% 40%);
  --ctc-warm-white: hsl(30 20% 98%);
  --ctc-light-gray: hsl(220 14% 96%);
  --ctc-medium-gray: hsl(220 9% 46%);
  --ctc-border: hsl(220 13% 91%);
  --ctc-success: hsl(149 60% 38%);
  --ctc-info: hsl(211 84% 46%);

  --fs-00: 0.75rem;
  --fs-01: 0.875rem;
  --fs-02: 1rem;
  --fs-03: 1.125rem;
  --fs-04: 1.25rem;
  --fs-05: clamp(1.5rem, 2.4vw, 1.875rem);
  --fs-06: clamp(2.125rem, 4.3vw, 3.5rem);

  --lh-compact: 1.2;
  --lh-default: 1.5;
  --lh-relaxed: 1.5;

  --space-unit: 4px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  --radius-1: 4px;
  --radius-2: 10px;
}

@media (min-width: 768px) {
  :root {
    --container: 768px;
    --gutter: 16px;
    --section-y: 64px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container: 1120px;
    --gutter: 20px;
    --section-y: 80px;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: 1120px;
    --gutter: 20px;
    --section-y: 80px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-02);
  color: hsl(220 20% 14%);
  background: #fff;
  line-height: var(--lh-default);
  padding-top: var(--topbar-offset, 0px);
}

body[data-topbar-menu-open="true"] {
  overflow: hidden;
}

body[data-page-loading="true"] {
  overflow: hidden;
}

html[data-page-loading="true"] {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(7 9 15);
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease, visibility 0s linear;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.page-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.page-loader-bars3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.page-loader-bars3 > span {
  width: 10px;
  height: 32px;
  border-radius: 999px;
  background: rgba(243, 80, 28, 0.92);
  box-shadow: 0 12px 28px rgba(243, 80, 28, 0.22);
  opacity: 0.25;
  transform: translateY(0) scaleY(0.55);
  transform-origin: center;
  animation: page-loader-bars3 900ms ease-in-out infinite;
}

.page-loader-bars3 > span:nth-child(2) {
  animation-delay: 160ms;
}

.page-loader-bars3 > span:nth-child(3) {
  animation-delay: 320ms;
}

@keyframes page-loader-bars3 {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0) scaleY(0.55);
  }
  45% {
    opacity: 1;
    transform: translateY(-2px) scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-bars3 > span {
    animation: none;
    opacity: 0.9;
    transform: none;
  }
}

main > section[id] {
  scroll-margin-top: calc(var(--topbar-offset, 0px) + var(--space-3));
}

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

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.accent {
  color: var(--ctc-orange);
}

h1 .accent,
h2 .accent,
h3 .accent,
h4 .accent,
h5 .accent,
h6 .accent {
  color: inherit;
}

.center {
  text-align: center;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--ctc-border);
}

.topbar-inner {
  min-height: 3.5rem;
  padding: var(--space-1) 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: var(--space-5);
}

.topbar-inner > * {
  min-width: 0;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.topbar-logo {
  display: block;
  width: 60px;
  height: 60px;
}

.topbar-brand-text {
  font-size: var(--fs-00);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--fs-01);
  color: hsl(220 9% 46%);
  justify-self: center;
}

.topbar-nav a {
  padding: var(--space-1) 0;
  font-weight: 400;
}

.topbar-nav a:hover {
  color: hsl(220 20% 14%);
  font-weight: 700;
}

.topbar-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--ctc-border);
  border-radius: 12px;
  background: #fff;
  color: hsl(220 20% 14%);
  justify-self: end;
}

.topbar-toggle-box {
  width: 1.125rem;
  display: grid;
  gap: 4px;
}

.topbar-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.topbar-mobile {
  border-top: 1px solid var(--ctc-border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.topbar[data-menu-open="true"] .topbar-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar[data-menu-open="true"] .topbar-toggle-line:nth-child(2) {
  opacity: 0;
}

.topbar[data-menu-open="true"] .topbar-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.topbar-mobile[hidden] {
  display: none;
}

.topbar-mobile-inner {
  padding: var(--space-4) 0 var(--space-5);
  display: grid;
  gap: var(--space-4);
}

.topbar-mobile-nav {
  display: grid;
  gap: var(--space-2);
}

.topbar-mobile-nav a {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--fs-01);
  font-weight: 700;
  color: hsl(220 20% 14%);
  border-bottom: 1px solid var(--ctc-border);
}

.topbar-mobile-cta {
  width: 100%;
  justify-self: stretch;
  min-width: 0;
  height: 2.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.btn-icon {
  font-size: var(--fs-00);
  line-height: 1;
  display: inline-flex;
}

.btn-primary {
  background: var(--ctc-orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--ctc-orange-hover);
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(243, 80, 28, 0.18);
}

.btn-consult {
  min-width: 13.25rem;
  max-width: 100%;
  height: 2.25rem;
  padding: 0 var(--space-5);
  border-radius: var(--radius-1);
  font-size: var(--fs-00);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  justify-self: end;
}

.hero-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 800px at 16% 18%, rgba(243, 80, 28, 0.26), transparent 60%),
    radial-gradient(980px 640px at 86% 22%, rgba(255, 255, 255, 0.1), transparent 58%),
    radial-gradient(860px 620px at 70% 78%, rgba(243, 80, 28, 0.14), transparent 62%),
    linear-gradient(180deg, hsl(226 14% 6%), hsl(225 10% 12%));
}

.hero-dark::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(900px 520px at 50% 8%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.62));
  background-size: 56px 56px, 56px 56px, auto;
  opacity: 0.55;
  transform: translateZ(0);
  pointer-events: none;
  mask-image: radial-gradient(80% 70% at 50% 28%, #000 40%, transparent 78%);
}

.hero-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 20px 28px, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(1px 1px at 88px 64px, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(1px 1px at 132px 140px, rgba(255, 255, 255, 0.1), transparent 55%),
    radial-gradient(1px 1px at 210px 96px, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(1px 1px at 278px 168px, rgba(255, 255, 255, 0.1), transparent 55%),
    radial-gradient(1px 1px at 352px 112px, rgba(255, 255, 255, 0.12), transparent 55%);
  background-size: 420px 240px;
  opacity: 0.26;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "subtitle"
    "actions"
    "footnote"
    "media";
  row-gap: 0;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.25rem, 4.7vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 16px 56px rgba(0, 0, 0, 0.55);
  grid-area: title;
}

.hero-title .accent {
  color: #fff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}

.hero-subtitle {
  margin: var(--space-4) auto 0;
  max-width: 640px;
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.58);
  line-height: var(--lh-relaxed);
  grid-area: subtitle;
}

.hero-actions {
  margin-top: var(--space-5);
  display: flex;
  justify-content: center;
  grid-area: actions;
}

.btn-hero {
  height: 2.75rem;
  padding: 0 var(--space-7);
  min-width: 14.5rem;
  border-radius: var(--radius-1);
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(243, 80, 28, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
  will-change: transform;
}

.btn-hero:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(243, 80, 28, 0.26);
}

.btn-hero:active {
  transform: translateY(0);
  box-shadow: 0 9px 22px rgba(243, 80, 28, 0.22);
}

.btn-hero:focus-visible {
  outline: none;
  box-shadow:
    0 10px 26px rgba(243, 80, 28, 0.22),
    0 0 0 4px rgba(243, 80, 28, 0.18);
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 50%;
  bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  height: 2.75rem;
  padding: 0 var(--space-5);
  border-radius: var(--radius-1);
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: center;
  z-index: 60;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.mobile-sticky-cta.btn-hero:hover {
  transform: translateX(-50%) translateY(-1px);
}

.mobile-sticky-cta.btn-hero:active {
  transform: translateX(-50%) translateY(0);
}

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

@media (max-width: 1023.98px) {
  body.has-mobile-sticky-cta {
    padding-bottom: calc(var(--space-6) + 3.25rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

.hero-footnote {
  margin: var(--space-3) 0 0;
  font-size: var(--fs-01);
  color: rgba(255, 255, 255, 0.38);
  grid-area: footnote;
}

.hero-media {
  margin-top: var(--space-7);
  display: grid;
  justify-items: center;
  grid-template-areas:
    "media"
    "detail";
  row-gap: var(--space-4);
  grid-area: media;
}

.hero-media-frame {
  position: relative;
  width: min(1120px, 100%);
  isolation: isolate;
  grid-area: media;
  z-index: 1;
}

.hero-media-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%) scale(1);
  border-radius: calc(var(--radius-2) + 18px);
  opacity: 0.85;
  background:
    radial-gradient(60% 70% at 25% 40%, rgba(243, 80, 28, 0.55), transparent 60%),
    radial-gradient(55% 60% at 70% 30%, rgba(255, 255, 255, 0.14), transparent 62%),
    radial-gradient(55% 65% at 70% 75%, rgba(243, 80, 28, 0.3), transparent 68%),
    linear-gradient(120deg, rgba(243, 80, 28, 0.2), rgba(255, 255, 255, 0.06), rgba(243, 80, 28, 0.24));
  background-size: 200% 200%;
  filter: blur(52px) saturate(1.15);
  z-index: 0;
  pointer-events: none;
  animation: hero-glow-shift 14s ease-in-out infinite;
}

.hero-dashboard {
  display: block;
  width: 100%;
  border-radius: var(--radius-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  position: relative;
  z-index: 1;
  transform: none;
  transform-origin: center center;
  transition: box-shadow 240ms ease, filter 240ms ease;
  filter: saturate(1.02) contrast(1.02);
}

.hero-stats {
  position: relative;
  width: min(1120px, 100%);
  justify-self: center;
  align-self: stretch;
  grid-area: media;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.hero-stats-grid {
  position: absolute;
  inset: 0;
}

.hero-stat {
  position: absolute;
  width: min(168px, 28vw);
  padding: var(--space-3) var(--space-3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 12, 18, 0.6);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  display: grid;
  gap: var(--space-1);
  pointer-events: auto;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  animation: hero-stat-float 6.4s ease-in-out infinite;
  will-change: transform;
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .hero-stat:hover {
    transform: translateY(-50%) translateY(-2px) scale(0.98);
    background: rgba(15, 16, 22, 0.7);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
      0 22px 60px rgba(0, 0, 0, 0.5),
      0 1px 0 rgba(255, 255, 255, 0.1) inset;
  }
}

.hero-stat:active {
  transform: translateY(-50%) translateY(0) scale(0.95);
}

 

@keyframes hero-stat-float {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-8px);
  }
}

.hero-stat:focus-visible {
  outline: none;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 0 4px rgba(243, 80, 28, 0.22);
}

.hero-stat[aria-pressed="true"] {
  border-color: rgba(243, 80, 28, 0.55);
  background:
    linear-gradient(135deg, rgba(243, 80, 28, 0.18) 0%, rgba(255, 255, 255, 0.08) 55%, rgba(243, 80, 28, 0.14) 100%),
    rgba(15, 16, 22, 0.72);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.52),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-stat-value {
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.hero-stat-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.44);
}

.hero-stat--gp {
  left: -56px;
  top: 18%;
  animation-delay: -0.8s;
}

.hero-stat--pm {
  left: -56px;
  top: 50%;
  animation-delay: -2.6s;
}

.hero-stat--apl {
  left: -56px;
  top: 82%;
  animation-delay: -4.2s;
}

.hero-stat--cr {
  right: -56px;
  top: 18%;
  animation-delay: -1.7s;
}

.hero-stat--apo {
  right: -56px;
  top: 50%;
  animation-delay: -3.4s;
}

.hero-stat--aov {
  right: -56px;
  top: 82%;
  animation-delay: -5.1s;
}

.hero-stat-detail {
  grid-area: detail;
  width: min(1120px, 100%);
  padding: var(--space-3) var(--space-4);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 18, 0.55);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  pointer-events: none;
}

.hero-stat-detail strong {
  color: rgba(255, 255, 255, 0.92);
}

.hero-stat-detail .pos {
  color: rgba(134, 239, 172, 0.95);
}

.hero-stat-detail .neg {
  color: rgba(251, 113, 133, 0.95);
}

.hero-stat-detail .neu {
  color: rgba(255, 255, 255, 0.62);
}

@keyframes hero-glow-shift {
  0% {
    background-position: 0% 40%;
    transform: translate(-50%, -50%) scale(0.98);
    opacity: 0.78;
    filter: blur(50px) saturate(1.1) hue-rotate(0deg);
  }
  50% {
    background-position: 100% 60%;
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.9;
    filter: blur(56px) saturate(1.2) hue-rotate(10deg);
  }
  100% {
    background-position: 0% 40%;
    transform: translate(-50%, -50%) scale(0.98);
    opacity: 0.78;
    filter: blur(50px) saturate(1.1) hue-rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media-frame::before {
    animation: none;
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 0.75;
  }

  .hero-dashboard {
    transform: none;
    transition: none;
  }

  .hero-stat {
    animation: none;
    transition: none;
  }
}

@media (max-width: 767.98px) {
  .hero-media {
    grid-template-areas:
      "media"
      "detail"
      "stats";
    row-gap: var(--space-4);
  }

  .hero-media-frame {
    width: min(1120px, 100%);
  }

  .hero-stats {
    margin-top: 0;
    grid-area: stats;
    pointer-events: auto;
    width: min(1120px, 100%);
    align-self: auto;
  }

  .hero-stats-grid {
    position: static;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
  }

  .hero-stat {
    position: static;
    width: auto;
    transform: none;
    animation: none;
  }

  .hero-stat-detail {
    width: min(1120px, 100%);
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    text-align: center;
    grid-template-columns: 1fr;
    column-gap: 0;
    align-items: start;
    grid-template-areas:
      "title"
      "subtitle"
      "actions"
      "footnote"
      "media";
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    margin-top: var(--space-7);
    align-self: auto;
  }
}

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

.section-light {
  background: #fff;
}

.section-dark {
  background: var(--ctc-dark);
}

@media (min-width: 1400px) {
  .problems-grid,
  .feature-grid,
  .cs-wrapper,
  .pricing-head,
  .pricing-grid {
    max-width: 100%;
  }

  .feature-grid,
  .pricing-grid,
  .how-steps {
    align-items: stretch;
    grid-auto-rows: 1fr;
  }

  .feature-card,
  .pricing-card,
  .how-step {
    width: 100%;
    height: 100%;
  }

  .how-steps,
  .ui-preview,
  .ai-chatbox {
    max-width: 100%;
  }
}

.why {
  --why-section-y: var(--section-y);
  --why-grid-gap: 16px;
  --why-legend-gap: 8px;
  --why-steps-gap: 8px;
  --why-steps-offset: 10px;
  --why-step-pad-y: 8px;
  --why-step-pad-x: 8px;
  --why-card-padding: 14px;
  --why-card-min-h: 184px;
  --why-card-gap: 8px;
  --why-col-padding: 10px;
  --why-wheel-h: 292px;
  --why-wheel-min-h: 292px;
  --why-wheel-bleed: 8px;
  --why-wheel-pad-right: 6px;
  --why-slide-gap: 10px;
  --why-slide-inactive-opacity: 0.28;
  --why-slide-near-opacity: 0.56;
  position: relative;
  overflow: hidden;
  padding-block: var(--why-section-y);
}

@media (min-width: 768px) {
  .why {
    --why-grid-gap: 20px;
    --why-legend-gap: 10px;
    --why-steps-gap: 10px;
    --why-steps-offset: 12px;
    --why-step-pad-y: 9px;
    --why-step-pad-x: 10px;
    --why-card-padding: 16px;
    --why-card-min-h: 196px;
    --why-card-gap: 10px;
    --why-col-padding: 12px;
    --why-wheel-h: 332px;
    --why-wheel-min-h: 332px;
    --why-wheel-bleed: 10px;
    --why-wheel-pad-right: 8px;
    --why-slide-gap: 12px;
    --why-slide-inactive-opacity: 0.3;
    --why-slide-near-opacity: 0.58;
  }
}

@media (min-width: 1024px) {
  .why {
    --why-grid-gap: 24px;
    --why-legend-gap: 12px;
    --why-steps-gap: 12px;
    --why-steps-offset: 14px;
    --why-step-pad-y: 10px;
    --why-step-pad-x: 10px;
    --why-card-padding: 18px;
    --why-card-min-h: 212px;
    --why-card-gap: 12px;
    --why-col-padding: 14px;
    --why-wheel-h: 372px;
    --why-wheel-min-h: 372px;
    --why-wheel-bleed: 12px;
    --why-wheel-pad-right: 10px;
    --why-slide-gap: 14px;
    --why-slide-inactive-opacity: 0.32;
    --why-slide-near-opacity: 0.6;
  }
}

.why .container {
  position: relative;
  z-index: 1;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 520px at 12% 34%, rgba(243, 80, 28, 0.16), transparent 60%),
    radial-gradient(900px 520px at 92% 8%, rgba(255, 255, 255, 0.06), transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: var(--why-grid-gap);
  align-items: start;
}

.why-grid > * {
  min-width: 0;
}

.why-head {
  text-align: left;
  position: sticky;
  top: calc(var(--topbar-offset, 0px) + var(--space-5));
}

.why-head .section-subtitle {
  max-width: 34rem;
}

.why-legend {
  margin-top: var(--why-steps-offset);
  display: flex;
  align-items: center;
  gap: var(--why-legend-gap);
  flex-wrap: wrap;
}

.why-chip {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  border-radius: 999px;
  font-size: var(--fs-00);
  font-weight: 650;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
}

.why-chip--typ {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.75);
}

.why-chip--ctc {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.75);
}

.why-steps {
  margin-top: var(--why-steps-offset);
  display: grid;
  gap: var(--why-steps-gap);
  padding-top: var(--why-steps-offset);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-step {
  appearance: none;
  background: transparent;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: var(--why-steps-gap);
  padding: var(--why-step-pad-y) var(--why-step-pad-x);
  border-radius: 12px;
  font: inherit;
  font-size: var(--fs-01);
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.why-step::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  flex: none;
}

.why-step:hover {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.why-step.is-active,
.why-step[aria-selected="true"] {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(243, 80, 28, 0.12);
  border-color: rgba(243, 80, 28, 0.22);
}

.why-step.is-active::before,
.why-step[aria-selected="true"]::before {
  border-color: rgba(243, 80, 28, 0.5);
  background: rgba(243, 80, 28, 0.28);
}

.why-carousel {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: var(--why-steps-offset);
  min-width: 0;
}

.why-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
}

.why-control {
  appearance: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease, opacity 200ms ease;
  backdrop-filter: blur(12px);
}

.why-control:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
}

.why-control:active {
  transform: scale(0.95);
}

.why-control:focus-visible {
  outline: 2px solid rgba(243, 80, 28, 0.7);
  outline-offset: 2px;
}

.why-control:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.why-wheel {
  position: relative;
  display: grid;
  align-content: start;
  gap: var(--why-slide-gap);
  width: 100%;
  min-width: 0;
  height: max(var(--why-wheel-h), var(--why-wheel-min-h));
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: var(--why-wheel-pad-right);
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(243, 80, 28, 0.4) rgba(255, 255, 255, 0.06);
}

.why-wheel::-webkit-scrollbar {
  width: 8px;
}

.why-wheel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.why-wheel::-webkit-scrollbar-thumb {
  background: rgba(243, 80, 28, 0.4);
  border-radius: 999px;
}

.why-wheel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(520px, 92%);
  height: min(520px, 92%);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, transparent 62%, rgba(255, 255, 255, 0.06) 63%, transparent 64%),
    radial-gradient(circle at center, transparent 70%, rgba(243, 80, 28, 0.12) 71%, transparent 72%);
  opacity: 0.7;
  pointer-events: none;
}

.why-slide {
  position: relative;
  width: 100%;
  max-width: 100%;
  transform-origin: 50% 50%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform 320ms ease, opacity 320ms ease, filter 320ms ease, border-color 320ms ease, background 320ms ease;
  opacity: var(--why-slide-inactive-opacity);
  transform: scale(0.965);
  filter: blur(5px);
}

.why-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
  z-index: 4;
  border-color: rgba(243, 80, 28, 0.26);
  background: rgba(255, 255, 255, 0.03);
}

.why-slide.is-next {
  opacity: var(--why-slide-near-opacity);
  transform: translate3d(0, 0, 0) scale(0.985);
  filter: blur(3px);
}

.why-slide.is-prev {
  opacity: var(--why-slide-near-opacity);
  transform: translate3d(0, 0, 0) scale(0.985);
  filter: blur(3px);
}

.why-slide.is-back {
  opacity: var(--why-slide-inactive-opacity);
  transform: scale(0.965);
  filter: blur(6px);
}

.why-card {
  position: relative;
  display: grid;
  align-content: start;
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  min-height: var(--why-card-min-h);
  padding: var(--why-card-padding);
}

.why-card-title {
  margin: 0;
  display: block;
  width: 100%;
  font-size: var(--fs-03);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.15;
  white-space: nowrap;
  text-wrap: nowrap;
}

.why-card-body {
  margin-top: var(--why-card-gap);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--why-card-gap);
}

.why-col {
  border-radius: 14px;
  padding: var(--why-col-padding);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.why-col--ctc {
  border-color: rgba(243, 80, 28, 0.18);
  background: rgba(243, 80, 28, 0.05);
}

.why-col-kicker {
  font-size: var(--fs-00);
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.why-col--ctc .why-col-kicker {
  color: rgba(243, 80, 28, 0.85);
}

.why-col-text {
  margin: max(8px, calc(var(--why-card-gap) - 4px)) 0 0;
  font-size: var(--fs-01);
  color: rgba(255, 255, 255, 0.74);
  line-height: var(--lh-relaxed);
}

.why-col--ctc .why-col-text {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1023.98px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--why-grid-gap);
    justify-items: center;
  }

  .why-head {
    text-align: center;
    position: static;
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .why-head .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .why-legend {
    justify-content: center;
  }

  .why-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    overflow: visible;
  }

  .why-controls {
    justify-content: center;
  }

  .why-carousel {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .why-wheel {
    display: block;
    height: auto;
    overflow: visible;
    padding-right: 0;
    scroll-snap-type: none;
    scroll-behavior: auto;
    scrollbar-width: none;
  }

  .why-wheel::before {
    display: none;
  }

  .why-wheel::-webkit-scrollbar {
    display: none;
  }

  .why-slide {
    display: none;
    transform: none;
    filter: none;
    opacity: 1;
    scroll-snap-align: none;
  }

  .why-slide.is-active {
    display: grid;
  }

  .why-slide.is-prev,
  .why-slide.is-next,
  .why-slide.is-back {
    display: none;
  }

  .why-step {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    white-space: normal;
  }

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

@media (prefers-reduced-motion: reduce) {
  .why-slide {
    transition: none;
  }
}

@media (max-width: 767.98px) {
  .why {
    --why-grid-gap: 16px;
    --why-steps-offset: 10px;
    --why-wheel-h: 284px;
    --why-wheel-min-h: 284px;
  }

  .why-head {
    width: 100%;
  }

  .why-legend {
    justify-content: center;
  }

  .why-steps {
    gap: var(--why-steps-gap);
    padding-top: var(--why-steps-offset);
    padding-bottom: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    grid-template-columns: 1fr;
    margin-inline: 0;
    padding-inline: 0;
  }

  .why-steps::-webkit-scrollbar {
    display: none;
  }

  .why-step {
    min-height: 44px;
    font-size: var(--fs-00);
  }

  .why-controls {
    gap: 10px;
  }

  .why-control {
    width: 36px;
    height: 36px;
  }

  .why-carousel {
    width: 100%;
  }

  .why-wheel {
    height: auto;
  }

  .why-card {
    border-radius: 14px;
  }

  .why-col {
    border-radius: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .why {
    --why-wheel-h: 320px;
    --why-wheel-min-h: 320px;
  }

  .why-head {
    width: min(100%, 760px);
  }

  .why-carousel {
    width: min(100%, 760px);
  }
}

.section-head {
  margin-bottom: var(--space-6);
}

.section-title {
  margin: 0;
  font-size: var(--fs-05);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.section-title.dark {
  color: #fff;
}

.section-subtitle {
  margin: var(--space-3) 0 0;
  font-size: var(--fs-02);
  line-height: var(--lh-relaxed);
  color: hsl(220 9% 46%);
}

.section-subtitle.dark {
  color: rgba(255, 255, 255, 0.45);
}

.problems {
  position: relative;
  overflow: hidden;
}

.problems .container {
  position: relative;
  z-index: 1;
}

.problems-grid {
  margin: 0;
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-6);
  align-items: start;
}

.problems-head {
  position: sticky;
  top: calc(var(--topbar-offset, 0px) + var(--space-5));
}

.problems-head .section-title {
  text-align: left;
  text-wrap: balance;
  max-width: 27ch;
}

.problems-head .section-title .accent {
  display: inline;
  width: auto;
}

.problems-subtitle {
  margin: var(--space-3) 0 0;
  max-width: 44ch;
  font-size: var(--fs-02);
  line-height: var(--lh-default);
  color: hsl(220 9% 46%);
}

.problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ctc-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  counter-reset: problem;
}

.problem-card {
  position: relative;
  border-bottom: 1px solid var(--ctc-border);
  background: transparent;
  transition: background-color 160ms ease;
  counter-increment: problem;
}

.problem-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(243, 80, 28, 0.9), rgba(243, 80, 28, 0.25));
  opacity: 0;
}

.problem-card::after {
  content: counter(problem, decimal-leading-zero);
  position: absolute;
  right: var(--space-5);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(15, 23, 42, 0.45);
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}

.problem-card:last-child {
  border-bottom: 0;
}

.problem-card-inner {
  position: relative;
  z-index: 1;
  padding: var(--space-5) var(--space-6);
  padding-right: calc(var(--space-6) + 3.75rem);
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.problem-copy {
  min-width: 0;
}

.problem-text {
  margin: 0;
  font-size: var(--fs-02);
  line-height: 1.45;
  color: hsl(220 10% 36%);
}

.warn {
  color: var(--ctc-orange);
  display: inline-flex;
  flex: none;
}

.problem-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: radial-gradient(16px 16px at 30% 30%, rgba(243, 80, 28, 0.25), rgba(243, 80, 28, 0.1));
  border: 1px solid rgba(243, 80, 28, 0.18);
  display: grid;
  place-items: center;
  box-shadow:
    0 10px 30px rgba(243, 80, 28, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.problem-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.divider-dark {
  height: calc(var(--space-8) + var(--space-3));
  background: #07090c;
}

.feature-grid {
  margin: var(--space-6) 0 0;
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--ctc-border);
  border-radius: var(--radius-2);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.feature-card--big {
  grid-column: span 2;
  padding: var(--space-6);
}

.feature-body {
  max-width: 38rem;
}

.feature-media {
  margin-top: auto;
  border-radius: calc(var(--radius-2) - 2px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(80% 100% at 82% 10%, rgba(243, 80, 28, 0.22), transparent 56%),
    radial-gradient(90% 120% at 10% 10%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, #0b0d12, #161922);
  padding: 0;
  height: 170px;
  perspective: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.feature-card--big .feature-media {
  height: 220px;
  padding: 0;
}

.feature-illus {
  --illus-panel-fill: hsl(225 10% 11%);
  --illus-panel-stroke: rgba(255, 255, 255, 0.10);
  --illus-grid-stroke: rgba(255, 255, 255, 0.06);
  --illus-stroke: rgba(255, 255, 255, 0.42);
  --illus-text-stroke: rgba(255, 255, 255, 0.24);
  --illus-muted-fill: rgba(255, 255, 255, 0.07);
  --illus-accent-fill: rgba(243, 80, 28, 0.92);
  --illus-accent-soft: rgba(243, 80, 28, 0.22);
  --illus-line-stroke: #f3501c;
  --illus-runner-fill: #f3501c;
  --illus-coin-fill: rgba(243, 80, 28, 0.18);
  --illus-tag-fill: rgba(255, 255, 255, 0.05);
  --illus-box-fill: rgba(255, 255, 255, 0.05);
  --illus-clock-fill: rgba(255, 255, 255, 0.05);
  --illus-clock-stroke: rgba(255, 255, 255, 0.14);
  --illus-scan-fill: rgba(243, 80, 28, 0.10);
  --illus-meg-fill: rgba(255, 255, 255, 0.05);
  --illus-meg-accent-fill: rgba(243, 80, 28, 0.16);
  --illus-arrow-stroke: #f3501c;
  width: 100%;
  height: 100%;
  display: block;
  filter:
    drop-shadow(0 26px 70px rgba(0, 0, 0, 0.18))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.10));
}

.feature-illus g[data-depth] {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

.feature-illus .ui-mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.feature-illus .ui-label {
  font-size: 8.5px;
  fill: rgba(255, 255, 255, 0.62);
}

.feature-illus .ui-duration {
  font-size: 8.5px;
  fill: rgba(255, 255, 255, 0.58);
}

.feature-illus .ui-kpi-label {
  font-size: 8px;
  fill: rgba(255, 255, 255, 0.55);
}

.feature-illus .ui-kpi-value {
  font-size: 12px;
  fill: rgba(255, 255, 255, 0.84);
}

.feature-illus--snapshot .ui-kpi-label {
  font-size: 7px;
}

.feature-illus--snapshot .ui-kpi-value {
  font-size: 9px;
  letter-spacing: 0;
}

.feature-illus--snapshot .ui-kpi-value.accent {
  filter: none;
}

.feature-illus .ui-kpi-value.accent {
  fill: var(--ctc-orange);
  filter: drop-shadow(0 10px 18px rgba(243, 80, 28, 0.35));
}

.feature-illus .ui-table-head {
  font-size: 9px;
  fill: rgba(255, 255, 255, 0.52);
}

.feature-illus .ui-table-label {
  font-size: 10px;
  fill: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}

.feature-illus .ui-profit {
  font-size: 10px;
  fill: rgba(255, 255, 255, 0.82);
}

.feature-illus .ui-profit.good {
  fill: rgba(34, 197, 94, 0.92);
}

.feature-illus .ui-profit.bad {
  fill: rgba(239, 68, 68, 0.92);
}

.feature-illus .ui-profit.borderline {
  fill: rgba(243, 80, 28, 0.92);
}

.feature-illus .ui-search {
  font-size: 10px;
  fill: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}

.feature-illus .ui-tooltip {
  font-size: 9px;
  fill: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.feature-illus--timeline .tl-pulse {
  stroke-dasharray: 18 380;
  stroke-dashoffset: 0;
  animation: tl-pulse 7.8s linear infinite;
}

.feature-illus--timeline .tl-node {
  fill: rgba(11, 13, 18, 0.9);
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 1.4;
}

.feature-illus--timeline .tl-node.accent {
  fill: rgba(243, 80, 28, 0.18);
  stroke: rgba(243, 80, 28, 0.95);
}

.feature-illus--profit .row-shell {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}

.feature-illus--profit .row-good .row-shell {
  stroke: rgba(34, 197, 94, 0.62);
}

.feature-illus--profit .row-borderline .row-shell {
  stroke: rgba(243, 80, 28, 0.32);
}

.feature-illus--profit .roi-track {
  fill: rgba(255, 255, 255, 0.06);
}

.feature-illus--profit .roi-fill {
  transform-box: fill-box;
  transform-origin: left center;
  animation: roi-fill 5.8s ease-in-out infinite;
}

.feature-illus--profit .roi-fill--good {
  fill: url(#pr-fill-good);
}

.feature-illus--profit .roi-fill--borderline {
  fill: url(#pr-fill);
  opacity: 0.8;
}

.feature-illus--profit .profit-flash.good {
  filter: drop-shadow(0 10px 18px rgba(34, 197, 94, 0.25));
  animation: profit-flash-good 2.8s ease-in-out infinite;
}

.feature-illus--profit .profit-flash.borderline {
  filter: drop-shadow(0 10px 18px rgba(243, 80, 28, 0.25));
  animation: profit-flash-borderline 2.8s ease-in-out infinite;
}

.feature-illus--keywords .search-rotate {
  transform-box: fill-box;
  transform-origin: center;
  animation: search-spin 7.2s ease-in-out infinite;
}

.feature-illus--keywords .kw-shell {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 255, 255, 0.10);
  stroke-width: 1;
}

.feature-illus--keywords .kw-bad .kw-shell {
  stroke: rgba(239, 68, 68, 0.42);
  animation: kw-bad-pulse 4.6s ease-in-out infinite;
}

.feature-illus--keywords .kw-good .kw-shell {
  stroke: rgba(34, 197, 94, 0.42);
  animation: kw-good-pulse 4.6s ease-in-out infinite;
}

.feature-illus--keywords .kw-bar {
  fill: rgba(255, 255, 255, 0.18);
}

.feature-illus--keywords .kw-bar.good {
  fill: rgba(34, 197, 94, 0.85);
}

.feature-illus--keywords .kw-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-illus--keywords .kw-line.good {
  stroke: rgba(34, 197, 94, 0.78);
}

.feature-illus--keywords .kw-cursor {
  fill: rgba(255, 255, 255, 0.78);
  animation: cursor-blink 1.8s ease-in-out infinite;
}

.feature-illus--keywords .tooltip-shell {
  fill: rgba(0, 0, 0, 0.28);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}

.feature-illus--keywords .kw-tooltip {
  transform-box: fill-box;
  transform-origin: center;
  animation: tooltip-float 5.2s ease-in-out infinite;
}

.feature-illus--transparency .node-shell {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.2;
}

.feature-illus--transparency .node-shell.accent {
  fill: rgba(243, 80, 28, 0.14);
  stroke: rgba(243, 80, 28, 0.9);
}

.feature-illus--transparency .status-node {
  animation: status-shift 6.2s ease-in-out infinite;
}

.feature-illus--transparency .ui-node {
  font-size: 9px;
  fill: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.feature-illus--transparency .badge {
  fill: rgba(0, 0, 0, 0.24);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.feature-illus--transparency .ui-badge {
  font-size: 8px;
  fill: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
}

.feature-illus--transparency .net-link {
  fill: none;
  stroke: url(#tr-accentLine);
  stroke-width: 2.8;
  stroke-linecap: round;
  opacity: 0.55;
}

.feature-illus--transparency .packet-dot {
  fill: rgba(243, 80, 28, 0.9);
}

.feature-illus--transparency .packet {
  transform-box: fill-box;
  transform-origin: center;
  animation: packet-move 3.9s linear infinite;
}

.feature-illus--transparency .packet-2 {
  animation-delay: 0.9s;
}

.feature-illus--transparency .packet-3 {
  animation-delay: 1.8s;
}

.feature-illus .illu-panel {
  fill: var(--illus-panel-fill);
  stroke: var(--illus-panel-stroke);
  stroke-width: 1.5;
}

.feature-illus .illu-inset {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1.2;
}

.feature-illus .illu-grid {
  fill: none;
  stroke: var(--illus-grid-stroke);
  stroke-width: 1;
}

.feature-illus .illu-line {
  fill: none;
  stroke: var(--illus-line-stroke);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-illus .draw {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: feature-draw 4.6s ease-in-out infinite;
}

.feature-illus .illu-bar {
  fill: var(--illus-muted-fill);
}

.feature-illus .illu-bar.accent {
  fill: var(--illus-accent-fill);
}

.feature-illus .bar {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: feature-bar 3.2s ease-in-out infinite;
}

.feature-illus .bar-1 {
  animation-delay: 0s;
}

.feature-illus .bar-2 {
  animation-delay: 0.15s;
}

.feature-illus .bar-3 {
  animation-delay: 0.3s;
}

.feature-illus .bar-4 {
  animation-delay: 0.45s;
}

.feature-illus .bar-5 {
  animation-delay: 0.6s;
}

.feature-illus .pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: feature-pulse 2.8s ease-in-out infinite;
}

.feature-illus .float {
  transform-box: fill-box;
  transform-origin: center;
  animation: feature-float 6s ease-in-out infinite;
}

.feature-illus .illu-dot {
  fill: rgba(255, 255, 255, 0.22);
}

.feature-illus .illu-dot.accent {
  fill: var(--illus-accent-fill);
}

.feature-illus .illu-track,
.feature-illus .illu-chart,
.feature-illus .illu-tag-text,
.feature-illus .illu-label,
.feature-illus .illu-arrow,
.feature-illus .illu-arrowhead,
.feature-illus .illu-handle,
.feature-illus .illu-coin-mark,
.feature-illus .illu-mini-chart,
.feature-illus .illu-glass,
.feature-illus .illu-hand {
  fill: none;
  stroke: var(--illus-stroke);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-illus .illu-node {
  fill: var(--illus-panel-fill);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
}

.feature-illus .illu-node.accent {
  fill: var(--illus-accent-soft);
  stroke: #f3501c;
}

.feature-illus--timeline .illu-runner {
  fill: var(--illus-runner-fill);
  transform-box: fill-box;
  transform-origin: center;
  animation: timeline-run 4.8s ease-in-out infinite;
}

.feature-illus .illu-clock {
  fill: var(--illus-clock-fill);
  stroke: var(--illus-clock-stroke);
  stroke-width: 2;
}

.feature-illus .illu-center {
  fill: var(--ctc-orange);
}

.feature-illus .hand {
  transform-box: fill-box;
  transform-origin: center;
  animation: clock-spin 6.5s linear infinite;
}

.feature-illus .illu-tag {
  fill: var(--illus-tag-fill);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.5;
}

.feature-illus .illu-tag-text {
  stroke-width: 2.2;
}

.feature-illus .illu-box {
  fill: var(--illus-box-fill);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.5;
}

.feature-illus--profit .illu-sound {
  stroke: var(--ctc-orange);
  stroke-width: 2.8;
  opacity: 0.55;
}

.feature-illus--profit .sound {
  stroke-dasharray: 64;
  stroke-dashoffset: 64;
  animation: sound-pulse 3.4s ease-in-out infinite;
}

.feature-illus--profit .sound-2 {
  animation-delay: 0.6s;
}

.feature-illus .illu-coin {
  fill: var(--illus-coin-fill);
  stroke: #f3501c;
  stroke-width: 2;
}

.feature-illus--keywords .scan {
  transform-box: fill-box;
  transform-origin: center;
  animation: scan-move 5.2s ease-in-out infinite;
}

.feature-illus .illu-scan {
  fill: var(--illus-scan-fill);
  stroke: #f3501c;
  stroke-width: 2;
}

.feature-illus .illu-lens {
  fill: var(--illus-lens-fill, rgba(255, 255, 255, 0.05));
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.2;
}

.feature-illus--transparency .arrow {
  stroke: var(--illus-arrow-stroke);
  stroke-width: 2.8;
  stroke-dasharray: 10 12;
  animation: arrow-move 4.2s linear infinite;
}

.feature-illus--transparency .illu-arrowhead {
  stroke: var(--illus-arrow-stroke);
  stroke-width: 2.8;
}

.feature-illus .illu-megaphone {
  fill: var(--illus-meg-fill);
  stroke: var(--illus-stroke);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-illus .illu-megaphone.accent {
  fill: var(--illus-meg-accent-fill);
}

.feature-illus .illu-tile {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(255, 255, 255, 0.10);
  stroke-width: 1.2;
}

.feature-illus .illu-topbar {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.2;
}

.feature-illus .illu-text {
  fill: none;
  stroke: var(--illus-text-stroke);
  stroke-width: 2.1;
  stroke-linecap: round;
}

.feature-illus .illu-mini {
  fill: rgba(255, 255, 255, 0.07);
}

.feature-illus .illu-divider {
  fill: none;
  stroke: rgba(255, 255, 255, 0.10);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.feature-illus .illu-guide {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 4 7;
}

.feature-illus .illu-row {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.10);
  stroke-width: 1.2;
}

.feature-illus .illu-row.accent {
  fill: rgba(243, 80, 28, 0.10);
  stroke: rgba(243, 80, 28, 0.25);
}

.feature-illus .illu-accent {
  fill: var(--illus-accent-fill);
}

.feature-illus .illu-area {
  fill: var(--illus-accent-soft);
}

.feature-illus .glow {
  filter: drop-shadow(0 12px 24px rgba(243, 80, 28, 0.25));
}

.feature-illus .shimmer {
  fill: rgba(255, 255, 255, 0.10);
  mix-blend-mode: screen;
  transform-box: fill-box;
  transform-origin: center;
  animation: shimmer-sweep 4.8s ease-in-out infinite;
}

.feature-card h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--fs-03);
  font-weight: 800;
  color: hsl(220 20% 14%);
}

.feature-card p {
  margin: 0;
  font-size: var(--fs-01);
  color: hsl(220 9% 46%);
  line-height: var(--lh-default);
}

@keyframes feature-draw {
  0% {
    stroke-dashoffset: 420;
    opacity: 0.25;
  }
  30% {
    opacity: 1;
  }
  55% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -420;
    opacity: 0.25;
  }
}

@keyframes feature-bar {
  0%,
  100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes feature-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes feature-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes timeline-run {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.9;
  }
  50% {
    transform: translateX(220px);
    opacity: 1;
  }
}

@keyframes clock-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes sound-pulse {
  0%,
  100% {
    stroke-dashoffset: 64;
    opacity: 0.25;
  }
  55% {
    stroke-dashoffset: 0;
    opacity: 0.75;
  }
}

@keyframes scan-move {
  0%,
  100% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
}

@keyframes arrow-move {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes shimmer-sweep {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-12px);
  }
  45% {
    opacity: 0;
  }
  60% {
    opacity: 0.65;
  }
  78% {
    opacity: 0;
    transform: translateX(12px);
  }
}

@keyframes tl-pulse {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -398;
  }
}

@keyframes roi-fill {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.75;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes profit-flash-good {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes profit-flash-borderline {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes search-spin {
  0%,
  74% {
    transform: rotate(0deg);
  }
  86% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes kw-bad-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0));
  }
  50% {
    filter: drop-shadow(0 12px 24px rgba(239, 68, 68, 0.22));
  }
}

@keyframes kw-good-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(34, 197, 94, 0));
  }
  50% {
    filter: drop-shadow(0 12px 24px rgba(34, 197, 94, 0.22));
  }
}

@keyframes cursor-blink {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes tooltip-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(6px, -2px, 0);
    opacity: 1;
  }
}

@keyframes status-shift {
  0%,
  36% {
    fill: rgba(255, 255, 255, 0.04);
    stroke: rgba(255, 255, 255, 0.16);
    filter: none;
  }
  50%,
  78% {
    fill: rgba(243, 80, 28, 0.14);
    stroke: rgba(243, 80, 28, 0.92);
    filter: drop-shadow(0 12px 24px rgba(243, 80, 28, 0.28));
  }
  100% {
    fill: rgba(255, 255, 255, 0.04);
    stroke: rgba(255, 255, 255, 0.16);
    filter: none;
  }
}

@keyframes packet-move {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  12% {
    opacity: 0.95;
  }
  78% {
    opacity: 0.95;
  }
  100% {
    transform: translateX(124px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-illus .draw,
  .feature-illus .bar,
  .feature-illus .pulse,
  .feature-illus .float,
  .feature-illus--timeline .illu-runner,
  .feature-illus .hand,
  .feature-illus--profit .sound,
  .feature-illus--keywords .scan,
  .feature-illus--transparency .arrow,
  .feature-illus .shimmer,
  .feature-illus--timeline .tl-pulse,
  .feature-illus--profit .roi-fill,
  .feature-illus--profit .profit-flash,
  .feature-illus--keywords .search-rotate,
  .feature-illus--keywords .kw-bad .kw-shell,
  .feature-illus--keywords .kw-good .kw-shell,
  .feature-illus--keywords .kw-cursor,
  .feature-illus--keywords .kw-tooltip,
  .feature-illus--transparency .status-node,
  .feature-illus--transparency .packet {
    animation: none;
  }
}

.case-studies {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.case-studies::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.cs-wrapper {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}
 
 .cs-tabs {
   margin: var(--space-5) auto 0;
  display: flex;
   align-items: center;
   gap: var(--space-2);
   border: 1px solid var(--ctc-border);
   background: #fff;
   border-radius: 999px;
   padding: 6px;
  width: fit-content;
 }
 
 .cs-tab {
   appearance: none;
   border: 0;
   background: transparent;
   color: hsl(220 9% 38%);
   font-size: var(--fs-01);
   padding: 10px 16px;
   border-radius: 999px;
   cursor: pointer;
   transition: background 180ms ease, color 180ms ease, transform 120ms ease;
 }
 
 .cs-tab:hover {
   background: var(--ctc-light-gray);
 }
 
 .cs-tab:active {
   transform: scale(0.98);
 }
 
 .cs-tab[aria-selected="true"] {
   background: var(--ctc-orange);
   color: #fff;
   box-shadow: 0 8px 18px rgba(243, 80, 28, 0.24);
 }
 
 .cs-tab:focus-visible {
   outline: 2px solid var(--ctc-orange);
   outline-offset: 2px;
   border-radius: 999px;
 }

.cs-group-title {
  margin: 0 0 var(--space-5);
  font-size: var(--fs-04);
  color: var(--ctc-dark);
  font-weight: 600;
  text-align: center;
}

.cs-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-grid-single {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }
}

.cs-card {
  border: 1px solid color-mix(in oklab, var(--ctc-border) 88%, rgba(15, 23, 42, 0.08));
  border-radius: 18px;
  background: #ffffff;
  padding: var(--space-5);
  box-shadow: inset 4px 0 0 var(--ctc-orange), 0 14px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  overflow: visible;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.cs-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(243, 80, 28, 0.1);
  color: var(--ctc-orange);
  box-shadow: 0 12px 28px rgba(243, 80, 28, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cs-card-icon svg {
  width: 20px;
  height: 20px;
}

.cs-company-title {
  margin: 0;
  font-size: var(--fs-03);
  font-weight: 700;
  color: var(--ctc-dark);
  letter-spacing: -0.01em;
}

.cs-case-head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.cs-case-head-copy {
  min-width: 0;
  flex: 1;
}

.cs-case-head .cs-case-score {
  flex: 0 0 auto;
}

@media (max-width: 520px) {
  .cs-case-head {
    flex-wrap: wrap;
  }
  .cs-case-score {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    padding-top: var(--space-3);
    border-top: 1px solid color-mix(in oklab, var(--ctc-border) 90%, rgba(15, 23, 42, 0.08));
  }
}

.cs-case-meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--ctc-border) 92%, rgba(15, 23, 42, 0.08));
  background: color-mix(in oklab, #fff 86%, var(--ctc-light-gray));
  color: color-mix(in oklab, var(--ctc-dark) 60%, var(--ctc-medium-gray));
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.cs-case-score {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding-left: var(--space-3);
  border-left: 1px solid color-mix(in oklab, var(--ctc-border) 90%, rgba(15, 23, 42, 0.08));
}

.cs-case-score-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-case-score-label {
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ctc-medium-gray);
}

.cs-case-score-value {
  font-weight: 700;
  color: var(--ctc-dark);
  font-size: var(--fs-02);
}

.cs-donut {
  --pct: 0;
  --donut-color: var(--ctc-orange);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: conic-gradient(var(--donut-color) calc(var(--pct) * 1%), rgba(15, 23, 42, 0.10) 0);
  position: relative;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.cs-donut::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: #ffffff;
}

.cs-donut--info {
  --donut-color: var(--ctc-info);
}

.cs-case-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: stretch;
  flex: 1;
}

@media (min-width: 900px) {
  .cs-case-body {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.cs-story {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 100%;
  height: 100%;
}

.cs-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.cs-label {
  font-size: var(--fs-00);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ctc-medium-gray);
}

.cs-label.highlight {
  color: var(--ctc-orange);
}

.cs-text {
  margin: 0;
  font-size: var(--fs-01);
  color: hsl(220 9% 38%);
  line-height: var(--lh-relaxed);
}

.cs-text-strong {
  margin: 0;
  font-size: var(--fs-02);
  color: var(--ctc-dark);
  font-weight: 500;
  line-height: var(--lh-relaxed);
}

.cs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.cs-list li {
  position: relative;
  padding-left: var(--space-4);
  font-size: var(--fs-01);
  color: hsl(220 9% 38%);
  line-height: var(--lh-relaxed);
}

.cs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ctc-orange);
}

.cs-list-check li {
  padding-left: var(--space-5);
}

.cs-list-check li::before {
  content: "✓";
  background: none;
  color: var(--ctc-orange);
  font-weight: bold;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: var(--fs-02);
}

.cs-outcome-block {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--ctc-border);
}

.cs-dashboard {
  border-radius: 16px;
  border: 1px solid color-mix(in oklab, var(--ctc-border) 88%, rgba(15, 23, 42, 0.08));
  background: color-mix(in oklab, #fff 94%, var(--ctc-light-gray));
  padding: var(--space-4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  align-self: start;
}

.cs-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.cs-dashboard-toggle {
  appearance: none;
  border: 1px solid color-mix(in oklab, var(--ctc-border) 90%, rgba(15, 23, 42, 0.08));
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ctc-dark);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.cs-dashboard-toggle:hover {
  background: #ffffff;
  border-color: color-mix(in oklab, var(--ctc-orange) 25%, var(--ctc-border));
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.cs-dashboard-toggle:active {
  transform: scale(0.98);
}

.cs-dashboard-toggle:focus-visible {
  outline: 2px solid var(--ctc-orange);
  outline-offset: 2px;
}

.cs-kpi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (max-width: 520px) {
  .cs-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cs-kpi {
  border-radius: 14px;
  border: 1px solid color-mix(in oklab, var(--ctc-border) 88%, rgba(15, 23, 42, 0.10));
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  min-width: 0;
}

.cs-kpi-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cs-kpi-label {
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--ctc-dark) 55%, var(--ctc-medium-gray));
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cs-kpi-hint {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--ctc-border) 90%, rgba(15, 23, 42, 0.08));
  background: rgba(255, 255, 255, 0.9);
  color: var(--ctc-medium-gray);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.cs-kpi-hint:hover {
  background: #ffffff;
  border-color: color-mix(in oklab, var(--ctc-orange) 22%, var(--ctc-border));
}

.cs-kpi-hint:active {
  transform: scale(0.96);
}

.cs-kpi-hint:focus-visible {
  outline: 2px solid var(--ctc-orange);
  outline-offset: 2px;
}

.cs-kpi-hint::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  width: min(240px, 72vw);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--ctc-border) 84%, rgba(15, 23, 42, 0.12));
  background: rgba(15, 23, 42, 0.92);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-01);
  letter-spacing: 0.01em;
  line-height: 1.35;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 10;
}

.cs-kpi-hint:hover::after,
.cs-kpi-hint:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cs-kpi-value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ctc-dark);
}

.cs-kpi-base {
  font-size: 0.82em;
  letter-spacing: -0.01em;
  color: color-mix(in oklab, var(--ctc-dark) 55%, var(--ctc-medium-gray));
}

.cs-count {
  font-variant-numeric: tabular-nums;
}

.cs-dashboard-details {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid color-mix(in oklab, var(--ctc-border) 86%, rgba(15, 23, 42, 0.08));
}

.cs-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  align-items: start;
}

@media (min-width: 720px) {
  .cs-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .cs-mini-grid {
    grid-template-columns: 1fr;
  }
}

.cs-mini {
  border-radius: 14px;
  border: 1px solid color-mix(in oklab, var(--ctc-border) 88%, rgba(15, 23, 42, 0.10));
  background: rgba(255, 255, 255, 0.78);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}

.cs-mini-label {
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ctc-medium-gray);
  font-weight: 700;
}

.cs-mini-value {
  font-size: var(--fs-03);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ctc-dark);
}
 
 [data-cs-panel] {
   display: none;
   opacity: 0;
   transform: translateY(8px);
   transition: opacity 220ms ease, transform 220ms ease;
 }
 
 [data-cs-panel].is-active {
   display: block;
   opacity: 1;
   transform: translateY(0);
 }

.cs-meter {
  margin-top: 6px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--ctc-light-gray);
  overflow: hidden;
  --delta-width: 0%;
  --meter-color: var(--ctc-orange);
}

.cs-meter.is-pos {
  justify-content: flex-end;
}

.cs-meter.has-baseline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--meter-color);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.cs-meter.is-overflow {
  overflow: visible;
}

.cs-meter::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: var(--delta-width);
  border-radius: 999px;
  pointer-events: none;
  transition: width 800ms ease;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.cs-meter.is-neg::after {
  left: 0;
  right: auto;
}

.cs-meter-bar {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width 800ms ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
}

.cs-meter.is-baseline .cs-meter-bar {
  opacity: 0.32;
}

.meter--pos .cs-meter-bar {
  background: var(--ctc-orange);
}

.cs-meter.meter--pos::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)), var(--ctc-orange);
}

.meter--info .cs-meter-bar {
  background: var(--ctc-info);
}

.cs-meter.meter--info::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)), var(--ctc-info);
}

.cs-meter.meter--pos {
  --meter-color: var(--ctc-orange);
}

.cs-meter.meter--info {
  --meter-color: var(--ctc-info);
}

.pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 40% -40px, rgba(243, 80, 28, 0.25), transparent 58%),
    radial-gradient(900px 460px at 92% 20%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(180deg, #07090c, #121521);
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing-head {
  margin: 0 0 var(--space-6);
  width: 100%;
  max-width: 1120px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
}

.pricing-title {
  margin: 0;
  font-size: var(--fs-05);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: #fff;
}

.pricing-subtitle {
  margin: var(--space-3) 0 0;
  max-width: 46ch;
  font-size: var(--fs-02);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.45);
}

.pricing-billing {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  user-select: none;
}

.pricing-billing-label {
  white-space: nowrap;
}

.pricing-switch {
  display: inline-flex;
  align-items: center;
}

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

.pricing-switch-ui {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.pricing-switch-ui::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease, background 160ms ease;
}

.pricing-switch-input:checked + .pricing-switch-ui {
  border-color: rgba(243, 80, 28, 0.45);
  background: rgba(243, 80, 28, 0.18);
}

.pricing-switch-input:checked + .pricing-switch-ui::after {
  transform: translateY(-50%) translateX(20px);
  background: rgba(255, 255, 255, 0.96);
}

.pricing-grid {
  margin: 0;
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: stretch;
}

.pricing-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  cursor: default;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.pricing-card--featured {
  background:
    radial-gradient(120% 140% at 88% 6%, rgba(243, 80, 28, 0.24), transparent 58%),
    radial-gradient(120% 160% at 18% 112%, rgba(243, 80, 28, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-color: rgba(243, 80, 28, 0.35);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.62),
    0 22px 70px rgba(243, 80, 28, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card-head {
  display: grid;
  gap: var(--space-4);
}

.pricing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.pricing-chip {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 140ms ease;
}

.pricing[data-billing="annual"] .pricing-chip {
  opacity: 1;
}

.pricing-plan {
  margin: 0;
  font-size: var(--fs-04);
  font-weight: 850;
  letter-spacing: -0.01em;
  color: #fff;
}

.pricing-tagline {
  margin: var(--space-1) 0 0;
  font-size: var(--fs-01);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.45);
}

.pricing-price {
  display: grid;
  gap: var(--space-1);
}

.pricing-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-3);
}

.pricing-price-value {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.05;
}

.pricing-price-unit {
  font-size: var(--fs-01);
  color: rgba(255, 255, 255, 0.55);
}

.pricing-price-note {
  font-size: var(--fs-00);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: var(--space-5);
}

.pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--fs-01);
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.45;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: rgba(243, 80, 28, 0.20);
  border: 1px solid rgba(243, 80, 28, 0.35);
  box-shadow: 0 10px 24px rgba(243, 80, 28, 0.12);
}

.pricing-features li::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.44rem;
  width: 0.38rem;
  height: 0.2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(-45deg);
}

.pricing-btn,
.pricing-cta {
  width: 100%;
  height: 2.75rem;
  margin-top: auto;
  padding: 0 var(--space-5);
  border-radius: 12px;
  font-size: var(--fs-00);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
}

.pricing-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.pricing-cta {
  box-shadow: 0 12px 28px rgba(243, 80, 28, 0.18);
}

.pricing-terms {
  margin: var(--space-6) auto 0;
  width: 100%;
  max-width: 1120px;
  display: grid;
  gap: var(--space-4);
}

.pricing-terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  align-items: stretch;
}

.pricing-term {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  padding: var(--space-5);
  display: grid;
  gap: var(--space-3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.pricing[data-billing="monthly"] .pricing-term[data-billing-option="annual"],
.pricing[data-billing="annual"] .pricing-term[data-billing-option="monthly"] {
  opacity: 0.72;
}

.pricing[data-billing="monthly"] .pricing-term[data-billing-option="monthly"],
.pricing[data-billing="annual"] .pricing-term[data-billing-option="annual"] {
  border-color: rgba(243, 80, 28, 0.32);
  background: rgba(243, 80, 28, 0.08);
}

.pricing-term-kicker {
  font-size: var(--fs-00);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-term-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.pricing-term-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--fs-01);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.pricing-term-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: rgba(243, 80, 28, 0.18);
  border: 1px solid rgba(243, 80, 28, 0.32);
}

.pricing-terms-summary {
  margin: 0;
  font-size: var(--fs-01);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.55);
  max-width: 76ch;
}

@media (max-width: 1023.98px) {
  .pricing-head {
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
  }

  .pricing-billing {
    width: 100%;
    justify-content: center;
  }

  .pricing-terms-grid {
    grid-template-columns: 1fr;
  }
}

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

.how {
  position: relative;
  overflow: hidden;
  background: var(--ctc-warm-white);
  border-top: 1px solid var(--ctc-border);
  border-bottom: 1px solid var(--ctc-border);
}

.how::before {
  display: none;
}

.how-inner {
  position: relative;
  text-align: center;
}

.how-title {
  margin: 0;
  font-size: var(--fs-05);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.how-subtitle {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.how-steps {
  margin: var(--space-6) auto 0;
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: stretch;
}

.how-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--ctc-border);
  border-radius: 18px;
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-auto-rows: min-content;
  column-gap: var(--space-4);
  row-gap: var(--space-2);
  align-items: start;
  text-align: left;
  box-shadow: inset 4px 0 0 var(--ctc-orange), 0 16px 46px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.how-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--ctc-orange);
  background: radial-gradient(18px 18px at 30% 30%, rgba(243, 80, 28, 0.25), rgba(243, 80, 28, 0.1));
  border: 1px solid rgba(243, 80, 28, 0.18);
  box-shadow:
    0 10px 30px rgba(243, 80, 28, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  grid-column: 1;
  grid-row: 1 / span 3;
}

.how-icon svg {
  width: 22px;
  height: 22px;
}

.how-step-num {
  justify-self: start;
  align-self: center;
  font-size: var(--fs-00);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ctc-orange);
  display: inline-flex;
  align-items: center;
  height: 1.6rem;
  padding: 0 var(--space-3);
  border-radius: 999px;
  background: hsl(24 100% 97%);
  border: 1px solid hsl(16 95% 46% / 0.14);
}

.how-step-title {
  grid-column: 2;
  font-size: var(--fs-03);
  font-weight: 800;
  color: hsl(220 20% 14%);
  line-height: 1.25;
}

.how-step-meta {
  grid-column: 2;
  font-size: var(--fs-01);
  color: hsl(220 9% 46%);
  line-height: 1.5;
}

.cta-band {
  background: var(--ctc-dark);
}

.cta-band-inner {
  text-align: center;
}

.cta-band-title {
  margin: 0;
  font-size: var(--fs-05);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.cta-band-sub {
  margin: var(--space-3) 0 0;
  font-size: var(--fs-02);
  color: rgba(255, 255, 255, 0.45);
}

.btn-cta {
  margin-top: var(--space-5);
  height: 2.75rem;
  padding: 0 var(--space-5);
  border-radius: var(--radius-1);
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(243, 80, 28, 0.22);
}

.ads-grid {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: stretch;
}

.oct-card {
  background: #fff;
  border: 1px solid var(--ctc-border);
  border-radius: 18px;
  padding: var(--space-6);
  display: grid;
  gap: var(--space-3);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
}

.oct-card--center {
  border-color: rgba(243, 80, 28, 0.35);
  box-shadow: 0 18px 50px rgba(243, 80, 28, 0.08);
}

.oct-card-kicker {
  font-size: var(--fs-00);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(220 9% 46%);
}

.oct-card-title {
  margin: 0;
  font-size: var(--fs-04);
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.oct-card-sub {
  margin: var(--space-2) 0 var(--space-3);
  color: hsl(220 9% 46%);
}

.oct-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.oct-list li {
  position: relative;
  padding-left: 1.35rem;
  color: hsl(220 9% 30%);
  line-height: 1.45;
}

.oct-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: rgba(243, 80, 28, 0.18);
  border: 1px solid rgba(243, 80, 28, 0.35);
}

.oct-list-check li::before {
  width: 0.95rem;
  height: 0.95rem;
  background: rgba(243, 80, 28, 0.20);
  border: 1px solid rgba(243, 80, 28, 0.35);
  box-shadow: 0 10px 24px rgba(243, 80, 28, 0.12);
}
.oct-list-check li::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.42rem;
  width: 0.34rem;
  height: 0.18rem;
  border-left: 2px solid rgba(255,255,255,0.95);
  border-bottom: 2px solid rgba(255,255,255,0.95);
  transform: rotate(-45deg);
}

.oct-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.oct-pill {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  font-size: var(--fs-00);
  font-weight: 750;
  letter-spacing: 0.02em;
  background: var(--ctc-light-gray);
  color: hsl(220 9% 30%);
  border: 1px solid var(--ctc-border);
}

.oct-pill--violet {
  background: rgba(243, 80, 28, 0.12);
  border-color: rgba(243, 80, 28, 0.24);
  color: var(--ctc-orange);
}

.oct-result {
  margin-top: var(--space-3);
  padding: var(--space-3);
  border-radius: 12px;
  background: var(--ctc-warm-white);
  border: 1px dashed var(--ctc-border);
  color: hsl(220 9% 34%);
}

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

.oct-stepper {
  width: 100%;
  max-width: 100%;
  margin: var(--space-5) auto 0;
  display: grid;
  gap: var(--space-4);
}

.oct-steps-indicator {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.oct-steps-indicator > li {
  display: flex;
}

.oct-step-dot {
  appearance: none;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  width: 100%;
  height: 100%;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--ctc-border);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% -30%, rgba(255,255,255,0.75), transparent 60%),
    #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: inherit;
  user-select: none;
  transition: border-color 180ms ease, box-shadow 200ms ease, transform 180ms ease, background-color 200ms ease;
}

.oct-step-num {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ctc-light-gray);
  color: hsl(220 20% 20%);
  font-weight: 850;
  font-size: var(--fs-00);
  box-shadow: inset 0 0 0 1px var(--ctc-border);
}

.oct-step-dot.is-active .oct-step-num,
.oct-step-dot.is-complete .oct-step-num {
  background: var(--ads-accent-weak, rgba(243, 80, 28, 0.18));
  color: var(--ads-accent, var(--ctc-orange));
  border: 1px solid var(--ads-accent-border, rgba(243, 80, 28, 0.35));
}

.oct-step-title {
  font-size: var(--fs-01);
  font-weight: 750;
  color: hsl(220 20% 20%);
}

.oct-step-ico {
  width: 18px;
  height: 18px;
  color: hsl(220 10% 60%);
}
.oct-step-dot.is-active .oct-step-ico {
  color: var(--ads-accent, var(--ctc-orange));
}

.oct-title-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: var(--space-2);
  color: var(--ads-accent, var(--ctc-orange));
}
.oct-title-ico svg {
  display: block;
}

.oct-step-dot.is-active {
  border-color: var(--ads-accent-border, rgba(243, 80, 28, 0.35));
  box-shadow:
    0 12px 28px var(--ads-accent-shadow, rgba(243, 80, 28, 0.08)),
    0 2px 0 var(--ads-accent-border, rgba(243, 80, 28, 0.15));
}

.oct-step-dot:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.oct-step-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 80, 28, 0.28);
}

.oct-progress {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.02), rgba(15,23,42,0.05)),
    var(--ctc-light-gray);
  overflow: visible;
}

.oct-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--ads-accent, var(--ctc-orange));
  border-radius: 999px;
  transition: width 240ms ease;
  position: relative;
}

.oct-progress-bar::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), transparent 58%), var(--ads-accent, var(--ctc-orange));
  box-shadow: 0 6px 20px var(--ads-accent-shadow, rgba(243, 80, 28, 0.32));
  z-index: 2;
  pointer-events: none;
}

.oct-steps-panels {
  position: relative;
  display: grid;
  min-height: 260px;
}

.oct-step {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity var(--oct-step-transition-duration, 380ms) ease,
    transform var(--oct-step-transition-duration, 380ms) ease,
    visibility 0s linear var(--oct-step-transition-duration, 380ms);
}

.oct-step.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    opacity var(--oct-step-transition-duration, 380ms) ease,
    transform var(--oct-step-transition-duration, 380ms) ease,
    visibility 0s linear 0s;
}

.oct-subcard {
  margin-top: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--ctc-border);
  border-radius: 16px;
  background: #fff;
}

.oct-subhead {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 800;
  color: hsl(220 9% 36%);
  margin-bottom: var(--space-3);
}
.oct-subhead-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--ctc-orange);
}

.oct-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.oct-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid var(--ctc-border);
  background: var(--ctc-light-gray);
  color: hsl(220 9% 36%);
  font-weight: 750;
}

.oct-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.oct-link-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 var(--space-3);
  border-radius: 12px;
  border: 1px solid var(--ctc-border);
  background: var(--ctc-light-gray);
  color: hsl(220 9% 36%);
  font-weight: 750;
  cursor: default;
}

.oct-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.oct-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}

.btn-ghost {
  background: #fff;
  border-color: var(--ctc-border);
  color: hsl(220 20% 20%);
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.btn-ghost:hover {
  background: var(--ctc-light-gray);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

@media (max-width: 767.98px) {
  .oct-steps-indicator {
    grid-template-columns: 1fr 1fr;
  }
  .oct-chip-grid {
    grid-template-columns: 1fr;
  }
  .oct-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oct-step-dot,
  .btn-ghost,
  .oct-progress-bar,
  .oct-step {
    transition: none;
  }
}

.oct-info {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
}
.oct-info-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  color: hsl(211 84% 46%);
  font-weight: 900;
}
.oct-info-title {
  font-weight: 850;
  margin-bottom: 2px;
}
.oct-info-text {
  color: hsl(220 9% 46%);
}

.oct-section {
  position: relative;
  overflow: hidden;
}
.oct-section .container {
  position: relative;
  z-index: 1;
}
.oct-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 14% 22%, rgba(243, 80, 28, 0.06), transparent 60%),
    radial-gradient(820px 520px at 86% 8%, rgba(15, 23, 42, 0.06), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.oct-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  font-size: var(--fs-00);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.66);
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--ctc-border);
  margin-bottom: var(--space-3);
}

.oct-stepper {
  padding: var(--space-5);
  border: 1px solid var(--ctc-border);
  border-radius: var(--radius-2);
  background: #ffffff;
  box-shadow: inset 4px 0 0 var(--ads-accent, var(--ctc-orange)), 0 12px 32px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: visible;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.oct-step-dot:active {
  transform: translateY(0) scale(0.97);
}

.oct-step.is-active {
  animation: adsStepIn 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
@keyframes adsStepIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.oct-link-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.oct-link-ico {
  width: 18px;
  height: 18px;
  color: currentColor;
  opacity: 0.9;
}

.oct-progress {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.oct-progress-bar {
  background: linear-gradient(90deg, var(--ads-accent, var(--ctc-orange)), color-mix(in srgb, var(--ads-accent, var(--ctc-orange)) 72%, #fff));
}
.oct-progress-bar::after {
  filter: saturate(1.05);
}

.oct-card {
  transition: transform 160ms ease, box-shadow 200ms ease, border-color 180ms ease;
}
.oct-card:focus-within {
  box-shadow:
    0 22px 66px rgba(15, 23, 42, 0.08),
    0 0 0 4px rgba(243, 80, 28, 0.12);
}

.btn[disabled],
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none !important;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--ctc-dark);
  color: rgba(255, 255, 255, 0.72);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 22%, rgba(255, 255, 255, 0.07), transparent 58%),
    radial-gradient(820px 520px at 88% 12%, rgba(243, 80, 28, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.success-section {
  position: relative;
  overflow: hidden;
  background: var(--ctc-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: calc(var(--space-8) + var(--space-2)) 0;
  min-height: 100vh;
  display: none;
}

.success-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 22%, rgba(255, 255, 255, 0.07), transparent 58%),
    radial-gradient(820px 520px at 88% 12%, rgba(243, 80, 28, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.success-inner {
  position: relative;
  min-height: calc(100vh - var(--topbar-offset, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card {
  width: min(720px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  padding: calc(var(--space-7) + var(--space-1));
  display: grid;
  gap: var(--space-4);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
}

.success-mark {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ctc-orange);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    rgba(243, 80, 28, 0.12);
  border: 1px solid rgba(243, 80, 28, 0.35);
  box-shadow: 0 18px 45px rgba(243, 80, 28, 0.14);
}

.success-mark svg {
  width: 30px;
  height: 30px;
}

.success-mark-circle,
.success-mark-check {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}

body[data-route="success"] .success-mark {
  animation: successMarkPop 520ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

body[data-route="success"] .success-mark-circle {
  animation: successDraw 850ms cubic-bezier(0.2, 0.9, 0.2, 1) 80ms both;
}

body[data-route="success"] .success-mark-check {
  animation: successDraw 650ms cubic-bezier(0.2, 0.9, 0.2, 1) 280ms both;
}

@keyframes successDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes successMarkPop {
  0% {
    transform: scale(0.92);
    filter: saturate(0.9);
  }
  60% {
    transform: scale(1.04);
    filter: saturate(1.05);
  }
  100% {
    transform: scale(1);
    filter: saturate(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-route="success"] .success-mark,
  body[data-route="success"] .success-mark-circle,
  body[data-route="success"] .success-mark-check {
    animation: none;
  }

  .success-mark-circle,
  .success-mark-check {
    stroke-dashoffset: 0;
  }
}

.success-kicker {
  margin: 0;
  font-size: var(--fs-00);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.success-title {
  margin: 0;
  font-size: var(--fs-05);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
}

.success-subtitle {
  margin: 0;
  font-size: var(--fs-01);
  line-height: var(--lh-default);
  color: rgba(255, 255, 255, 0.58);
}

.success-note {
  margin: 0;
  font-size: var(--fs-00);
  font-weight: 650;
  color: rgba(255, 255, 255, 0.48);
}

.success-details {
  margin-top: var(--space-2);
  display: grid;
  gap: var(--space-3);
  padding: var(--space-5);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.success-detail {
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
  justify-content: space-between;
}

.success-detail-label {
  font-size: var(--fs-00);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  flex: none;
}

.success-detail-value {
  font-size: var(--fs-01);
  font-weight: 650;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}

.success-back {
  height: 2.75rem;
  padding: 0 var(--space-6);
  border-radius: var(--radius-1);
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(243, 80, 28, 0.22);
  width: fit-content;
  margin-inline: auto;
}

.legal-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: hsl(220 20% 14%);
  padding: var(--space-6) 0 var(--space-8);
  min-height: 100vh;
  display: none;
}

.legal-section::before {
  content: none;
}

.legal-inner {
  position: relative;
  min-height: calc(100vh - var(--space-8));
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.legal-card {
  width: min(860px, 100%);
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: grid;
  gap: var(--space-4);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.legal-kicker {
  margin: 0;
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: hsl(220 9% 46%);
}

.legal-title {
  margin: 0;
  font-size: var(--fs-06);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: hsl(220 20% 14%);
}

.legal-meta {
  margin: calc(var(--space-2) * -1) 0 0;
  font-size: var(--fs-01);
  color: hsl(220 9% 46%);
}

.legal-content {
  display: grid;
  gap: var(--space-3);
  font-size: var(--fs-02);
  line-height: var(--lh-relaxed);
  color: hsl(220 20% 14%);
}

.legal-content h2 {
  margin: var(--space-3) 0 0;
  font-size: var(--fs-03);
  font-weight: 800;
  color: hsl(220 20% 14%);
}

.legal-content p {
  margin: 0;
}

.legal-content ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: var(--space-2);
}

.legal-back {
  height: 2.25rem;
  padding: 0 var(--space-4);
  border-radius: var(--radius-1);
  font-size: var(--fs-00);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-top: var(--space-2);
}

body[data-route="success"] .success-section {
  display: block;
}

body[data-route="success"] main > section:not(.success-section) {
  display: none;
}

body[data-route="success"] footer {
  display: none;
}

body[data-route="success"] .topbar-nav,
body[data-route="success"] .btn-consult,
body[data-route="success"] .topbar-toggle,
body[data-route="success"] .topbar-mobile {
  display: none;
}

body[data-route="privacy"] .privacy-section {
  display: block;
}

body[data-route="privacy"] main > section:not(.privacy-section) {
  display: none;
}

body[data-route="privacy"] footer {
  display: none;
}

body[data-route="privacy"] .topbar-nav,
body[data-route="privacy"] .btn-consult,
body[data-route="privacy"] .topbar-toggle,
body[data-route="privacy"] .topbar-mobile {
  display: none;
}

body[data-route="terms"] .terms-section {
  display: block;
}

body[data-route="terms"] main > section:not(.terms-section) {
  display: none;
}

body[data-route="terms"] footer {
  display: none;
}

body[data-route="terms"] .topbar-nav,
body[data-route="terms"] .btn-consult,
body[data-route="terms"] .topbar-toggle,
body[data-route="terms"] .topbar-mobile {
  display: none;
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-7);
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-head {
    align-self: center;
  }
}

.contact-title {
  margin: 0;
  font-size: var(--fs-05);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}

.contact-subtitle {
  margin: var(--space-3) 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: var(--fs-02);
  line-height: var(--lh-default);
}

.contact-points {
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--fs-01);
}

.contact-points li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.contact-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(243, 80, 28, 0.92);
  box-shadow: 0 10px 22px rgba(243, 80, 28, 0.18);
  margin-top: 0.55em;
  flex: none;
}

.contact-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  padding: var(--space-7);
  display: grid;
  gap: var(--space-5);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
}

.contact-field {
  grid-column: span 6;
  display: grid;
  gap: var(--space-2);
}

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

.contact-label {
  font-size: var(--fs-00);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.74);
}

.contact-label span {
  color: var(--ctc-orange);
}

.contact-error {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
  max-width: 100%;
  padding: var(--space-2) var(--space-3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(243, 80, 28, 0.35);
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--fs-00);
}

.contact-error[hidden] {
  display: none;
}

.contact-error::before {
  content: "!";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 80, 28, 0.22);
  border: 1px solid rgba(243, 80, 28, 0.45);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  line-height: 1;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: var(--space-3) var(--space-4);
  font: inherit;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.18);
}

.contact-input-mask-wrap {
  position: relative;
}

.contact-input-mask-wrap .contact-input {
  position: relative;
  z-index: 1;
}

.contact-input-mask {
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  inset-inline-start: calc(1rem + 3ch);
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  user-select: none;
  font: inherit;
  white-space: nowrap;
}

.contact-input-mask[hidden] {
  display: none;
}

.contact-input[aria-invalid="true"],
.contact-textarea[aria-invalid="true"] {
  border-color: rgba(243, 80, 28, 0.75);
  box-shadow: 0 0 0 4px rgba(243, 80, 28, 0.14);
}

.contact-input {
  height: 2.75rem;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-textarea {
  resize: vertical;
  min-height: 10rem;
  border-radius: 22px;
  padding: var(--space-4) var(--space-4);
}

.contact-input:focus-visible,
.contact-textarea:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(243, 80, 28, 0.18);
}

.contact-work {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.contact-legend {
  padding: 0;
  font-size: var(--fs-00);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}

.contact-hint {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.46);
}

.contact-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-6);
}

.contact-check-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-01);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  user-select: none;
}

.contact-check-row--full {
  grid-column: 1 / -1;
}

.contact-check {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.14);
  accent-color: #fff;
}

.contact-check:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.contact-check:checked {
  background: #fff;
  border-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23090b10' d='M7.8 13.7 4.4 10.3l1.2-1.2 2.2 2.2 6.5-6.5 1.2 1.2-7.7 7.7Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.contact-submit {
  height: 3rem;
  padding: var(--space-1) var(--space-2) var(--space-1) var(--space-4);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  user-select: none;
  font: inherit;
  font-weight: 800;
}

.contact-submit:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.28);
}

.contact-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(243, 80, 28, 0.18);
}

.contact-submit-icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(9, 11, 16, 0.95);
  font-size: 1.1rem;
  line-height: 1;
}

.contact-note {
  margin: 0;
  font-size: var(--fs-00);
  color: rgba(255, 255, 255, 0.45);
}

.faq-section {
  background: #fff;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}

.faq-head {
  text-align: center;
}

.faq-title {
  margin: 0;
  font-size: var(--fs-05);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.accordion {
  margin: 0;
  width: 100%;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ctc-border);
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid var(--ctc-border);
  background: transparent;
  position: relative;
  overflow: hidden;
}

.accordion-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(243, 80, 28, 0.9), rgba(243, 80, 28, 0.2));
  opacity: 0;
  transition: opacity 160ms ease;
}

.accordion-item[open]::before {
  opacity: 1;
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  padding-left: calc(var(--space-4) + var(--space-3));
  font-size: var(--fs-01);
  font-weight: 700;
  color: hsl(220 20% 14%);
}

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

.chev {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  font-size: 0;
  color: hsl(220 9% 46%);
}

.chev::before,
.chev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.chev::before {
  width: 12px;
  height: 2px;
}

.chev::after {
  width: 2px;
  height: 12px;
}

.accordion-item[open] .chev::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.accordion-body {
  padding: 0 0 var(--space-4);
  padding-left: calc(var(--space-4) + var(--space-3));
  font-size: var(--fs-01);
  color: hsl(220 9% 46%);
  line-height: var(--lh-default);
}

@media (max-width: 1023.98px) {
  .topbar-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    column-gap: var(--space-3);
  }

  .topbar-nav,
  .topbar .btn-consult {
    display: none;
  }

  .topbar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .contact-title {
    text-align: center;
  }

  .contact-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 58ch;
  }

  .contact-points {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-card {
    margin-left: auto;
    margin-right: auto;
    width: min(720px, 100%);
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .contact-actions .btn-consult,
  .contact-submit {
    width: 100%;
    min-width: 0;
    justify-content: center;
    justify-self: stretch;
    height: 2.75rem;
    min-height: 2.75rem;
    padding: 0 var(--space-6);
    border-radius: var(--radius-1);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(243, 80, 28, 0.22);
    transition: transform 160ms ease, box-shadow 160ms ease;
    will-change: transform;
  }

  .contact-note {
    width: 100%;
    text-align: center;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .faq-title {
    text-align: center;
  }
}

.footer-dark {
  background: var(--ctc-dark);
  color: rgba(255, 255, 255, 0.55);
  scroll-margin-top: 6rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-logo {
  display: block;
}

.footer-brand-text {
  font-size: var(--fs-00);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.footer-tagline {
  margin-top: var(--space-2);
  font-size: var(--fs-01);
  color: rgba(255, 255, 255, 0.42);
}

.footer-nav {
  display: flex;
  gap: var(--space-5);
  font-size: var(--fs-00);
  color: rgba(255, 255, 255, 0.35);
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--space-6) auto var(--space-4);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-00);
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom span {
  margin-right: auto;
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom a + a {
  margin-left: var(--space-3);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* AI Chat */
.ai-chat .container {
  position: relative;
  z-index: 1;
}

.ai-chat-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}

@media (min-width: 1024px) {
  .ai-chat-inner {
    --container: 1120px;
  }
}

.ai-chat-head {
  grid-column: 1 / -1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  margin-bottom: var(--space-3);
  background: linear-gradient(135deg, rgba(243, 80, 28, 0.95), rgba(243, 80, 28, 0.55));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 40px rgba(243, 80, 28, 0.28);
}

.ai-chat-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: var(--space-6);
}

.ai-suggestions {
  display: grid;
  gap: var(--space-3);
  width: 360px;
  max-width: 360px;
  max-height: 360px;
  overflow-y: auto;
  padding: var(--space-4);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.ai-suggestions-kicker {
  margin: 0 0 var(--space-1);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.ai-chip {
  width: 100%;
  min-height: 2.9rem;
  padding: var(--space-2);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  cursor: pointer;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: normal;
  overflow: hidden;
  transition: height 220ms ease, padding 220ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.ai-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.ai-chip:active {
  transform: translateY(1px);
}

.ai-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 80, 28, 0.55);
}

.ai-chatbox {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
  height: 650px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  overflow: hidden;
  font-family: var(--font-sans);
  position: relative;
}

.ai-chat-beta {
  position: absolute;
  top: 0;
  right: 0;
  width: 144px;
  height: 144px;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  z-index: 12;
  cursor: help;
}

.ai-chat-beta-ribbon {
  position: absolute;
  top: 24px;
  right: -42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 172px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, #ff9a5f 0%, #f3501c 45%, #c2410c 100%);
  color: #fff7ed;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-shadow: 0 1px 0 rgba(124, 45, 18, 0.34);
  box-shadow:
    0 18px 36px rgba(243, 80, 28, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(154, 52, 18, 0.22);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ai-chat-beta-ribbon::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 48%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 237, 213, 0.08) 0,
      rgba(255, 237, 213, 0.08) 10px,
      transparent 10px,
      transparent 20px
    );
  opacity: 0.95;
  pointer-events: none;
}

.ai-chat-beta-ribbon::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px auto;
  width: 100%;
  border-top: 1px solid rgba(255, 237, 213, 0.26);
  border-bottom: 1px solid rgba(124, 45, 18, 0.18);
  pointer-events: none;
}

.ai-chat-beta:hover .ai-chat-beta-ribbon {
  transform: rotate(45deg) translateY(-1px) scale(1.01);
  box-shadow:
    0 24px 48px rgba(243, 80, 28, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(124, 45, 18, 0.24);
  filter: saturate(1.08);
}

.ai-chat-beta:focus-visible {
  outline: none;
}

.ai-chat-beta:focus-visible .ai-chat-beta-ribbon {
  box-shadow:
    0 24px 48px rgba(243, 80, 28, 0.34),
    0 0 0 4px rgba(243, 80, 28, 0.2);
}

.ai-chat-beta::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 54px;
  right: 18px;
  width: min(280px, 72vw);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(248, 231, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(15, 23, 42, 0.96);
  color: rgba(255, 250, 240, 0.94);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.45;
  text-transform: none;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.34);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.ai-chat-beta:hover::after,
.ai-chat-beta:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.ai-chat-beta-dot {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff7ed 0%, #fed7aa 100%);
  box-shadow:
    0 0 0 4px rgba(255, 237, 213, 0.16),
    0 0 18px rgba(255, 247, 237, 0.28);
  flex-shrink: 0;
}

.ai-splash {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--space-5);
  text-align: center;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.ai-splash.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  pointer-events: none;
}

.ai-splash-content {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  animation: splash-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes splash-appear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-splash-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(243, 80, 28, 0.2), rgba(243, 80, 28, 0.05));
  border: 1px solid rgba(243, 80, 28, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ctc-orange);
  box-shadow: 0 8px 32px rgba(243, 80, 28, 0.15);
  margin-bottom: var(--space-2);
}

.ai-splash-title {
  font-size: var(--fs-04);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

.ai-splash-desc {
  font-size: var(--fs-01);
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.6;
  margin: 0;
}

.ai-splash-btn {
  margin-top: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  height: 3.25rem;
  padding: 0 var(--space-6);
  border-radius: 999px;
  background: var(--ctc-orange);
  color: #fff;
  font-size: var(--fs-00);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(243, 80, 28, 0.25);
  transition: all 0.2s ease-in-out;
}

.ai-splash-btn:hover {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 14px 32px rgba(243, 80, 28, 0.35);
  background: #ff5e24;
}

.ai-splash-btn:active {
  transform: translateY(0) scale(0.95);
  box-shadow: 0 6px 16px rgba(243, 80, 28, 0.2);
}

.ai-splash-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(243, 80, 28, 0.3);
}

.ai-splash-btn svg {
  transition: transform 0.2s ease;
}

.ai-splash-btn:hover svg {
  transform: translateX(4px);
}

.ai-chat-progress {
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-chat-progress-text {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-chat-progress-bar {
  height: 4px;
  background: var(--ctc-orange);
  border-radius: 2px;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(243, 80, 28, 0.4);
}

.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  scroll-behavior: smooth;
}

/* Scrollbar styles for messages */
.ai-chat-messages::-webkit-scrollbar {
  width: 6px;
}
.ai-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.ai-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.ai-chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  opacity: 0;
  transform: translateY(10px);
  animation: msg-appear 0.4s ease forwards;
}

@keyframes msg-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-chat-msg.user {
  align-self: flex-end;
  align-items: flex-end;
}

.ai-chat-msg.system {
  align-self: flex-start;
  align-items: flex-start;
}

.ai-chat-bubble {
  padding: 16px 20px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ai-chat-msg.user .ai-chat-bubble {
  background: var(--ctc-orange);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.ai-chat-msg.system .ai-chat-bubble {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(15, 23, 42, 0.9);
  border-bottom-left-radius: 4px;
}

.ai-chat-input-area {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 16px;
  align-items: center;
}

.ai-chat-input-area.is-complete {
  justify-content: stretch;
}

.ai-chat-input-area:not(.is-complete) .ai-chat-cta,
.ai-chat-cta[hidden] {
  display: none !important;
}

.ai-chat-input-area.is-complete .ai-chat-input,
.ai-chat-input-area.is-complete .ai-chat-send {
  display: none !important;
}

.ai-chat-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 99px;
  padding: 16px 24px;
  color: #0f172a;
  font-size: 15px;
  outline: none;
  cursor: default;
  transition: all 0.2s ease;
}

.ai-chat-input:focus {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.06);
}

.ai-chat-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ctc-orange);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.ai-chat-send:hover:not(:disabled) {
  transform: scale(1.05);
  background: var(--ctc-orange-hover);
}

.ai-chat-send:active:not(:disabled) {
  transform: scale(0.95);
}

.ai-chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(15, 23, 42, 0.4);
}

.ai-chat-cta {
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 14px 28px rgba(243, 80, 28, 0.22);
}

.ai-chat-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(243, 80, 28, 0.26);
}

.ai-chat-cta:active {
  transform: scale(0.98);
}

.ai-chat-cta:focus-visible {
  outline: none;
  box-shadow:
    0 18px 32px rgba(243, 80, 28, 0.26),
    0 0 0 4px rgba(243, 80, 28, 0.18);
}

/* Custom CRM stats elements inside system messages */
.chat-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.chat-stat-card {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 16px;
  border-radius: 12px;
}

.chat-stat-card.chat-stat-card-positive {
  background: rgba(22, 101, 52, 0.08);
  border-color: rgba(22, 101, 52, 0.22);
}

.chat-stat-label {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.chat-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.chat-stat-card.chat-stat-card-positive .chat-stat-label,
.chat-stat-card.chat-stat-card-positive .chat-stat-footnote,
.chat-stat-card.chat-stat-card-positive .chat-stat-footnote.up,
.chat-stat-card.chat-stat-card-positive .chat-stat-footnote.down {
  color: #166534;
}

.chat-stat-card.chat-stat-card-positive .chat-stat-value {
  color: #0f172a;
}

.chat-stat-footnote {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.chat-stat-footnote.up { color: #15803d; }
.chat-stat-footnote.down { color: #b91c1c; }

.chat-stat-delta {
  font-size: 12px;
  font-weight: 600;
  margin-left: 6px;
}

.chat-stat-delta.up { color: #10b981; }
.chat-stat-delta.down { color: #ef4444; }

.chat-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  font-size: 14px;
}

.chat-list-item-name {
  min-width: 0;
  color: rgba(15, 23, 42, 0.8);
}

.chat-list-item-val {
  min-width: 0;
  font-weight: 600;
  text-align: right;
}

.chat-stack {
  display: grid;
  gap: 14px;
}

.chat-block,
.chat-note {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.66);
}

.chat-note--info {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.16);
}

.chat-note--action {
  background: rgba(243, 80, 28, 0.08);
  border-color: rgba(243, 80, 28, 0.18);
}

.chat-block-title,
.chat-note-title {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.94);
}

.chat-block-copy,
.chat-note-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.72);
}

.chat-note-copy--strong {
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
}

.chat-highlight {
  color: var(--ctc-orange);
  font-weight: 600;
}

.ai-typing {
  display: flex;
  gap: 4px;
  padding: 8px 4px;
}
.ai-typing span {
  width: 6px;
  height: 6px;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}
.ai-typing span:nth-child(1) { animation-delay: 0s; }
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 640px) {
  .ai-chat-beta {
    width: 128px;
    height: 128px;
  }

  .ai-chat-beta::after {
    top: 48px;
    right: 12px;
    width: min(240px, calc(100vw - 48px));
  }

  .ai-chat-beta-ribbon {
    top: 20px;
    right: -46px;
    width: 156px;
    min-height: 34px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }
}

.ai-demo-kpi-mark--google { color: rgba(22, 163, 74, 0.95); background: rgba(34, 197, 94, 0.08); border-color: rgba(34, 197, 94, 0.22); }
.ai-demo-kpi-mark--bing { color: rgba(37, 99, 235, 0.95); background: rgba(59, 130, 246, 0.08); border-color: rgba(59, 130, 246, 0.22); }
.ai-demo-kpi-mark--ops { color: rgba(15, 23, 42, 0.92); background: rgba(15, 23, 42, 0.06); border-color: rgba(15, 23, 42, 0.14); }

.ai-demo-kpi-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding-left: var(--space-3);
  font-size: 12px;
  color: rgba(15, 23, 42, 0.6);
  font-weight: 800;
}

.ai-demo-kpi-row strong {
  font-size: 13px;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.92);
}

.ai-demo-delta {
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  color: rgba(15, 23, 42, 0.74);
  white-space: nowrap;
}

.ai-demo-delta--up {
  color: rgba(22, 163, 74, 0.95);
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.22);
}

.ai-demo-delta--down {
  color: rgba(220, 38, 38, 0.92);
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.22);
}

.ai-demo-mini {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
  padding: var(--space-3) var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.ai-demo-mini-item {
  display: grid;
  gap: var(--space-1);
  text-align: center;
  padding: var(--space-1) var(--space-2);
}

.ai-demo-mini-item span {
  font-size: 11px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.56);
}

.ai-demo-mini-item strong {
  font-size: 13px;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.9);
}

.ai-demo-callout {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
  padding: var(--space-3) var(--space-4);
  display: grid;
  gap: var(--space-2);
}

.ai-demo-callout--good {
  border-color: rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.08);
}

.ai-demo-callout--info {
  border-color: rgba(99, 102, 241, 0.22);
  background: rgba(99, 102, 241, 0.08);
}

.ai-demo-pill {
  width: fit-content;
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  background: rgba(99, 102, 241, 0.08);
  color: rgba(99, 102, 241, 0.9);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-demo-corr {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
  padding: var(--space-3) var(--space-4);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-3);
  align-items: center;
}

.ai-demo-corr-card {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.86);
  padding: var(--space-3);
  display: grid;
  gap: var(--space-1);
}

.ai-demo-corr-card--good {
  border-color: rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.08);
}

.ai-demo-corr-arrow {
  font-size: 18px;
  font-weight: 950;
  color: rgba(99, 102, 241, 0.9);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  background: rgba(99, 102, 241, 0.08);
}

.ai-demo-corr-label {
  font-size: 12px;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.74);
}

.ai-demo-corr-value {
  font-size: 15px;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.92);
}

.ai-demo-corr-note {
  font-size: 11px;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.56);
}

.ai-demo-callout-title {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.8);
}

.ai-demo-callout-body {
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.74);
  line-height: 1.45;
}

.ai-demo-keepgoing {
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.46);
  margin-top: var(--space-1);
}

.ai-suggestions--inchat {
  width: 100%;
  max-width: none;
  max-height: 220px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-suggestions--inchat .ai-suggestions-kicker {
  grid-column: 1 / -1;
}

.ai-stats {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  padding: var(--space-4);
  display: grid;
  gap: var(--space-3);
}

.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.ai-stat-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.36);
  padding: var(--space-3) var(--space-3) var(--space-2);
  display: grid;
  gap: var(--space-1);
}

.ai-stat-label {
  font-size: 11px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.02em;
}

.ai-stat-value {
  font-size: 18px;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: -0.02em;
}

.ai-stat-meta {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.58);
}

.ai-stats-trend {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: var(--space-3);
  display: grid;
  gap: var(--space-3);
}

.ai-stats-trend-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.ai-stats-trend-head strong {
  font-weight: 950;
  color: rgba(255, 255, 255, 0.95);
}

.ai-stats-trend-chart {
  width: 100%;
  height: 56px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-log {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.02);
  box-shadow: none;
  padding: var(--space-4);
  display: grid;
  gap: var(--space-4);
  max-height: 560px;
  overflow: auto;
}

.ai-msg {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  align-items: start;
}

.ai-msg--user {
  justify-items: end;
}

.ai-msg--ai {
  justify-items: start;
}

.ai-avatar {
  display: none;
}

.ai-avatar--ai {
  background: linear-gradient(135deg, #0f172a, #111827);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ai-avatar--user {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.ai-bubble {
  border-radius: 18px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(15, 23, 42, 0.88);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.ai-bubble--user {
  max-width: min(620px, 100%);
  border-radius: 999px;
  padding: var(--space-3) var(--space-4);
  border: none;
  background: rgba(15, 23, 42, 0.96);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.ai-typing {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-3);
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.ai-typing > span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(243, 80, 28, 0.92);
  box-shadow: 0 8px 16px rgba(243, 80, 28, 0.24);
  opacity: 0.38;
  transform: translateY(0) scale(0.8);
  animation: ai-typing 900ms ease-in-out infinite;
}

.ai-typing > span:nth-child(2) { animation-delay: 140ms; }
.ai-typing > span:nth-child(3) { animation-delay: 280ms; }

@keyframes ai-typing {
  0%, 100% { opacity: 0.38; transform: translateY(0) scale(0.8); }
  45% { opacity: 1; transform: translateY(-2px) scale(1); }
}

.ai-chat-input {
  display: grid;
  gap: var(--space-3);
}

.ai-input-group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3);
}

.ai-input.contact-input {
  height: 2.9rem;
}

.ai-send {
  height: 2.9rem;
  padding: 0 calc(var(--space-4) + var(--space-1));
  border-radius: 999px;
}

.ai-error {
  color: #fff;
  font-size: var(--fs-00);
  font-weight: 700;
  padding: var(--space-2) var(--space-3);
  border-radius: 10px;
  background: rgba(243, 80, 28, 0.18);
  border: 1px solid rgba(243, 80, 28, 0.32);
}

.ai-insight-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.42);
  border-radius: 14px;
  padding: var(--space-3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: var(--space-2);
}

.ai-insight-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 13px;
}

.ai-insight-sub {
  font-size: 12px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.ai-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.ai-kpi-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: var(--space-3) var(--space-3) var(--space-2);
  display: grid;
  gap: var(--space-2);
}

.ai-kpi-card--good {
  border-color: rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.08);
}

.ai-kpi-card--warn {
  border-color: rgba(243, 80, 28, 0.26);
  background: rgba(243, 80, 28, 0.09);
}

.ai-kpi-card--bad {
  border-color: rgba(239, 68, 68, 0.24);
  background: rgba(239, 68, 68, 0.08);
}

.ai-kpi-card--neutral {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(148, 163, 184, 0.08);
}

.ai-kpi-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}

.ai-kpi-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.ai-kpi-value {
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.ai-kpi-meta {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.3;
}

.ai-kpi-delta {
  font-size: 11px;
  font-weight: 950;
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

.ai-kpi-delta--up {
  border-color: rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.12);
  color: rgba(134, 239, 172, 0.98);
}

.ai-kpi-delta--down {
  border-color: rgba(239, 68, 68, 0.24);
  background: rgba(239, 68, 68, 0.12);
  color: rgba(254, 202, 202, 0.98);
}

.ai-summary {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  padding: var(--space-3) var(--space-3);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.ai-summary-item {
  display: grid;
  gap: var(--space-1);
  text-align: center;
  padding: var(--space-1) var(--space-2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-summary-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.ai-summary-value {
  font-size: 13px;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.94);
}

.ai-callout {
  border-radius: 16px;
  padding: var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.36);
  display: grid;
  gap: var(--space-2);
}

.ai-callout--good {
  border-color: rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.08);
}

.ai-callout--warn {
  border-color: rgba(243, 80, 28, 0.22);
  background: rgba(243, 80, 28, 0.09);
}

.ai-callout--bad {
  border-color: rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.09);
}

.ai-callout-title {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.94);
}

.ai-callout-body {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.ai-followups {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.ai-followup {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  color: rgba(15, 23, 42, 0.78);
  font-size: 12px;
  font-weight: 950;
  padding: var(--space-3) var(--space-4);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.ai-followup:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.16);
  color: rgba(15, 23, 42, 0.9);
  transform: scale(0.98);
}

.ai-followup:active {
  transform: scale(0.95);
}

.ai-followup:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 80, 28, 0.35);
}

.ai-followup:disabled,
.ai-followup[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.ai-bars {
  display: grid;
  gap: var(--space-3);
}

.ai-bar {
  display: grid;
  gap: var(--space-2);
}

.ai-bar-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: 12px;
}

.ai-bar-label {
  font-weight: 850;
  color: rgba(255, 255, 255, 0.84);
}

.ai-bar-value {
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
}

.ai-bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ai-bar-fill {
  height: 100%;
  width: var(--w, 0%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(243, 80, 28, 0.9), rgba(243, 80, 28, 0.55));
}

.ai-bar--good .ai-bar-fill {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.9), rgba(34, 197, 94, 0.55));
}

.ai-bar--warn .ai-bar-fill {
  background: linear-gradient(90deg, rgba(243, 80, 28, 0.9), rgba(243, 80, 28, 0.55));
}

.ai-bar--bad .ai-bar-fill {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.9), rgba(239, 68, 68, 0.55));
}

.ai-donut-wrap {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: var(--space-3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
  padding: var(--space-3);
}

.ai-donut {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
}

.ai-donut-track {
  stroke: rgba(255, 255, 255, 0.12);
}

.ai-donut-seg {
  stroke: rgba(243, 80, 28, 0.9);
}

.ai-donut-seg--good {
  stroke: rgba(34, 197, 94, 0.95);
}

.ai-donut-seg--warn {
  stroke: rgba(243, 80, 28, 0.95);
}

.ai-donut-seg--bad {
  stroke: rgba(239, 68, 68, 0.92);
}

.ai-donut-seg--neutral {
  stroke: rgba(99, 102, 241, 0.9);
}

.ai-donut-legend {
  display: grid;
  gap: var(--space-2);
}

.ai-donut-legend-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
}

.ai-donut-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(243, 80, 28, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.ai-donut-dot--good { background: rgba(34, 197, 94, 0.95); }
.ai-donut-dot--warn { background: rgba(243, 80, 28, 0.95); }
.ai-donut-dot--bad { background: rgba(239, 68, 68, 0.92); }
.ai-donut-dot--neutral { background: rgba(99, 102, 241, 0.9); }

.ai-donut-legend-label {
  font-weight: 850;
  color: rgba(255, 255, 255, 0.84);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-donut-legend-pct {
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
}

.ai-list {
  margin: 0;
  padding-left: calc(var(--space-4) + var(--space-1));
  display: grid;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.ai-spark-block {
  display: grid;
  gap: var(--space-2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
  padding: var(--space-3);
}

.ai-spark-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
}

.ai-spark-meta {
  font-size: 11px;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.62);
}

.ai-spark-frame {
  width: 100%;
  height: 56px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-table {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ai-table-row {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 0.7fr 1.1fr 0.7fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) var(--space-3);
  min-width: 560px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.ai-table-row--head {
  border-top: none;
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
  z-index: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.ai-table-row--bad {
  background: rgba(239, 68, 68, 0.08);
}

.ai-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.9);
}

.ai-pill--good {
  border-color: rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.12);
  color: rgba(134, 239, 172, 0.98);
}

.ai-pill--warn {
  border-color: rgba(243, 80, 28, 0.24);
  background: rgba(243, 80, 28, 0.12);
  color: rgba(253, 186, 116, 0.98);
}

.ai-pill--bad {
  border-color: rgba(239, 68, 68, 0.24);
  background: rgba(239, 68, 68, 0.12);
  color: rgba(254, 202, 202, 0.98);
}

.ai-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.ai-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.ai-compare-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: var(--space-3);
  display: grid;
  gap: var(--space-3);
}

.ai-compare-card--muted {
  background: rgba(0, 0, 0, 0.16);
}

.ai-compare-title {
  font-size: 12px;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

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

.ai-scenario {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.ai-scenario-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
  padding: var(--space-3);
  display: grid;
  gap: var(--space-3);
}

.ai-scenario-card--accent {
  border-color: rgba(243, 80, 28, 0.26);
  background: rgba(243, 80, 28, 0.09);
}

.ai-scenario-title {
  font-size: 12px;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
}

.ai-insight-stats {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 900;
}

.ai-spark {
  width: 100%;
  height: 56px;
}

@media (max-width: 1023.98px) {
  .ai-chat-grid {
    grid-template-columns: 1fr;
  }
  .ai-suggestions {
    width: 100%;
    max-width: none;
    max-height: 180px;
  }
  .ai-suggestions--inchat {
    grid-template-columns: 1fr;
    max-height: 240px;
  }
  .ai-chat-head {
    text-align: left;
  }

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

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

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

  .ai-chart-grid {
    grid-template-columns: 1fr;
  }

  .ai-compare {
    grid-template-columns: 1fr;
  }

  .ai-scenario {
    grid-template-columns: 1fr;
  }

  .ai-demo-kpis {
    grid-template-columns: 1fr;
  }

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

  .ai-demo-corr {
    grid-template-columns: 1fr;
  }

  .ai-demo-corr-arrow {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .ai-input-group {
    grid-template-columns: 1fr;
  }
  .ai-send {
    width: 100%;
    justify-content: center;
  }

  .ai-stats-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 767.98px) {
  .footer-bottom {
    justify-content: center;
  }

  .footer-bottom span {
    margin-right: 0;
    flex-basis: 100%;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .footer-bottom {
    justify-content: center;
  }

  .footer-bottom span {
    margin-right: 0;
    flex-basis: 100%;
    text-align: center;
  }
}

.section-header {
  margin-bottom: var(--space-6);
  max-width: 78ch;
}

.section-header h2 {
  margin: 0;
  font-size: var(--fs-05);
  letter-spacing: -0.02em;
}

.section-header p {
  margin: var(--space-3) 0 0;
  color: hsl(220 9% 46%);
  font-size: var(--fs-02);
}

.steps {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
}

.step {
  grid-column: span 6;
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-2);
  background: #fff;
  border: 1px solid var(--ctc-border);
}

.step-num {
  flex: none;
  font-weight: 800;
  font-size: var(--fs-00);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(220 9% 46%);
}

.step-title {
  font-weight: 800;
  margin-bottom: var(--space-1);
  font-size: var(--fs-01);
}

.step-meta {
  color: hsl(220 9% 46%);
  font-size: var(--fs-01);
}

.section-cta {
  padding: var(--section-y) 0;
  background: var(--ctc-light-gray);
}

.cta-inner {
  border-radius: var(--radius-2);
  padding: var(--space-7) var(--space-6);
  border: 1px solid var(--ctc-border);
  background: #fff;
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 var(--space-2);
  font-size: var(--fs-05);
  letter-spacing: -0.02em;
}

.cta-inner p {
  margin: 0 0 var(--space-5);
  color: hsl(220 9% 46%);
  font-size: var(--fs-02);
}

.faq {
  display: grid;
  gap: var(--space-3);
  max-width: 860px;
}

.faq-item {
  border-radius: var(--radius-2);
  border: 1px solid var(--ctc-border);
  background: #fff;
  overflow: clip;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-4) var(--space-4);
  font-weight: 800;
  font-size: var(--fs-01);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 900;
  color: hsl(220 9% 46%);
}

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

.faq-body {
  padding: 0 var(--space-4) var(--space-4);
  color: hsl(220 9% 46%);
  font-size: var(--fs-01);
}

.site-footer {
  padding: var(--space-6) 0 calc(var(--space-6) + var(--space-2));
  border-top: 1px solid var(--ctc-border);
  color: hsl(220 9% 46%);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-01);
}

.footer-right a {
  color: hsl(220 9% 46%);
}

.footer-right a:hover {
  color: hsl(220 20% 14%);
}

@media (max-width: 1023.98px) {
  :root {
    --space-7: 2.5rem;
    --space-8: 3.5rem;
  }

  .topbar-nav {
    display: none;
  }

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

  .feature-card--big {
    grid-column: span 2;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .steps .step {
    grid-column: span 12;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .problems-head {
    position: static;
  }

  .problems-head .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .problems-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .topbar-inner {
    min-height: 3.25rem;
    column-gap: var(--space-2);
  }

  .topbar-logo {
    width: 52px;
    height: 52px;
  }

  .topbar-toggle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
  }

  .topbar-mobile-inner {
    padding-top: var(--space-3);
    padding-bottom: var(--space-4);
  }

  .topbar-mobile-cta {
    height: 2.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
  }

  :root {
    --space-7: 2rem;
    --space-8: 3rem;
  }

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

  .feature-card--big {
    grid-column: auto;
  }

  .feature-media {
    height: 160px;
  }

  .feature-card--big .feature-media {
    height: 190px;
  }

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

  .how-steps {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .how-step {
    padding: var(--space-5);
    grid-template-columns: 48px 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: var(--space-5);
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .problem-list {
    border-radius: 16px;
  }

  .problem-card-inner {
    padding: var(--space-5);
    padding-right: calc(var(--space-5) + 2.5rem);
  }

  .problem-card::after {
    display: none;
  }

  .contact-card {
    padding: var(--space-6);
  }

  .contact-field {
    grid-column: 1 / -1;
  }

  .contact-work-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
    justify-content: space-between;
  }
}

.ui-preview {
  margin: 0 auto;
  width: 100%;
  max-width: 1120px;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.ui-preview-head {
  display: grid;
  gap: var(--space-3);
  margin: 0;
}

.ui-preview-head.center {
  justify-items: center;
}

.ui-preview-kicker {
  margin: 0;
  font-size: var(--fs-00);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.56);
  font-weight: 700;
}

.ui-preview-title {
  margin: 0;
  font-size: var(--fs-05);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.ui-preview-subtitle {
  margin: 0;
  font-size: var(--fs-02);
  color: rgba(0, 0, 0, 0.68);
  max-width: 56ch;
  line-height: var(--lh-relaxed);
}

.ui-preview-body {
  margin-top: var(--space-5);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: var(--space-5);
  align-items: stretch;
}

.ui-preview-body > * {
  min-width: 0;
  max-width: 100%;
}

.ui-preview-tour {
  margin-top: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: var(--space-3);
  min-height: 100%;
}

.ui-preview-values {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: var(--space-4);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.ui-value {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.65);
  padding: var(--space-4);
}

.ui-value-title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.ui-value-text {
  margin-top: var(--space-2);
  color: rgba(0, 0, 0, 0.66);
  line-height: var(--lh-relaxed);
}

.ui-value-q {
  margin-top: var(--space-3);
  color: rgba(0, 0, 0, 0.74);
  font-size: var(--fs-01);
  font-weight: 750;
}

.ui-preview-detail {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: var(--space-3);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.8);
  padding: calc(var(--space-4) + 2px);
  box-shadow: inset 4px 0 0 var(--ctc-orange), 0 16px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.ui-preview-detail-kicker {
  font-size: var(--fs-00);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.52);
  font-weight: 800;
}

.ui-preview-detail-title {
  margin: 0;
  font-size: var(--fs-03);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.ui-preview-detail-summary {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.55;
}

.ui-preview-detail-list {
  margin: 0;
  padding-left: 1rem;
  color: rgba(0, 0, 0, 0.74);
  display: grid;
  align-content: start;
  gap: calc(var(--space-2) - 2px);
  line-height: 1.52;
}

.ui-preview-detail-decision {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.8);
  font-weight: 800;
  line-height: 1.5;
}

.ui-preview-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
  color: rgba(0, 0, 0, 0.78);
}

.ui-preview-points li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: var(--space-3);
  align-items: start;
}

.ui-preview-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(243, 80, 28, 0.5);
  background: rgba(243, 80, 28, 0.18);
  margin-top: 0.35rem;
}

.ui-proof {
  margin: 0;
  padding: calc(var(--space-3) + 2px) var(--space-4);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ui-proof-title {
  font-size: var(--fs-01);
  font-weight: 850;
  letter-spacing: -0.01em;
}

.ui-proof-text {
  margin-top: var(--space-2);
  color: rgba(0, 0, 0, 0.66);
  font-size: var(--fs-01);
  line-height: 1.52;
}

.ui-preview-steps {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.ui-step {
  appearance: none;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: 12px;
  font: inherit;
  font-size: var(--fs-01);
  text-align: left;
  color: rgba(0, 0, 0, 0.64);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.ui-step::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.03);
  flex: none;
}

.ui-step:hover {
  color: rgba(0, 0, 0, 0.88);
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
}

.ui-step.is-active,
.ui-step[aria-selected="true"] {
  color: rgba(0, 0, 0, 0.92);
  background: rgba(243, 80, 28, 0.1);
  border-color: rgba(243, 80, 28, 0.2);
}

.ui-step.is-active::before,
.ui-step[aria-selected="true"]::before {
  border-color: rgba(243, 80, 28, 0.55);
  background: rgba(243, 80, 28, 0.28);
}

.ui-preview-carousel {
  position: relative;
  touch-action: pan-y;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(7, 9, 15, 0.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
}

.ui-preview-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ui-preview-carousel .ui-preview-steps {
  min-width: 0;
  padding: 0;
}

.ui-preview-carousel .ui-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
}

.ui-preview-carousel .ui-step::before {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.ui-preview-carousel .ui-step:hover {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.ui-preview-carousel .ui-step.is-active,
.ui-preview-carousel .ui-step[aria-selected="true"] {
  color: rgba(255, 255, 255, 0.96);
  background: rgba(243, 80, 28, 0.18);
  border-color: rgba(243, 80, 28, 0.34);
}

.ui-preview-carousel .ui-step.is-active::before,
.ui-preview-carousel .ui-step[aria-selected="true"]::before {
  border-color: rgba(243, 80, 28, 0.75);
  background: rgba(243, 80, 28, 0.44);
}

.ui-preview-controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: flex-end;
}

.ui-preview-control {
  appearance: none;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-weight: 900;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  backdrop-filter: blur(12px);
}

.ui-preview-control:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
}

.ui-preview-control:focus-visible {
  outline: 2px solid rgba(243, 80, 28, 0.7);
  outline-offset: 2px;
}

.ui-preview-wheel {
  position: relative;
  height: var(--ui-wheel-h, 430px);
  overflow: hidden;
}

.ui-preview-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  will-change: opacity;
  transition: opacity 220ms ease;
  opacity: 0;
  pointer-events: none;
  transform: none;
  filter: none;
}

.ui-preview-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  filter: none;
  z-index: 4;
}

.ui-preview-slide.is-next {
  opacity: 0;
  transform: none;
  filter: none;
  z-index: 3;
}

.ui-preview-slide.is-prev {
  opacity: 0;
  transform: none;
  filter: none;
  z-index: 3;
}

.ui-preview-slide.is-back {
  opacity: 0;
  transform: none;
  filter: none;
  z-index: 2;
}

.ui-preview-card {
  height: auto;
  border-radius: 18px;
  overflow: hidden;
}

.ui-preview-shot {
  width: 100%;
  height: auto;
  display: block;
  max-height: 560px;
}

@media (max-width: 1023.98px) {
  .ui-preview-body {
    grid-template-columns: 1fr;
  }

  .ui-preview-values {
    grid-template-columns: 1fr;
  }

  .ui-preview-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    margin-inline: 0;
    padding-inline: 2px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .ui-preview-steps::-webkit-scrollbar {
    display: none;
  }

  .ui-step {
    white-space: nowrap;
    flex: none;
    min-height: 48px;
    min-width: max-content;
    padding: 0 18px;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
  }

  .ui-preview-footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .ui-preview-controls {
    justify-content: flex-end;
  }

  .ui-preview-wheel {
    height: var(--ui-wheel-h, 470px);
  }
}

@media (max-width: 767.98px) {
  .ui-preview {
    border-radius: 18px;
    padding: 0;
  }

  .ui-preview-wheel {
    height: var(--ui-wheel-h, 400px);
  }

  .ui-preview-footer {
    padding: var(--space-3);
    justify-items: stretch;
    gap: var(--space-3);
  }

  .ui-preview-steps {
    padding-inline: 4px;
  }

  .ui-preview-controls {
    display: none;
  }
}

body[data-fatal-error="true"] {
  padding-top: 0;
  background: #07090f;
  color: rgba(255, 255, 255, 0.92);
}

body[data-fatal-error="true"] .topbar,
body[data-fatal-error="true"] main,
body[data-fatal-error="true"] footer {
  display: none;
}

.fatal-error {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}

.fatal-error:not([hidden]) {
  display: flex;
}

.fatal-error .container {
  width: 100%;
  margin: 0;
}

.fatal-error-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 420px at 50% 35%, rgba(243, 80, 28, 0.10), rgba(7, 9, 15, 0.98) 60%),
    linear-gradient(180deg, rgba(7, 9, 15, 0.92), rgba(7, 9, 15, 0.98));
}

.fatal-error-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.fatal-error-card {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.fatal-error-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-6);
  min-height: 100vh;
  padding: clamp(24px, 4vw, 64px);
  align-items: center;
}

.fatal-error-copy {
  max-width: 720px;
}

.fatal-error-kicker {
  margin: 0;
  font-size: var(--fs-00);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.fatal-error-title {
  margin: var(--space-3) 0 0;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #fff;
}

.fatal-error-subtitle {
  margin: var(--space-3) 0 0;
  font-size: var(--fs-02);
  color: rgba(255, 255, 255, 0.66);
  max-width: 42ch;
  line-height: var(--lh-relaxed);
}

.fatal-error-actions {
  margin-top: var(--space-5);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.fatal-error-btn {
  height: 2.75rem;
  padding: 0 var(--space-5);
  border-radius: 12px;
  font-size: var(--fs-00);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fatal-error-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.fatal-error-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.fatal-error-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fatal-error-chart {
  width: min(720px, 100%);
  height: auto;
}

.fatal-chart-grid path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.fatal-chart-area {
  fill: url(#fatal-area);
}

.fatal-chart-line {
  fill: none;
  stroke: url(#fatal-line);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  animation: fatal-draw 1400ms cubic-bezier(0.22, 0.9, 0.2, 1) forwards;
}

.fatal-chart-dot {
  fill: rgba(255, 122, 69, 0.95);
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.2;
  animation: fatal-pulse 1400ms ease-in-out infinite;
}

@keyframes fatal-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fatal-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fatal-chart-line,
  .fatal-chart-dot {
    animation: none;
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1023.98px) {
  .fatal-error-grid {
    grid-template-columns: 1fr;
  }

  .fatal-error-subtitle {
    max-width: none;
  }
}
