#anchorlight {
  --al-bg: #04060d;
  --al-bg-2: #070b16;
  --al-surface: #0b1120;
  --al-surface-2: #101828;
  --al-line: #1c2740;
  --al-line-soft: #141d31;
  --al-ink: #f2f6ff;
  --al-muted: #9db0cc;
  --al-muted-dim: #7286a5;
  --al-blue: #38bdf8;
  --al-blue-bright: #7dd3fc;
  --al-blue-deep: #0e7fd4;
  --al-glow: rgba(56,189,248,.55);
  --al-radius: 14px;
  --al-radius-lg: 20px;
  --al-max: 1140px;

  background: var(--al-bg);
  color: var(--al-ink);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}
#anchorlight *, #anchorlight *::before, #anchorlight *::after { box-sizing: border-box; }
/* Element-level reset. A host page's bare `h3 { color: crimson }` beats plain
   inheritance from #anchorlight, so every element we use has to opt back in
   explicitly. Kept low-specificity (id + element) so the styled rules below,
   which are id + class, still win. */
#anchorlight h1, #anchorlight h2, #anchorlight h3, #anchorlight h4,
#anchorlight p, #anchorlight span, #anchorlight small, #anchorlight b,
#anchorlight strong, #anchorlight em, #anchorlight li, #anchorlight ul,
#anchorlight a, #anchorlight button, #anchorlight input, #anchorlight label,
#anchorlight div, #anchorlight section, #anchorlight article, #anchorlight nav,
#anchorlight header, #anchorlight footer, #anchorlight main, #anchorlight dialog {
  font-family: inherit;
  color: inherit;
  text-shadow: none;
  float: none;
}
/* letter-spacing and text-transform are deliberately NOT reset here: they are
   inherited properties this design relies on cascading down into child spans. */
#anchorlight h1, #anchorlight h2, #anchorlight h3, #anchorlight h4,
#anchorlight p, #anchorlight span, #anchorlight small, #anchorlight b,
#anchorlight strong, #anchorlight li, #anchorlight ul, #anchorlight a {
  background: none;
  border: 0;
}
#anchorlight p, #anchorlight h1, #anchorlight h2, #anchorlight h3, #anchorlight h4, #anchorlight ul, #anchorlight li { margin: 0; padding: 0; }
#anchorlight ul { list-style: none; }
#anchorlight a { color: inherit; text-decoration: none; }
#anchorlight button { font: inherit; color: inherit; }
#anchorlight img, #anchorlight svg { display: block; max-width: 100%; }
#anchorlight :focus-visible {
  outline: 2px solid var(--al-blue-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ——— shared bits ——— */
#anchorlight .al-wrap { width: 100%; max-width: var(--al-max); margin: 0 auto; padding: 0 24px; }
#anchorlight .al-skip {
  position: absolute; left: 12px; top: -60px; z-index: 60;
  background: var(--al-blue); color: #04060d; font-weight: 650;
  padding: .7rem 1.1rem; border-radius: 10px; transition: top .18s ease;
}
#anchorlight .al-skip:focus { top: 12px; }

#anchorlight .al-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .74rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase;
  color: var(--al-blue-bright);
  background: rgba(56,189,248,.08);
  border: 1px solid rgba(56,189,248,.28);
  padding: .4rem .85rem; border-radius: 999px;
}
#anchorlight .al-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--al-blue); box-shadow: 0 0 10px var(--al-glow);
}
#anchorlight .al-grad {
  background: linear-gradient(100deg, var(--al-blue-bright), var(--al-blue) 45%, #a78bfa);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
#anchorlight .al-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 11px; border: 1px solid transparent;
  font-weight: 620; font-size: .95rem; cursor: pointer; text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
#anchorlight .al-btn-primary {
  background: linear-gradient(135deg, var(--al-blue) 0%, var(--al-blue-deep) 100%);
  color: #02121f;
  box-shadow: 0 8px 26px -8px rgba(56,189,248,.75);
}
#anchorlight .al-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(56,189,248,.9); }
#anchorlight .al-btn-ghost {
  background: rgba(255,255,255,.03);
  border-color: var(--al-line);
  color: var(--al-ink);
}
#anchorlight .al-btn-ghost:hover { border-color: var(--al-blue); background: rgba(56,189,248,.08); transform: translateY(-2px); }

