/* docs/cinematic.css
 * Cinematic scroll story for SessionBridge.
 * The page is one long stage with a fixed canvas behind it. Six beats overlay
 * the canvas, each timed to a section of the scroll timeline. The film is
 * driven by scroll position, not autoplay.
 */

/* ── Reset & tokens ─────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #07090d;
  --bg-mid:     #0c1118;
  --ink:        #f5f7fb;
  --ink-soft:   rgba(245, 247, 251, 0.72);
  --ink-muted:  rgba(245, 247, 251, 0.5);
  --ink-faint:  rgba(245, 247, 251, 0.55);   /* WCAG AA: ~4.5:1 on bg-deep */

  --accent-claude:  #D97706;
  --accent-chatgpt: #10A37F;
  --accent-gemini:  #4285F4;
  --accent-perp:    #20808D;
  --accent-pro:     #c084fc;

  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* The single easing curve used across the entire site. Custom cubic-bezier
     "slow-out" — starts fast, decelerates dramatically. Apple-style.
     Mixing different eases per element is what makes pages feel "mixed."
     One curve, applied universally, reads as intentional. */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Brand blue, expressed in OKLCH for perceptual uniformity (smoother
     gradients, predictable lightness across the palette). Hex fallback
     baked in for ancient browsers that pre-date oklch() support. */
  --brand:       oklch(56% 0.20 264);            /* ≈ #2563EB */
  --brand-light: oklch(72% 0.18 264);            /* ≈ #6FA8FF, used in gradient */
  --brand-soft:  oklch(56% 0.20 264 / 0.16);     /* translucent for highlights */

  /* Fluid section spacing — scales smoothly from mobile to 4K via clamp()
     instead of step-changing at breakpoints. The minimum is the mobile
     value; the maximum is the desktop value; the middle term is the
     interpolation. No separate mobile media query needed. */
  --space-section-sm: clamp(48px,  4vw + 16px,  72px);
  --space-section-md: clamp(64px,  6vw + 20px,  112px);
  --space-section-lg: clamp(80px,  8vw + 32px,  144px);
  --space-gutter:     clamp(20px,  3vw + 8px,   40px);
}

/* ── Global accessibility primitives ───────────────────────────────────── */

/* Visible focus ring — required by WCAG 2.4.7. Single global rule covers
   every interactive element (links, buttons, native form controls). Uses
   :focus-visible so the ring only appears for keyboard nav, not clicks. */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
  transition: outline-offset 0.12s var(--ease);
}

/* Reduced motion — kill ALL transitions/animations system-wide for users
   who request it. Lenis is already disabled at the JS layer; this catches
   the CSS-side transitions (hover lifts, color fades, transforms). */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Native smooth-scroll is OFF — Lenis handles all scroll smoothing.
   Keeping both fights for control of the scroll position. */
html { scroll-behavior: auto; }

/* Lenis adds .lenis class when initialized — these styles prevent
   layout shift while smoothing is active. */
html.lenis, html.lenis body { height: auto; }
html.lenis-smooth { scroll-behavior: auto !important; }
html.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

