/* ==========================================================================
   WRIS — Design Tokens & Base Styles (Warm Signal palette + Geist typography)
   Recolored from the whiteswan-v3 base — see ../../wris-design-language.md.
   Variable NAMES are kept stable so the rest of this stylesheet (and the
   ported homepage markup) needs no structural changes, only new values.
   ========================================================================== */

:root {
  /* Color tokens — Warm Signal palette */
  --color-primary: #080F1E;        /* Deep Navy — dark canvas (pairs with Signal Blue) */
  --color-primary-2: #10192F;      /* Card Dark — dark elevation */
  --color-on-primary: #FFFFFF;
  --color-secondary: #4A453F;      /* warm slate */
  --color-accent: #0052F2;         /* Signal Blue — primary brand, CTAs */
  --color-accent-2: #DCE8FF;       /* pale sky blue — on-dark accent text + pale card/pill fills */
  --color-accent-strong: #1E61F0;  /* Signal Blue Deep — hover/active */
  --color-lavender: #E7DBFF;       /* Intelligence Purple family — pill/badge fills */
  --color-sky: #DCE8FF;            /* alias of accent-2 — used as both on-dark accent text AND a pale card/pill background, so it must stay light enough for both roles */
  --color-amber: #F59E0B;          /* Warning — unchanged */
  --color-background: #F4F3EC;     /* Warm Cream — primary light background */
  --color-cream: #F4F3EC;          /* alias of background, used where "cream" reads clearer than "background" */
  --color-card: #F1EEE9;           /* Warm Card — slightly deeper cream, for cards that need to read distinct from the page bg */
  --color-surface: #FFFFFF;        /* Pure White — light canvas */
  --color-foreground: #17100E;     /* Warm Ink — dark text on light mode */
  --color-muted: #EDEAE3;          /* warm neutral light background */
  --color-muted-foreground: #5B5B58; /* Muted — secondary text */
  --color-border: #E4DFD6;         /* warm light border */
  --color-border-2: #D6CFC2;
  --color-destructive: #C41C1C;    /* Critical / Alert */
  --color-ring: #0052F2;

  /* Dark surfaces used within light theme for depth sections */
  --color-dark-surface: #080F1E;     /* Deep Navy */
  --color-dark-surface-2: #10192F;   /* Card Dark */
  --color-dark-border: #23324D;      /* navy-toned border */
  --color-dark-foreground: #FFFFFF;
  --color-dark-muted: #A3ABBE;       /* secondary copy on dark canvas */
  --color-dark-code: #C9B8FF;        /* Intelligence Purple — monospace / telemetry accent on dark canvas */

  /* Typography */
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;

  /* Spacing scale (8pt rhythm, marketing density) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 24px 64px rgba(11, 18, 32, 0.12);
  --shadow-glow: 0 0 0 1px rgba(0, 82, 242, 0.18), 0 12px 40px rgba(0, 82, 242, 0.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html { overflow-x: hidden; }
body {
  overflow-x: hidden;
  font-family: var(--font-sans);
  background: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}

img, svg { max-width: 100%; display: block; }

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

::selection { background: var(--color-accent); color: var(--color-primary); }

/* Focus visibility — never remove, only restyle */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* ---------- Display type ---------- */
h1, h2, h3, h4,
.font-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
}

h1 em, h2 em, h3 em, .font-display em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent-strong);
}
.section-dark h1 em, .section-dark h2 em, .section-dark h3 em { color: var(--color-accent); }

.stat-value { font-family: var(--font-display); }

/* ---------- Typography helpers ---------- */
.text-balance { text-wrap: balance; }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
}

.eyebrow--on-dark { color: var(--color-sky); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
  min-height: 44px;
  white-space: normal;
  text-align: center;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--color-accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--color-accent-strong); box-shadow: 0 16px 48px rgba(0, 82, 242, 0.4); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--color-on-primary);
  border-color: rgba(248, 250, 252, 0.22);
}
.btn-ghost:hover { border-color: rgba(248, 250, 252, 0.5); background: rgba(248, 250, 252, 0.06); }

.btn-outline {
  background: transparent;
  color: var(--color-accent-strong);
  border-color: var(--color-accent);
}
.btn-outline:hover { color: #FFFFFF; border-color: var(--color-accent); background: var(--color-accent); }

.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; min-height: 38px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 243, 236, 0.86);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--dur-base) var(--ease-out);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-links { display: none; align-items: center; gap: var(--space-8); }
.nav-links a {
  color: var(--color-foreground);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding-block: var(--space-2);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--color-accent); }
