/* ==========================================================================
   Samagram Technologies — brand stylesheet
   Palette (from brand system):
     --ink    #0E1B2C   ink navy   — authority, primary text/surfaces
     --cream  #F4EFE6   cream      — soft paper background
     --amber  #C4763A   amber      — sparing accent only
   Tailwind (via CDN) handles layout utilities; this file owns the loader,
   brand tokens, and a few polished touches Tailwind can't express inline.
   ========================================================================== */

:root {
  --ink: #0E1B2C;
  --ink-700: #16273b;
  --ink-500: #33465c;
  --cream: #F4EFE6;
  --cream-200: #efe8db;
  --amber: #C4763A;
  --amber-600: #b0672f;
  --amber-100: #f3e2d3;
  --primary: var(--ink);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.font-mono-brand { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.font-serif-brand { font-family: 'Instrument Serif', Georgia, serif; }

::selection { background: var(--amber); color: #fff; }

/* --- Reveal-on-scroll animation ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   ST "living cell" loader
   A soft morphing outer membrane (faint navy) with a drifting inner nucleus
   (amber), and the ST monogram fading in the middle. Adapted from the shared
   Loading component but recoloured to the Samagram palette.
   ========================================================================== */

#st-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: var(--cream);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#st-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.st-blob {
  position: relative;
  display: inline-block;
  width: 96px;
  height: 96px;
  line-height: 0;
}

.st-blob .outer,
.st-blob .inner {
  position: absolute;
  will-change: border-radius, transform;
}

/* Outer membrane — large, faint navy, slowly rotating + morphing */
.st-blob .outer {
  inset: 0;
  background-color: var(--ink);
  opacity: 0.14;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  animation: ld-morph-outer 6s ease-in-out infinite,
             ld-spin 14s linear infinite;
}

/* Inner nucleus — smaller, solid amber, gently drifting + morphing */
.st-blob .inner {
  top: 50%;
  left: 50%;
  width: 58%;
  height: 58%;
  background-color: var(--amber);
  border-radius: 46% 54% 57% 43% / 52% 44% 56% 48%;
  transform: translate(-50%, -50%);
  animation: ld-morph-inner 4s ease-in-out infinite,
             ld-drift 4.6s ease-in-out infinite;
}

/* ST monogram sitting on top of the cell */
.st-blob .st-mono {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--cream);
  z-index: 2;
  animation: ld-pulse 2.4s ease-in-out infinite;
}

.st-loader-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-500);
}

@keyframes ld-morph-outer {
  0%, 100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; }
  34%      { border-radius: 71% 29% 46% 54% / 30% 60% 40% 70%; }
  67%      { border-radius: 33% 67% 58% 42% / 67% 36% 64% 33%; }
}
@keyframes ld-morph-inner {
  0%, 100% { border-radius: 46% 54% 57% 43% / 52% 44% 56% 48%; }
  50%      { border-radius: 58% 42% 43% 57% / 45% 58% 42% 55%; }
}
@keyframes ld-spin { to { transform: rotate(360deg); } }
@keyframes ld-drift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-44%, -58%) scale(1.08); }
}
@keyframes ld-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}

/* Inline / small variant reused inside buttons and admin */
.st-spinner {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: ld-spin 0.7s linear infinite;
  vertical-align: -2px;
}

/* Respect reduced-motion preferences — calm, static cell */
@media (prefers-reduced-motion: reduce) {
  .st-blob .outer,
  .st-blob .inner,
  .st-blob .st-mono,
  .st-spinner { animation: none; }
  html { scroll-behavior: auto; }
  .reveal { transition: none; }
  #site-header { transition: none; }
}

/* --- Auto-hiding sticky header ------------------------------------------
   main.js toggles .is-hidden: hidden while scrolling down, revealed on any
   scroll up. Keyboard focus into the header always brings it back. */
#site-header {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
#site-header.is-hidden { transform: translateY(-100%); }
#site-header.is-hidden:focus-within { transform: none; }

