/* assets/apd.css — CLEAN BASELINE (REPLACE ENTIRE FILE) */

/* =========================
   TOKENS
========================= */
:root{
  --bg:#000;
  --fg:#fff;
  --muted:#cfcfcf;
  --line:rgba(255,255,255,.12);
  --gold:#d4af37;
  --green:#0b6b45;

  --radius:18px;
  --radius-sm:14px;
  --shadow:0 10px 40px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Better defaults */
img{ max-width:100%; height:auto; }
video{ max-width:100%; }
a{ color:inherit; text-decoration:none; }
p{ color:var(--muted); margin:0 0 12px; }
.wrap{ max-width:1100px; margin:0 auto; padding:18px; }
.center{ text-align:center; }

/* Accessibility */
:focus-visible{
  outline:2px solid rgba(212,175,55,.85);
  outline-offset:3px;
  border-radius:10px;
}

/* Skip link (accessibility) */
.skip-link{
  position:absolute;
  left:-9999px;
  top:12px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.85);
  color:var(--gold);
  z-index:9999;
}
.skip-link:focus{
  left:12px;
  outline:2px solid rgba(212,175,55,.85);
  outline-offset:3px;
}

/* =========================
   HEADER / NAV
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-stack{
  flex-wrap: wrap;
}

.brand-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,107,69,.18);
  border: 1px solid rgba(11,107,69,.6);
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .08em;
  white-space: nowrap;
}

.brand-name{
  color: var(--fg);
  font-weight: 750;
  font-size: .92rem;
  white-space: nowrap;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  width:100%;
  flex-wrap:wrap;
  overflow-x:visible;
  white-space:nowrap;
  padding-bottom:4px;
}

.nav-link{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  opacity:.85;
  padding:6px 8px;
  border-radius:12px;
  font-size:.95rem;
  white-space:nowrap;
  transition:background .12s ease, color .12s ease, opacity .12s ease;
}

.nav-link:hover{
  color:inherit;
  opacity:.85;
  background:transparent;
}

.nav-link.active{
  color:var(--fg);
  opacity:.85;
  background:transparent;
}

.nav-link.active:hover{
  color:var(--green);
  opacity:1;
  background:rgba(11,107,69,.12);
}

/* =========================
   TYPOGRAPHY
========================= */
h1,h2,h3{ letter-spacing:.01em; margin:0 0 10px; }
.h2-gold{ color:var(--gold); }
.h2-green{ color:var(--green); }

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:10px 14px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  font-weight:950;
  cursor:pointer;
  user-select:none;
  transition:transform .08s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
}

.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); opacity:.95; }

.btn-primary{
  background:rgba(212,175,55,.15);
  border-color:rgba(212,175,55,.6);
}
.btn-primary:hover{
  background:rgba(212,175,55,.22);
  border-color:rgba(212,175,55,.75);
}

.btn-ghost{
  background:rgba(255,255,255,.06);
  border-color:var(--line);
}
.btn-ghost:hover{ background:rgba(255,255,255,.10); }

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-start;
  margin-top:14px;
}

/* =========================
   HERO (CLEAN, NO VIDEO)
========================= */
.apdd-hero{
  border-bottom:1px solid var(--line);
  background:#000;
}

.apdd-hero-overlay{
  padding:4.5rem 18px;
}

.hero-title{
  color:var(--gold);
  font-size:clamp(2.2rem, 4.5vw, 3.6rem);
  text-shadow:0 14px 40px rgba(0,0,0,.65);
  margin:0 0 10px;
}

.hero-accent{
  display:block;
  margin-top:8px;
  color:var(--green);
  font-weight:950;
  letter-spacing:.10em;
  font-size:.95rem;
  text-transform:uppercase;
}

.hero-sub{
  margin:0;
  text-shadow:0 10px 30px rgba(0,0,0,.55);
}

/* Infrastructure page hero variation */
.hero-infrastructure{
  background:linear-gradient(
    135deg,
    rgba(0,0,0,.92),
    rgba(10,25,15,.95)
  );
}