/* ——— nav ——— */
#anchorlight .al-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(4,6,13,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--al-line-soft);
}
#anchorlight .al-nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 68px;
}
#anchorlight .al-brand { display: flex; align-items: center; gap: .7rem; min-width: 0; }
/* flex: none — otherwise the mark gets shrunk to nothing on narrow screens */
#anchorlight .al-brand svg { width: 30px; height: 30px; flex: none; }
#anchorlight .al-wordmark {
  font-size: 1.06rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  white-space: nowrap;
}
#anchorlight .al-wordmark span { color: var(--al-blue-bright); }
#anchorlight .al-nav-links { display: flex; align-items: center; gap: 1.9rem; }
/* The CTA shortens rather than overlapping the wordmark on narrow screens.
   Hiding the brand name would be the easy fix; keeping both is the right one. */
#anchorlight .al-cta-short { display: none; }
#anchorlight .al-wordmark { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
#anchorlight .al-nav-links a {
  font-size: .9rem; color: var(--al-muted); font-weight: 520;
  transition: color .16s ease;
}
#anchorlight .al-nav-links a:hover { color: var(--al-ink); }
#anchorlight .al-nav .al-btn { padding: .6rem 1.15rem; font-size: .88rem; white-space: nowrap; flex: none; }
@media (max-width: 860px) { #anchorlight .al-nav-links { display: none; } }
@media (max-width: 520px) {
  #anchorlight .al-wrap { padding: 0 16px; }
  #anchorlight .al-wordmark { font-size: .8rem; letter-spacing: .08em; }
  #anchorlight .al-brand svg { width: 23px; height: 23px; }
  #anchorlight .al-brand { gap: .5rem; }
  #anchorlight .al-nav .al-btn { padding: .48rem .75rem; font-size: .78rem; }
  #anchorlight .al-nav-inner { gap: .5rem; }
  #anchorlight .al-cta-long { display: none; }
  #anchorlight .al-cta-short { display: inline; }
}

/* ——— hero ——— */
#anchorlight .al-hero { position: relative; padding: 92px 0 84px; overflow: hidden; }
#anchorlight .al-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 420px at 76% 34%, rgba(56,189,248,.20), transparent 62%),
    radial-gradient(620px 380px at 10% 8%, rgba(99,102,241,.16), transparent 60%),
    linear-gradient(180deg, transparent 55%, var(--al-bg-2) 100%);
}
#anchorlight .al-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image:
    linear-gradient(rgba(56,189,248,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 72%);
}
#anchorlight .al-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
}
#anchorlight .al-hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  line-height: 1.06; font-weight: 750; letter-spacing: -.028em;
  margin: 1.4rem 0 0;
}
#anchorlight .al-hero .al-sub {
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  color: var(--al-ink); font-weight: 560; margin-top: 1.1rem; line-height: 1.4;
}
#anchorlight .al-hero .al-lede {
  color: var(--al-muted); margin-top: 1.15rem; max-width: 52ch; font-size: 1.02rem;
}
#anchorlight .al-hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
#anchorlight .al-hero-note {
  margin-top: 1.4rem; font-size: .84rem; color: var(--al-muted-dim);
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
@media (max-width: 940px) {
  #anchorlight .al-hero { padding: 56px 0 48px; }
  /* headline first on narrow screens — leading with a full-height orb buries
     the value proposition below the fold */
  #anchorlight .al-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  #anchorlight .al-orb svg { width: min(300px, 62vw); }
  #anchorlight .al-orb-caption strong { font-size: 1.25rem; }
}

