/* Letmeads Click Tracker — product page (not docs) */

:root {
  --ct-shell: 1200px;
  --ct-section-y: clamp(72px, 9vw, 120px);
  --ct-text: rgba(255, 255, 255, 0.72);
  --ct-text-strong: #fff;
  --ct-muted: rgba(255, 255, 255, 0.48);
  --ct-line: rgba(255, 255, 255, 0.1);
  --ct-card: #121216;
  --ct-light-bg: #f4f3f7;
  --ct-light-text: #1b1b22;
  --ct-light-muted: #5c5b66;
  --ct-light-line: rgba(27, 27, 34, 0.1);
  --ct-accent: var(--lma-color--purple-1);
  --ct-accent-soft: var(--lma-color--purple-3);
  --ct-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.ct-page {
  background: var(--lma-color--dark-1);
  color: var(--ct-text-strong);
  overflow-x: clip;
}

/* Don’t clip hero / card glows (landing-v2 sets overflow:hidden on wrap) */
.ct-page .lv2-page-wrap {
  overflow: visible;
}

.ct-main {
  position: relative;
  z-index: 3;
  min-height: 100vh;
}

/* Override landing-v2 section sibling gap — CT sections use their own padding */
.ct-main.lv2-main > * + * {
  margin-top: 0;
}

.ct-shell {
  width: min(100% - 2 * var(--container-pad, 24px), var(--ct-shell));
  margin-inline: auto;
}

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

.ct-section--dark {
  background: var(--lma-color--dark-1);
}

.ct-section--light {
  background: var(--ct-light-bg);
  color: var(--ct-light-text);
}

.ct-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ct-accent-soft);
}

.ct-eyebrow--dark {
  color: var(--ct-accent);
}

.ct-h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.ct-h1__brand {
  display: block;
}

.ct-h1__product {
  display: block;
  background: linear-gradient(105deg, #beacff 0%, #754dff 55%, #c998f2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ct-h2 {
  margin: 0 0 1.1rem;
  max-width: 16rem;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}

.ct-section--light .ct-h2 {
  max-width: 32rem;
}

.ct-h2--dark {
  color: var(--ct-light-text);
}

.ct-h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 650;
  color: #fff;
}

.ct-h3--dark {
  color: var(--ct-light-text);
}

.ct-lead {
  margin: 0 0 1rem;
  max-width: 34rem;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.ct-body {
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 1.15vw, 1.125rem);
  line-height: 1.65;
  color: var(--ct-text);
}

.ct-body--dark {
  color: var(--ct-light-muted);
}

.ct-body--narrow {
  max-width: 40rem;
}

.ct-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.ct-chips li {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--ct-line);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.03);
}

/* ===== HERO / INTRO ===== */
.ct-hero {
  --ct-hero-max: 900px;
  position: relative;
  overflow: visible;
  isolation: isolate;
  box-sizing: border-box;
  /* Fill viewport, but never stretch on ultra-tall screens */
  height: min(100svh, var(--ct-hero-max));
  min-height: min(100svh, var(--ct-hero-max));
  max-height: var(--ct-hero-max);
  display: flex;
  align-items: center;
  padding: 5.5rem 0 2rem;
  background:
    radial-gradient(ellipse 58% 72% at 88% 52%, rgba(117, 77, 255, 0.32), transparent 68%),
    radial-gradient(ellipse 34% 46% at 6% 82%, rgba(27, 16, 63, 0.55), transparent 72%),
    #09090a;
}

.ct-hero__glow {
  position: absolute;
  top: 8%;
  right: -6%;
  bottom: 0;
  left: 38%;
  background: radial-gradient(circle at 68% 52%, rgba(117, 77, 255, 0.42), transparent 62%);
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
}

.ct-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.2fr);
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
}

.ct-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.ct-hero__visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  /* Floor so short viewports don't crush the globe */
  width: min(100%, 620px, max(440px, 68vh));
  margin-right: clamp(-2.5rem, -3vw, 0);
  margin-bottom: 0;
}

.ct-hero__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.95;
}

.ct-hero__earth,
.ct-hero__path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

.ct-hero__earth {
  z-index: 1;
  filter: drop-shadow(0 0 64px rgba(117, 77, 255, 0.38));
}

.ct-hero__path {
  z-index: 2;
  /* path sits centered on the globe */
  inset: 4% 3% 2%;
  width: auto;
  height: auto;
  margin: auto;
  max-width: 88%;
  max-height: 88%;
}

