/* =========================================================================
   Attack Angle Lab — design system
   Steel-blue night sky base, lime-green instrument accent. Futura-led
   display stack paired with a Charter-led body serif for a technical /
   surveyor's-notebook feel. Contour-line topography, protractor arcs,
   and clipped "machined" corners replace rounded cards throughout.
   Hand-written, no framework, no CDN.
   ========================================================================= */

:root {
  --aal-ink-950: #060c12;
  --aal-ink-900: #0b1620;
  --aal-ink-850: #0f1e2b;
  --aal-ink-800: #14283a;
  --aal-ink-700: #1c3850;
  --aal-line: rgba(210, 230, 225, 0.09);
  --aal-line-strong: rgba(210, 230, 225, 0.2);
  --aal-lime: #c3e857;
  --aal-lime-light: #dbf58a;
  --aal-lime-dark: #93b52e;
  --aal-steel: #5b93b5;
  --aal-steel-light: #8ec2e0;
  --aal-white: #f7faf6;
  --aal-fog-100: #e7edea;
  --aal-fog-300: #b9c6c2;
  --aal-fog-500: #7f8f8c;
  --aal-fog-600: #5e6c69;

  --aal-font-display: "Futura", "Century Gothic", "Trebuchet MS", "Segoe UI Semibold", "Segoe UI", sans-serif;
  --aal-font-body: "Charter", "Iowan Old Style", Georgia, "Segoe UI", sans-serif;
  --aal-font-mono: "SF Mono", "Cascadia Mono", Consolas, Menlo, monospace;

  --aal-wrap-w: 1180px;
  --aal-cut: 14px;
  --aal-cut-sm: 8px;
  --aal-shadow-sm: 0 3px 12px rgba(2, 8, 14, 0.4);
  --aal-shadow-md: 0 18px 40px rgba(2, 8, 14, 0.5);
  --aal-shadow-lime: 0 16px 34px rgba(195, 232, 87, 0.14);
  --aal-ease: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.aal-body {
  margin: 0;
  font-family: var(--aal-font-body);
  color: var(--aal-fog-300);
  background: var(--aal-ink-900);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--aal-font-display);
  color: var(--aal-white);
  line-height: 1.14;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: 0.005em;
}
p { margin: 0 0 1em; color: var(--aal-fog-300); }
address { font-style: normal; }

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

.aal-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--aal-lime);
  color: var(--aal-ink-950);
  padding: 0.75em 1.25em;
  z-index: 1000;
  font-weight: 700;
}
.aal-skip:focus { left: 1em; top: 1em; }