/* ——— orb ——— */
#anchorlight .al-orb { position: relative; display: grid; place-items: center; padding: 10px; }
#anchorlight .al-orb::before {
  content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.34) 0%, rgba(56,189,248,.10) 45%, transparent 70%);
  filter: blur(26px);
  animation: al-breathe 7s ease-in-out infinite;
}
#anchorlight .al-orb svg { width: min(420px, 100%); height: auto; position: relative; }
#anchorlight .al-ring-outer { transform-origin: 100px 100px; animation: al-spin 46s linear infinite; }
#anchorlight .al-ring-mid   { transform-origin: 100px 100px; animation: al-spin 32s linear infinite reverse; }
#anchorlight .al-nodes      { transform-origin: 100px 100px; animation: al-spin 24s linear infinite; }
#anchorlight .al-mark       { animation: al-flicker 6s ease-in-out infinite; }
@keyframes al-spin { to { transform: rotate(360deg); } }
@keyframes al-breathe { 0%,100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
@keyframes al-flicker { 0%,100% { opacity: .93; } 50% { opacity: 1; } }
#anchorlight .al-orb-caption { text-align: center; margin-top: 1.2rem; }
#anchorlight .al-orb-caption strong {
  display: block; font-size: 1.55rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
#anchorlight .al-orb-tagline { display: block; color: var(--al-muted); font-size: .84rem; letter-spacing: .09em; text-transform: uppercase; margin-top: .35rem; }

/* ——— stats ——— */
#anchorlight .al-stats { border-block: 1px solid var(--al-line-soft); background: var(--al-bg-2); }
#anchorlight .al-stats ul {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--al-line-soft);
}
#anchorlight .al-stats li { background: var(--al-bg-2); padding: 28px 20px; text-align: center; }
#anchorlight .al-stats b { display: block; font-size: 1.75rem; font-weight: 700; letter-spacing: -.02em; }
#anchorlight .al-stats small { color: var(--al-muted); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 720px) { #anchorlight .al-stats ul { grid-template-columns: repeat(2, 1fr); } }

/* ——— section headers ——— */
#anchorlight .al-section { padding: 88px 0; position: relative; }
#anchorlight .al-section-head { max-width: 660px; margin-bottom: 48px; }
#anchorlight .al-section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 720; letter-spacing: -.024em;
  line-height: 1.14; margin-top: 1.1rem;
}
#anchorlight .al-section-head p { color: var(--al-muted); margin-top: .95rem; font-size: 1.03rem; }

/* ——— features ——— */
#anchorlight .al-features { background: var(--al-bg-2); border-bottom: 1px solid var(--al-line-soft); }
#anchorlight .al-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 940px) { #anchorlight .al-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { #anchorlight .al-feature-grid { grid-template-columns: 1fr; } }
#anchorlight .al-feature {
  position: relative; background: var(--al-surface); border: 1px solid var(--al-line);
  border-radius: var(--al-radius-lg); padding: 28px 26px 30px; overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
#anchorlight .al-feature::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.6), transparent);
  opacity: 0; transition: opacity .2s ease;
}
#anchorlight .al-feature:hover { border-color: rgba(56,189,248,.45); transform: translateY(-3px); }
#anchorlight .al-feature:hover::before { opacity: 1; }
#anchorlight .al-feature-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(56,189,248,.10); border: 1px solid rgba(56,189,248,.26);
  color: var(--al-blue-bright); margin-bottom: 18px;
}
#anchorlight .al-feature-icon svg { width: 22px; height: 22px; }
#anchorlight .al-feature h3 { font-size: 1.08rem; font-weight: 650; letter-spacing: -.01em; }
#anchorlight .al-feature p { color: var(--al-muted); font-size: .93rem; margin-top: .6rem; }