.nav-links a.active { color: var(--color-accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active::after { transform: scaleX(1); }

/* ---------- Animated underline links ---------- */
.link-underline { position: relative; }
.link-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
a:hover .link-underline::after { transform: scaleX(1); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex !important; }
  .nav-toggle { display: none !important; }
}

.nav-actions { display: none; align-items: center; gap: var(--space-4); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  color: var(--color-foreground);
  background: transparent;
  border: 1px solid var(--color-border);
}

/* Header logo asset is a solid-white SVG (built for the old dark header);
   invert it to read as a dark wordmark now that the header is light. The
   footer stays dark, so its logo instance keeps the original white fill. */
.logo-invert { filter: invert(1); }

.mobile-menu {
  position: fixed;
  inset: var(--header-total-height, 72px) 0 0 0;
  background: var(--color-background);
  z-index: 90;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  display: block;
  padding: var(--space-4) 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-foreground);
  border-bottom: 1px solid var(--color-border);
}

/* ---------- Sections on dark background ---------- */
.section-dark {
  background: radial-gradient(120% 140% at 15% 0%, #0D1A33 0%, var(--color-primary) 55%, #04070E 100%);
  color: var(--color-on-primary);
  position: relative;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 60% at 50% 20%, black, transparent 75%);
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.24;
  pointer-events: none;
}
/* On mobile, cards stack full-width and land right where a desktop-sized orb sits —
   without this the blur washes out light text sitting on translucent card-dark panels. */
@media (max-width: 639px) {
  .glow-orb {
    width: 180px !important;
    height: 180px !important;
    opacity: 0.16;
    filter: blur(60px);
  }
}

/* Animated shader-style hero background — a slow-drifting gradient mesh,
   compositor-only (transform + existing blur pattern), no canvas/WebGL. */
.hero-shader {
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 45% at 20% 25%, rgba(0, 82, 242, 0.35), transparent 70%),
    radial-gradient(32% 40% at 82% 18%, rgba(187, 226, 250, 0.22), transparent 70%),
    radial-gradient(45% 50% at 58% 88%, rgba(216, 208, 255, 0.18), transparent 70%);
  filter: blur(70px);
  animation: shader-drift 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes shader-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 3%, 0) scale(1.06); }
  100% { transform: translate3d(3%, -2%, 0) scale(0.97); }
}
@media (max-width: 639px) {
  .hero-shader { filter: blur(44px); inset: -6%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-shader { animation: none; }
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(0, 82, 242, 0.35); }

.card-dark {
  position: relative;
  overflow: hidden;
  /* A solid dark base first — .card-dark is used both inside .section-dark
     canvases and directly on light sections (e.g. the homepage's bento
     grid, the DORA compliance callout). backdrop-filter alone has nothing
     dark to blur on a light section and the card (and its white text)
     reads as washed-out/invisible there; the gradient+blur on top still
     give it texture wherever it sits. */
  background-color: var(--color-dark-surface-2);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), background-image var(--dur-base) var(--ease-out);
}
.card-dark:hover { transform: translateY(-4px); border-color: rgba(0, 82, 242, 0.45); background-image: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); }

/* Cursor-following spotlight — set via JS custom properties --mx/--my */
.card::before, .card-dark::before, .matrix-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
.card::before { background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 82, 242, 0.10), transparent 72%); }
.card-dark::before { background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(165, 180, 252, 0.14), transparent 72%); }
.matrix-card::before { background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.45), transparent 72%); }
.card:hover::before, .card-dark:hover::before, .matrix-card:hover::before { opacity: 1; }
.card.is-tapped::before, .card-dark.is-tapped::before, .matrix-card.is-tapped::before { opacity: 1; }
.card:active, .card-dark:active, .matrix-card:active { transform: scale(0.985); }
.card > *, .card-dark > *, .matrix-card > * { position: relative; z-index: 1; }

.icon-tile {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-lavender);
  color: var(--color-accent-strong);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.icon-tile--dark { background: rgba(0, 82, 242, 0.16); color: var(--color-dark-code); }
/* Icon tiles nudge and deepen in tandem with their parent card — a small, specific
   reward for hovering, instead of the card floating alone. */
