*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --bg: #ffffff;
  --border: rgba(120, 51, 242, 0.12);
  --text-primary: #0f0a1e;
  --text-secondary: #5a4e78;
  --purple: #7833f2;
  --purple-dark: #5a1fd1;
  --purple-dim: #ede5ff;
  --transition: 0.2s ease;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0e172a;
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #c7c4cf;
  --purple: #9b59f5;
  --purple-dark: #7833f2;
  --purple-dim: #1e1635;
  color-scheme: dark;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  transition: background var(--transition), color var(--transition);
  min-height: 100vh;
  /* 100vh on iOS Safari is the large viewport (toolbar auto-hidden) size, which
     made the page look taller before the mobile menu was used than after (the
     menu's fixed overlay seems to pin the toolbar visible and it never auto-hides
     again). 100svh is always sized as if the toolbar is showing, so the layout
     is consistent regardless of that toolbar state. */
  min-height: 100svh;
}

/* ── Nav (shared with main site) ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 74px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--transition), border-color var(--transition);
}

/* iOS 26 Safari tints its toolbar by sampling the background-color of the
   fixed/sticky element it finds near the viewport's top edge (theme-color
   meta tag is no longer honored, and translucent colors sample poorly).
   Force the nav opaque on iOS Safari mobile so it reads a clean, correct
   per-theme color; desktop/other browsers keep the glass effect. */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 768px) {
    .nav {
      background: var(--bg);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
  }
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { position: relative; display: inline-flex; align-items: center; }
.nav-logo img { height: 48px; width: auto; }

.beta-badge { position: absolute; bottom: -8px; right: -12px; font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-secondary); opacity: 0.7; }
.nav-left { display: flex; align-items: center; gap: 10px; }
.nav-left-links { display: flex; align-items: center; gap: 6px; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-right nav { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-login {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}
.btn-login:hover {
  color: var(--purple);
  border-color: color-mix(in srgb, var(--purple) 40%, transparent);
  background: var(--purple-dim);
}
.btn-login.is-active {
  color: var(--purple);
  border-color: color-mix(in srgb, var(--purple) 40%, transparent);
  background: var(--purple-dim);
}

.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); }

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.theme-toggle:hover {
  color: var(--purple);
  border-color: color-mix(in srgb, var(--purple) 40%, transparent);
  background: var(--purple-dim);
}
.theme-toggle svg { width: 17px; height: 17px; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"]  .icon-sun  { display: none; }

.nav-divider { width: 1px; height: 22px; background: var(--border); margin: 0 4px; }

.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-direction: column;
  gap: 5px;
  padding: 0 9px;
}
.hamburger:hover {
  color: var(--purple);
  border-color: color-mix(in srgb, var(--purple) 40%, transparent);
  background: var(--purple-dim);
}
.hamburger-bar {
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  max-height: 0;
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.28);
  transition: max-height 0.3s ease;
}
.nav-mobile-menu.is-open { max-height: 320px; }
.nav-mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile-menu a:hover { color: var(--purple); background: var(--purple-dim); }
.nav-mobile-menu .mobile-cta {
  margin: 16px 24px;
  border-bottom: none;
  background: var(--purple);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  justify-content: center;
}
.nav-mobile-menu .mobile-cta:hover { background: var(--purple-dark); color: #fff; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-left-links { display: none; }
  .nav-divider { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }
}
@media (max-width: 480px) {
  .nav { min-height: 62px; }
  .nav-inner { padding: 0 16px; height: 62px; }
  .nav-logo img { height: 46px; }
  .nav-right { gap: 8px; }
}

/* ── Docs shell layout ── */
.docs-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.docs-toolbar {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  position: sticky;
  top: 74px;
  z-index: 40;
}
.docs-toolbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg);
  border: 1.5px solid var(--border);
  padding: 8px 14px;
  border-radius: 9px;
  cursor: pointer;
}
.docs-toolbar-btn svg { width: 15px; height: 15px; }