/* ——— books & toolkits ——— */
#anchorlight .al-shop { background: var(--al-bg); border-bottom: 1px solid var(--al-line-soft); }
#anchorlight .al-todo {
  border: 1px solid rgba(251,191,36,.4); background: rgba(251,191,36,.08);
  color: #fde68a; border-radius: 12px; padding: 1rem 1.15rem; font-size: .9rem; margin-bottom: 26px;
}
#anchorlight .al-todo b { color: #fbbf24; }
#anchorlight .al-todo code {
  background: rgba(0,0,0,.35); border: 1px solid rgba(251,191,36,.25);
  padding: .05rem .35rem; border-radius: 5px; font-size: .85em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
#anchorlight .al-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { #anchorlight .al-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { #anchorlight .al-product-grid { grid-template-columns: 1fr; } }
#anchorlight .al-product {
  position: relative; display: flex; flex-direction: column;
  background: var(--al-surface); border: 1px solid var(--al-line);
  border-radius: var(--al-radius-lg); overflow: hidden;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
#anchorlight .al-product:hover, #anchorlight .al-product:focus-within {
  border-color: rgba(56,189,248,.5); transform: translateY(-4px);
  box-shadow: 0 22px 46px -24px rgba(56,189,248,.75);
}
#anchorlight .al-cover {
  position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center;
  padding: 22px; text-align: center; overflow: hidden;
  background: linear-gradient(150deg, #0d1b30 0%, #0a1524 55%, #061020 100%);
  border-bottom: 1px solid var(--al-line);
}
#anchorlight .al-cover img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
#anchorlight .al-cover-art { position: absolute; inset: 0; display: grid; place-items: center; opacity: .16; }
#anchorlight .al-cover-art svg { width: 62%; height: auto; }
#anchorlight .al-cover-title {
  position: relative; font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em;
  line-height: 1.25; text-wrap: balance;
}
#anchorlight .al-cover-rule {
  position: relative; width: 34px; height: 2px; margin: .7rem auto 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--al-blue-bright), var(--al-blue-deep));
}
#anchorlight .al-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: .66rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .55rem; border-radius: 6px;
  background: rgba(4,6,13,.78); border: 1px solid rgba(56,189,248,.4); color: var(--al-blue-bright);
}
#anchorlight .al-badge-sample { border-color: rgba(251,191,36,.5); color: #fbbf24; }
#anchorlight .al-product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
#anchorlight .al-product-body h3 { font-size: 1rem; font-weight: 650; letter-spacing: -.012em; line-height: 1.3; }
#anchorlight .al-product-link { all: unset; cursor: pointer; font: inherit; color: inherit; }
#anchorlight .al-product-link::after { content: ""; position: absolute; inset: 0; border-radius: var(--al-radius-lg); }
#anchorlight .al-product-link:focus-visible::after { outline: 2px solid var(--al-blue-bright); outline-offset: -3px; }
#anchorlight .al-product-desc { color: var(--al-muted); font-size: .88rem; margin-top: .5rem; flex: 1; }
#anchorlight .al-product-meta {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap;
  margin-top: 1rem; padding-top: .85rem; border-top: 1px solid var(--al-line-soft);
}
#anchorlight .al-product-format { font-size: .74rem; color: var(--al-muted-dim); letter-spacing: .05em; text-transform: uppercase; }
#anchorlight .al-price { font-size: 1.02rem; font-weight: 700; color: var(--al-blue-bright); }
#anchorlight .al-price-free { color: #6ee7b7; }
#anchorlight .al-subhead {
  font-size: 1.1rem; font-weight: 650; letter-spacing: -.01em; margin-top: 52px; margin-bottom: 14px;
}
#anchorlight .al-bundle-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
@media (max-width: 940px) { #anchorlight .al-bundle-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { #anchorlight .al-bundle-list { grid-template-columns: 1fr; } }
#anchorlight .al-bundle {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--al-surface); border: 1px solid var(--al-line);
  border-radius: 12px; padding: .85rem 1.05rem;
  transition: border-color .16s ease, transform .16s ease;
}
#anchorlight .al-bundle:hover, #anchorlight .al-bundle:focus-within {
  border-color: rgba(56,189,248,.5); transform: translateY(-2px);
}
#anchorlight .al-bundle-link { font-size: .92rem; font-weight: 550; }
#anchorlight .al-bundle .al-price { font-size: .95rem; flex: none; }
#anchorlight .al-store-note { margin-top: 26px; color: var(--al-muted); font-size: .92rem; }
#anchorlight .al-textlink { color: var(--al-blue-bright); font-weight: 550; }
#anchorlight .al-textlink:hover { text-decoration: underline; }
#anchorlight .al-apps-section { background: var(--al-bg-2); border-bottom: 1px solid var(--al-line-soft); }

