/* ============================================================
   PAYAN — Landing page
   ============================================================ */

:root {
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --bg-alt: #f4f4f6;
  --text: #18181b;
  --text-muted: #52525b;
  --text-dim: #71717a;
  --purple: #7c3aed;
  --purple-dark: #6d28d9;
  --blue: #2563eb;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --header-bg: rgba(250, 250, 250, 0.82);
  --header-bg-scrolled: rgba(255, 255, 255, 0.94);
  --accent-soft: rgba(124, 58, 237, 0.1);
  --accent-border: rgba(124, 58, 237, 0.25);
  --radius-video: 24px;
  --header-h: 72px;
  --font-display: "Play", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input {
  font: inherit;
}

.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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--purple-dark);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: var(--header-bg-scrolled);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--gradient);
  color: #fff;
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--purple-dark) !important;
}

.nav-cta:hover {
  background: rgba(124, 58, 237, 0.16);
  color: var(--purple) !important;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.55rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, filter 0.25s ease;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.22);
}

.btn--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.32);
}

.btn--wide {
  width: 100%;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease, gap 0.25s var(--ease);
}

.btn-text:hover {
  color: var(--text);
  gap: 0.55rem;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 3.5rem;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 35%, rgba(124, 58, 237, 0.1), transparent 35%),
    radial-gradient(circle at 60% 70%, rgba(37, 99, 235, 0.06), transparent 30%),
    var(--bg);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  right: 8%;
  top: 42%;
  width: min(420px, 45vw);
  height: min(520px, 70vh);
  transform: translateY(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(124, 58, 237, 0.14) 0%,
    rgba(37, 99, 235, 0.07) 45%,
    transparent 70%
  );
  filter: blur(40px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.9s ease;
}

.hero.is-ready .hero__glow {
  opacity: 1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-dark);
  margin-bottom: 1.15rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 6.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__headline > span {
  display: block;
}

.hero__support {
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.hero__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

/* Entrance animations */
.anim-item {
  opacity: 0;
  transform: translateY(14px);
}

.hero.is-ready .anim-item {
  animation: heroRise 0.55s var(--ease) forwards;
}

.hero.is-ready .anim-item[data-anim="1"] { animation-delay: 0.05s; }
.hero.is-ready .anim-item[data-anim="2"] { animation-delay: 0.12s; }
.hero.is-ready .anim-item[data-anim="3"] { animation-delay: 0.2s; }
.hero.is-ready .anim-item[data-anim="4"] { animation-delay: 0.3s; }
.hero.is-ready .anim-item[data-anim="5"] { animation-delay: 0.38s; }
.hero.is-ready .anim-item[data-anim="6"] { animation-delay: 0.46s; }
.hero.is-ready .anim-item[data-anim="7"] {
  animation-name: heroVideoIn;
  animation-duration: 0.65s;
  animation-delay: 0.28s;
}

/* Ensure final visible state after entrance (avoids stuck opacity:0) */
.hero.is-ready.is-settled .anim-item {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero.is-ready.is-settled .anim-item[data-anim="7"] {
  transform: none;
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVideoIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim-item {
    opacity: 1;
    transform: none;
  }

  .hero.is-ready .anim-item {
    animation: none;
  }

  .hero__glow {
    opacity: 1;
    transition: none;
  }

  .video-overlay__play {
    animation: none !important;
  }

  .video-frame {
    animation: none !important;
  }
}

/* ---------- Premium video showcase ---------- */

.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  width: min(82vw, 320px);
  margin: 0 auto;
}

.video-glow {
  position: absolute;
  inset: -12% -18%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(124, 58, 237, 0.16) 0%,
    rgba(37, 99, 235, 0.08) 40%,
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.video-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-video);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background:
    linear-gradient(165deg, rgba(124, 58, 237, 0.12) 0%, transparent 45%),
    linear-gradient(345deg, rgba(37, 99, 235, 0.08) 0%, transparent 42%),
    #121218;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 0 60px rgba(124, 58, 237, 0.12);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  animation: videoFloat 6s ease-in-out infinite;
}

@keyframes videoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.video-frame__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.video-frame.is-playing .video-frame__video {
  object-fit: contain;
  background: #000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: none;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.15) 0%,
    rgba(5, 5, 5, 0.35) 100%
  );
  cursor: pointer;
  color: #fff;
  opacity: 1;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-frame.is-playing .video-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-overlay__label,
.video-overlay__caption {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.video-overlay.is-spotlight .video-overlay__play {
  transform: scale(1.08);
  box-shadow:
    0 0 0 18px rgba(124, 58, 237, 0.16),
    0 14px 48px rgba(124, 58, 237, 0.55);
}

.video-overlay__play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  box-shadow:
    0 0 0 10px rgba(124, 58, 237, 0.12),
    0 12px 40px rgba(124, 58, 237, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  animation: playPulse 2.4s ease-in-out infinite;
  padding-left: 3px; /* optical centering of triangle */
}

@keyframes playPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 10px rgba(124, 58, 237, 0.12),
      0 12px 40px rgba(124, 58, 237, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 16px rgba(124, 58, 237, 0.08),
      0 14px 44px rgba(124, 58, 237, 0.48);
  }
}