.card:hover .icon-tile, .card-dark:hover .icon-tile { transform: translateY(-2px) rotate(-4deg) scale(1.06); }
.card:hover .icon-tile { background: var(--color-accent); color: #FFFFFF; }
.card:hover .icon-tile svg, .card-dark:hover .icon-tile svg { transition: transform var(--dur-base) var(--ease-out); }
@media (prefers-reduced-motion: reduce) {
  .icon-tile, .card:hover .icon-tile, .card-dark:hover .icon-tile { transform: none; transition: none; }
}

/* ---------- Matrix cards (full-bleed color block + nested panel) ---------- */
.matrix-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-8) var(--space-6);
  color: var(--color-foreground);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  gap: var(--space-8);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.matrix-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.matrix-card--lavender { background: var(--color-lavender); }
.matrix-card--sky { background: var(--color-sky); }
@media (max-width: 767px) {
  .matrix-card { min-height: 0; padding: var(--space-6) var(--space-6) var(--space-5); gap: var(--space-6); }
}

.matrix-card h3 { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.matrix-card p { margin-top: var(--space-3); font-size: 1.02rem; color: rgba(15, 23, 42, 0.72); max-width: 34ch; }

.btn-onmatrix {
  background: var(--color-primary);
  color: #FFFFFF;
}
.btn-onmatrix:hover { background: var(--color-dark-border); }

.mock-panel {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.25rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-secondary);
}
.mock-row:last-child { border-bottom: none; }
.status-solid {
  background: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
}
/* One-time confirmation pulse, played by JS the moment a status row enters view —
   reads as "this just got checked", not decoration. */
.status-solid.is-verified::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 6px;
  border: 1.5px solid var(--color-accent);
  opacity: 0;
}
.status-solid.pulse-once::after { animation: statusPulse 0.9s var(--ease-out) 1; }
@keyframes statusPulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}
@media (prefers-reduced-motion: reduce) { .status-solid.pulse-once::after { animation: none; } }

/* ---------- Stats ---------- */
.stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Badge / pill ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-secondary);
}
.pill--dark { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); color: rgba(248,250,252,0.85); }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }

/* ---------- Radial glow + command bar (alternate hero pattern) ---------- */
.radial-glow-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(55% 50% at 50% 12%, rgba(0, 82, 242, 0.32), transparent 70%);
}

.command-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(248, 250, 252, 0.55);
  text-align: left;
  font-size: 0.95rem;
  transition: border-color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.command-bar:hover { border-color: rgba(0, 82, 242, 0.5); background: rgba(255, 255, 255, 0.09); }
.command-bar svg:first-child { flex-shrink: 0; color: rgba(248, 250, 252, 0.4); }
.command-bar span:first-of-type { flex: 1; }
.command-bar-kbd {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(248, 250, 252, 0.45);
  flex-shrink: 0;
}