.aal-wrap {
  width: 100%;
  max-width: var(--aal-wrap-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons (clipped corner) ---------- */
.aal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85em 1.7em;
  clip-path: polygon(var(--aal-cut-sm) 0, 100% 0, 100% calc(100% - var(--aal-cut-sm)), calc(100% - var(--aal-cut-sm)) 100%, 0 100%, 0 var(--aal-cut-sm));
  font-weight: 700;
  font-family: var(--aal-font-display);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: transform var(--aal-ease), box-shadow var(--aal-ease), background var(--aal-ease), color var(--aal-ease), border-color var(--aal-ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.aal-btn--lime { background: var(--aal-lime); color: var(--aal-ink-950); }
.aal-btn--lime:hover { background: var(--aal-lime-light); transform: translateY(-2px); box-shadow: var(--aal-shadow-lime); }
.aal-btn--ghost { background: transparent; border-color: var(--aal-line-strong); color: var(--aal-fog-100); }
.aal-btn--ghost:hover { border-color: var(--aal-lime); color: var(--aal-lime-light); transform: translateY(-2px); }
.aal-btn--panel { background: var(--aal-ink-700); color: var(--aal-fog-100); border-color: var(--aal-line); }
.aal-btn--panel:hover { border-color: var(--aal-lime); transform: translateY(-2px); }
.aal-btn--block { display: flex; justify-content: center; width: 100%; }

/* ---------- Top strip ---------- */
.aal-strip { background: var(--aal-ink-950); border-bottom: 1px solid var(--aal-line); }
.aal-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  font-size: 0.78rem;
  font-family: var(--aal-font-mono);
  color: var(--aal-fog-500);
}
.aal-strip__elev { color: var(--aal-lime-light); letter-spacing: 0.01em; }
.aal-strip__right { display: flex; align-items: center; gap: 10px; }
.aal-strip__right a { color: var(--aal-fog-300); font-weight: 600; }
.aal-strip__right a:hover { color: var(--aal-lime-light); }
.aal-strip__sep { color: var(--aal-line-strong); }
@media (max-width: 720px) { .aal-strip { display: none; } }

/* ---------- Masthead ---------- */
.aal-mast {
  background: rgba(11, 22, 32, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--aal-line);
  position: sticky;
  top: 0;
  z-index: 200;
}
.aal-mast__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.aal-brand { display: flex; align-items: center; gap: 12px; }
.aal-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  clip-path: polygon(var(--aal-cut-sm) 0, 100% 0, 100% calc(100% - var(--aal-cut-sm)), calc(100% - var(--aal-cut-sm)) 100%, 0 100%, 0 var(--aal-cut-sm));
  border: 2px solid var(--aal-lime);
  color: var(--aal-lime-light);
  font-weight: 700;
  font-size: 1.35rem;
  font-family: var(--aal-font-display);
  background: rgba(195, 232, 87, 0.08);
}
.aal-brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.aal-brand__name { color: var(--aal-white); font-size: 1.18rem; font-weight: 700; font-family: var(--aal-font-display); }
.aal-brand__tag { color: var(--aal-fog-500); font-size: 0.66rem; letter-spacing: 0.09em; text-transform: uppercase; }

.aal-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 260;
}
.aal-burger span { display: block; height: 2px; background: var(--aal-fog-100); border-radius: 1px; transition: transform var(--aal-ease), opacity var(--aal-ease); }
.aal-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.aal-burger.is-open span:nth-child(2) { opacity: 0; }
.aal-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.aal-nav { display: flex; align-items: center; gap: 28px; }
.aal-nav__list { display: flex; align-items: center; gap: 20px; }
.aal-nav__item > a {
  color: var(--aal-fog-300);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 8px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color var(--aal-ease), color var(--aal-ease);
}
.aal-nav__item > a:hover,
.aal-nav__item.is-here > a { border-color: var(--aal-lime); color: var(--aal-white); }
.aal-nav__cta { padding: 0.6em 1.25em; font-size: 0.82rem; }

/* Mobile: full-screen centered fade/scale overlay (not a slide-in side panel) */
@media (max-width: 980px) {
  .aal-burger { display: flex; }
  .aal-nav {
    position: fixed;
    inset: 0;
    background: rgba(6, 12, 18, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.97);
    transition: opacity var(--aal-ease), transform var(--aal-ease), visibility 0s linear var(--aal-ease);
    z-index: 250;
  }
  .aal-nav.is-open { opacity: 1; visibility: visible; transform: scale(1); transition-delay: 0s; }
  .aal-nav__list { flex-direction: column; align-items: center; gap: 6px; width: 100%; }
  .aal-nav__item { width: 100%; text-align: center; }
  .aal-nav__item > a { display: block; padding: 14px 0; font-size: 1.3rem; font-family: var(--aal-font-display); }
  .aal-nav__cta { margin-top: 22px; }
}
html.aal-locked, html.aal-locked body { overflow: hidden; }