/* ——— library ——— */
#anchorlight .al-library { background: var(--al-bg); }
#anchorlight .al-toolbar { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
#anchorlight .al-search { position: relative; max-width: 460px; width: 100%; }
#anchorlight .al-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--al-muted-dim); pointer-events: none;
}
#anchorlight .al-search input {
  width: 100%; padding: .8rem 1rem .8rem 2.7rem;
  background: var(--al-surface); border: 1px solid var(--al-line);
  border-radius: 11px; color: var(--al-ink); font: inherit; font-size: .94rem;
}
#anchorlight .al-search input::placeholder { color: var(--al-muted-dim); }
#anchorlight .al-search input:focus { border-color: var(--al-blue); outline: none; box-shadow: 0 0 0 3px rgba(56,189,248,.15); }
#anchorlight .al-filters { display: flex; flex-wrap: wrap; gap: .5rem; }
#anchorlight .al-chip {
  background: var(--al-surface); border: 1px solid var(--al-line); color: var(--al-muted);
  padding: .48rem .95rem; border-radius: 999px; font-size: .86rem; font-weight: 540; cursor: pointer;
  transition: all .16s ease;
}
#anchorlight .al-chip:hover { color: var(--al-ink); border-color: #2a3a5c; }
#anchorlight .al-chip[aria-pressed="true"] {
  background: rgba(56,189,248,.13); border-color: var(--al-blue); color: var(--al-blue-bright);
  box-shadow: 0 0 18px -6px var(--al-glow);
}
#anchorlight .al-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 940px) { #anchorlight .al-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { #anchorlight .al-cards { grid-template-columns: 1fr; } }
#anchorlight .al-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--al-surface); border: 1px solid var(--al-line);
  border-radius: var(--al-radius-lg); padding: 22px 22px 20px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
#anchorlight .al-card:hover, #anchorlight .al-card:focus-within {
  border-color: rgba(56,189,248,.5); transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(56,189,248,.7);
}
#anchorlight .al-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
#anchorlight .al-card h3 { font-size: 1.04rem; font-weight: 650; letter-spacing: -.012em; line-height: 1.3; }
/* the title is the control; ::after stretches it over the whole card so the
   card is clickable without nesting buttons inside buttons */
#anchorlight .al-card-title { all: unset; cursor: pointer; font: inherit; color: inherit; }
#anchorlight .al-card-title::after { content: ""; position: absolute; inset: 0; border-radius: var(--al-radius-lg); }
#anchorlight .al-card-title:focus-visible::after { outline: 2px solid var(--al-blue-bright); outline-offset: -3px; }
#anchorlight .al-card-summary { color: var(--al-muted); font-size: .9rem; margin-top: .6rem; flex: 1; }
#anchorlight .al-card-meta {
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  margin-top: 1.05rem; padding-top: .9rem; border-top: 1px solid var(--al-line-soft);
  font-size: .76rem; color: var(--al-muted-dim); letter-spacing: .04em; text-transform: uppercase;
}
#anchorlight .al-pill {
  color: var(--al-blue-bright); background: rgba(56,189,248,.10);
  border: 1px solid rgba(56,189,248,.22); border-radius: 6px; padding: .12rem .48rem;
  font-size: .7rem; letter-spacing: .07em;
}
#anchorlight .al-star {
  position: relative; z-index: 1; background: none; border: none; cursor: pointer;
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px;
  color: var(--al-muted-dim); flex: none; transition: color .16s ease, background .16s ease;
}
#anchorlight .al-star:hover { background: rgba(255,255,255,.05); color: var(--al-blue-bright); }
#anchorlight .al-star svg { width: 19px; height: 19px; }
#anchorlight .al-star[aria-pressed="true"] { color: #fbbf24; }
#anchorlight .al-star[aria-pressed="true"] svg { filter: drop-shadow(0 0 7px rgba(251,191,36,.55)); }
#anchorlight .al-empty {
  grid-column: 1 / -1; text-align: center; padding: 62px 20px; color: var(--al-muted);
  border: 1px dashed var(--al-line); border-radius: var(--al-radius-lg);
}
#anchorlight .al-notice {
  border: 1px solid rgba(251,191,36,.35); background: rgba(251,191,36,.07);
  color: #fcd34d; border-radius: 12px; padding: .8rem 1rem; font-size: .88rem; margin-bottom: 20px;
}