.video-overlay:hover .video-overlay__play,
.video-overlay:focus-visible .video-overlay__play {
  transform: scale(1.07);
}

.video-overlay:focus-visible {
  outline: none;
}

.video-overlay:focus-visible .video-overlay__play {
  outline: 2px solid rgba(196, 181, 253, 0.8);
  outline-offset: 4px;
}

/* Desktop hover on video frame */
@media (hover: hover) and (pointer: fine) {
  .video-frame:hover {
    transform: scale(1.01) translateY(-6px);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.22),
      0 0 80px rgba(124, 58, 237, 0.18);
    animation-play-state: paused;
  }

  .video-frame:hover ~ .video-glow,
  .hero__media:hover .video-glow {
    opacity: 1;
    transform: scale(1.04);
  }

  .video-frame:hover .video-overlay__play {
    transform: scale(1.07);
  }

  .video-frame.is-playing:hover {
    transform: scale(1.01);
  }
}

@media (min-width: 900px) {
  .hero {
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 2.5rem;
  }

  .hero__inner {
    grid-template-columns: 1fr minmax(280px, 320px);
    gap: 3.5rem 4rem;
  }

  .hero__media {
    width: 100%;
    max-width: min(320px, calc((100svh - var(--header-h) - 5rem) * 9 / 16));
    margin: 0 0 0 auto;
  }

  .hero__support {
    font-size: 1.08rem;
  }

  .video-overlay__play {
    width: 84px;
    height: 84px;
  }
}

@media (min-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr minmax(300px, 360px);
  }

  .hero__media {
    max-width: min(360px, calc((100svh - var(--header-h) - 5rem) * 9 / 16));
  }
}

@media (max-width: 899px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.75rem);
    padding-bottom: 3rem;
    align-items: flex-start;
  }

  .hero__glow {
    right: 50%;
    top: auto;
    bottom: 8%;
    transform: translateX(50%);
    width: 90vw;
    height: 50vh;
  }

  .hero__actions {
    margin-bottom: 0.5rem;
  }

  .hero__media {
    width: min(88vw, 340px);
  }

  .video-overlay__play {
    width: 80px;
    height: 80px;
  }
}

/* ---------- Sections (shared) ---------- */

.section {
  position: relative;
  padding: 5.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.section--alt {
  background: var(--bg-alt);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 720px;
}

.section__inner--split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .section__inner--split {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }

  .section__inner--reverse {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .section__inner--reverse .feature-copy {
    order: 2;
  }

  .section__inner--reverse .feature-aside {
    order: 1;
  }
}

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-dark);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.15rem;
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 2rem;
}

/* Problem list */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.problem-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
}

.problem-list__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--purple);
  padding-top: 0.2rem;
}

.problem-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.problem-list p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 2rem;
  }
}

@media (min-width: 1000px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.steps__item {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border-strong);
}

.steps__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--purple-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.steps__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.steps__item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Benefits — no heavy cards; divider-led */
.benefits {
  display: grid;
  gap: 2rem;
  margin-top: 0.5rem;
}

@media (min-width: 800px) {
  .benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.benefit {
  padding-top: 1.35rem;
  border-top: 1px solid var(--border-strong);
}

.benefit h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.benefit p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Feature asides */
.feature-aside {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  padding: 2.5rem 1.5rem;
}

.feature-aside__glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.12),
    rgba(37, 99, 235, 0.05),
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
}

.feature-aside__stat {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--text-muted);
}

.feature-aside__stat span {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.35rem;
}

/* Early access form */
.section--cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.08), transparent 45%),
    var(--bg-alt);
}

.access-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.access-form__botcheck {
  display: none !important;
}

.btn--primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.access-form__row {
  display: grid;
  gap: 0.85rem;
}

.access-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

@media (min-width: 600px) {
  .access-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.access-form input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.access-form input.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.access-form__error {
  min-height: 1.1em;
  font-size: 0.82rem;
  color: #dc2626;
  line-height: 1.3;
}

.access-form input::placeholder {
  color: var(--text-dim);
}

.access-form input:focus {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.access-form__note {
  min-height: 1.4em;
  font-size: 0.9rem;
  color: var(--purple-dark);
  text-align: center;
}

.access-form__note.is-error {
  color: #dc2626;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--purple-dark);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.45);
  outline-offset: -2px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem 3rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.site-footer__tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease);
}

.site-footer__social a:hover {
  color: var(--purple-dark);
  border-color: var(--accent-border);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.site-footer__social a:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.5);
  outline-offset: 2px;
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer__copy {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}