/* ---------- Hero ---------- */
.aal-hero {
  position: relative;
  background: var(--aal-ink-900);
  padding: 84px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--aal-line);
}
.aal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(circle at 86% 8%, rgba(195, 232, 87, 0.05) 0, rgba(195, 232, 87, 0.05) 1px, transparent 1px, transparent 34px);
  pointer-events: none;
}
.aal-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 54px;
  align-items: center;
  padding-bottom: 60px;
}
.aal-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aal-lime-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: var(--aal-font-display);
  margin-bottom: 18px;
}
.aal-hero__eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--aal-lime); box-shadow: 0 0 0 4px rgba(195, 232, 87, 0.18); }
.aal-hero h1 { font-size: clamp(2.05rem, 4vw, 3.05rem); max-width: 18ch; }
.aal-hero__lede { color: var(--aal-fog-300); font-size: 1.06rem; max-width: 50ch; }
.aal-hero__actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* ---------- Attack angle protractor gauge ---------- */
.aal-gauge-panel {
  position: relative;
  background: var(--aal-ink-850);
  border: 1px solid var(--aal-line-strong);
  clip-path: polygon(var(--aal-cut) 0, 100% 0, 100% calc(100% - var(--aal-cut)), calc(100% - var(--aal-cut)) 100%, 0 100%, 0 var(--aal-cut));
  padding: 28px 26px 24px;
  box-shadow: var(--aal-shadow-md);
}
.aal-gauge-panel__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--aal-fog-500);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-family: var(--aal-font-mono);
}
.aal-live-dot { display: inline-flex; align-items: center; gap: 6px; color: var(--aal-lime-light); }
.aal-live-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--aal-lime); animation: aal-pulse 1.8s infinite; }
@keyframes aal-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.aal-arc { position: relative; width: 100%; height: 128px; margin-bottom: 8px; }
.aal-arc__face {
  width: 100%;
  height: 256px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--aal-ink-700) 0deg, var(--aal-ink-700) 180deg, transparent 180deg);
  position: relative;
  overflow: hidden;
}
.aal-arc__fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--aal-lime) 0deg, var(--aal-lime) var(--aal-arc-deg, 78deg), transparent var(--aal-arc-deg, 78deg), transparent 180deg);
}
.aal-arc__mask {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 10%;
  bottom: -100%;
  background: var(--aal-ink-850);
  border-radius: 50%;
}
.aal-arc__needle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 46%;
  background: var(--aal-white);
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(var(--aal-needle-deg, -12deg));
}
.aal-arc__needle::after { content: ""; position: absolute; top: -4px; left: -3px; width: 8px; height: 8px; border-radius: 50%; background: var(--aal-white); }
.aal-arc__readout {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  text-align: center;
}
.aal-arc__val { display: block; font-family: var(--aal-font-mono); font-size: 1.5rem; font-weight: 700; color: var(--aal-lime-light); }
.aal-arc__label { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--aal-fog-500); }
.aal-arc__scale { display: flex; justify-content: space-between; font-family: var(--aal-font-mono); font-size: 0.66rem; color: var(--aal-fog-600); margin-top: 4px; }

.aal-metric-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--aal-line); font-family: var(--aal-font-mono); }
.aal-metric-row:last-child { border-bottom: none; }
.aal-metric-row span:first-child { color: var(--aal-fog-500); font-size: 0.84rem; font-family: var(--aal-font-body); }
.aal-metric-row span:last-child { color: var(--aal-white); font-weight: 700; }

@media (max-width: 900px) { .aal-hero__grid { grid-template-columns: 1fr; padding-bottom: 42px; } }