/* ——— dialog ——— */
#anchorlight dialog.al-dialog {
  border: 1px solid var(--al-line); background: var(--al-surface); color: var(--al-ink);
  border-radius: var(--al-radius-lg); padding: 0; width: min(620px, calc(100% - 32px));
  max-height: min(86dvh, 760px); box-shadow: 0 40px 90px -30px rgba(0,0,0,.9);
}
#anchorlight dialog.al-dialog::backdrop { background: rgba(2,4,10,.76); backdrop-filter: blur(4px); }
#anchorlight .al-dialog-inner { padding: 30px; max-height: min(86dvh, 760px); overflow-y: auto; }
#anchorlight .al-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem; }
#anchorlight .al-dialog-head h3 { font-size: 1.45rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.22; }
#anchorlight .al-dialog-close {
  background: rgba(255,255,255,.04); border: 1px solid var(--al-line); cursor: pointer;
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  color: var(--al-muted); flex: none; font-size: 1.1rem; line-height: 1;
}
#anchorlight .al-dialog-close:hover { color: var(--al-ink); border-color: var(--al-blue); }
#anchorlight .al-dialog-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .9rem; }
#anchorlight .al-dialog-body { white-space: pre-wrap; margin-top: 1.4rem; color: #dbe6f7; font-size: 1rem; }
#anchorlight .al-dialog-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.9rem; }
#anchorlight .al-dialog-actions .al-btn { padding: .7rem 1.25rem; font-size: .9rem; }

/* ——— support ——— */
#anchorlight .al-support { background: var(--al-bg-2); border-top: 1px solid var(--al-line-soft); }
#anchorlight .al-support-card {
  border: 1px solid var(--al-line); border-radius: var(--al-radius-lg);
  background: linear-gradient(135deg, rgba(56,189,248,.07), rgba(167,139,250,.05));
  padding: 34px 32px;
}
#anchorlight .al-support-card h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; }
#anchorlight .al-support-card p { color: var(--al-muted); margin-top: .8rem; max-width: 66ch; }

/* ——— footer ——— */
#anchorlight .al-footer { background: var(--al-bg); border-top: 1px solid var(--al-line-soft); padding: 42px 0; }
#anchorlight .al-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
#anchorlight .al-footer small { color: var(--al-muted-dim); font-size: .84rem; }

#anchorlight .al-sr {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  #anchorlight *, #anchorlight *::before, #anchorlight *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ——— multi-page additions ——— */
#anchorlight .al-nav-links a.is-active { color: var(--al-ink); font-weight: 620; }
#anchorlight .al-nav-links a.is-active::after {
  content: ""; display: block; height: 2px; margin-top: 5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--al-blue-bright), transparent);
}
#anchorlight .al-navtoggle {
  display: none; background: rgba(255,255,255,.04); border: 1px solid var(--al-line);
  color: var(--al-ink); width: 40px; height: 38px; border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center; flex: none;
}
#anchorlight .al-navtoggle svg { width: 19px; height: 19px; }
@media (max-width: 860px) {
  #anchorlight .al-navtoggle { display: inline-flex; }
  /* The primary CTA stays visible on phones — hiding it removed the main
     call to action on the smallest screens, where it matters most. */
  #anchorlight .al-nav-inner > .al-btn { padding: .5rem .8rem; font-size: .8rem; }
  #anchorlight .al-nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: rgba(4,6,13,.97); border-bottom: 1px solid var(--al-line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0;
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  }
  #anchorlight .al-nav-links.is-open { display: flex; }
  #anchorlight .al-nav-links a { padding: .85rem 24px; font-size: .98rem; }
  #anchorlight .al-nav-links a.is-active::after { display: none; }
  #anchorlight .al-nav { position: relative; }
}

