@font-face {
  font-family: "Geist Pixel Circle";
  src: url("fonts/GeistPixel-Circle.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #8e8e8e;
  --nav-text: #2e2e2e;
  --pill-dark: #28282a;
  --sign-in-text: #c8c8c8;
  --nav-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  --trust-bg: #28282a;
  --trust-border: rgba(255, 255, 255, 0.4);
  --trust-text: #c4c2c3;

  /* The one deliberate brand accent, pulled from the logo — same token the
     dashboard uses (there as --dash-accent). Used sparingly across the site. */
  --accent: #7b7fff;
  --accent-dim: rgba(123, 127, 255, 0.14);

  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "BubbledotICG-FinePos", "Geist Pixel Circle", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Background video ---------- */

.bg {
  position: fixed;
  inset: 0;
  background: #000;
  overflow: hidden;
  z-index: 0;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ---------- Page layout ---------- */

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  padding: clamp(16px, 2.4vh, 28px) clamp(14px, 3vw, 32px);
}

/* ---------- Header ---------- */

.header {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 28px);
  max-width: 720px;
  margin: 0 auto;
}

.logo {
  flex-shrink: 0;
  width: clamp(40px, 4.4vw, 46px);
  height: clamp(40px, 4.4vw, 46px);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.04);
}

.logo-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
}

.nav-pill {
  flex: 1;
  max-width: 430px;
  height: clamp(44px, 5.2vw, 48px);
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--nav-shadow);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.nav-link {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: -0.01em;
  color: var(--nav-text);
  opacity: 0.5;
  padding: 6px 4px;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.75;
}

.nav-link.is-active {
  opacity: 1;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  box-shadow: -5px 0 0 #000, 5px 0 0 #000;
}

.signin {
  flex-shrink: 0;
  height: clamp(44px, 5.2vw, 48px);
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: var(--pill-dark);
  color: var(--sign-in-text);
  border-radius: 999px;
  box-shadow: var(--nav-shadow);
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 15px);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.signin:hover {
  background: #323234;
  color: #fff;
  transform: translateY(-1px);
}

.burger {
  display: none;
}

/* ---------- Hero ---------- */

.hero {
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Headline */

.headline {
  margin: 0;
  font-family: var(--font-display);
  color: #fff;
  font-weight: 400;
  font-size: clamp(28px, 6.2vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1.12;
  /* The background video ranges from a light sky to a dark mountain, so
     white text alone loses contrast over the light section — a thin dark
     contour traces each glyph edge (readable even on near-white sky) plus a
     soft ambient shadow for extra separation, without a heavy outline. */
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.6), 1px -1px 0 rgba(0, 0, 0, 0.6),
    -1px 1px 0 rgba(0, 0, 0, 0.6), 1px 1px 0 rgba(0, 0, 0, 0.6),
    0 3px 10px rgba(0, 0, 0, 0.5), 0 0 32px rgba(0, 0, 0, 0.3);
}

.headline .line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
}

.line1 {
  animation: headlineFade 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.line2 {
  animation: headlineFade 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes headlineFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subhead */

.subhead {
  max-width: min(500px, 92%);
  margin: clamp(14px, 2vh, 20px) 0 0;
  font-size: clamp(calc(13.5px + 2pt), calc(1.55vw + 2pt), calc(16.5px + 2pt));
  color: #d0d0d0;
  opacity: 0.8;
  line-height: 1.55;
  font-weight: 400;
}

/* Dynamic growth-multiplier cycle (10X / 50X / 100X) — aspirational, not a
   promised outcome; see the sr-only note next to it in the markup. */

.x-cycle {
  position: relative;
  width: 100%;
  height: clamp(44px, 7.5vw, 92px);
  margin: clamp(6px, 1.6vh, 14px) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 7vw, 84px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  /* Same edge-contour as .headline for guaranteed legibility over the video,
     plus a soft white glow (echoing the .cta glow) so the multiplier reads as
     the hero's focal point rather than plain body text. */
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.55), 1px -1px 0 rgba(0, 0, 0, 0.55),
    -1px 1px 0 rgba(0, 0, 0, 0.55), 1px 1px 0 rgba(0, 0, 0, 0.55),
    0 0 26px rgba(255, 255, 255, 0.5), 0 0 64px rgba(255, 255, 255, 0.2);
  opacity: 0;
  filter: blur(8px);
  transform: translateY(12px) scale(0.86);
  animation: xCycle 7.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.x-value:nth-child(1) {
  animation-delay: 0s;
}
.x-value:nth-child(2) {
  animation-delay: -2.5s;
}
.x-value:nth-child(3) {
  animation-delay: -5s;
}

@keyframes xCycle {
  0%,
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(12px) scale(0.86);
  }
  6% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1.07);
  }
  13% {
    transform: translateY(0) scale(1);
  }
  27% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
  33% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(-12px) scale(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .x-value {
    animation: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 0 !important;
  }
  .x-value:nth-child(1) {
    opacity: 1 !important;
  }
}

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