.ct-ok {
  color: var(--lma-color--green-1);
  font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.ct-how {
  background:
    radial-gradient(ellipse 42% 36% at 88% 12%, rgba(117, 77, 255, 0.08), transparent 70%),
    var(--ct-light-bg);
}

.ct-how__head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.ct-how__copy {
  max-width: 34rem;
}

.ct-how__title {
  max-width: 11.5em;
}

.ct-how__accent {
  color: var(--ct-accent);
}

.ct-how__banner {
  justify-self: end;
  width: min(100%, 700px);
}

.ct-how__banner-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.ct-flow {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.85rem 0.55rem;
  align-items: stretch;
}

.ct-flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.1rem 1.25rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(117, 77, 255, 0.08);
  box-shadow:
    0 1px 2px rgba(27, 27, 34, 0.04),
    0 10px 28px rgba(117, 77, 255, 0.06);
}

.ct-flow__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}

.ct-flow__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(117, 77, 255, 0.1);
  color: var(--ct-accent);
  flex-shrink: 0;
}

.ct-flow__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.ct-flow__num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ct-accent);
}

.ct-flow__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--ct-light-text);
}

.ct-flow__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ct-light-muted);
}

.ct-flow__connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: clamp(1.75rem, 3.5vw, 2.75rem);
  min-width: 1.75rem;
  height: 2rem;
  padding: 0;
}

.ct-flow__dash {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0;
  border-top: 1.5px dashed rgba(117, 77, 255, 0.4);
  transform: translateY(-50%);
}

.ct-flow__chev {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(117, 77, 255, 0.14);
  color: var(--ct-accent);
  box-shadow:
    0 1px 2px rgba(27, 27, 34, 0.04),
    0 4px 14px rgba(117, 77, 255, 0.12);
}

.ct-flow__chev svg {
  width: 0.75rem;
  height: 0.75rem;
  display: block;
}

.ct-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin: 0;
  padding: 1.05rem 1.25rem;
  border-radius: 16px;
  background: rgba(117, 77, 255, 0.1);
  border: 1px solid rgba(117, 77, 255, 0.12);
}

.ct-callout__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
  color: var(--ct-accent);
}

.ct-callout__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.ct-callout__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ct-light-text);
  font-weight: 500;
}

/* ===== ROUTING ===== */
.ct-routing {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 40% 50% at 12% 70%, rgba(117, 77, 255, 0.14), transparent 70%),
    #09090a;
}

.ct-routing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ct-routing__bg-img {
  position: absolute;
  top: 50%;
  right: 0;
  height: 80%;
  width: auto;
  max-width: none;
  min-width: 42%;
  object-fit: cover;
  object-position: center right;
  transform: translateY(-50%);
  /* real alpha in PNG — no mix-blend needed */
  user-select: none;
  pointer-events: none;
}

.ct-routing__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #09090a 0%, rgba(9, 9, 10, 0.88) 26%, rgba(9, 9, 10, 0.25) 50%, transparent 70%),
    linear-gradient(180deg, rgba(9, 9, 10, 0.35) 0%, transparent 16%, transparent 84%, rgba(9, 9, 10, 0.4) 100%);
}

.ct-routing__glow {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 48%;
  height: 70%;
  background: radial-gradient(circle at 55% 45%, rgba(117, 77, 255, 0.22), transparent 68%);
  filter: blur(42px);
  pointer-events: none;
  z-index: 0;
}

.ct-routing__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.ct-routing__copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.ct-eyebrow--line {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ct-eyebrow--line::after {
  content: "";
  flex: 1;
  max-width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(190, 172, 255, 0.55), transparent);
}

.ct-routing__title {
  max-width: 8.5em;
}

.ct-routing__accent {
  color: #c4b5fd;
  text-shadow: 0 0 28px rgba(167, 139, 250, 0.45);
}

.ct-meta {
  margin: 2rem 0 1.75rem;
  display: grid;
  gap: 0;
}

.ct-meta__row {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ct-line);
}

.ct-meta__row:last-child {
  border-bottom: 0;
}

.ct-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: rgba(117, 77, 255, 0.14);
  border: 1px solid rgba(190, 172, 255, 0.16);
  color: #c4b5fd;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(117, 77, 255, 0.18);
}

.ct-meta__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.ct-meta__text {
  min-width: 0;
}

.ct-meta dt {
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ct-muted);
}

.ct-meta dd {
  margin: 0;
}

.ct-meta code,
.ct-urlviz__code,
.ct-tok {
  font-family: var(--ct-mono);
}

.ct-meta code {
  font-size: 1.02rem;
  color: #fff;
}

.ct-attr {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding-top: 0.25rem;
}