/* page header for interior pages */
#anchorlight .al-page-head { padding: 66px 0 8px; position: relative; }
#anchorlight .al-page-head::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(620px 300px at 18% 0%, rgba(56,189,248,.14), transparent 62%);
}
#anchorlight .al-page-head > .al-wrap { position: relative; }
#anchorlight .al-page-head h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.1rem); font-weight: 740; letter-spacing: -.026em;
  line-height: 1.1; margin-top: 1.1rem;
}
#anchorlight .al-page-head p { color: var(--al-muted); margin-top: 1rem; max-width: 62ch; font-size: 1.04rem; }

/* prose */
#anchorlight .al-prose { max-width: 66ch; }
#anchorlight .al-prose p { color: #c9d8ec; margin-top: 1.05rem; font-size: 1.02rem; }
#anchorlight .al-prose h2 {
  font-size: 1.4rem; font-weight: 700; letter-spacing: -.018em; margin-top: 2.4rem;
}
#anchorlight .al-prose ul { margin-top: 1rem; }
#anchorlight .al-prose li {
  color: #c9d8ec; position: relative; padding-left: 1.35rem; margin-top: .55rem;
}
#anchorlight .al-prose li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--al-blue); box-shadow: 0 0 8px var(--al-glow);
}
#anchorlight .al-callout {
  border: 1px solid var(--al-line); border-radius: var(--al-radius-lg);
  background: linear-gradient(135deg, rgba(56,189,248,.07), rgba(167,139,250,.05));
  padding: 24px 26px; margin-top: 2rem;
}
#anchorlight .al-callout h2 { margin-top: 0; }

/* forms */
#anchorlight .al-form { max-width: 620px; }
#anchorlight .al-field { margin-top: 1.1rem; }
#anchorlight .al-field label {
  display: block; font-size: .86rem; font-weight: 600; letter-spacing: .02em;
  margin-bottom: .4rem; color: var(--al-ink);
}
#anchorlight .al-field input, #anchorlight .al-field textarea, #anchorlight .al-field select {
  width: 100%; padding: .78rem .95rem; font: inherit; font-size: .96rem;
  background: var(--al-surface); border: 1px solid var(--al-line);
  border-radius: 11px; color: var(--al-ink);
}
#anchorlight .al-field textarea { min-height: 150px; resize: vertical; }
#anchorlight .al-field input:focus, #anchorlight .al-field textarea:focus, #anchorlight .al-field select:focus {
  outline: none; border-color: var(--al-blue); box-shadow: 0 0 0 3px rgba(56,189,248,.15);
}
#anchorlight .al-field-hint { font-size: .82rem; color: var(--al-muted-dim); margin-top: .35rem; }
#anchorlight .al-form .al-btn { margin-top: 1.5rem; }

/* two-column split */
#anchorlight .al-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: start; }
@media (max-width: 900px) { #anchorlight .al-split { grid-template-columns: 1fr; gap: 36px; } }

/* 404 */
#anchorlight .al-notfound { text-align: center; padding: 110px 0 120px; }
#anchorlight .al-notfound .al-orb { max-width: 260px; margin: 0 auto 2rem; }
#anchorlight .al-callout p { color: var(--al-muted); margin-top: .8rem; }
#anchorlight .al-callout p:first-of-type { margin-top: .6rem; }