/* CTA */

.cta {
  display: inline-block;
  margin-top: clamp(20px, 3vh, 30px);
  background: #fff;
  color: #000;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(13.5px, 1.5vw, 14.5px);
  padding: clamp(11px, 1.6vh, 13px) clamp(22px, 3vw, 28px);
  border: none;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 22px rgba(255, 255, 255, 0.32),
    0 0 44px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 30px rgba(255, 255, 255, 0.42),
    0 0 60px rgba(255, 255, 255, 0.18);
}

/* ---------- Stats footer ---------- */

.stats {
  flex-shrink: 0;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  text-align: center;
}

.stat-icon {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 33px);
  color: #fff;
  line-height: 1;
}

.stat-value {
  font-family: var(--font-sans);
  color: #fff;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
}

.stat-label {
  color: var(--muted);
  font-size: clamp(11px, 1.2vw, 12.5px);
  margin-top: 2px;
}

/* ---------- Shared entrance animation ---------- */

.anim {
  animation: reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
  opacity: 0;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes revealPulse {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.03);
    filter: blur(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.cta.anim {
  animation-name: revealPulse;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header.anim {
  animation: slideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .anim,
  .header.anim,
  .headline .line {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .headline {
    color: #fff;
  }
}

/* ---------- Mobile menu ---------- */

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  padding-top: calc(clamp(16px, 2.4vh, 28px) + 64px);
  animation: overlayIn 0.28s ease both;
}

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

@keyframes overlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mobile-sheet {
  width: min(340px, 88vw);
  height: fit-content;
  background: #fff;
  border-radius: 28px;
  padding: 22px 18px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: menuIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sheet-link {
  position: relative;
  padding: 14px 12px;
  border-radius: 14px;
  color: var(--nav-text);
  font-weight: 500;
  font-size: 15px;
  opacity: 0.6;
  animation: linkIn 0.35s ease both;
}

.sheet-link:nth-child(1) {
  animation-delay: 0.04s;
}
.sheet-link:nth-child(2) {
  animation-delay: 0.08s;
}
.sheet-link:nth-child(3) {
  animation-delay: 0.12s;
}
.sheet-link:nth-child(4) {
  animation-delay: 0.16s;
}

@keyframes linkIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 0.6;
    transform: translateY(0);
  }
}

.sheet-link.is-active {
  opacity: 1;
}

.sheet-link.is-active::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  box-shadow: -5px 0 0 #000, 5px 0 0 #000;
}

.sheet-signin {
  margin-top: 8px;
  width: 100%;
  text-align: center;
  padding: 14px 12px;
  border-radius: 999px;
  background: var(--pill-dark);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  animation: sheetSigninIn 0.35s ease 0.2s both;
}

@keyframes sheetSigninIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Mobile (<=720px) ---------- */

@media (max-width: 720px) {
  .nav-pill,
  .signin {
    display: none;
  }

  .header {
    justify-content: space-between;
    max-width: none;
  }

  .logo {
    width: 48px;
    height: 48px;
  }

  .burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pill-dark);
    border: none;
    box-shadow: var(--nav-shadow);
  }

  .burger span {
    width: 18px;
    height: 1.5px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease, background 0.25s ease;
  }

  .burger[aria-expanded="true"] {
    background: #fff;
  }

  .burger[aria-expanded="true"] span {
    background: #111;
  }

  .burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .headline {
    letter-spacing: -0.08em;
    line-height: 1.05;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }
}

@media (max-width: 420px) {
  .headline {
    letter-spacing: -0.09em;
    line-height: 1.04;
  }

}