.ct-attr__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: rgba(117, 77, 255, 0.14);
  color: #c4b5fd;
  flex-shrink: 0;
}

.ct-attr__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.ct-attr__body .ct-body {
  margin-bottom: 0;
}

.ct-attr__body .ct-h3 {
  margin-bottom: 0.4rem;
}

.ct-urlviz {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 520px);
  backdrop-filter: blur(4px) saturate(1);
  -webkit-backdrop-filter: blur(4px) saturate(1);
}

.ct-urlviz__stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ct-urlviz__pane {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid rgba(190, 172, 255, 0.12);
  background: rgba(28, 20, 52, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ct-urlviz__pane--1 {
  transform: translate(14px, 16px) scale(0.985);
  opacity: 0.55;
}

.ct-urlviz__pane--2 {
  transform: translate(28px, 32px) scale(0.97);
  opacity: 0.28;
}

.ct-urlviz__card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.35rem 1.35rem 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(190, 172, 255, 0.28);
  background:
    linear-gradient(155deg, rgba(58, 42, 110, 0.42) 0%, rgba(22, 16, 40, 0.72) 42%, rgba(12, 10, 22, 0.82) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(117, 77, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(190, 172, 255, 0.35);
}

.ct-urlviz__card::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #a78bfa 20%, #e9d5ff 50%, #a78bfa 80%, transparent);
  box-shadow:
    0 0 18px 3px rgba(167, 139, 250, 0.65),
    0 0 40px 8px rgba(117, 77, 255, 0.35);
  pointer-events: none;
  z-index: 3;
}

.ct-urlviz__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 42% at 18% 0%, rgba(190, 172, 255, 0.22), transparent 62%),
    radial-gradient(ellipse 48% 40% at 88% 100%, rgba(117, 77, 255, 0.28), transparent 60%),
    radial-gradient(ellipse 30% 28% at 70% 20%, rgba(201, 152, 242, 0.12), transparent 70%);
}

.ct-urlviz__head,
.ct-urlviz__code,
.ct-urlviz__diagram,
.ct-urlviz__hint {
  position: relative;
  z-index: 1;
}

.ct-urlviz__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ct-urlviz__label {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.ct-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ct-copy:hover,
.ct-copy:focus-visible {
  color: #fff;
  border-color: rgba(190, 172, 255, 0.45);
  background: rgba(117, 77, 255, 0.16);
  outline: none;
}

.ct-copy.is-copied {
  color: var(--lma-color--green-1);
  border-color: rgba(0, 224, 133, 0.35);
}

.ct-urlviz__code {
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.2rem;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(190, 172, 255, 0.14);
  background:
    radial-gradient(ellipse 80% 70% at 10% 0%, rgba(117, 77, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 120%, rgba(0, 224, 133, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(8, 7, 14, 0.92), rgba(6, 5, 12, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 28px rgba(117, 77, 255, 0.08);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  white-space: pre-wrap;
  word-break: break-all;
}

.ct-tok--host { color: #d8b4fe; }
.ct-tok--key { color: #c4b5fd; }
.ct-tok--val {
  color: #4ade80;
  text-shadow: 0 0 16px rgba(74, 222, 128, 0.35);
}
.ct-tok--path,
.ct-tok--proto,
.ct-tok--q,
.ct-tok--eq { color: rgba(255, 255, 255, 0.5); }

.ct-urlviz__diagram {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-family: var(--ct-mono);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.ct-urlviz__node {
  color: #d8b4fe;
}

.ct-urlviz__branch {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-left: 0.85rem;
}

.ct-urlviz__elbow {
  width: 14px;
  height: 18px;
  border-left: 1px solid rgba(190, 172, 255, 0.4);
  border-bottom: 1px solid rgba(190, 172, 255, 0.4);
}

.ct-urlviz__dest {
  padding-left: 2.1rem;
  color: #4ade80;
  text-shadow: 0 0 14px rgba(74, 222, 128, 0.3);
}

.ct-urlviz__hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ct-muted);
}

/* ===== SECURITY / CONTROLLED ROUTING ===== */
.ct-sec {
  background:
    radial-gradient(ellipse 42% 34% at 88% 18%, rgba(117, 77, 255, 0.08), transparent 70%),
    radial-gradient(ellipse 28% 24% at 12% 72%, rgba(0, 224, 133, 0.05), transparent 70%),
    var(--ct-light-bg);
}

.ct-sec__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.ct-sec__copy {
  max-width: 34rem;
}

.ct-sec__title {
  max-width: 12em;
}

.ct-sec__visual {
  margin: 0;
  justify-self: end;
  width: min(100%, 560px);
}

.ct-sec__visual-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 18px 40px rgba(117, 77, 255, 0.12));
}

.ct-principles {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ct-principles__card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(117, 77, 255, 0.08);
  box-shadow:
    0 1px 2px rgba(27, 27, 34, 0.04),
    0 10px 28px rgba(117, 77, 255, 0.05);
}

.ct-principles__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(117, 77, 255, 0.1);
  color: var(--ct-accent);
}

.ct-principles__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.ct-principles__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--ct-light-text);
}

.ct-principles__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ct-light-muted);
}