html, body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.cinematic {
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ──────────────────────────────────────────────────────────────────────────
 * Page architecture — premium product marketing layout.
 * Modeled on DeedShield: 8+ distinct sections, each with a unique visual
 * treatment, all sharing one universal easing curve (--ease) and one
 * color/type system. Brand stays SessionBridge blue on a deep dark canvas.
 * ────────────────────────────────────────────────────────────────────── */

.cn-main { position: relative; z-index: 1; }

/* ── Nav — centered pill, floats over hero ─────────────────────────────── */

/* Compact centered pill — shrinks to fit content, never stretches across
   the viewport. Logo / nav links / CTA all sit tight together. */
.cn-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  /* No width set — the inline-flex inner element sizes itself. */
}
.cn-nav-inner {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px 8px 8px 18px;
  background: rgba(12, 17, 24, 0.78);
  border: 1px solid rgba(245, 247, 251, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.cn-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex-shrink: 0;
}
.cn-nav-links {
  display: flex;
  gap: 18px;
}
.cn-nav-links a {
  font-size: 13px;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}
.cn-nav-links a:hover { color: var(--ink); }
.cn-cta {
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 14px;
  background: var(--ink);
  color: var(--bg-deep);
  border-radius: 999px;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
}
.cn-cta:hover { opacity: 0.92; transform: translateY(-1px); }
@media (max-width: 640px) {
  .cn-nav-links { display: none; }
}

/* ── Universal typography primitives ───────────────────────────────────── */

/* Eyebrow — soft blue product-label, regular sans, mixed case. Deliberately
   NOT the mono+uppercase editorial eyebrow (that's a DeedShield signature). */
.cn-eyebrow {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #6FA8FF;
  margin: 0 0 14px;
  display: inline-block;
}
.cn-eyebrow-warn { color: #f4a261; }
.cn-eyebrow-pro  { color: var(--accent-pro); }

.cn-display {
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.cn-display-accent {
  /* OKLCH gradient — perceptually uniform, no muddy mid-tones */
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cn-display-md {
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0;
}

.cn-lead {
  margin-top: 22px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
}

.cn-actions {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform 0.18s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease);
}
.cn-btn:hover  { transform: translateY(-1px); }
.cn-btn:active { transform: translateY(0); opacity: 0.92; }
.cn-btn-primary {
  background: var(--ink);
  color: var(--bg-deep);
}
.cn-btn-primary:hover { opacity: 0.92; }
.cn-btn-ghost {
  color: var(--ink-soft);
  border: 1px solid rgba(245, 247, 251, 0.18);
}
.cn-btn-ghost:hover { color: var(--ink); border-color: rgba(245, 247, 251, 0.32); }
.cn-btn-lg { padding: 14px 28px; font-size: 15px; }

.cn-foot {
  margin-top: 20px;
  font-size: 12px;
  color: var(--ink-faint);
}

/* ── HERO ──────────────────────────────────────────────────────────────── */

.cn-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 32px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(37, 99, 235, 0.12), transparent 65%),
    var(--bg-deep);
}
.cn-hero-inner {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cn-hero-text { max-width: 560px; }
.cn-hero-foot {
  margin-top: 24px;
  font-size: 12px;
  color: var(--ink-faint);
}

/* Mock side-panel — floating, tilted, light depth */
.cn-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
}
.cn-mock-panel {
  width: 320px;
  background: linear-gradient(180deg, #11151E 0%, #0E121A 100%);
  border: 1px solid rgba(245, 247, 251, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(37, 99, 235, 0.10);
}
.cn-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(245, 247, 251, 0.06);
}
.cn-mock-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(245, 247, 251, 0.18);
}
.cn-mock-dot:nth-child(1) { background: #ff5f57; }
.cn-mock-dot:nth-child(2) { background: #febc2e; }
.cn-mock-dot:nth-child(3) { background: #28c840; }
.cn-mock-title {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
}
.cn-mock-body { padding: 20px 18px 24px; }
.cn-mock-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-muted);
  margin: 0 0 10px;
}
.cn-mock-label-spaced { margin-top: 22px; }
.cn-mock-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: rgba(245, 247, 251, 0.04);
  border: 1px solid rgba(245, 247, 251, 0.10);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.cn-mock-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cn-mock-target {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: rgba(245, 247, 251, 0.025);
  border: 1px solid rgba(245, 247, 251, 0.06);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink);
  text-align: left;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.cn-mock-target:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.35);
}
.cn-mock-dot-tiny {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.cn-mock-arrow {
  margin-left: auto;
  color: var(--ink-muted);
}
@media (max-width: 900px) {
  .cn-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .cn-hero-visual { order: -1; }
  .cn-mock-panel { transform: none; width: min(320px, 100%); }
}

/* ── TRUST BAR ─────────────────────────────────────────────────────────── */

.cn-trust {
  padding: var(--space-section-sm) var(--space-gutter);
  text-align: center;
  background: var(--bg-deep);
  border-top: 1px solid rgba(245, 247, 251, 0.05);
  border-bottom: 1px solid rgba(245, 247, 251, 0.05);
}
.cn-trust-label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-muted);
  margin: 0 0 18px;
}
.cn-trust-row {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.cn-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
.cn-trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

/* ── PROBLEM ───────────────────────────────────────────────────────────── */

.cn-problem {
  padding: var(--space-section-md) var(--space-gutter);
  background: var(--bg-deep);
}
.cn-problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
/* Highlight = a thin underline that fades from opaque to transparent.
   Not a block of color behind the text — that's the DeedShield move. */
.cn-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.cn-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, rgba(244, 162, 97, 0.85) 0%, rgba(244, 162, 97, 0) 100%);
}
.cn-problem-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cn-problem-text {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.62;
  color: var(--ink-soft);
}
.cn-problem-text-soft { color: var(--ink-muted); }
@media (max-width: 760px) {
  /* Gutter handled by --space-gutter clamp; only the grid needs a stack. */
  .cn-problem-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── BRIDGE (pulled quote with highlight) ──────────────────────────────── */

.cn-bridge {
  padding: var(--space-section-md) var(--space-gutter);
  background: var(--bg-deep);
  overflow: hidden;
}
.cn-bridge-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
}
.cn-bridge-rule {
  width: 1px;
  height: 96px;
  background: rgba(245, 247, 251, 0.30);
  justify-self: end;
}
.cn-bridge-body { max-width: 920px; }
.cn-bridge-text {
  margin-top: 28px;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.62;
  color: var(--ink-muted);
  max-width: 560px;
}
/* Bridge highlight — same fading-underline pattern in brand blue.
   Consistent visual idiom across both highlights, distinct from DeedShield. */