/* Sidebar */
.docs-sidebar {
  position: sticky;
  top: 106px;
  align-self: start;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  padding: 0 4px 60px 0;
}
.docs-sidebar-search {
  display: none;
}
.docs-nav-group { margin-bottom: 22px; }
.docs-nav-group:last-child { margin-bottom: 0; }
.docs-nav-group-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.75;
  margin-bottom: 8px;
  padding: 0 10px;
}
.docs-nav-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.docs-nav-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: color var(--transition), background var(--transition);
}
.docs-nav-link:hover { color: var(--purple); background: var(--purple-dim); }
.docs-nav-link.is-active {
  color: var(--purple);
  font-weight: 700;
  background: var(--purple-dim);
  border-left-color: var(--purple);
}
.docs-nav-link.is-intro {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.docs-nav-link.is-intro.is-active { color: var(--purple); }

/* Article */
.docs-content { padding: 40px 0 110px; min-width: 0; }
.docs-content:focus { outline: none; }

/* Top loading bar for client-side docs navigation */
.docs-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--purple);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: width 0.25s ease, opacity 0.3s ease;
}
.docs-progress.is-active { opacity: 1; width: 70%; }
.docs-progress.is-done { opacity: 0; width: 100%; transition: width 0.2s ease, opacity 0.4s ease 0.15s; }

/* Mobile sidebar dropdown.
   This used to be a position:fixed full-height sliding drawer plus a fixed,
   full-bleed scrim. Both touched the viewport's top and bottom edges, which
   is exactly the shape iOS 26 Safari scans to tint/pin its own toolbar (see
   the theme-color notes above) — opening the drawer got the toolbar tinted
   gray, and it stuck open (not auto-hiding) until the page was reloaded.
   A dropdown anchored under the toolbar never touches the viewport edges and
   isn't a fixed/sticky element near them, so it doesn't register with
   Safari's scanner. It's position:fixed (not absolute) because it needs to
   track the toolbar's on-screen position, which changes as the page scrolls
   (the toolbar is sticky); its exact top offset and max-height are set from
   JS at open time (docs.js), based on the toolbar's actual rendered position,
   with a buffer kept well clear of the viewport's bottom edge. */
@media (max-width: 900px) {
  .docs-toolbar { display: flex; }
  .docs-shell { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .docs-sidebar {
    position: fixed;
    top: 130px;
    left: 0;
    right: 0;
    align-self: auto;
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
    transition: max-height 0.3s ease;
    z-index: 40;
    box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.28);
  }
  .docs-sidebar.is-open {
    padding: 16px 20px 24px;
  }
  .docs-content { padding: 32px 20px 90px; }
}
@media (max-width: 480px) {
  .docs-toolbar { top: 62px; padding: 12px 16px; }
}

.docs-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.docs-breadcrumb a:hover { color: var(--purple); }
.docs-breadcrumb .sep { opacity: 0.5; }
.docs-breadcrumb .current { color: var(--text-primary); }

.docs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-dim);
  border: 1px solid color-mix(in srgb, var(--purple) 22%, transparent);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.docs-article h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.docs-lede {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

.docs-article { line-height: 1.75; color: var(--text-secondary); font-size: 0.98rem; max-width: 720px; }

.docs-article section { margin-bottom: 40px; scroll-margin-top: 140px; }
.docs-article section:last-child { margin-bottom: 0; }

.docs-article h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.docs-article h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0 8px;
}

.docs-article p { margin-bottom: 14px; }
.docs-article p:last-child { margin-bottom: 0; }

.docs-article ul, .docs-article ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none;
}
.docs-article ol { counter-reset: docs-step; }
.docs-article ul li, .docs-article ol li { position: relative; padding-left: 26px; }
.docs-article ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
}
.docs-article ol li { counter-increment: docs-step; }
.docs-article ol li::before {
  content: counter(docs-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: var(--purple-dim);
  color: var(--purple);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.docs-article strong { color: var(--text-primary); font-weight: 600; }
.docs-article a { color: var(--purple); font-weight: 600; }
.docs-article a:hover { color: var(--purple-dark); }

.docs-article code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.86em;
  background: var(--purple-dim);
  color: var(--purple);
  padding: 2px 6px;
  border-radius: 5px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Callouts */
.docs-callout {
  border-radius: 14px;
  padding: 16px 20px;
  margin: 18px 0;
  border: 1px solid color-mix(in srgb, var(--purple) 16%, transparent);
  background: color-mix(in srgb, var(--purple-dim) 40%, var(--bg));
}
.docs-callout p { margin-bottom: 0; }
.docs-callout p + p { margin-top: 8px; }
.docs-callout-title {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 0.92rem;
}
/* Plan pills (Free / Plus / Pro badges inline in text) */
.plan-pill {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 2px 9px;
  border-radius: 100px;
  border: 1px solid color-mix(in srgb, var(--purple) 25%, transparent);
  color: var(--purple);
  background: var(--purple-dim);
  vertical-align: middle;
  white-space: nowrap;
}

/* Screenshot placeholder */
.docs-screenshot {
  border: 1.5px dashed color-mix(in srgb, var(--purple) 35%, var(--border));
  border-radius: 14px;
  background: color-mix(in srgb, var(--purple-dim) 30%, var(--bg));
  padding: 34px 22px;
  text-align: center;
  margin: 20px 0;
}
.docs-screenshot-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  color: var(--purple);
  opacity: 0.8;
}
.docs-screenshot-icon svg { width: 100%; height: 100%; }
.docs-screenshot-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}
.docs-screenshot-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