/* ---------- Stats ruler ---------- */
.aal-ruler { background: var(--aal-ink-850); border-bottom: 1px solid var(--aal-line); }
.aal-ruler__row { display: grid; grid-template-columns: repeat(4, 1fr); padding: 28px 0; }
.aal-ruler__item { text-align: center; padding: 4px 12px; position: relative; }
.aal-ruler__item::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: var(--aal-line); }
.aal-ruler__item:first-child::before { display: none; }
.aal-ruler__num { display: block; font-family: var(--aal-font-mono); font-size: 1.6rem; font-weight: 700; color: var(--aal-lime-light); }
.aal-ruler__label { font-size: 0.74rem; color: var(--aal-fog-500); text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 780px) {
  .aal-ruler__row { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .aal-ruler__item:nth-child(3)::before { display: none; }
}

/* ---------- Page header (non-home) ---------- */
.aal-page-header {
  position: relative;
  background: var(--aal-ink-850);
  padding: 54px 0 62px;
  border-bottom: 1px solid var(--aal-line);
}
.aal-crumb { color: var(--aal-lime-light); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; font-weight: 700; font-family: var(--aal-font-display); }
.aal-page-header h1 { font-size: clamp(1.75rem, 3.4vw, 2.45rem); max-width: 25ch; }
.aal-page-header .aal-lede { color: var(--aal-fog-300); max-width: 62ch; font-size: 1.02rem; margin: 0; }

/* ---------- Sections ---------- */
.aal-section { padding: 76px 0; }
.aal-section--alt { background: var(--aal-ink-850); border-top: 1px solid var(--aal-line); border-bottom: 1px solid var(--aal-line); }
.aal-section--tight { padding: 52px 0; }
.aal-section__head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.aal-section__head.aal-left { margin: 0 0 36px; text-align: left; }
.aal-eyebrow {
  display: inline-block;
  color: var(--aal-lime-light);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 12px;
  font-family: var(--aal-font-display);
}
.aal-section__head h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); }
.aal-section__head p { font-size: 1.01rem; }

/* ---------- Grid / cards ---------- */
.aal-grid { display: grid; gap: 22px; }
.aal-grid--2 { grid-template-columns: repeat(2, 1fr); }
.aal-grid--3 { grid-template-columns: repeat(3, 1fr); }
.aal-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .aal-grid--3, .aal-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .aal-grid--2, .aal-grid--3, .aal-grid--4 { grid-template-columns: 1fr; } }

.aal-card {
  background: var(--aal-ink-850);
  border: 1px solid var(--aal-line);
  clip-path: polygon(var(--aal-cut-sm) 0, 100% 0, 100% calc(100% - var(--aal-cut-sm)), calc(100% - var(--aal-cut-sm)) 100%, 0 100%, 0 var(--aal-cut-sm));
  padding: 26px 24px;
  transition: transform var(--aal-ease), box-shadow var(--aal-ease), border-color var(--aal-ease);
}
.aal-card:hover { transform: translateY(-4px); box-shadow: var(--aal-shadow-md); border-color: var(--aal-lime); }
.aal-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  background: rgba(195, 232, 87, 0.08);
  color: var(--aal-lime-light);
  font-weight: 700;
  font-family: var(--aal-font-mono);
  font-size: 0.92rem;
  margin-bottom: 16px;
  border: 1px solid rgba(195, 232, 87, 0.3);
}
.aal-card h3 { font-size: 1.13rem; }
.aal-card p:last-child { margin-bottom: 0; }
.aal-card__link { display: inline-block; margin-top: 8px; color: var(--aal-lime-light); font-weight: 700; font-size: 0.87rem; font-family: var(--aal-font-display); border-bottom: 1px solid transparent; transition: border-color var(--aal-ease); }
.aal-card__link:hover { border-color: var(--aal-lime-light); }

/* ---------- Comparison bars ---------- */
.aal-bars { display: flex; flex-direction: column; gap: 17px; }
.aal-bar-row__label { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--aal-fog-300); margin-bottom: 7px; font-family: var(--aal-font-mono); }
.aal-bar-row__label strong { color: var(--aal-white); }
.aal-bar-track { height: 9px; background: var(--aal-ink-700); overflow: hidden; }
.aal-bar-fill { height: 100%; background: linear-gradient(90deg, var(--aal-lime-dark), var(--aal-lime)); }
.aal-bar-fill--muted { background: var(--aal-fog-600); }