/* --- Small shared components ------------------------------------------- */
.brand-link-underline {
  position: relative;
}
.brand-link-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.28s ease;
}
.brand-link-underline:hover::after,
.brand-link-underline.is-active::after { width: 100%; }

/* ==========================================================================
   Legal / policy page typography
   ========================================================================== */
.legal-content { color: var(--ink-500); font-size: 1rem; line-height: 1.75; }
.legal-content .lead { font-size: 1.15rem; color: var(--ink-700); margin-bottom: 2rem; }
.legal-content h2 {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 2.4rem 0 0.9rem;
}
.legal-content p { margin: 0 0 1rem; }
.legal-content ul { margin: 0 0 1.25rem; padding-left: 1.25rem; list-style: none; }
.legal-content ul li { position: relative; margin: 0 0 0.6rem; padding-left: 1.25rem; }
.legal-content ul li::before {
  content: ''; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
}
.legal-content a { color: var(--ink); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(196,118,58,0.4); text-underline-offset: 2px; }
.legal-content a:hover { text-decoration-color: var(--amber); }
.legal-content code { font-family: 'JetBrains Mono', monospace; font-size: 0.85em; background: var(--cream-200); padding: 0.1em 0.4em; border-radius: 4px; }
.legal-content .not-prose { color: var(--ink); }

/* ==========================================================================
   Cookie consent banner + settings modal
   ========================================================================== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#cookie-banner.is-visible { transform: translateY(0); }

#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#cookie-modal.is-open { display: flex; }
#cookie-modal .cookie-backdrop {
  position: absolute; inset: 0;
  background: rgba(14, 27, 44, 0.55);
  backdrop-filter: blur(3px);
  animation: fade-in 0.3s ease;
}
#cookie-modal .cookie-dialog {
  position: relative;
  animation: pop-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* toggle switch */
.cookie-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex: none; }
.cookie-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-switch .track {
  position: absolute; inset: 0; cursor: pointer;
  background: #cbc3b4; border-radius: 999px; transition: background 0.25s ease;
}
.cookie-switch .track::before {
  content: ''; position: absolute; left: 3px; top: 3px;
  width: 18px; height: 18px; background: #fff; border-radius: 50%;
  transition: transform 0.25s ease;
}
.cookie-switch input:checked + .track { background: var(--amber); }
.cookie-switch input:checked + .track::before { transform: translateX(20px); }
.cookie-switch input:disabled + .track { background: var(--ink-500); cursor: not-allowed; opacity: 0.7; }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Animated hero background (Accenture-style flowing canvas + gradient)
   ========================================================================== */
.hero-canvas { display: block; pointer-events: none; }

/* Flowing animated mesh-gradient blobs behind the hero content */
.hero-aurora { position: absolute; inset: -20% -10%; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}
.hero-aurora .a1 { width: 34rem; height: 34rem; left: -6rem; top: -8rem; background: radial-gradient(circle at 30% 30%, rgba(196,118,58,0.55), transparent 65%); animation: aurora-1 18s ease-in-out infinite; }
.hero-aurora .a2 { width: 30rem; height: 30rem; right: -6rem; top: 2rem;  background: radial-gradient(circle at 60% 40%, rgba(14,27,44,0.35), transparent 65%);  animation: aurora-2 22s ease-in-out infinite; }
.hero-aurora .a3 { width: 26rem; height: 26rem; left: 30%;   bottom: -10rem; background: radial-gradient(circle at 50% 50%, rgba(196,118,58,0.30), transparent 65%); animation: aurora-3 26s ease-in-out infinite; }

@keyframes aurora-1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(8rem,4rem) scale(1.15); } 66% { transform: translate(3rem,-3rem) scale(0.95); } }
@keyframes aurora-2 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-6rem,5rem) scale(1.1); }  66% { transform: translate(-2rem,-4rem) scale(1.05); } }
@keyframes aurora-3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-5rem,-6rem) scale(1.2); } }