@media (max-height: 700px) {
  .subhead {
    margin-top: 10px;
  }

  .x-cycle {
    height: clamp(34px, 7vw, 60px);
    margin-top: 4px;
  }

  .x-value {
    font-size: clamp(28px, 6vw, 48px);
  }

  .cta {
    margin-top: 10px;
  }
}

/* ---------- ConversionXBot chat widget ---------- */

.cb-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
}

.cb-launcher {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.cb-launcher:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cb-launcher:active {
  transform: scale(0.96);
}

.cb-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: cbRing 3.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.cb-launcher.cb-greeted .cb-ring {
  animation: none;
  opacity: 0;
}

@keyframes cbRing {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  25% {
    opacity: 0.6;
  }
  70% {
    opacity: 0;
    transform: scale(1.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.cb-icon {
  /* Both icon states must occupy the exact same spot so they can crossfade.
     `position:absolute; inset:0` doesn't work here because these are SVGs
     with explicit width/height attributes (replaced elements) — inset:0
     only stretches non-replaced boxes; a replaced element instead anchors
     at its intrinsic size from the top-left corner, which is why the icon
     was rendering off-center. Grid-stacking both into the same cell (the
     parent .cb-launcher is already `display:grid; place-items:center`)
     centers them correctly regardless of intrinsic size. */
  grid-area: 1 / 1;
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-icon-close {
  opacity: 0;
  transform: rotate(-40deg) scale(0.7);
}

.cb-launcher.is-open .cb-icon-chat {
  opacity: 0;
  transform: rotate(40deg) scale(0.7);
}

.cb-launcher.is-open .cb-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.cb-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(380px, calc(100vw - 48px));
  height: min(600px, calc(100vh - 160px));
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  opacity: 0;
  transform: scale(0.85) translateY(14px);
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-panel[hidden] {
  display: flex; /* keep in the layout so the open transition can animate in */
}

.cb-panel.cb-panel-open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.cb-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.cb-screen[hidden] {
  display: none;
}

.cb-home-header {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 16px 20px 18px;
  background-color: #111;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 7px 7px;
}

.cb-greeting {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.cb-greeting-sub {
  color: #9a9a9a;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.01em;
  margin-top: 5px;
}

.cb-home-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 16px;
  background: #fafafa;
}

.cb-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 10px;
}

.cb-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cb-faq-item {
  border-radius: 14px;
  border: 1px solid #e4e4e4;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.18s ease;
}

.cb-faq-item.is-open {
  border-color: #d5d5d5;
}

.cb-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border: none;
  background: transparent;
  color: #222;
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.4;
  transition: background 0.15s ease;
}

.cb-faq-question:hover {
  background: #f6f6f6;
}

.cb-faq-chevron {
  flex-shrink: 0;
  stroke: currentColor;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

.cb-faq-item.is-open .cb-faq-chevron {
  transform: rotate(90deg);
}

.cb-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.cb-faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 14px;
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.55;
}

.cb-faq-item.is-open .cb-faq-answer {
  grid-template-rows: 1fr;
}

.cb-faq-item.is-open .cb-faq-answer p {
  padding: 0 14px 14px;
}

.cb-faq-empty {
  font-size: 13px;
  color: #8a8a8a;
  line-height: 1.55;
  padding: 4px 2px;
}

.cb-tabbar {
  flex-shrink: 0;
  display: flex;
  border-top: 1px solid #eee;
  background: #fff;
}

.cb-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 0 12px;
  border: none;
  background: transparent;
  color: #b0b0b0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  transition: color 0.18s ease;
}

.cb-tab svg {
  stroke: currentColor;
}

.cb-tab.is-active {
  color: #111;
}

.cb-screen-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px 16px 18px;
  background-color: #111;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 7px 7px;
}

.cb-screen-title {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.cb-messages-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cb-conversation-row-wrap {
  position: relative;
}

.cb-conversation-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  text-align: left;
  padding: 12px 44px 12px 12px;
  border-radius: 16px;
  border: 1px solid #e4e4e4;
  background: #fff;
  transition: border-color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.cb-conversation-row:hover {
  border-color: #111;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cb-conversation-row[hidden],
.cb-conversation-delete[hidden],
.cb-conversation-confirm[hidden] {
  display: none;
}

.cb-conversation-delete {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #b4b4b4;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: color 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.cb-conversation-row-wrap:hover .cb-conversation-delete,
.cb-conversation-row-wrap:focus-within .cb-conversation-delete {
  opacity: 1;
}

@media (hover: none) {
  .cb-conversation-delete {
    opacity: 0.55;
  }
}

.cb-conversation-delete:hover {
  color: #e0473e;
  background: #fff5f4;
}

.cb-conversation-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #f3c9c6;
  background: #fff8f7;
  animation: cbMsgIn 0.18s ease both;
}

.cb-conversation-confirm-text {
  flex: 1;
  min-width: 0;
  font-size: 12.5px;
  color: #7a4d49;
}

.cb-conversation-confirm-cancel,
.cb-conversation-confirm-delete {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cb-conversation-confirm-cancel {
  background: #fff;
  border-color: #e4e4e4;
  color: #555;
}

.cb-conversation-confirm-cancel:hover {
  background: #f5f5f5;
}

.cb-conversation-confirm-delete {
  background: #e0473e;
  color: #fff;
}

.cb-conversation-confirm-delete:hover {
  background: #c93c34;
  transform: translateY(-1px);
}

.cb-conversation-avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  display: grid;
  place-items: center;
}

.cb-conversation-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.cb-conversation-name,
.cb-conversation-preview-text {
  display: block;
  min-width: 0;
}

.cb-conversation-name {
  font-family: var(--font-display);
  font-size: 14.5px;
  letter-spacing: 0.01em;
  color: #111;
}

.cb-conversation-preview-text {
  font-size: 12.5px;
  color: #8a8a8a;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cb-messages-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 20px;
}

.cb-messages-empty-text {
  font-size: 13px;
  color: #8a8a8a;
  line-height: 1.5;
  max-width: 220px;
}

.cb-messages-footer {
  flex-shrink: 0;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #eee;
}

.cb-start-conversation-btn {
  width: 100%;
  justify-content: center;
}

.cb-panel-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 16px 16px 18px;
  background-color: #111;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 7px 7px;
}

.cb-avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}

.cb-header-text {
  flex: 1;
  min-width: 0;
}

.cb-header-name {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.01em;
}

.cb-header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9a9a9a;
  font-size: 11.5px;
  margin-top: 2px;
}