/* =========================
   SECTIONS
========================= */
.seo-section{
  padding:2.5rem 0;
  background:#000;
  border-top:1px solid rgba(255,255,255,.08);
}

/* readable width defaults */
.seo-section p,
.seo-section h1,
.seo-section h2,
.seo-section h3,
.apdd-about-polish p,
.apdd-section p,
.apdd-about-cta p,
.apdd-lead,
.apdd-emphasis,
.apd-doctrine-corollary{
  max-width:72ch;
  margin-left:auto;
  margin-right:auto;
}

/* lists */
.seo-list{
  max-width:72ch;
  margin:14px auto 0;
  padding-left:18px;
  color:var(--muted);
}
.seo-list li{ margin:8px 0; }

/* callouts */
.gold-callout{
  max-width:72ch;
  margin:16px auto 0;
  padding:14px;
  border-radius:var(--radius);
  border:1px solid rgba(212,175,55,.45);
  background:rgba(212,175,55,.10);
  color:var(--muted);
}

.apdd-emphasis{
  padding:12px 14px;
  border-radius:var(--radius);
  border:1px solid rgba(212,175,55,.35);
  background:rgba(212,175,55,.08);
}

/* =========================
   PLANS (CARDS)
========================= */
.apdd-plan-visual{
  margin:22px 0 10px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.apdd-plan-visual img{
  width:100%;
  display:block;
}

.apdd-plans-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:16px;
}

.apdd-plan{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.apdd-plan-head{
  padding:16px 16px 10px;
  border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.35);
}

.apdd-plan-title{
  margin:0 0 6px;
  color:var(--gold);
  font-size:1.15rem;
  font-weight:950;
  letter-spacing:.02em;
}

.apdd-plan-sub{
  margin:0;
  color:var(--muted);
}

.apdd-plan-body{
  padding:14px 16px 16px;
}

.apdd-plan-body ul{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.apdd-plan-body li{
  margin:7px 0;
}

.apdd-plan-foot{
  padding:14px 16px 16px;
  border-top:1px solid var(--line);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.apdd-plan-tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.45);
  background:rgba(212,175,55,.10);
  color:var(--muted);
  font-weight:750;
  letter-spacing:.04em;
  font-size:.85rem;
}

/* =========================
   FEATURE IMAGE / VISUAL BLOCKS
========================= */
.apdd-feature-image{
  padding:2.75rem 0;
  background:#000;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.apdd-page-visual{
  padding:3rem 0;
  background:#000;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.apdd-hero-still{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

/* =========================
   SPEED & SECURITY
========================= */
.apdd-speed-security{
  padding:2.75rem 0;
  background:#000;
}

.apdd-ss-media{
  position:relative;
  max-width:1100px;
  width:100%;
  margin:0 auto;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.apdd-ss-media img{
  width:100%;
  height:auto;
  display:block;
}

.apdd-ss-label{
  position:absolute;
  bottom:12%;
  font-weight:950;
  letter-spacing:.14em;
  font-size:clamp(1rem, 2.2vw, 1.6rem);
  color:var(--gold);
  text-shadow:0 2px 14px rgba(0,0,0,.65);
}

.apdd-ss-label.speed{ left:22%; }
.apdd-ss-label.security{ right:22%; }

/* =========================
   JOIN GATE (apd-ack-*)
========================= */
.apd-ack{
  padding:2.5rem 0 3rem;
  background:#000;
}

.apd-ack-lead{
  max-width:72ch;
  margin:0 auto 14px;
  color:var(--muted);
}

.apd-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:12px auto 0;
  max-width:72ch;
  color:var(--muted);
}
.apd-meta-dot{ opacity:.7; }

.apd-ack-form{
  max-width:900px;
  margin:18px auto 0;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.apd-ack-list{
  padding:16px 16px 6px;
  border-bottom:1px solid var(--line);
}

.apd-ack-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px;
  border-radius:12px;
  color:var(--muted);
}

.apd-ack-item:hover{
  background:rgba(255,255,255,.04);
}

.apd-ack-check{
  margin-top:3px;
  transform:scale(1.05);
}

.apd-ack-sign{
  padding:16px;
}

.apd-ack-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}