.ct-gads {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: 1.35rem 1.45rem;
  border-radius: 20px;
  background: rgba(117, 77, 255, 0.06);
  border: 1px solid rgba(117, 77, 255, 0.1);
}

.ct-gads__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.ct-gads__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(27, 27, 34, 0.06);
  flex-shrink: 0;
}

.ct-gads__logo svg,
.ct-gads__logo img {
  width: 2rem;
  height: 2rem;
  display: block;
}

.ct-gads__titles .ct-eyebrow {
  margin-bottom: 0.35rem;
}

.ct-gads__title {
  margin: 0;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ct-light-text);
}

.ct-gads__copy {
  display: grid;
  gap: 0.55rem;
}

.ct-gads__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ct-light-muted);
}

/* ===== COMPANY / OPERATOR ===== */
.ct-ops {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 36% 40% at 78% 28%, rgba(117, 77, 255, 0.16), transparent 70%),
    radial-gradient(ellipse 30% 34% at 12% 70%, rgba(117, 77, 255, 0.1), transparent 72%),
    #09090a;
}

.ct-ops__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ct-ops__circuit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -4%;
  width: 108%;
  height: 100%;
  object-fit: fill;
  opacity: 0.85;
  pointer-events: none;
}

.ct-ops__dots {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.45;
  mask-image: radial-gradient(circle, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 75%);
}

.ct-ops__dots--tl {
  top: 8%;
  left: 4%;
}

.ct-ops__dots--mr {
  top: 38%;
  right: 8%;
  width: 120px;
  height: 120px;
}

.ct-ops__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.45;
}

.ct-ops__bloom--1 {
  top: 18%;
  right: 18%;
  width: 220px;
  height: 220px;
  background: rgba(117, 77, 255, 0.35);
}

.ct-ops__bloom--2 {
  bottom: 8%;
  left: 22%;
  width: 180px;
  height: 180px;
  background: rgba(167, 139, 250, 0.18);
}

.ct-ops > .ct-shell {
  position: relative;
  z-index: 1;
}

.ct-ops__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 3.5vw, 3.25rem);
  align-items: start;
  margin: 0 0 1.75rem;
}

.ct-ops__copy .ct-h2 {
  max-width: 12em;
}

.ct-ops__brand {
  margin-top: 1.75rem;
}

.ct-ops__brand-name {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.ct-ops__contacts {
  list-style: none;
  margin: 1.25rem 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.ct-ops__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.ct-ops__contacts a:hover {
  color: #fff;
}

.ct-ops__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  color: #c4b5fd;
  flex-shrink: 0;
}

.ct-ops__ico svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.ct-ops__links {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--ct-muted);
  font-size: 0.92rem;
}

.ct-ops__links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ct-ops__links a:hover {
  color: #fff;
}

.ct-company {
  position: relative;
  padding: 1.45rem 1.5rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(190, 172, 255, 0.22);
  background:
    linear-gradient(165deg, rgba(58, 42, 110, 0.28) 0%, rgba(18, 14, 32, 0.78) 48%, rgba(12, 10, 20, 0.88) 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(117, 77, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ct-company::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #a78bfa 25%, #e9d5ff 50%, #a78bfa 75%, transparent);
  box-shadow: 0 0 18px 3px rgba(167, 139, 250, 0.45);
  pointer-events: none;
}

.ct-company__badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  background: rgba(117, 77, 255, 0.16);
  color: #c4b5fd;
  box-shadow: 0 0 20px rgba(117, 77, 255, 0.25);
}

.ct-company__badge svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.ct-company__list {
  margin: 0;
  display: grid;
  gap: 1.1rem;
  padding-right: 2.5rem;
}

.ct-company__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(190, 172, 255, 0.35), transparent 90%);
  margin: 0.15rem 0;
}

.ct-company__row dt {
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ct-muted);
}