.cb-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.85), 0 0 1px rgba(255, 255, 255, 0.95);
  animation: cbStatusPulse 2.4s ease-in-out infinite;
}

@keyframes cbStatusPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.cb-panel-close,
.cb-back {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.cb-panel-close:hover,
.cb-back:hover {
  background: rgba(255, 255, 255, 0.18);
}

.cb-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fafafa;
}

.cb-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  animation: cbMsgIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cbMsgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cb-msg-user {
  align-self: flex-end;
  background: #111;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.cb-msg-assistant {
  align-self: flex-start;
  background: #f0f0f1;
  color: #111;
  border-bottom-left-radius: 4px;
}

.cb-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 16px;
}

.cb-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b0b0b2;
  animation: cbTypingBounce 1.1s ease-in-out infinite;
}

.cb-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.cb-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes cbTypingBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.cb-action {
  align-self: flex-start;
  animation: cbMsgIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cb-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cb-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.cb-action-btn svg {
  flex-shrink: 0;
}

/* "Our bot couldn't fully help — leave a message" card, shown inline in the
   thread (see chat-widget.js's cbRenderContactForm), not a separate modal —
   it should feel like part of the conversation, not an interruption. */
.cb-contact-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #e4e4e4;
  background: #fff;
  animation: cbMsgIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cb-contact-card-text {
  font-size: 13px;
  line-height: 1.5;
  color: #444;
  margin: 0;
}

.cb-contact-card-message,
.cb-contact-card-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: #111;
  background: #fafafa;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 10px 13px;
  outline: none;
  resize: none;
  transition: border-color 0.18s ease;
}

.cb-contact-card-message {
  min-height: 64px;
}

.cb-contact-card-message:focus,
.cb-contact-card-input:focus {
  border-color: #111;
}