/* ==========================================================================
   Heavier site-wide motion
   ========================================================================== */
/* Directional reveals */
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-scale { opacity: 0; transform: scale(0.92);       transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.is-visible, .reveal-right.is-visible, .reveal-scale.is-visible { opacity: 1; transform: none; }

/* Staggered children: set --i on each child for a cascade */
.stagger:not(.is-visible) > * { opacity: 0; }
.stagger.is-visible > * { animation: rise-in 0.6s both; }
.stagger.is-visible > *:nth-child(1) { animation-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { animation-delay: 0.12s; }
.stagger.is-visible > *:nth-child(3) { animation-delay: 0.19s; }
.stagger.is-visible > *:nth-child(4) { animation-delay: 0.26s; }
.stagger.is-visible > *:nth-child(5) { animation-delay: 0.33s; }
.stagger.is-visible > *:nth-child(6) { animation-delay: 0.40s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* Gentle float loop for accents */
.float-slow { animation: float-slow 6s ease-in-out infinite; }
@keyframes float-slow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Marquee for logo/industry strips */
.marquee { overflow: hidden; }
.marquee__track { display: inline-flex; gap: 3rem; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Animated gradient text accent */
.text-shimmer {
  background: linear-gradient(90deg, var(--amber), #e0a06a, var(--amber));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ==========================================================================
   Breathing / drifting bubbles for CTA bands
   ========================================================================== */
.cta-bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.cta-bubbles span {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  filter: blur(1px);
}
.cta-bubbles .b1 { width: 11rem; height: 11rem; left: -2.5rem;  top: -2.5rem;    background: rgba(255,255,255,0.14); animation: bubble-a 15s ease-in-out infinite; }
.cta-bubbles .b2 { width: 15rem; height: 15rem; right: -3.5rem; bottom: -4.5rem; background: rgba(14,27,44,0.14);    animation: bubble-b 19s ease-in-out infinite; }
.cta-bubbles .b3 { width: 6rem;  height: 6rem;  left: 18%;      bottom: 8%;      background: rgba(255,255,255,0.12); animation: bubble-c 12s ease-in-out infinite; }
.cta-bubbles .b4 { width: 8rem;  height: 8rem;  right: 22%;     top: 12%;        background: rgba(255,255,255,0.10); animation: bubble-a 17s ease-in-out infinite reverse; }
.cta-bubbles .b5 { width: 4.5rem;height: 4.5rem;left: 42%;      top: 24%;        background: rgba(255,255,255,0.12); animation: bubble-c 10s ease-in-out infinite 1s; }
.cta-bubbles .b6 { width: 5rem;  height: 5rem;  right: 12%;     bottom: 22%;     background: rgba(14,27,44,0.10);    animation: bubble-b 14s ease-in-out infinite 2s; }

@keyframes bubble-a { 0%,100% { transform: translate(0,0) scale(1);    opacity: .75; } 50% { transform: translate(2.2rem,1.6rem) scale(1.28);  opacity: 1;  } }
@keyframes bubble-b { 0%,100% { transform: translate(0,0) scale(1);    opacity: .85; } 50% { transform: translate(-2.6rem,-2.2rem) scale(1.18); opacity: 1;  } }
@keyframes bubble-c { 0%,100% { transform: translate(0,0) scale(0.85); opacity: .6;  } 50% { transform: translate(1.6rem,-1.8rem) scale(1.22);  opacity: .95; } }

@media (prefers-reduced-motion: reduce) {
  .hero-aurora span,
  .float-slow,
  .marquee__track,
  .text-shimmer,
  .cta-bubbles span,
  #cookie-banner { animation: none !important; }
  .reveal-left, .reveal-right, .reveal-scale { transition: none; opacity: 1; transform: none; }
  .stagger.is-visible > * { animation: none; }
  #cookie-banner { transition: none; }
}

/* ==========================================================================
   Character-by-character hover text animation (.animated-text-hover)
   Applied to nav links, header/CTA buttons, footer links and form submit
   buttons. Each visible letter is wrapped in an .ath-char span by
   assets/js/text-hover.js, then flips on the X axis on hover / keyboard focus.
   ========================================================================== */
/* Each split text node is wrapped in .ath-text so the label stays ONE flex
   item inside inline-flex buttons — keeps spaces and gap-* utilities intact. */
.animated-text-hover .ath-text {
  display: inline-block;
  white-space: pre-wrap;
  perspective: 800px;
}

.animated-text-hover .ath-char {
  display: inline-block;
  transform: rotateX(0deg) translateY(0);
  transition: transform 450ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--ath-delay, 0ms);
  backface-visibility: hidden;
  will-change: transform;
}

.animated-text-hover:hover .ath-char,
.animated-text-hover:focus-visible .ath-char {
  transform: rotateX(360deg) translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .animated-text-hover .ath-char {
    transition: none;
    transform: none !important;
  }
}

/* ==========================================================================
   Page-wide Vanta host (.page-vanta)
   A whole-page dark wrapper carrying data-vanta: the injected .vanta-canvas
   stays behind while every direct child (sections, dividers) is lifted above.
   ========================================================================== */
.page-vanta { position: relative; }
.page-vanta > * { position: relative; z-index: 1; }
.page-vanta > .vanta-canvas { z-index: 0 !important; }

/* ==========================================================================
   Liquid animated background ([data-liquid] sections)
   assets/js/liquid-bg.js draws colour blobs on this canvas; the blur +
   contrast filter fuses them into gooey, lava-lamp-like liquid shapes.
   ========================================================================== */
.liquid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(26px) contrast(16) saturate(1.15);
  pointer-events: none;
}

/* ==========================================================================
   "How we work" process road (.process-road)
   An SVG overlay across the step-card grid. main.js measures each card's
   .process-num and routes a winding dark road with an amber dashed center
   stripe through the numbers 01 → 04, rings each number as a stop, and
   animates a segmented green snake (tapered body, head with eyes) along
   the route. The numbers sit at z-index 2, above the road.
   ========================================================================== */
.process-road { overflow: visible; }
.process-road .road-base {
  stroke: var(--ink-700);
  stroke-width: 22;
  stroke-linecap: round;
}
.process-road .road-stripe {
  stroke: var(--amber);
  stroke-width: 3;
  stroke-dasharray: 10 14;          /* center-line dashes (user units) */
  opacity: 0.9;
}
.process-road .road-stops circle {
  fill: none;
  stroke: var(--amber);
  stroke-width: 3.5;
}
.process-road .road-snake-g {
  filter: drop-shadow(0 0 4px rgba(74, 222, 128, 0.45));
}

/* ==========================================================================
   Accenture-style interactive cards (.acc-card)
   The whole card is a link. On hover/focus it lifts with a soft shadow, a
   cursor-following amber spotlight fades in (--mx/--my are set per-card by
   assets/js/main.js), a bottom accent bar sweeps in from the left, the title
   underline draws itself, and the large corner arrow swings from → to ↗.
   Pair the cards with a `.stagger` parent for the scroll-in cascade.
   ========================================================================== */
.acc-card {
  position: relative;
  display: block;
  overflow: hidden;
  /* opacity included so .reveal fade-ins still animate on combined elements */
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    opacity 0.7s ease;
}
.acc-card:hover,
.acc-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(196, 118, 58, 0.45);
  box-shadow: 0 24px 48px -16px rgba(14, 27, 44, 0.22);
}
.acc-card:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

/* cursor-following amber spotlight */
.acc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    20rem circle at var(--mx, 70%) var(--my, 20%),
    rgba(196, 118, 58, 0.14),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.acc-card:hover::before,
.acc-card:focus-visible::before { opacity: 1; }

/* bottom accent bar sweeping in from the left */
.acc-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), #e09a5f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.acc-card:hover::after,
.acc-card:focus-visible::after { transform: scaleX(1); }
/* Modifier: card without the bottom accent bar */
.acc-card--no-bar::after { display: none; }

/* title underline that draws itself in from the left */
.acc-card .acc-title {
  background-image: linear-gradient(var(--amber), var(--amber));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  padding-bottom: 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-size 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.acc-card:hover .acc-title,
.acc-card:focus-visible .acc-title { background-size: 100% 2px; }

/* CTA reacts from anywhere on the card: arrow nudge, underline, letter flip */
.acc-card .acc-arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.acc-card:hover .acc-arrow,
.acc-card:focus-visible .acc-arrow { transform: translateX(6px); }
.acc-card:hover .brand-link-underline::after,
.acc-card:focus-visible .brand-link-underline::after { width: 100%; }
.acc-card:hover .animated-text-hover .ath-char,
.acc-card:focus-visible .animated-text-hover .ath-char {
  transform: rotateX(360deg) translateY(-1px);
}

/* large decorative corner arrow: swings from → to ↗ */
.acc-card .acc-glyph {
  position: absolute;
  right: 1.25rem;
  bottom: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(196, 118, 58, 0.14);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
  pointer-events: none;
  user-select: none;
}
.acc-card:hover .acc-glyph,
.acc-card:focus-visible .acc-glyph {
  transform: rotate(-45deg);
  color: rgba(196, 118, 58, 0.38);
}

/* --- Dark-tone variant (.acc-card--dark) --------------------------------
   Deep ink gradient with a living "aurora" background: blurred amber/blue
   blobs (.acc-aurora spans) drifting on the hero's aurora keyframes. Text
   content is lifted above the blobs; spotlight and glyph run brighter. */
.acc-card--dark {
  background: linear-gradient(150deg, #0e1b2c 0%, #14243a 55%, #0b1624 100%);
}
.acc-card--dark > *:not(.acc-aurora):not(.acc-glyph) {
  position: relative;
  z-index: 1;
}
.acc-card--dark .acc-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}
.acc-card--dark .acc-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  will-change: transform;
}
.acc-card--dark .acc-aurora .b1 { width: 16rem; height: 16rem; left: -4rem;  top: -6rem;    background: radial-gradient(circle at 30% 30%, rgba(196, 118, 58, 0.50), transparent 65%); animation: aurora-1 16s ease-in-out infinite; }
.acc-card--dark .acc-aurora .b2 { width: 15rem; height: 15rem; right: -5rem; bottom: -6rem; background: radial-gradient(circle at 60% 40%, rgba(64, 106, 160, 0.45),  transparent 65%); animation: aurora-2 21s ease-in-out infinite; }
.acc-card--dark .acc-aurora .b3 { width: 12rem; height: 12rem; left: 35%;    bottom: -5rem; background: radial-gradient(circle at 50% 50%, rgba(196, 118, 58, 0.30), transparent 65%); animation: aurora-3 26s ease-in-out infinite; }

.acc-card--dark:hover,
.acc-card--dark:focus-visible {
  border-color: rgba(196, 118, 58, 0.55);
  box-shadow: 0 26px 52px -18px rgba(11, 22, 36, 0.55);
}
.acc-card--dark::before {
  background: radial-gradient(
    22rem circle at var(--mx, 70%) var(--my, 20%),
    rgba(196, 118, 58, 0.22),
    transparent 65%
  );
}
.acc-card--dark .acc-glyph { color: rgba(196, 118, 58, 0.22); }
.acc-card--dark:hover .acc-glyph,
.acc-card--dark:focus-visible .acc-glyph { color: rgba(196, 118, 58, 0.55); }

@media (prefers-reduced-motion: reduce) {
  .acc-card,
  .acc-card::before,
  .acc-card::after,
  .acc-card .acc-title,
  .acc-card .acc-arrow,
  .acc-card .acc-glyph { transition: none; }
  .acc-card:hover,
  .acc-card:focus-visible { transform: none; }
  .acc-card--dark .acc-aurora span { animation: none; }
  .stagger:not(.is-visible) > * { opacity: 1; }
}