/* ---------- Vertical timeline (process steps) ---------- */
.aal-vtimeline { position: relative; display: flex; flex-direction: column; gap: 0; max-width: 720px; }
.aal-vstep { position: relative; padding: 0 0 40px 56px; }
.aal-vstep:last-child { padding-bottom: 0; }
.aal-vstep::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: -2px;
  width: 1px;
  background: var(--aal-line-strong);
}
.aal-vstep:last-child::before { display: none; }
.aal-vstep__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--aal-ink-900);
  border: 2px solid var(--aal-lime);
  color: var(--aal-lime-light);
  font-weight: 700;
  font-family: var(--aal-font-mono);
}
.aal-vstep h3 { font-size: 1.08rem; margin-bottom: 6px; }
.aal-vstep p { margin-bottom: 0; }

/* ---------- Table (pricing / spec sheets) ---------- */
.aal-table-wrap { overflow-x: auto; border: 1px solid var(--aal-line); }
.aal-table { width: 100%; border-collapse: collapse; background: var(--aal-ink-850); min-width: 560px; }
.aal-table th, .aal-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--aal-line); font-size: 0.92rem; }
.aal-table thead th { background: var(--aal-ink-950); color: var(--aal-lime-light); font-weight: 700; text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.05em; font-family: var(--aal-font-display); }
.aal-table tbody tr:hover { background: var(--aal-ink-700); }
.aal-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Pricing cards ---------- */
.aal-pricing-card { display: flex; flex-direction: column; }
.aal-pricing-card .aal-price { font-size: 2rem; font-weight: 700; color: var(--aal-white); margin: 8px 0 4px; font-family: var(--aal-font-mono); }
.aal-pricing-card .aal-price span { font-size: 0.9rem; color: var(--aal-fog-500); font-weight: 500; font-family: var(--aal-font-body); }
.aal-pricing-card ul { margin: 18px 0; display: flex; flex-direction: column; gap: 10px; }
.aal-pricing-card li { padding-left: 22px; position: relative; font-size: 0.91rem; color: var(--aal-fog-300); }
.aal-pricing-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--aal-lime); font-weight: 700; }
.aal-pricing-card--featured { border-color: var(--aal-lime); box-shadow: var(--aal-shadow-lime); position: relative; }
.aal-pricing-card--featured::before {
  content: "Most Booked";
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--aal-lime);
  color: var(--aal-ink-950);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-family: var(--aal-font-display);
}

/* ---------- Testimonials ---------- */
.aal-testimonial { background: var(--aal-ink-850); border: 1px solid var(--aal-line); clip-path: polygon(var(--aal-cut-sm) 0, 100% 0, 100% calc(100% - var(--aal-cut-sm)), calc(100% - var(--aal-cut-sm)) 100%, 0 100%, 0 var(--aal-cut-sm)); padding: 26px 24px; position: relative; }
.aal-testimonial p { color: var(--aal-fog-100); font-size: 0.97rem; }
.aal-testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.aal-avatar {
  width: 42px;
  height: 42px;
  background: rgba(195, 232, 87, 0.1);
  border: 1px solid rgba(195, 232, 87, 0.3);
  color: var(--aal-lime-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--aal-font-display);
}
.aal-testimonial__author strong { display: block; color: var(--aal-white); font-size: 0.93rem; }
.aal-testimonial__author span { font-size: 0.79rem; color: var(--aal-fog-500); }
.aal-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.aal-rating__track { width: 74px; height: 6px; background: var(--aal-ink-700); }
.aal-rating__fill { height: 100%; background: var(--aal-lime); }
.aal-rating__num { font-family: var(--aal-font-mono); font-size: 0.78rem; color: var(--aal-lime-light); }