.apd-ack-field span{
  display:block;
  font-weight:750;
  color:var(--fg);
  margin-bottom:6px;
  font-size:.92rem;
}

.apd-ack-field input{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.55);
  color:var(--fg);
}

.apd-ack-field input::placeholder{ color:rgba(255,255,255,.35); }

.apd-ack-final{
  margin-top:10px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:12px;
}

.apd-ack-note{
  max-width:72ch;
  margin:10px 0 0;
  color:rgba(255,255,255,.55);
  font-size:.92rem;
}

/* =========================
   WEBSITE vs INFRASTRUCTURE: COMPARISON GRID
========================= */
.comparison-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.25rem;
  margin-top:1rem;
}
.comparison-grid h3{ margin:0 0 .5rem; }
.comparison-grid ul{ margin:0; padding-left:1.1rem; }

/* =========================
   FOOTER
========================= */
.site-footer{
  margin-top:64px;
  padding:18px 0;
  border-top:1px solid var(--line);
  color:#aaa;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* assets/apd.css — CLEAN BASELINE (REPLACE ENTIRE FILE) */

/* =========================
   TOKENS
========================= */
:root{
  --bg:#000;
  --fg:#fff;
  --muted:#cfcfcf;
  --line:rgba(255,255,255,.12);
  --gold:#d4af37;
  --green:#0b6b45;

  --radius:18px;
  --radius-sm:14px;
  --shadow:0 10px 40px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Better defaults */
img{ max-width:100%; height:auto; }
video{ max-width:100%; }
a{ color:inherit; text-decoration:none; }
p{ color:var(--muted); margin:0 0 12px; }
.wrap{ max-width:1100px; margin:0 auto; padding:18px; }
.center{ text-align:center; }

/* Accessibility */
:focus-visible{
  outline:2px solid rgba(212,175,55,.85);
  outline-offset:3px;
  border-radius:10px;
}

/* Skip link (accessibility) */
.skip-link{
  position:absolute;
  left:-9999px;
  top:12px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.85);
  color:var(--gold);
  z-index:9999;
}
.skip-link:focus{
  left:12px;
  outline:2px solid rgba(212,175,55,.85);
  outline-offset:3px;
}

/* =========================
   HEADER / NAV
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-stack{
  flex-wrap: wrap;
}

.brand-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,107,69,.18);
  border: 1px solid rgba(11,107,69,.6);
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .08em;
  white-space: nowrap;
}

.brand-name{
  color: var(--fg);
  font-weight: 750;
  font-size: .92rem;
  white-space: nowrap;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  width:100%;
  flex-wrap:wrap;
  overflow-x:visible;
  white-space:nowrap;
  padding-bottom:4px;
}

.nav-link{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  opacity:.85;
  padding:6px 8px;
  border-radius:12px;
  font-size:.95rem;
  white-space:nowrap;
  transition:background .12s ease, color .12s ease, opacity .12s ease;
}

.nav-link:hover{
  color:inherit;
  opacity:.85;
  background:transparent;
}

.nav-link.active{
  color:var(--fg);
  opacity:.85;
  background:transparent;
}

.nav-link.active:hover{
  color:var(--green);
  opacity:1;
  background:rgba(11,107,69,.12);
}

/* =========================
   TYPOGRAPHY
========================= */
h1,h2,h3{ letter-spacing:.01em; margin:0 0 10px; }
.h2-gold{ color:var(--gold); }
.h2-green{ color:var(--green); }

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:10px 14px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  font-weight:950;
  cursor:pointer;
  user-select:none;
  transition:transform .08s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
}

.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); opacity:.95; }

.btn-primary{
  background:rgba(212,175,55,.15);
  border-color:rgba(212,175,55,.6);
}
.btn-primary:hover{
  background:rgba(212,175,55,.22);
  border-color:rgba(212,175,55,.75);
}

.btn-ghost{
  background:rgba(255,255,255,.06);
  border-color:var(--line);
}
.btn-ghost:hover{ background:rgba(255,255,255,.10); }

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-start;
  margin-top:14px;
}

