:root {
  --container: 1200px;
  --gutter: clamp(16px, 3vw, 24px);

  --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%);

  --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.55;
  --lh-relaxed: 1.7;

  --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;
}

* {
  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-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: rgba(7, 9, 15, 0.92);
  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: 14px;
}

.page-loader-bars3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.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) + 0.75rem);
}

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: 5.5rem;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

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

.topbar-logo {
  display: block;
}

.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-5);
  font-size: var(--fs-00);
  color: hsl(220 9% 46%);
}

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

.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;
}

.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-consult {
  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;
}

.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%));
  padding: clamp(76px, 10vw, 120px) 0 clamp(64px, 7.8vw, 112px);
}

.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: var(--ctc-orange);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(243, 80, 28, 0.95), rgba(243, 80, 28, 0.72));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.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-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);
  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.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  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: flex;
  justify-content: center;
  position: relative;
  isolation: isolate;
  grid-area: media;
}

.hero-media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(980px, 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-media::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-2) + 18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 40%, rgba(0, 0, 0, 0.22)),
    radial-gradient(80% 120% at 50% 0%, rgba(255, 255, 255, 0.1), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero-dashboard {
  display: block;
  width: min(980px, 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: perspective(900px) rotateX(7deg);
  transform-origin: center top;
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
  filter: saturate(1.02) contrast(1.02);
}

.hero-media:hover .hero-dashboard {
  transform: perspective(900px) rotateX(2deg) translateY(-4px);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.66),
    0 1px 0 rgba(255, 255, 255, 0.14) inset;
  filter: saturate(1.07) contrast(1.05);
}

@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::before {
    animation: none;
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 0.75;
  }

  .hero-dashboard,
  .hero-media:hover .hero-dashboard {
    transform: none;
    transition: none;
  }
}

@media (min-width: 960px) {
  .hero-inner {
    text-align: left;
    grid-template-columns: minmax(340px, 1fr) minmax(420px, 0.98fr);
    column-gap: clamp(40px, 5vw, 72px);
    row-gap: 0;
    align-items: start;
    grid-template-areas:
      "title media"
      "subtitle media"
      "actions media"
      "footnote media";
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
    max-width: 40rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-media {
    margin-top: 0;
    justify-content: flex-end;
    align-self: center;
  }
}

.section-light {
  background: #fff;
  padding: calc(var(--space-8) + var(--space-1)) 0;
}

.section-dark {
  background: var(--ctc-dark);
  padding: calc(var(--space-8) + var(--space-3)) 0;
}

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

.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(--space-7);
  align-items: start;
}

.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(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.why-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  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(--space-6);
  display: grid;
  gap: var(--space-2);
  padding-top: var(--space-4);
  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(--space-2);
  padding: 0.45rem 0.55rem;
  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;
}

.why-wheel {
  position: relative;
  height: var(--why-wheel-h, 420px);
  overflow: visible;
}

.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: absolute;
  inset: 0;
  transform-origin: 50% 64%;
  will-change: transform, opacity, filter;
  transition: transform 720ms cubic-bezier(0.2, 0.85, 0.2, 1), opacity 520ms ease, filter 520ms ease;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 36px, 0) scale(0.92);
  filter: blur(2px);
}

.why-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
  z-index: 4;
}

.why-slide.is-next {
  opacity: 0.42;
  transform: translate3d(22%, -20%, 0) rotate(14deg) scale(0.9);
  filter: blur(0.8px);
  z-index: 3;
}

.why-slide.is-prev {
  opacity: 0.42;
  transform: translate3d(-22%, -20%, 0) rotate(-14deg) scale(0.9);
  filter: blur(0.8px);
  z-index: 3;
}

.why-slide.is-back {
  opacity: 0.2;
  transform: translate3d(0, -12%, 0) rotate(-10deg) scale(0.86);
  filter: blur(1.8px);
  z-index: 2;
}

.why-card {
  position: relative;
  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);
  padding: var(--space-5);
}

.why-card-title {
  margin: 0;
  font-size: var(--fs-03);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.15;
}

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

.why-col {
  border-radius: 14px;
  padding: var(--space-4);
  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: 0.72rem;
  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: var(--space-2) 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: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .why-head {
    text-align: center;
    position: static;
  }

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

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

  .why-steps {
    display: flex;
    justify-content: center;
  }

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

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

@media (max-width: 720px) {
  .why-steps {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-top: var(--space-4);
    padding-bottom: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .why-step {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

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

  .why-wheel {
    height: auto;
    overflow: visible;
  }

  .why-slide {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    filter: none;
    transition: opacity 220ms ease;
  }

  .why-slide:not(.is-active) {
    display: none;
  }
}

.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);
  color: hsl(220 9% 46%);
}

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

.problems {
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-8) + var(--space-2)) 0 calc(var(--space-8) + var(--space-4));
}

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

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

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

.problems-head .section-title {
  text-align: left;
}

.problems-subtitle {
  margin: var(--space-4) 0 0;
  max-width: 44ch;
  font-size: var(--fs-02);
  line-height: 1.55;
  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: 0.3rem 0.55rem;
  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: calc(var(--space-5) + 2px) calc(var(--space-6) + 8px);
  padding-right: calc(var(--space-6) + 8px + 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: 0 auto;
  width: min(1120px, 100%);
  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:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  border-color: hsl(220 13% 84%);
}

.feature-card--big {
  grid-column: span 2;
  padding: calc(var(--space-5) + var(--space-1));
}

.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;
  }
  .feature-card:hover {
    transform: none;
  }
}

.insight {
  padding: calc(var(--space-8) + var(--space-3)) 0;
}