.command-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  transition: border-color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.command-chip:hover { border-color: rgba(0, 82, 242, 0.5); background: rgba(0, 82, 242, 0.12); color: #fff; }

/* ---------- Background Boxes — hover-highlight grid, used as a section background ---------- */
.background-boxes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  display: grid;
  mask-image: radial-gradient(80% 80% at 50% 40%, black, transparent 90%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, black, transparent 90%);
}
.background-boxes .bg-box {
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.5s ease;
}
.background-boxes .bg-box:hover {
  background-color: rgba(0, 82, 242, 0.4);
  transition: background-color 0s;
}
@media (prefers-reduced-motion: reduce) {
  .background-boxes .bg-box { transition: none; }
}
@media (max-width: 639px) {
  .background-boxes { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: #17100E; color: rgba(248,250,252,0.7); }
.site-footer a { color: rgba(248,250,252,0.85); transition: color var(--dur-fast) var(--ease-out); }
.site-footer a:hover { color: #fff; }
.site-footer > .container { position: relative; z-index: 1; }
.footer-heading { color: rgba(248,250,252,0.5); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: var(--space-4); }

.footer-social-row { display: flex; align-items: center; gap: var(--space-3); }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(248,250,252,0.75);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.footer-social-link:hover { color: #fff; border-color: rgba(255,255,255,0.32); background-color: rgba(255,255,255,0.06); }
.footer-social-link svg { width: 17px; height: 17px; }

/* Oversized wordmark closing out the footer — a bold sign-off statement (see
   amplitude.com's footer), not a faint watermark behind other content. Sits
   in its own row below the legal bar, full-bleed, solid fill. */
.footer-wordmark-row {
  position: relative;
  z-index: 1;
  margin-top: var(--space-32);
  overflow: hidden;
  text-align: center;
  line-height: 0.78;
}
.footer-wordmark {
  display: inline-block;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  /* One formula at every width instead of a separate mobile override — the
     previous mobile clamp (22vw, capped at 5rem) sized past the viewport
     for a 9-letter word and clipped on narrow screens. 15vw keeps "WHITESWAN"
     inside the row with breathing room from ~320px phones up through desktop. */
  font-size: clamp(2.6rem, 15vw, 14rem);
  line-height: 0.86;
  white-space: nowrap;
  color: rgba(248, 250, 252, 0.94);
  letter-spacing: -0.01em;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 0.9s var(--ease-out);
  will-change: transform, opacity;
}
.no-js .footer-wordmark, .footer-wordmark.is-visible { opacity: 1; }
@media (max-width: 639px) {
  .footer-wordmark-row { margin-top: var(--space-16); }
}
@media (prefers-reduced-motion: reduce) {
  .footer-wordmark { transform: none !important; }
}

/* ---------- Photo treatment ----------
   A single visual language for otherwise-disparate source photography:
   a hairline border + mat + shadow (reads as a mounted print, not a raw crop),
   plus a shared desaturated/warm tint so different shoots stop looking like
   they came from different stock libraries. */
.photo-frame {
  position: relative;
  display: block;
  padding: 7px;
  background: var(--color-surface);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.28), 0 2px 8px rgba(15, 23, 42, 0.06);
}
.photo-frame--dark {
  background: var(--color-primary-2);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.3);
}
.photo-frame__inner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 4px);
}
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) sepia(0.24) saturate(1.2) contrast(1.05) brightness(0.97);
}

/* Curtain-wipe reveal — one dominant photo per page. A solid panel covers the
   frame until it scrolls into view, then wipes away once, right to left. */
.curtain-panel {
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  transform-origin: right center;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .curtain-panel { display: none; }
}

/* ---------- Marquee (logo strip) ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.marquee-track { display: flex; gap: 4rem; width: max-content; animation: marquee 32s linear infinite; }
/* Client logos are monochrome white-on-transparent PNGs built for a dark
   canvas. Now that this section sits on a light background, invert them to
   read as dark marks instead of re-sourcing a second logo set. */
.marquee img { filter: invert(1); opacity: 0.55; transition: opacity var(--dur-base) var(--ease-out); }
.marquee-track:hover img { opacity: 0.85; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Utility reveal ----------
   Visibility is driven by IntersectionObserver toggling .is-visible
   (assets/js/main.js initReveals) plus these CSS transitions — deliberately
   not GSAP/rAF-tweened, so it can't get stuck at a partial opacity if the
   animation frame loop stalls (backgrounded tab, heavy throttling). */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.no-js .reveal, .reveal.is-visible { opacity: 1; transform: none; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.no-js [data-stagger] > *, [data-stagger].is-visible > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-stagger] > * { transition: none; }
}

/* ---------- Map / region dots ---------- */
.region-dot {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 82, 242, 0.2);
}
.region-dot::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 82, 242, 0.5);
  animation: ping 2.6s cubic-bezier(0,0,0.2,1) infinite;
}
.region-dot--future { background: rgba(148,163,184,0.9); box-shadow: 0 0 0 4px rgba(148,163,184,0.15); }
.region-dot--future::after { border-color: rgba(148,163,184,0.4); animation: none; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(2.2); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .region-dot::after { animation: none; } }

/* ---------- Forms ---------- */
.field-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: var(--space-2); color: var(--color-secondary); }
.field-input, .field-select, .field-textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--color-surface);
  color: var(--color-foreground);
  min-height: 48px;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field-textarea { min-height: 120px; resize: vertical; }
.field-input:focus, .field-select:focus, .field-textarea:focus {
  outline: none;
  border-color: var(--color-accent-strong);
  box-shadow: 0 0 0 3px rgba(0, 82, 242, 0.18);
}
.field-error { color: var(--color-destructive); font-size: 0.82rem; margin-top: var(--space-2); display: none; }
.field-input:invalid[data-touched="true"], .field-textarea:invalid[data-touched="true"] { border-color: var(--color-destructive); }
.field-input:invalid[data-touched="true"] ~ .field-error,
.field-textarea:invalid[data-touched="true"] ~ .field-error { display: block; }
.field-hint { font-size: 0.8rem; color: var(--color-muted-foreground); margin-top: var(--space-2); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: var(--space-4); top: var(--space-4); }