.ct-company__row dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.ct-compliance {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-top: 0.25rem;
  padding: 1.55rem 1.55rem 1.55rem 1.65rem;
  border-radius: 22px;
  border: 1px solid rgba(190, 172, 255, 0.22);
  background:
    radial-gradient(ellipse 50% 80% at 0% 0%, rgba(117, 77, 255, 0.22), transparent 55%),
    linear-gradient(135deg, rgba(40, 28, 78, 0.45), rgba(14, 12, 24, 0.92) 55%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(117, 77, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.ct-compliance::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 35%;
  top: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #a78bfa 20%, #ddd6fe 50%, #a78bfa 80%, transparent);
  box-shadow: 0 0 22px 4px rgba(167, 139, 250, 0.5);
  pointer-events: none;
}

.ct-compliance__copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.ct-compliance__title {
  max-width: 18em;
  margin-bottom: 0.65rem;
}

.ct-compliance__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.ct-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(190, 172, 255, 0.25);
  background: rgba(10, 8, 18, 0.55);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 550;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ct-mail:hover {
  color: #fff;
  border-color: rgba(190, 172, 255, 0.5);
  background: rgba(117, 77, 255, 0.16);
}

.ct-mail__ico {
  display: inline-flex;
  color: #c4b5fd;
}

.ct-mail__ico svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.ct-mail__arrow {
  color: #a78bfa;
  margin-left: 0.15rem;
}

.ct-mail--secondary {
  color: rgba(255, 255, 255, 0.72);
}

.ct-compliance__art {
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: start;
  width: min(100%, 280px);
  margin-top: -1.55rem;
  margin-right: -0.5rem;
}

.ct-compliance__panes {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(117, 77, 255, 0.25));
}

.ct-footer {
  margin-top: 0;
}

.ct-footer .lv2-footer__bar {
  position: relative;
}

/* Soft enter — never hide content (full-page / no-JS safe) */
.ct-reveal.is-in {
  animation: ct-fade-up 0.55s ease both;
}

@keyframes ct-fade-up {
  from { opacity: 0.35; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@keyframes ct-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 224, 133, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(0, 224, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 224, 133, 0); }
}

@keyframes ct-route {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 6px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ct-reveal.is-in {
    animation: none;
  }
  .ct-urlviz__card {
    transition: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ct-hero__grid,
  .ct-routing__grid,
  .ct-sec__head,
  .ct-ops__grid {
    grid-template-columns: 1fr;
  }

  .ct-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    align-items: stretch;
    padding: 6.5rem 0 3rem;
  }

  .ct-hero__visual {
    justify-self: center;
    width: min(100%, 480px);
    margin-right: 0;
    margin-bottom: 0;
    order: -1;
  }

  .ct-hero__copy {
    max-width: none;
  }

  .ct-routing__bg-img {
    right: -12%;
    min-width: 56%;
    height: 72%;
  }

  .ct-routing__bg::after {
    background:
      linear-gradient(180deg, rgba(9, 9, 10, 0.5) 0%, rgba(9, 9, 10, 0.15) 30%, rgba(9, 9, 10, 0.5) 100%),
      linear-gradient(90deg, #09090a 0%, rgba(9, 9, 10, 0.65) 40%, transparent 75%);
  }

  .ct-urlviz {
    justify-self: center;
    width: min(100%, 480px);
  }

  .ct-h2 {
    max-width: 18ch;
  }

  .ct-how__head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ct-how__title {
    max-width: 18ch;
  }

  .ct-how__banner {
    justify-self: center;
    width: min(100%, 520px);
  }

  .ct-sec__visual {
    justify-self: center;
    width: min(100%, 480px);
  }

  .ct-sec__title {
    max-width: none;
  }

  .ct-principles {
    grid-template-columns: 1fr;
  }

  .ct-gads {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .ct-compliance {
    grid-template-columns: 1fr;
  }

  .ct-compliance__art {
    justify-self: center;
    align-self: stretch;
    width: min(100%, 260px);
    margin-top: 0;
    margin-right: 0;
    order: -1;
  }

  .ct-company__list {
    padding-right: 2.75rem;
  }

  .ct-flow {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .ct-flow__connector {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --ct-section-y: clamp(64px, 14vw, 80px);
  }

  .ct-hero {
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .ct-hero__visual {
    width: min(100%, 340px);
  }

  .ct-hero__path {
    inset: 3% 2% 1%;
    max-width: 92%;
    max-height: 92%;
  }

  .ct-hero__grid {
    gap: 1.5rem;
  }

  .ct-h1 {
    font-size: clamp(2.5rem, 11vw, 3rem);
  }

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

  .ct-callout {
    flex-direction: row;
    padding: 1rem 1.1rem;
  }

  .ct-how__title {
    max-width: none;
  }
}