.cn-highlight {
  position: relative;
  display: inline-block;
}
.cn-highlight-text { position: relative; }
.cn-highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.95) 0%, rgba(37, 99, 235, 0) 100%);
}
@media (max-width: 760px) {
  /* gutter handled by clamp; bridge needs no padding override */
  .cn-bridge-inner { grid-template-columns: 1fr; gap: 16px; }
  .cn-bridge-rule { display: none; }
}

/* ── HOW IT WORKS — numbered steps ─────────────────────────────────────── */

.cn-how {
  padding: var(--space-section-md) var(--space-gutter);
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
}
.cn-how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cn-how-steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(245, 247, 251, 0.08);
}
.cn-how-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245, 247, 251, 0.08);
  align-items: start;
}
.cn-how-num {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--brand);
}
.cn-how-step-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 10px;
}
.cn-how-step-text {
  font-size: clamp(14.5px, 1.3vw, 16px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0;
}
@media (max-width: 760px) {
  /* gutter handled by clamp */
  .cn-how-step { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
}

/* ── FEATURES (header + grid) ──────────────────────────────────────────── */

.cn-features {
  padding: var(--space-section-md) var(--space-gutter) var(--space-section-sm);
  background: var(--bg-mid);
}
.cn-features-header {
  max-width: 1100px;
  margin: 0 auto 36px;
}
.cn-features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cn-feature {
  padding: 32px 28px;
  background: #11151E;
  border: 1px solid rgba(245, 247, 251, 0.07);
  border-radius: 16px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.cn-feature:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}
.cn-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  color: #6FA8FF;
  margin: 0 0 18px;
}
.cn-feature-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 10px;
}
.cn-feature-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 900px) {
  .cn-features-inner { grid-template-columns: 1fr; gap: 16px; }
  /* gutter handled by clamp */
}

/* ── STRENGTHS — research-backed product thesis ───────────────────────── */

.cn-strengths {
  padding: var(--space-section-md) var(--space-gutter);
  background: var(--bg-mid);
}
.cn-strengths-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cn-strengths-lead {
  margin: 16px 0 40px;
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
}
.cn-strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cn-strength {
  padding: 24px 22px 22px;
  background: #11151E;
  border: 1px solid rgba(245, 247, 251, 0.07);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.cn-strength:hover {
  border-color: rgba(37, 99, 235, 0.32);
  transform: translateY(-2px);
}
.cn-strength-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.cn-strength-logo {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.cn-strength-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.cn-strength-title {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 10px;
}
.cn-strength-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
  flex: 1;
}
.cn-strength-source {
  font-size: 11.5px;
  color: var(--ink-faint);
  margin: 0;
  letter-spacing: -0.005em;
}
.cn-strength-source a {
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(245, 247, 251, 0.18);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.cn-strength-source a:hover {
  color: var(--brand-light);
  border-bottom-color: var(--brand-light);
}
.cn-strengths-foot {
  margin: 40px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
}
.cn-strengths-disclaimer {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--ink-faint);
}
@media (max-width: 920px) {
  .cn-strengths-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cn-strengths-grid { grid-template-columns: 1fr; }
  /* gutter handled by clamp */
}

/* ── FINAL CTA ─────────────────────────────────────────────────────────── */

.cn-cta-final {
  padding: var(--space-section-lg) var(--space-gutter);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(37, 99, 235, 0.16), transparent 70%),
    var(--bg-deep);
}
.cn-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.cn-cta-final .cn-eyebrow,
.cn-cta-final .cn-display,
.cn-cta-final .cn-lead,
.cn-cta-final .cn-foot {
  text-align: center;
}
.cn-cta-final .cn-lead { margin-left: auto; margin-right: auto; }
.cn-cta-final .cn-actions { justify-content: center; }
@media (max-width: 760px) {
  /* gutter handled by clamp */
}

/* ── FOOTER ────────────────────────────────────────────────────────────── */

.cn-footer {
  position: relative;
  z-index: 2;
  background: var(--bg-deep);
  border-top: 1px solid rgba(245, 247, 251, 0.06);
  padding: 36px 36px;
}
.cn-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.cn-footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--ink-soft);
}
.cn-footer-links a {
  transition: color 0.2s var(--ease);
}
.cn-footer-links a:hover { color: var(--ink); }
.cn-footer-copy {
  width: 100%;
  font-size: 11.5px;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 4px;
}

/* ── REDUCED MOTION ────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ── SECTION SEAM (between Magic Moment and feature grid) ──────────────── */

.cn-seam {
  position: relative;
  height: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cn-seam-emblem {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  filter: drop-shadow(0 4px 16px rgba(37, 99, 235, 0.35));
}
.cn-seam-thread {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
}