/* ---------- Mobile-native structure ---------- */

/* Sticky bottom CTA — mobile only, appears after hero, hides near footer */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 767px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(244, 243, 236, 0.94);
    backdrop-filter: blur(16px) saturate(140%);
    border-top: 1px solid var(--color-border);
    transform: translateY(100%);
    transition: transform var(--dur-slow) var(--ease-out);
  }
  .mobile-cta-bar.is-visible { transform: translateY(0); }
  .mobile-cta-bar .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-cta-bar { transition: none; }
}

/* Horizontal scroll-snap rows — mobile only, replaces wrapped grid with a native swipe strip */
@media (max-width: 639px) {
  .scroll-snap-row.scroll-snap-row {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-4);
    padding-bottom: var(--space-3);
    margin-inline: calc(-1 * var(--space-6));
    padding-inline: var(--space-6);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .scroll-snap-row.scroll-snap-row::-webkit-scrollbar { display: none; }
  .scroll-snap-row.scroll-snap-row > * {
    scroll-snap-align: start;
    flex: 0 0 80%;
  }
  .scroll-snap-row.scroll-snap-row--sm > * {
    flex: 0 0 42%;
  }
}
.swipe-hint { display: none; }
@media (max-width: 639px) {
  .swipe-hint { display: block; }
}

/* Tables — meant to be horizontally scrollable via overflow-x-auto on their
   card wrapper, but that wrapper is also .card-dark, whose own `overflow:
   hidden` shorthand (clipping its cursor-spotlight ::before) cascades after
   Tailwind's utility and silently wins for overflow-x too — clipping the
   extra columns outright instead of letting them scroll. Reassert it here,
   after .card-dark in source order, so the intended behavior actually wins. */
.table-scroll { overflow-x: auto; }
@media (max-width: 767px) {
  .table-scroll {
    -webkit-mask-image: linear-gradient(90deg, black calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, black calc(100% - 28px), transparent 100%);
  }
}

/* ==========================================================================
   Utility banner
   ========================================================================== */
.utility-banner {
  background: var(--color-primary);
  border-bottom: 1px solid var(--color-dark-border);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.55rem var(--space-4);
}
.utility-banner a { color: var(--color-sky); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.utility-banner a:hover { color: #fff; }

/* ==========================================================================
   Megamenu
   ========================================================================== */
.nav-item-has-menu { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--color-foreground);
  font-size: 0.92rem;
  font-weight: 500;
  padding-block: var(--space-2);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-trigger:hover, .nav-trigger[aria-expanded="true"] { color: var(--color-accent); }
.nav-trigger svg { transition: transform var(--dur-fast) var(--ease-out); }
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Soft pastel gradient panel, matching Kore.ai's mega-menu backdrop —
   individual columns are boxed cards (.megamenu-col-card etc.) floating on
   top of this gradient, rather than plain text sitting on a flat panel.
   Fixed + full-viewport-width (not anchored under the individual trigger
   button) so the panel is always centered on the page, matching Kore's
   edge-to-edge dropdown — anchoring under the button instead would push it
   off-screen whenever the trigger isn't near the page's horizontal center. */
.megamenu {
  position: fixed;
  top: var(--header-total-height, 72px);
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(8px);
  background:
    radial-gradient(60% 90% at 0% 0%, rgba(0, 82, 242, 0.10), transparent 60%),
    radial-gradient(50% 80% at 100% 100%, rgba(163, 184, 255, 0.16), transparent 65%),
    var(--color-cream, var(--color-background));
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg), 0 30px 80px rgba(23, 16, 14, 0.14);
  padding: var(--space-6) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility 0s var(--dur-base);
  z-index: 95;
}
.nav-item-has-menu.is-open .megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility 0s;
}

.megamenu > .container { position: relative; }

.megamenu-grid { display: grid; gap: var(--space-5); align-items: stretch; }
.megamenu-grid--platform { grid-template-columns: 1.1fr 1fr 1fr 1fr; }
.megamenu-grid--solutions { grid-template-columns: 1fr 1fr 1fr 1fr; }
.megamenu-grid--resources { grid-template-columns: 1fr 1fr 1fr; }