.cb-contact-card-send {
  align-self: flex-start;
  padding: 9px 18px;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cb-contact-card-send:hover:not(:disabled) {
  transform: translateY(-1px);
}

.cb-contact-card-send:disabled {
  opacity: 0.55;
  cursor: default;
}

.cb-contact-card-status {
  min-height: 15px;
  font-size: 12px;
  color: #8a8a8a;
  margin: 0;
}

.cb-contact-card-status.is-error {
  color: #e0473e;
}

.cb-contact-card-done {
  color: #2f8f5b;
}

.cb-input-row {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border-top: 1px solid #eee;
}

.cb-input-row input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e4e4e4;
  background: #fafafa;
  color: #111;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cb-input-row input:focus {
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.cb-mic {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e4e4e4;
  background: #fff;
  color: #6b6b6b;
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.cb-mic[hidden] {
  display: none;
}

.cb-mic:hover {
  border-color: #bbb;
  color: #111;
}

.cb-mic.is-listening {
  background: #e0473e;
  border-color: #e0473e;
  color: #fff;
  animation: cbMicPulse 1.4s ease-in-out infinite;
}

@keyframes cbMicPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 71, 62, 0.35);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(224, 71, 62, 0);
  }
}

.cb-send {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #111;
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.cb-send:hover {
  transform: scale(1.06);
}

.cb-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.cb-send-icon {
  display: grid;
  place-items: center;
}

.cb-send.is-sent {
  animation: cbSendGradient 0.62s ease;
}

.cb-send.is-sent .cb-send-icon {
  animation: cbSendIconFly 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cbSendGradient {
  0% {
    background: #111;
  }
  28% {
    background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b, #10b981);
    background-size: 260% 260%;
    background-position: 0% 50%;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
  }
  65% {
    background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b, #10b981);
    background-size: 260% 260%;
    background-position: 100% 50%;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
  }
  100% {
    background: #111;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes cbSendIconFly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  38% {
    transform: translate(7px, -7px) scale(0.5);
    opacity: 0;
  }
  40% {
    transform: translate(-7px, 7px) scale(0.5);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .cb-widget {
    right: 16px;
    bottom: 16px;
  }

  .cb-panel {
    width: calc(100vw - 32px);
    height: min(70vh, 560px);
    bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cb-ring {
    animation: none !important;
    display: none;
  }
  .cb-status-dot {
    animation: none !important;
  }
  .cb-msg {
    animation: none !important;
  }
  .cb-typing span {
    animation: none !important;
  }
}

/* ---------- Why ConversionXBot ---------- */

.why-section {
  position: relative;
  z-index: 1;
  background: #000;
  border-top: 1px solid transparent;
  background-image: linear-gradient(#000, #000),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: clamp(64px, 9vh, 108px) clamp(20px, 5vw, 40px) clamp(72px, 10vh, 120px);
}

.why-inner {
  max-width: 880px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vh, 72px);
}

.why-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: #fff;
  margin: 0 0 18px;
}

.why-subtitle {
  font-size: clamp(14.5px, 1.6vw, 16.5px);
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.why-lede {
  font-size: clamp(15px, 1.7vw, 17px);
  color: #fff;
  font-weight: 500;
  margin: 16px 0 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2.5vw, 26px);
  padding: clamp(28px, 3.8vh, 36px) clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.why-item:hover {
  border-color: rgba(123, 127, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.why-index {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 10px;
}

.why-quote {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(17px, 2vw, 20px);
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.why-support {
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.why-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #6a6a6a;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.why-item:hover .why-arrow {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

.why-solution p {
  font-size: clamp(14px, 1.5vw, 15px);
  color: #d8d8d8;
  line-height: 1.6;
  margin: 0;
}

.why-closing {
  text-align: center;
  margin-top: clamp(48px, 7vh, 72px);
}

.why-closing-line {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(20px, 2.8vw, 28px);
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.why-closing-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--muted);
  margin: 0;
}

.why-cta {
  display: inline-block;
  margin-top: clamp(22px, 3.2vh, 30px);
}

@media (max-width: 720px) {
  .why-item {
    grid-template-columns: 1fr;
  }

  .why-arrow {
    justify-self: center;
    transform: rotate(90deg);
    margin: 4px 0;
  }
}

/* ---------- Pricing ---------- */

.pricing-section {
  position: relative;
  z-index: 1;
  background: #000;
  border-top: 1px solid transparent;
  background-image: linear-gradient(#000, #000),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: clamp(64px, 9vh, 108px) clamp(20px, 5vw, 40px);
}

.pricing-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-header {
  max-width: 620px;
  margin: 0 auto clamp(48px, 7vh, 64px);
  text-align: center;
}

.pricing-eyebrow {
  display: inline-block;
  background: var(--trust-bg);
  border: 1px solid var(--trust-border);
  color: var(--trust-text);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.pricing-heading {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.16;
  color: #fff;
  margin: 16px 0 0;
}

.pricing-lead {
  font-size: clamp(14px, 1.5vw, 15.5px);
  color: var(--muted);
  line-height: 1.65;
  margin: 14px auto 0;
}

/* Three-card grid — collapses to one column on smaller screens (see the
   media query below), same breakpoint discipline as the rest of the site. */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

/* Card */

.pricing-card {
  position: relative;
  background: #fff;
  color: #111;
  border-radius: 24px;
  padding: clamp(26px, 2.6vw, 32px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.pricing-plan-desc {
  font-size: 12.5px;
  color: #6a6a6a;
  line-height: 1.55;
  margin: 10px 0 0;
  min-height: 38px;
}

.pricing-plan-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #111;
}

.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-top: clamp(18px, 2.8vh, 26px);
}

.pricing-currency {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(17px, 1.8vw, 20px);
  color: #111;
  margin-bottom: clamp(10px, 1.6vw, 15px);
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1;
  color: #111;
  letter-spacing: -0.01em;
}

.pricing-period {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #7a7a7a;
  margin: 0 0 5px 3px;
}

.pricing-divider {
  height: 1px;
  background: #ececec;
  margin: clamp(20px, 3vh, 26px) 0;
}

.pricing-included-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 14px;
}

.pricing-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.pricing-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
}

.pricing-check i {
  color: #111;
  font-size: 13.5px;
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #111;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  margin-top: clamp(22px, 3.2vh, 28px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

/* Starter/Pro get the quieter outline treatment so the featured (Growth)
   card's solid button is the one that visually reads as "the" choice. */
.pricing-cta-secondary {
  background: #fff;
  color: #111;
  box-shadow: inset 0 0 0 1.5px #111;
}

.pricing-cta-secondary:hover {
  background: #f5f5f5;
  box-shadow: inset 0 0 0 1.5px #111;
}

.pricing-cta-note {
  text-align: center;
  font-size: 12px;
  color: #9a9a9a;
  margin: 10px 0 0;
}

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

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  z-index: 1;
  background: #000;
  border-top: 1px solid transparent;
  background-image: linear-gradient(#000, #000),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: clamp(52px, 8vh, 88px) clamp(20px, 5vw, 40px) clamp(28px, 4vh, 36px);
}

.site-footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.site-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(32px, 6vw, 56px);
  padding-bottom: clamp(32px, 5vh, 48px);
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 220px;
}

.site-footer-logo {
  margin-bottom: 16px;
}

.site-footer-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  color: #fff;
}

.site-footer-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(12.5px, 1.6vw, 14px);
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--muted);
  margin: 10px 0 0;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-width: 130px;
}

.site-footer-links-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 3px;
}

.site-footer-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s ease;
}

.site-footer-links a:hover {
  color: #fff;
}

.site-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer-cta-label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
}

.site-footer-cta-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 24px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 18px rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.site-footer-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 26px rgba(255, 255, 255, 0.32);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: clamp(20px, 3vh, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.36);
}

.site-footer-legal-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer-legal-group a {
  color: rgba(255, 255, 255, 0.36);
}

.site-footer-legal-group a:hover {
  color: var(--text);
}

.site-footer-domain {
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .site-footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .site-footer-brand {
    max-width: none;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ---------- Legal pages (privacy / terms) ---------- */

.legal-header {
  display: flex;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 64px) 0;
}

.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px clamp(20px, 5vw, 64px) 100px;
}

.legal-main h1 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 8px;
}

.legal-updated {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 40px;
}

.legal-main h2 {
  font-size: clamp(18px, 2.2vw, 21px);
  margin: 40px 0 12px;
}

.legal-main p,
.legal-main li {
  color: var(--sign-in-text);
  font-size: 15px;
  line-height: 1.75;
}

.legal-main ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.legal-main p {
  margin: 0 0 16px;
}

.legal-main a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