/* =========================
   HERO (CLEAN, NO VIDEO)
========================= */
.apdd-hero{
  border-bottom:1px solid var(--line);
  background:#000;
}

.apdd-hero-overlay{
  padding:4.5rem 18px;
}

.hero-title{
  color:var(--gold);
  font-size:clamp(2.2rem, 4.5vw, 3.6rem);
  text-shadow:0 14px 40px rgba(0,0,0,.65);
  margin:0 0 10px;
}

.hero-accent{
  display:block;
  margin-top:8px;
  color:var(--green);
  font-weight:950;
  letter-spacing:.10em;
  font-size:.95rem;
  text-transform:uppercase;
}

.hero-sub{
  margin:0;
  text-shadow:0 10px 30px rgba(0,0,0,.55);
}

/* Infrastructure page hero variation */
.hero-infrastructure{
  background:linear-gradient(
    135deg,
    rgba(0,0,0,.92),
    rgba(10,25,15,.95)
  );
}

/* =========================
   SECTIONS
========================= */
.seo-section{
  padding:2.5rem 0;
  background:#000;
  border-top:1px solid rgba(255,255,255,.08);
}

/* readable width defaults */
.seo-section p,
.seo-section h1,
.seo-section h2,
.seo-section h3,
.apdd-about-polish p,
.apdd-section p,
.apdd-about-cta p,
.apdd-lead,
.apdd-emphasis,
.apd-doctrine-corollary{
  max-width:72ch;
  margin-left:auto;
  margin-right:auto;
}

/* lists */
.seo-list{
  max-width:72ch;
  margin:14px auto 0;
  padding-left:18px;
  color:var(--muted);
}
.seo-list li{ margin:8px 0; }

/* callouts */
.gold-callout{
  max-width:72ch;
  margin:16px auto 0;
  padding:14px;
  border-radius:var(--radius);
  border:1px solid rgba(212,175,55,.45);
  background:rgba(212,175,55,.10);
  color:var(--muted);
}

.apdd-emphasis{
  padding:12px 14px;
  border-radius:var(--radius);
  border:1px solid rgba(212,175,55,.35);
  background:rgba(212,175,55,.08);
}

/* =========================
   PLANS (CARDS)
========================= */
.apdd-plan-visual{
  margin:22px 0 10px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.apdd-plan-visual img{
  width:100%;
  display:block;
}

.apdd-plans-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:16px;
}

.apdd-plan{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.apdd-plan-head{
  padding:16px 16px 10px;
  border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.35);
}

.apdd-plan-title{
  margin:0 0 6px;
  color:var(--gold);
  font-size:1.15rem;
  font-weight:950;
  letter-spacing:.02em;
}

.apdd-plan-sub{
  margin:0;
  color:var(--muted);
}

.apdd-plan-body{
  padding:14px 16px 16px;
}

.apdd-plan-body ul{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.apdd-plan-body li{
  margin:7px 0;
}

.apdd-plan-foot{
  padding:14px 16px 16px;
  border-top:1px solid var(--line);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.apdd-plan-tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.45);
  background:rgba(212,175,55,.10);
  color:var(--muted);
  font-weight:750;
  letter-spacing:.04em;
  font-size:.85rem;
}