/* Boxed white card wrapper — gives plain link columns Kore's "column as its
   own card" look instead of text floating directly on the gradient panel. */
.megamenu-col-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  height: 100%;
}

.megamenu-col-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin-bottom: var(--space-4);
}

.megamenu-link {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
}
.megamenu-link:last-child { border-bottom: none; }
.megamenu-link-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-foreground);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--dur-fast) var(--ease-out);
}
.megamenu-link:hover .megamenu-link-title { color: var(--color-accent); }
.megamenu-link-title svg { opacity: 0; transform: translateX(-4px); transition: all var(--dur-fast) var(--ease-out); flex-shrink: 0; }
.megamenu-link:hover .megamenu-link-title svg { opacity: 1; transform: translateX(0); }
.megamenu-link-desc { margin-top: 0.2rem; font-size: 0.82rem; color: var(--color-muted-foreground); line-height: 1.4; }

/* The "hero" column (Platform's Artemis-style card in Kore's menu) — a
   light cream card holding a small dark visual, matching Kore's pattern of
   dark accent panels contained inside light cards rather than dark sections. */
.megamenu-overview {
  background: var(--color-card, var(--color-cream));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.megamenu-overview .icon-tile--dark { margin-bottom: var(--space-4); }
.megamenu-overview h3 { color: var(--color-foreground); font-size: 1.15rem; font-weight: 700; line-height: 1.25; }
.megamenu-overview p { margin-top: var(--space-3); color: var(--color-muted-foreground); font-size: 0.88rem; line-height: 1.5; flex-grow: 1; }
.megamenu-overview a { margin-top: var(--space-4); color: var(--color-accent); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 0.35rem; }

.megamenu-industries { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem 1rem; }
.megamenu-industries a { padding: 0.35rem 0; font-size: 0.86rem; color: var(--color-muted-foreground); transition: color var(--dur-fast) var(--ease-out); }
.megamenu-industries a:hover { color: var(--color-accent); }

.megamenu-quote {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.megamenu-quote p { color: var(--color-foreground); font-size: 0.92rem; line-height: 1.5; font-style: italic; }
.megamenu-quote cite { display: block; margin-top: var(--space-3); font-style: normal; font-size: 0.78rem; color: var(--color-muted-foreground); }
.megamenu-quote a { margin-top: var(--space-3); display: inline-block; color: var(--color-accent); font-weight: 600; font-size: 0.82rem; }

.megamenu-feature {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.megamenu-feature .pill { margin-bottom: var(--space-3); }
.megamenu-feature h4 { color: var(--color-foreground); font-size: 1rem; font-weight: 700; line-height: 1.3; }
.megamenu-feature p { margin-top: var(--space-2); color: var(--color-muted-foreground); font-size: 0.85rem; line-height: 1.5; }
.megamenu-feature a { margin-top: var(--space-3); display: inline-block; color: var(--color-accent); font-weight: 600; font-size: 0.85rem; }

/* "EXPLORE" bento icon grid, approximating Kore's decorative tile pattern */
.megamenu-explore-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.megamenu-explore-grid .icon-tile { width: 100%; height: 40px; border-radius: var(--radius-sm); }
.megamenu-explore-grid .icon-tile--empty { background: var(--color-muted); }

/* Insight/blog row — thumbnail + title + meta, for "recent insights" lists */
.megamenu-insight-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border);
}
.megamenu-insight-row:last-child { border-bottom: none; }
.megamenu-insight-row img {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.megamenu-insight-row-title { font-size: 0.85rem; font-weight: 600; color: var(--color-foreground); line-height: 1.35; }
.megamenu-insight-row-meta { margin-top: 0.15rem; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-muted-foreground); }

@media (max-width: 1100px) {
  .megamenu-grid--platform, .megamenu-grid--solutions { grid-template-columns: 1fr 1fr; }
}

/* ---------- Mobile nav accordion ---------- */
.mobile-accordion-group { border-bottom: 1px solid var(--color-border); }
.mobile-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font: inherit;
  text-align: left;
  padding: var(--space-4) 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-foreground);
  cursor: pointer;
}
.mobile-accordion-trigger svg { transition: transform var(--dur-base) var(--ease-out); flex-shrink: 0; }
.mobile-accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.mobile-accordion-panel.is-open { max-height: 800px; }
.mobile-accordion-panel a {
  display: block;
  padding: 0.6rem 0 0.6rem var(--space-4);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-muted-foreground);
  border-bottom: none !important;
}
.mobile-accordion-panel a:hover { color: var(--color-accent); }