.insight-wrap {
  margin-top: var(--space-5);
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.quote-mark {
  flex: none;
  color: var(--ctc-orange);
  margin: 0;
}

.quote-mark svg {
  width: 28px;
  height: 28px;
  display: block;
}

.insight-card {
  flex: 1;
  border: 1px solid var(--ctc-border);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, rgba(243, 80, 28, 0.03));
  padding: var(--space-6);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.insight-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.2));
}

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

.insight-footnote {
  margin: 0;
  font-size: var(--fs-00);
  color: hsl(220 9% 46% / 0.9);
  line-height: var(--lh-default);
}

.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 auto var(--space-6);
  width: min(1120px, 100%);
  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 auto;
  width: min(1120px, 100%);
  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: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.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: 0.35rem 0.6rem;
  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: 1.25rem;
  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: 0.35rem;
}

.pricing-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
}

.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);
}

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

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

.how {
  position: relative;
  overflow: hidden;
  background: var(--ctc-warm-white);
  padding: calc(var(--space-8) + var(--space-1)) 0 calc(var(--space-8) + var(--space-3));
  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-steps {
  margin: var(--space-6) auto 0;
  width: min(1040px, 100%);
  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: 0 16px 46px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.how-step::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));
}

.how-step:hover {
  transform: none;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.06);
  border-color: var(--ctc-border);
}

.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 0.65rem;
  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);
  padding: calc(var(--space-8) + var(--space-1)) 0;
}

.cta-band--compact {
  padding: calc(var(--space-6) + var(--space-1)) 0;
}

.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-01);
  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);
}

.contact-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;
}

.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 {
  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 {
  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 {
  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: 1025px) {
  .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-01);
  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: 0.5rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.45rem 0.7rem;
  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: 0.75rem 1rem;
  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: 0.9rem 1rem;
}

.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: 0.25rem 0.35rem 0.25rem 1.15rem;
  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;
  padding: calc(var(--space-8) + var(--space-1)) 0 calc(var(--space-8) + var(--space-5));
}

.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) + 12px);
  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) + 12px);
  font-size: var(--fs-01);
  color: hsl(220 9% 46%);
  line-height: var(--lh-default);
}

@media (max-width: 1024px) {
  .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%);
  }

  .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;
  padding: calc(var(--space-7) + var(--space-1)) 0 var(--space-6);
}

.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);
}

@media (max-width: 640px) {
  .footer-bottom {
    justify-content: center;
  }

  .footer-bottom span {
    margin-right: 0;
    flex-basis: 100%;
    text-align: center;
  }
}

.section {
  padding: calc(var(--space-8) + var(--space-1)) 0;
}

.section-header {
  margin-bottom: var(--space-5);
  max-width: 78ch;
}

.section-header h2 {
  margin: 0 0 var(--space-2);
  font-size: var(--fs-05);
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 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: calc(var(--space-8) + var(--space-1)) 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: 1024px) {
  :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;
  }

  .problems-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :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;
  }

  .insight-wrap {
    flex-direction: column;
    gap: var(--space-3);
  }

  .insight-card {
    width: 100%;
  }

  .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-top: var(--space-7);
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: clamp(20px, 3vw, 34px);
}

.ui-preview-head {
  display: grid;
  gap: var(--space-3);
  margin: 0;
}

.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;
  color: rgba(0, 0, 0, 0.68);
  max-width: 56ch;
  line-height: var(--lh-relaxed);
}

.ui-preview-body {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}

.ui-preview-body > * {
  min-width: 0;
  max-width: 100%;
}

.ui-preview-tour {
  display: grid;
  gap: var(--space-4);
}

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

.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: 6px;
  color: rgba(0, 0, 0, 0.66);
  line-height: var(--lh-relaxed);
}

.ui-value-q {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.74);
  font-size: var(--fs-01);
  font-weight: 750;
}

.ui-preview-detail {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.8);
  padding: var(--space-5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.ui-preview-detail::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));
}

.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: var(--space-3) 0 0;
  font-size: var(--fs-03);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.ui-preview-detail-summary {
  margin: var(--space-3) 0 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: var(--lh-relaxed);
}

.ui-preview-detail-list {
  margin: var(--space-4) 0 0;
  padding-left: 1.05rem;
  color: rgba(0, 0, 0, 0.74);
  display: grid;
  gap: var(--space-2);
}

.ui-preview-detail-decision {
  margin-top: var(--space-4);
  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: var(--lh-relaxed);
}

.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: 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: var(--lh-relaxed);
}

.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: 0.55rem 0.6rem;
  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);
}

.ui-preview-carousel .ui-preview-steps {
  padding: 14px 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.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 {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 10px;
  z-index: 6;
}

.ui-preview-control {
  appearance: none;
  width: 40px;
  height: 40px;
  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, 460px);
  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: clamp(340px, 42vw, 560px);
  display: block;
  object-fit: cover;
  object-position: center top;
  background: rgba(7, 9, 15, 0.96);
}

@media (max-width: 900px) {
  .ui-preview-values {
    grid-template-columns: 1fr;
  }

  .ui-preview-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--space-2);
  }

  .ui-step {
    white-space: nowrap;
    flex: none;
  }

  .ui-preview-wheel {
    height: var(--ui-wheel-h, 520px);
  }
}

@media (max-width: 640px) {
  .ui-preview {
    border-radius: 18px;
    padding: var(--space-5);
  }

  .ui-preview-wheel {
    height: var(--ui-wheel-h, 560px);
  }
}

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-4) 0 0;
  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: 900px) {
  .fatal-error-grid {
    grid-template-columns: 1fr;
  }

  .fatal-error-subtitle {
    max-width: none;
  }
}