/* =========================
   FEATURE IMAGE / VISUAL BLOCKS
========================= */
.apdd-feature-image{
  padding:2.75rem 0;
  background:#000;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.apdd-page-visual{
  padding:3rem 0;
  background:#000;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.apdd-hero-still{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

/* =========================
   SPEED & SECURITY
========================= */
.apdd-speed-security{
  padding:2.75rem 0;
  background:#000;
}

.apdd-ss-media{
  position:relative;
  max-width:1100px;
  width:100%;
  margin:0 auto;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.apdd-ss-media img{
  width:100%;
  height:auto;
  display:block;
}

.apdd-ss-label{
  position:absolute;
  bottom:12%;
  font-weight:950;
  letter-spacing:.14em;
  font-size:clamp(1rem, 2.2vw, 1.6rem);
  color:var(--gold);
  text-shadow:0 2px 14px rgba(0,0,0,.65);
}

.apdd-ss-label.speed{ left:22%; }
.apdd-ss-label.security{ right:22%; }

/* =========================
   JOIN GATE (apd-ack-*)
========================= */
.apd-ack{
  padding:2.5rem 0 3rem;
  background:#000;
}

.apd-ack-lead{
  max-width:72ch;
  margin:0 auto 14px;
  color:var(--muted);
}

.apd-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:12px auto 0;
  max-width:72ch;
  color:var(--muted);
}
.apd-meta-dot{ opacity:.7; }

.apd-ack-form{
  max-width:900px;
  margin:18px auto 0;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.apd-ack-list{
  padding:16px 16px 6px;
  border-bottom:1px solid var(--line);
}

.apd-ack-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px;
  border-radius:12px;
  color:var(--muted);
}

.apd-ack-item:hover{
  background:rgba(255,255,255,.04);
}

.apd-ack-check{
  margin-top:3px;
  transform:scale(1.05);
}

.apd-ack-sign{
  padding:16px;
}

.apd-ack-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}

.apd-ack-field span{
  display:block;
  font-weight:750;
  color:var(--fg);
  margin-bottom:6px;
  font-size:.92rem;
}

.apd-ack-field input{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.55);
  color:var(--fg);
}

.apd-ack-field input::placeholder{ color:rgba(255,255,255,.35); }

.apd-ack-final{
  margin-top:10px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:12px;
}

.apd-ack-note{
  max-width:72ch;
  margin:10px 0 0;
  color:rgba(255,255,255,.55);
  font-size:.92rem;
}

/* =========================
   WEBSITE vs INFRASTRUCTURE: COMPARISON GRID
========================= */
.comparison-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.25rem;
  margin-top:1rem;
}
.comparison-grid h3{ margin:0 0 .5rem; }
.comparison-grid ul{ margin:0; padding-left:1.1rem; }

/* =========================
   FOOTER
========================= */
.site-footer{
  margin-top:64px;
  padding:18px 0;
  border-top:1px solid var(--line);
  color:#aaa;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   BACK TO TOP
========================= */
.back-to-top{
  position:fixed;
  right:16px;
  bottom:16px;
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  background:rgba(0,0,0,.65);
  box-shadow:var(--shadow);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
}

.back-to-top.show{
  opacity:1;
  pointer-events:auto;
  transform:translateY(-2px);
}
.apdd-video-hero{
  position:relative;
  width:100%;
  height:100vh;
  min-height:860px;
  overflow:hidden;
  background:#000;
  border:none;
}

.hero-video-main{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.35;
  z-index:0;
}

.apdd-hero{
  position:relative;
  overflow:hidden;
}

.apdd-hero-overlay{
  position:relative;
  z-index:1;
}

/* =========================
   HOME VIDEO + INTRO
========================= */

.hero-video-standalone{
  display:block;
  width:100%;
  height:min(72vh, 760px);
  object-fit:cover;
  background:#000;
}

.apdd-home-intro{
  padding-top:2.5rem;
}

/* =========================
   VIDEO HERO
========================= */

/* =========================
   APDD HERO VIDEO CONTROL
========================= */

/* give the video full visual dominance */
.apdd-video-hero{
  width:100%;
  height:100vh;
  min-height:860px;
  overflow:hidden;
  background:#000;
  border:none;
}

/* video itself */
.hero-video-main{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* push the intro section down */
.apdd-home-intro{
  margin-top:180px;
  border:none;
}

/* draw the separator exactly where we want it */
.apdd-home-intro::before{
  content:"";
  display:block;
  width:100%;
  border-top:1px solid rgba(255,255,255,.12);
  margin-bottom:48px;
}

/* =========================
   HOME INTRO
========================= */

.apdd-home-intro{
  padding-top:2.5rem;
}

.hero-seo-signals-static{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:22px;
}

.hero-seo-signals-static .signal-line{
  display:block;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.18);
  background:rgba(0,0,0,.22);
  color:rgba(212,175,55,.82);
  font-size:.9rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  width:max-content;
}

.hero-seo-signals-static .s1{ margin-left:0; }
.hero-seo-signals-static .s2{ margin-left:20px; }
.hero-seo-signals-static .s3{ margin-left:40px; }
.hero-seo-signals-static .s4{ margin-left:60px; }
.hero-seo-signals-static .s5{ margin-left:80px; }

/* =========================
   SEARCH SIGNAL BAND
========================= */

.signal-row{
  font-size:1.18rem;
  font-weight:900;
  letter-spacing:.06em;
  color:var(--gold);
  text-align:center;
  line-height:1.7;
}

.signal-dot{
  margin:0 10px;
  color:rgba(212,175,55,.55);
}

.hero-seo-signals-static{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  margin-bottom:34px;
}

/* =========================
   APDD 9-CIRCLE PUZZLE
========================= */

.apdd-puzzle-lead{
  max-width:72ch;
  margin:0 auto 16px;
}

.apdd-puzzle-shell{
  max-width:720px;
  margin:0 auto;
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  background:rgba(0,0,0,.55);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.apdd-puzzle-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.35);
}