/* ---------- Context graph (homepage architecture visual) ---------- */
/* Below md, the SVG context graph is swapped out entirely (mobile-first: a
   dedicated vertical layout, not a shrunk/horizontally-scrolled version of
   the desktop diagram — see .context-graph-mobile). At md and up it's a
   single scaling SVG, which needs the container to actually scroll instead
   of squashing the node labels illegible. */
.context-graph-canvas { position: relative; width: 100%; overflow-x: auto; }
.context-graph-canvas svg { display: block; width: 100%; height: auto; min-width: 640px; }

.context-graph-mobile { display: flex; flex-direction: column; align-items: stretch; gap: var(--space-1); }
@media (min-width: 768px) {
  /* .md\:hidden from Tailwind loads before this stylesheet, so without this
     override the unconditional display:flex above wins the cascade and both
     diagram layouts render at once above the md breakpoint. */
  .context-graph-mobile { display: none; }
}
.context-graph-mobile .graph-node { padding: var(--space-3); }
.context-graph-mobile .graph-node-label { font-size: 0.7rem; }
.context-graph-mobile .graph-hub { padding: var(--space-5) var(--space-4); margin: var(--space-2) 0; }
.context-graph-mobile .graph-outcome { padding: var(--space-3) 0; }
.graph-flow-arrow { display: flex; justify-content: center; color: rgba(165, 180, 252, 0.85); }
/* The desktop diagram has dots animating along its connector paths (SVG
   animateMotion); the mobile vertical layout has no equivalent, so it read
   as fully static. This is the mobile counterpart — a simple CSS nudge in
   the direction of flow — kept independent of JS/rAF like everything else
   in this reveal system. */
.graph-flow-arrow svg { animation: graphArrowFlow 1.6s ease-in-out infinite; }
@keyframes graphArrowFlow {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .graph-flow-arrow svg { animation: none; } }

.graph-line {
  fill: none;
  stroke: url(#graphLineGradient);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.graph-dot { fill: var(--color-dark-code); filter: drop-shadow(0 0 4px rgba(165, 180, 252, 0.9)); }
@media (prefers-reduced-motion: reduce) { .graph-motion { display: none; } }

.graph-hub {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 82, 242, 0.4);
  background: radial-gradient(circle at 50% 40%, rgba(0, 82, 242, 0.28), rgba(0, 82, 242, 0.08) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3);
  animation: hubPulse 3.6s ease-in-out infinite;
}
.graph-hub p { margin: 0; }
.graph-hub-title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 0.95rem; line-height: 1.25; }
.graph-hub-sub { margin-top: var(--space-1) !important; font-family: var(--font-mono); font-size: 0.65rem; color: var(--color-dark-code); text-transform: uppercase; letter-spacing: 0.04em; }
@keyframes hubPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 82, 242, 0.28); }
  50% { box-shadow: 0 0 0 14px rgba(0, 82, 242, 0); }
}
@media (prefers-reduced-motion: reduce) { .graph-hub { animation: none; } }

.graph-node {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-dark-border);
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
}
.graph-node .icon-tile--dark { width: 28px; height: 28px; flex-shrink: 0; }
.graph-node .icon-tile--dark svg { width: 15px; height: 15px; }
.graph-node-label { font-size: 0.72rem; font-weight: 600; color: #fff; line-height: 1.2; }

.graph-outcome {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid;
}
.graph-outcome--allow { color: #34D399; border-color: rgba(52, 211, 153, 0.4); background: rgba(52, 211, 153, 0.08); }
.graph-outcome--deny { color: #F87171; border-color: rgba(248, 113, 113, 0.4); background: rgba(248, 113, 113, 0.08); }
.graph-outcome--elevate { color: var(--color-accent-hover, #5B8DFF); border-color: rgba(0, 82, 242, 0.4); background: rgba(0, 82, 242, 0.1); }
.graph-outcome--audit { color: var(--color-dark-code); border-color: rgba(165, 180, 252, 0.4); background: rgba(165, 180, 252, 0.08); }