/* Real screenshots (light/dark swap) */
figure.docs-shot {
  margin: 20px 0;
}
.docs-shot-frame {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
}
.docs-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.docs-shot-frame .docs-shot-dark { display: none; }
[data-theme="dark"] .docs-shot-frame .docs-shot-light { display: none; }
[data-theme="dark"] .docs-shot-frame .docs-shot-dark { display: block; }
figure.docs-shot figcaption {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
}
.docs-shot-pair {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 20px 0;
}
.docs-shot-pair figure.docs-shot { margin: 0; }

/* Side-by-side phone screenshots (portrait) */
.docs-shot-pair--phones {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.docs-shot-pair--phones figure.docs-shot {
  flex: 0 1 260px;
  max-width: 260px;
}

/* Related links grid */
.docs-related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.docs-related a {
  display: block;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.docs-related a:hover {
  border-color: color-mix(in srgb, var(--purple) 40%, transparent);
  background: var(--purple-dim);
  color: var(--purple);
}
.docs-related a span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 3px;
}

/* Prev / next pager */
.docs-pager {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.docs-pager-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 48%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition);
}
.docs-pager-link:hover { border-color: color-mix(in srgb, var(--purple) 40%, transparent); background: var(--purple-dim); }
.docs-pager-link.is-next { margin-left: auto; text-align: right; align-items: flex-end; }
.docs-pager-dir {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.docs-pager-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--text-primary); font-size: 0.92rem; }
.docs-pager-link:hover .docs-pager-title { color: var(--purple); }

@media (max-width: 640px) {
  .docs-pager { flex-direction: column; }
  .docs-pager-link, .docs-pager-link.is-next { max-width: 100%; }
}

/* Intro page hero + card grid (docs/index.html only) */
.docs-hero {
  padding: 64px 0 12px;
  max-width: 720px;
}
.docs-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.docs-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}
.docs-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 40px 0 90px;
}
.docs-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: all var(--transition);
}
.docs-card:hover { border-color: color-mix(in srgb, var(--purple) 40%, transparent); background: var(--purple-dim); }
.docs-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--purple-dim);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.docs-card:hover .docs-card-icon { background: var(--bg); }
.docs-card-icon svg { width: 18px; height: 18px; }
.docs-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.docs-card p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 0; }

/* ── Footer (shared with main site) ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--purple) 4%, var(--bg));
  margin-top: 20px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 64px 24px 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; padding-bottom: 48px; }
.footer-brand { max-width: 300px; }
.footer-logo-link { position: relative; display: inline-flex; margin-bottom: 16px; }
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer-logo-link .footer-logo { margin-bottom: 0; }
.footer-logo-link .beta-badge { bottom: -8px; right: -12px; }
.footer-tagline { font-family: 'Inter', sans-serif; font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary); }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; min-width: 120px; }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.footer-col a { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--text-secondary); transition: color var(--transition); width: fit-content; }
.footer-col a:hover { color: var(--purple); }
.footer-col a.is-active { color: var(--purple); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--text-secondary); }
.footer-credit { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--text-secondary); }
.footer-credit a { font-weight: 700; color: var(--purple); transition: opacity var(--transition); }
.footer-credit a:hover { opacity: 0.75; }
@media (max-width: 720px) {
  .site-footer { background: transparent; }
  .footer-inner { padding: 48px 24px 28px; }
  .footer-top { flex-direction: column; gap: 36px; padding-bottom: 36px; }
  .footer-brand { max-width: none; }
  .footer-links { gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