/* ---------- CTA band ---------- */
.aal-cta { background: var(--aal-ink-950); position: relative; text-align: center; padding: 64px 0; border-top: 1px solid var(--aal-line); overflow: hidden; }
.aal-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 50% 120%, rgba(195, 232, 87, 0.06) 0, rgba(195, 232, 87, 0.06) 1px, transparent 1px, transparent 30px);
  pointer-events: none;
}
.aal-cta__inner { position: relative; }
.aal-cta h2 { color: var(--aal-white); }
.aal-cta p { color: var(--aal-fog-300); max-width: 54ch; margin: 0 auto 24px; }
.aal-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Team ---------- */
.aal-team-card { text-align: center; }
.aal-team-photo {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  background: var(--aal-ink-700);
  color: var(--aal-lime-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--aal-font-display);
  border: 2px solid var(--aal-lime);
  clip-path: polygon(var(--aal-cut-sm) 0, 100% 0, 100% calc(100% - var(--aal-cut-sm)), calc(100% - var(--aal-cut-sm)) 100%, 0 100%, 0 var(--aal-cut-sm));
}
.aal-team-role { color: var(--aal-lime-light); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; display: block; font-family: var(--aal-font-display); }

/* ---------- Brand tiles ---------- */
.aal-brand-tile { border: 1px solid var(--aal-line); background: var(--aal-ink-850); padding: 20px; transition: border-color var(--aal-ease), transform var(--aal-ease); }
.aal-brand-tile:hover { border-color: var(--aal-lime); transform: translateY(-3px); }
.aal-brand-tile__mark {
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--aal-font-mono);
  color: var(--aal-lime-light);
  border: 2px solid var(--aal-line-strong);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.aal-brand-tile strong { display: block; color: var(--aal-white); margin-bottom: 4px; font-family: var(--aal-font-display); }
.aal-brand-tile span { font-size: 0.8rem; color: var(--aal-fog-500); }

/* ---------- FAQ (details/summary, no JS required) ---------- */
.aal-faq-item { border-bottom: 1px solid var(--aal-line); padding: 18px 0; }
.aal-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--aal-white);
  font-size: 1rem;
  font-family: var(--aal-font-display);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.aal-faq-item summary::-webkit-details-marker { display: none; }
.aal-faq-item summary::after { content: "+"; font-size: 1.25rem; color: var(--aal-lime); }
.aal-faq-item[open] summary::after { content: "\2212"; }
.aal-faq-item p { margin-top: 12px; }

/* ---------- Forms ---------- */
.aal-form-card { background: var(--aal-ink-850); border: 1px solid var(--aal-line); clip-path: polygon(var(--aal-cut) 0, 100% 0, 100% calc(100% - var(--aal-cut)), calc(100% - var(--aal-cut)) 100%, 0 100%, 0 var(--aal-cut)); padding: 32px; box-shadow: var(--aal-shadow-sm); }
.aal-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 640px) { .aal-form-row { grid-template-columns: 1fr; } }
.aal-form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.aal-form-field label { font-weight: 700; font-size: 0.87rem; color: var(--aal-fog-100); }
.aal-form-field input, .aal-form-field select, .aal-form-field textarea {
  font-family: var(--aal-font-body);
  font-size: 0.94rem;
  padding: 12px 14px;
  border: 1px solid var(--aal-line-strong);
  background: var(--aal-ink-900);
  color: var(--aal-fog-100);
  transition: border-color var(--aal-ease), box-shadow var(--aal-ease);
}
.aal-form-field input:focus, .aal-form-field select:focus, .aal-form-field textarea:focus {
  outline: none;
  border-color: var(--aal-lime);
  box-shadow: 0 0 0 3px rgba(195, 232, 87, 0.18);
}
.aal-form-note { font-size: 0.83rem; color: var(--aal-fog-500); }

/* ---------- Locate panel (contact / booking) ---------- */
.aal-locate { position: relative; height: 216px; background: var(--aal-ink-850); overflow: hidden; border: 1px solid var(--aal-line-strong); }
.aal-locate--lg { height: 292px; }
.aal-locate__contours {
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 62% 42%, rgba(195, 232, 87, 0.12) 0, rgba(195, 232, 87, 0.12) 1px, transparent 1px, transparent 22px);
}
.aal-locate__brackets::before, .aal-locate__brackets::after { content: ""; position: absolute; width: 24px; height: 24px; border: 2px solid var(--aal-lime); }
.aal-locate__brackets::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.aal-locate__brackets::after { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.aal-locate__pin { position: absolute; top: 42%; left: 62%; width: 13px; height: 13px; background: var(--aal-lime); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 8px rgba(195, 232, 87, 0.16); }
.aal-locate__coords { position: absolute; bottom: 12px; left: 14px; color: var(--aal-fog-500); font-size: 0.7rem; letter-spacing: 0.03em; font-variant-numeric: tabular-nums; font-family: var(--aal-font-mono); }
.aal-locate__label { position: absolute; top: 12px; right: 16px; color: var(--aal-lime-light); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--aal-font-display); }