.apdd-puzzle-status{
  color:var(--muted);
  font-weight:700;
  font-size:.95rem;
}

.apdd-puzzle-timer{
  min-width:72px;
  text-align:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.35);
  background:rgba(212,175,55,.10);
  color:var(--gold);
  font-weight:950;
  letter-spacing:.08em;
}

.apdd-puzzle-stage{
  display:flex;
  justify-content:center;
  padding:14px;
  background:#000;
}

.apdd-puzzle-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  padding:14px;
  border-top:1px solid rgba(255,255,255,.10);
}

.apdd-puzzle-hint{
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(212,175,55,.92);
  font-weight:800;
  letter-spacing:.03em;
}

.apdd-puzzle-note{
  padding:10px 14px 14px;
  color:rgba(255,255,255,.55);
  font-size:.92rem;
}

/* SVG visuals */
.apdd-puzzle-svg{
  width:min(520px, 100%);
  height:auto;
  display:block;
  border-radius:18px;
  border:1px solid rgba(212,175,55,.20);
  background:#000;
  touch-action:none; /* important for mobile pointer dragging */
}

.apdd-puzzle-dot{
  fill:#d4af37;
  stroke:#f2d36a;
  stroke-width:4;
}

.apdd-puzzle-line{
  stroke:#d4af37;
  stroke-width:8;
  stroke-linecap:round;
}

.apdd-puzzle-preview{
  stroke:rgba(212,175,55,.40);
  stroke-width:6;
  stroke-linecap:round;
  stroke-dasharray:10 10;
}

.apdd-puzzle-check{
  stroke:#19d278;
  stroke-width:12;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px){
  .apdd-plans-grid{ grid-template-columns:1fr; }
}

@media (max-width: 820px){
  .comparison-grid{ grid-template-columns:1fr; }
}

@media (max-width: 720px){
  .header-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .brand{
    max-width:100%;
  }

  .nav{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:max-content;
    justify-content:start;
    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;
    -webkit-overflow-scrolling:touch;
  }

  .apdd-ss-label.speed{ left:12%; }
  .apdd-ss-label.security{ right:12%; }

  .apd-ack-row{ grid-template-columns:1fr; }
}

.apdd-video-hero{
  width:100%;
  height:88vh;
  min-height:720px;
  overflow:hidden;
  background:#000;
}

.apdd-home-intro{
  margin-top:180px;
}

.apdd-home-intro::before{
  content:"";
  display:block;
  width:100%;
  border-top:1px solid rgba(255,255,255,.12);
  margin-bottom:48px;
}
/* =========================
   APDD HERO VIDEO FINAL CONTROL
========================= */

.apdd-video-hero{
  position:relative;
  width:100%;
  height:108vh;
  min-height:920px;
  overflow:hidden;
  background:#000;
  border:none;
}

.hero-video-main{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 45%;
  display:block;
}

.apdd-home-intro{
  margin-top:60px;
  border:none;
}

.apdd-home-intro::before{
  content:"";
  display:block;
  width:100%;
  border-top:1px solid rgba(255,255,255,.12);
  margin-bottom:48px;
}