/* ---------- Blog ---------- */
.aal-post-card { display: flex; flex-direction: column; }
.aal-post-meta { font-size: 0.76rem; color: var(--aal-lime-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; font-weight: 700; font-family: var(--aal-font-display); }
.aal-post-card h3 { font-size: 1.1rem; }
.aal-article { max-width: 730px; margin: 0 auto; }
.aal-article h2 { margin-top: 1.6em; font-size: 1.42rem; }
.aal-article h3 { margin-top: 1.3em; font-size: 1.13rem; }
.aal-article ul, .aal-article ol { margin: 0 0 1.2em; padding-left: 1.4em; color: var(--aal-fog-300); }
.aal-article li { margin-bottom: 0.5em; }
.aal-article blockquote { border-left: 3px solid var(--aal-lime); margin: 1.6em 0; padding: 0.4em 0 0.4em 1.4em; font-style: italic; color: var(--aal-fog-100); font-size: 1.05rem; }
.aal-article-header { text-align: center; margin-bottom: 34px; }
.aal-article-header .aal-post-meta { margin-bottom: 14px; }

/* ---------- Footer ---------- */
.aal-footer { background: var(--aal-ink-950); color: var(--aal-fog-500); padding: 60px 0 0; }
.aal-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 42px; border-bottom: 1px solid var(--aal-line); }
@media (max-width: 960px) { .aal-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .aal-footer__grid { grid-template-columns: 1fr; } }
.aal-footer__col h3 { color: var(--aal-lime-light); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; font-family: var(--aal-font-display); }
.aal-footer__brand .aal-brand__name { display: block; color: var(--aal-white); font-size: 1.22rem; margin-bottom: 12px; }
.aal-footer__badges { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.aal-chip { border: 1px solid var(--aal-line-strong); padding: 6px 10px; font-size: 0.72rem; color: var(--aal-lime-light); display: inline-block; width: fit-content; font-family: var(--aal-font-mono); }
.aal-footer address { font-size: 0.89rem; margin-bottom: 10px; }
.aal-footer a:hover { color: var(--aal-lime-light); }
.aal-hours li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.83rem; padding: 4px 0; }
.aal-footer__links li { margin-bottom: 8px; font-size: 0.87rem; }
.aal-footer__bottom { padding: 20px 0; }
.aal-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.77rem; font-family: var(--aal-font-mono); }

/* ---------- 404 ---------- */
.aal-error { text-align: center; padding: 104px 0; }
.aal-error .aal-error-code { font-size: 5.4rem; font-weight: 700; color: var(--aal-lime); line-height: 1; font-family: var(--aal-font-mono); }
.aal-error h1 { margin-top: 8px; }

/* ---------- Reveal on scroll — progressive enhancement -----------------
   Hidden only while .js-on is present on <html>; if JS fails to run, the
   .js-on class never lands and everything below stays visible by default. */
.js-on .aal-rise { opacity: 0; transform: translateY(16px); transition: opacity 520ms ease, transform 520ms ease; }
.js-on .aal-rise.is-shown { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.aal-text-center { text-align: center; }
.aal-mt-0 { margin-top: 0; }
.aal-mb-0 { margin-bottom: 0; }
.aal-check-list li { padding-left: 26px; position: relative; margin-bottom: 10px; }
.aal-check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--aal-lime); font-weight: 700; }
.aal-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
@media (max-width: 800px) { .aal-two-col { grid-template-columns: 1fr; } }
.aal-tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
