/* APODEXA homepage — "Neon Prism" landing, matched to the 2026-07-13 comp
   (HUMAN/images/newhp/). Self-contained + namespaced `hp-` so it does NOT
   touch landing.css (pricing/privacy/terms still use that). Consumes brand.css
   tokens. Reference: DOC/design.md. */

.hp {
  --max: 1180px;
  --edge: 24px;
  --card-bg: #0E0A1B;
  --card-bg-2: #120C22;
  --panel: #0B0715;
  --hair: rgba(255,255,255,.07);
  --hair-2: rgba(255,255,255,.12);
  --red: var(--brand-red);
  --rose: var(--brand-rose);
  background: var(--bg-0);
  color: var(--ink);
  overflow-x: hidden;
  position: relative;
}
.hp *,
.hp *::before,
.hp *::after { box-sizing: border-box; }

/* ambient page glows */
.hp::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 520px at 78% 2%, rgba(244,32,88,.18), transparent 60%),
    radial-gradient(700px 500px at 8% 30%, rgba(120,20,90,.14), transparent 60%);
}
.hp > * { position: relative; z-index: 1; }

.hp-wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--edge); }

.hp a { color: inherit; text-decoration: none; }
.hp h1, .hp h2, .hp h3, .hp h4 { margin: 0; color: var(--ink); font-weight: 700; letter-spacing: -.02em; }
.hp p { margin: 0; }

/* ---- buttons ---- */
.hp-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; line-height: 1;
  padding: 13px 20px; border-radius: 11px; border: 1px solid transparent;
  cursor: pointer; transition: filter .15s, transform .15s, box-shadow .15s, background .15s, border-color .15s;
  white-space: nowrap;
}
.hp-btn svg { width: 16px; height: 16px; }
.hp-btn-primary {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 8px 26px rgba(255,58,46,.32), inset 0 1px 0 rgba(255,255,255,.22);
}
.hp-btn-primary:hover { filter: brightness(1.07); box-shadow: 0 10px 34px rgba(255,58,46,.45); }
.hp-btn-ghost { background: rgba(255,255,255,.04); color: var(--ink); border-color: var(--hair-2); }
.hp-btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); }
.hp-btn-sm { padding: 10px 16px; font-size: 13.5px; border-radius: 9px; }
.hp-btn-lg { padding: 15px 24px; font-size: 15px; }

.hp-grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============================ NAV ============================ */
.hp-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(2,1,12,.82), rgba(2,1,12,.55));
  border-bottom: 1px solid var(--hair);
}
.hp-nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px var(--edge);
  display: flex; align-items: center; gap: 28px;
}
.hp-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: .14em; }
.hp-brand img { width: 28px; height: 28px; }
.hp-nav-links { display: flex; align-items: center; gap: 26px; margin-inline: auto; }
.hp-nav-links a {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; color: var(--ink-2); font-weight: 500; transition: color .15s;
}
.hp-nav-links a:hover { color: var(--ink); }
.hp-nav-links svg { width: 13px; height: 13px; opacity: .7; }
.hp-nav-cta { display: flex; align-items: center; gap: 12px; }
.hp-login { color: var(--ink); font-size: 14px; font-weight: 600; }
.hp-nav-burger { display: none; }

/* ---- language switcher (nav dropdown) ---- */
.hp-lang { position: relative; }
.hp-lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 11px; border-radius: 9px;
  background: rgba(255,255,255,.04); border: 1px solid var(--hair-2);
  color: var(--ink); font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; line-height: 1; transition: background .15s, border-color .15s;
}
.hp-lang-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); }
.hp-lang-btn:focus-visible { outline: 2px solid var(--brand-rose); outline-offset: 2px; }
.hp-lang-btn > svg:first-child { width: 15px; height: 15px; opacity: .8; }
.hp-lang-caret { width: 12px; height: 12px; opacity: .7; transition: transform .18s; }
.hp-lang.open .hp-lang-caret { transform: rotate(180deg); }
.hp-lang-cur { min-width: 20px; text-align: left; white-space: nowrap; }
.hp-lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  min-width: 160px; margin: 0; padding: 6px; list-style: none;
  background: #0E0A1B; border: 1px solid var(--hair-2); border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.hp-lang.open .hp-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.hp-lang-menu li {
  padding: 9px 12px; border-radius: 8px; font-size: 13.5px; color: var(--ink-2);
  cursor: pointer; transition: background .13s, color .13s; white-space: nowrap;
}
.hp-lang-menu li:hover, .hp-lang-menu li:focus-visible { background: rgba(255,255,255,.06); color: var(--ink); outline: none; }
.hp-lang-menu li[aria-selected="true"] { color: var(--ink); background: rgba(244,32,88,.14); }

/* ---- language selector (footer, compact native select) ---- */
.hp-flang { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--ink-3); }
.hp-flang > svg { width: 15px; height: 15px; opacity: .8; flex: none; }
.hp-flang-label { font-size: 12px; }
.hp-flang-select {
  background: rgba(255,255,255,.03); border: 1px solid var(--hair-2); border-radius: 8px;
  color: var(--ink-2); font-family: inherit; font-size: 12.5px; padding: 6px 8px; cursor: pointer;
}
.hp-flang-select:focus-visible { outline: 2px solid var(--brand-rose); outline-offset: 1px; }
.hp-flang-select option { background: #0E0A1B; color: var(--ink); }

/* ============================ HERO ============================ */
.hp-hero {
  position: relative; overflow: hidden;
  padding: 88px 0 68px; min-height: 600px;
  display: flex; align-items: center;
}
/* full-bleed hero image (glowing "A" on the right, dark on the left) */
.hp-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("/assets/img/newhp/hero-bg.webp") no-repeat right center / cover;
}
/* left scrim so the headline/CTA overlap the art and stay readable */
.hp-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, #02010C 0%, rgba(2,1,12,.9) 24%, rgba(2,1,12,.5) 50%, rgba(2,1,12,0) 76%);
}
.hp-hero > .hp-wrap { position: relative; z-index: 2; width: 100%; }
.hp-hero-grid {
  display: grid; grid-template-columns: minmax(0, 580px);
  gap: 30px; align-items: center;
}
.hp-hero-art { display: none; } /* replaced by the full-bleed background image */
.hp-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(244,32,88,.34); background: rgba(244,32,88,.08);
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #FFB9C6;
}
.hp-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-red); box-shadow: 0 0 10px var(--brand-red); }
.hp-hero h1 {
  margin: 22px 0 0; font-size: clamp(40px, 5.4vw, 62px); line-height: 1.04; letter-spacing: -.03em;
}
.hp-hero .hp-sub { margin-top: 22px; max-width: 460px; color: var(--ink-2); font-size: 16.5px; line-height: 1.6; }
.hp-hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

.hp-trust { display: flex; align-items: center; gap: 13px; margin-top: 30px; }
.hp-avatars { display: flex; }
.hp-avatars span {
  width: 36px; height: 36px; border-radius: 50%; margin-left: -12px;
  border: 2px solid var(--bg-0); background: var(--grad-brand);
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hp-avatars span:first-child { margin-left: 0; }
.hp-avatars span:nth-child(2) { filter: hue-rotate(-18deg); }
.hp-avatars span:nth-child(3) { filter: hue-rotate(20deg); }
.hp-avatars span:nth-child(4) { filter: hue-rotate(40deg); }
.hp-trust small { color: var(--ink-3); font-size: 13px; }

/* hero art + floating cards */
.hp-hero-art { position: relative; min-height: 460px; }
.hp-hero-art .hp-prism {
  position: absolute; inset: -14% -20% -14% -12%;
  width: 132%; height: auto; object-fit: contain;
  /* the art is glow-on-black: screen-blend drops the black so only the neon
     prism + light trails float seamlessly over the page (matches the comp). */
  mix-blend-mode: screen;
  /* feather the image edges to transparent so the rectangle vanishes and the
     art bleeds seamlessly into the page. */
  -webkit-mask-image: radial-gradient(ellipse 78% 82% at 58% 48%, #000 52%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 82% at 58% 48%, #000 52%, transparent 100%);
  filter: drop-shadow(0 0 50px rgba(244,32,88,.3));
  -webkit-user-select: none; user-select: none;
}
.hp-float {
  position: absolute; z-index: 2; width: 208px;
  background: rgba(16,10,27,.72); backdrop-filter: blur(10px);
  border: 1px solid var(--hair-2); border-radius: 14px; padding: 13px 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.hp-float-top { top: 6%; right: 2%; }
.hp-float-bottom { bottom: 8%; right: 12%; }
.hp-float-lbl { font-size: 11.5px; color: var(--ink-3); }
.hp-float-row { display: flex; align-items: baseline; gap: 8px; margin-top: 5px; }
.hp-float-val { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.hp-float-delta { font-size: 11.5px; font-weight: 700; color: var(--green); }
/* Honest disclosure that the floating hero cards are illustrative, not live metrics. */
.hp-float-tag { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-3); border: 1px solid var(--hair-2); border-radius: 6px; padding: 2px 6px; }
.hp-spark { margin-top: 10px; display: block; width: 100%; height: 34px; }
.hp-bars { margin-top: 10px; display: flex; align-items: flex-end; gap: 3px; height: 34px; }
.hp-bars i { flex: 1; background: var(--grad-cta); border-radius: 2px 2px 0 0; opacity: .85; }

/* ============================ LOGO STRIP ============================ */
.hp-logos { padding: 30px 0 6px; }
.hp-logos-cap { text-align: center; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.hp-logos-row {
  margin-top: 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px; opacity: .62;
}
.hp-logo-item { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; color: var(--ink-2); letter-spacing: -.01em; }
.hp-logo-item svg { width: 19px; height: 19px; color: var(--ink-2); }

/* ============================ SECTIONS ============================ */
.hp-section { padding: 62px 0; }
.hp-head { max-width: 640px; }
.hp-head.center { margin: 0 auto; text-align: center; }
.hp-kicker { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-rose); font-weight: 700; }
.hp-section h2 { margin-top: 14px; font-size: clamp(28px, 3.4vw, 38px); line-height: 1.12; }
.hp-section .hp-lead { margin-top: 14px; color: var(--ink-2); font-size: 16px; line-height: 1.6; }

/* feature cards */
.hp-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 6px; }
.hp-card {
  background: var(--card-bg); border: 1px solid var(--hair); border-radius: 16px; padding: 22px;
  transition: border-color .18s, transform .18s, box-shadow .18s; position: relative; overflow: hidden;
}
.hp-card:hover { border-color: rgba(244,32,88,.4); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.hp-ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(244,32,88,.12); border: 1px solid rgba(244,32,88,.28); color: #FF6A8A;
}
.hp-ic svg { width: 22px; height: 22px; }
.hp-card h3 { margin-top: 16px; font-size: 17px; }
.hp-card p { margin-top: 9px; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.hp-learn { display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; color: var(--brand-rose); font-size: 13.5px; font-weight: 600; }
.hp-learn svg { width: 14px; height: 14px; transition: transform .15s; }
.hp-card:hover .hp-learn svg { transform: translateX(3px); }

/* ============================ WORKSPACE / DASHBOARD ============================ */
.hp-workspace { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 40px; align-items: center; }
.hp-ws-copy h2 { margin-top: 14px; font-size: clamp(26px, 3vw, 34px); line-height: 1.15; }
.hp-ws-copy .hp-lead { margin-top: 16px; }
.hp-checklist { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.hp-checklist li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink); }
.hp-checklist .hp-chk {
  width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: rgba(47,211,122,.14); color: var(--green);
}
.hp-checklist .hp-chk svg { width: 13px; height: 13px; }
.hp-ws-copy .hp-btn { margin-top: 26px; }

/* dashboard mock */
.hp-dash {
  background: linear-gradient(180deg, #0C0818, #0A0714); border: 1px solid var(--hair-2);
  border-radius: 16px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.hp-dash-top { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--hair); }
.hp-dash-top .hp-dash-brand { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.hp-dash-top .hp-dash-brand img { width: 15px; height: 15px; }
.hp-dash-date { margin-left: auto; font-size: 11px; color: var(--ink-3); border: 1px solid var(--hair); border-radius: 7px; padding: 5px 9px; }
.hp-dash-body { display: grid; grid-template-columns: 128px 1fr; min-height: 340px; }
.hp-dash-side { border-right: 1px solid var(--hair); padding: 12px 8px; display: flex; flex-direction: column; gap: 3px; }
.hp-dash-nav { display: flex; align-items: center; gap: 8px; padding: 7px 9px; border-radius: 8px; font-size: 11.5px; color: var(--ink-3); }
.hp-dash-nav svg { width: 14px; height: 14px; }
.hp-dash-nav.active { background: rgba(244,32,88,.14); color: #FF7C97; }
.hp-dash-nav.foot { margin-top: auto; }
.hp-dash-main { padding: 14px; }
.hp-dash-h { font-size: 14px; font-weight: 700; }
.hp-tiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-top: 12px; }
.hp-tile { background: var(--card-bg-2); border: 1px solid var(--hair); border-radius: 10px; padding: 10px 11px; }
.hp-tile .l { font-size: 9.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.hp-tile .v { font-size: 16px; font-weight: 800; margin-top: 4px; letter-spacing: -.02em; }
.hp-tile .d { font-size: 10px; font-weight: 700; color: var(--green); }
.hp-dash-cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 10px; margin-top: 10px; }
.hp-dash-mod { background: var(--card-bg-2); border: 1px solid var(--hair); border-radius: 10px; padding: 11px; }
.hp-dash-mod h5 { margin: 0 0 8px; font-size: 11px; font-weight: 700; color: var(--ink-2); }
.hp-area { width: 100%; height: 118px; display: block; }
/* donut */
.hp-donut-wrap { display: flex; align-items: center; gap: 12px; }
.hp-donut {
  width: 92px; height: 92px; border-radius: 50%; flex: none; position: relative;
  background: conic-gradient(var(--brand-red) 0 42%, var(--brand-magenta) 42% 71%, var(--brand-orange) 71% 89%, #4a3960 89% 100%);
}
.hp-donut::after { content: ""; position: absolute; inset: 22%; border-radius: 50%; background: var(--card-bg-2); }
.hp-donut b { position: absolute; inset: 0; display: grid; place-content: center; font-size: 12px; font-weight: 800; z-index: 1; letter-spacing: -.02em; }
.hp-legend { display: grid; gap: 6px; font-size: 10.5px; color: var(--ink-2); }
.hp-legend span { display: flex; align-items: center; gap: 6px; }
.hp-legend i { width: 8px; height: 8px; border-radius: 2px; }
.hp-legend em { margin-left: auto; color: var(--ink-3); font-style: normal; }
/* table */
.hp-dash-cols.b { grid-template-columns: 1.5fr 1fr; }
.hp-trow { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-top: 1px solid var(--hair); font-size: 11px; }
.hp-trow:first-of-type { border-top: 0; }
.hp-trow .nm { color: var(--ink); font-weight: 500; }
.hp-badge { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 5px; background: rgba(47,211,122,.16); color: var(--green); }
.hp-trow .tm { margin-left: auto; color: var(--ink-3); }

/* ============================ DETERMINISTIC BAND ============================ */
.hp-band {
  position: relative; overflow: hidden; border-radius: 22px;
  border: 1px solid var(--hair-2);
  background: linear-gradient(120deg, #170a1e 0%, #0c0716 55%, #10070f 100%);
  padding: 40px; display: grid; grid-template-columns: 0.9fr 1fr 0.9fr; gap: 30px; align-items: center;
}
.hp-orb { position: relative; height: 250px; }
.hp-orb::before {
  content: ""; position: absolute; inset: -8% -4%;
  background: url("/assets/img/newhp/orb.webp") no-repeat 55% center / cover;
  /* drop the image's black background so only the glowing orbital sphere blends
     into the band, and feather the edges so the rectangle vanishes */
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 70% 76% at 56% 50%, #000 56%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 76% at 56% 50%, #000 56%, transparent 100%);
  animation: hp-float 7s ease-in-out infinite;
}
@keyframes hp-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hp-band-mid h2 { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.15; }
.hp-band-mid .hp-kicker { margin-bottom: 12px; display: block; }
.hp-band-mid p { margin-top: 14px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.hp-band-list { display: grid; gap: 18px; }
.hp-band-item { display: flex; gap: 12px; }
.hp-band-item .hp-ic { width: 38px; height: 38px; border-radius: 10px; }
.hp-band-item .hp-ic svg { width: 18px; height: 18px; }
.hp-band-item b { font-size: 14px; }
.hp-band-item p { margin-top: 3px; color: var(--ink-3); font-size: 12.5px; line-height: 1.5; }

/* ============================ STATS ============================ */
.hp-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.hp-stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.hp-stat .hp-ic { margin-bottom: 4px; }
.hp-stat .n { font-size: clamp(30px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.03em; }
.hp-stat .l { font-size: 13px; color: var(--ink-3); }

/* ============================ TESTIMONIALS ============================ */
.hp-testi { display: grid; grid-template-columns: 0.66fr 2fr; gap: 30px; align-items: start; }
.hp-testi-copy h2 { font-size: clamp(24px, 2.8vw, 32px); line-height: 1.15; margin-top: 12px; }
.hp-testi-copy .hp-learn { margin-top: 18px; }
.hp-testi-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.hp-quote { background: var(--card-bg); border: 1px solid var(--hair); border-radius: 16px; padding: 20px; }
.hp-stars { display: flex; gap: 2px; color: var(--brand-orange); }
.hp-stars svg { width: 15px; height: 15px; }
.hp-quote p { margin-top: 12px; color: var(--ink); font-size: 14px; line-height: 1.6; }
.hp-quote-by { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.hp-quote-by span { width: 34px; height: 34px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; flex: none; }
.hp-quote-by b { font-size: 13px; display: block; }
/* TASK-a11y-honesty: "Representative use case" is the only signal that these
   are not verified named-customer quotes — bumped from 11.5px/ink-3 to a more
   legible weight/color so it reads as a label, not a footnote. */
.hp-quote-by small { font-size: 12.5px; font-weight: 700; color: var(--ink-2); }

/* ============================ CTA ============================ */
.hp-cta {
  position: relative; overflow: hidden; border-radius: 22px; border: 1px solid var(--hair-2);
  background: radial-gradient(120% 140% at 50% 120%, rgba(244,32,88,.25), transparent 60%), #0A0714;
  padding: 56px 30px; text-align: center;
}
.hp-cta-wave { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .9; }
.hp-cta > * { position: relative; z-index: 1; }
.hp-cta h2 { font-size: clamp(28px, 3.4vw, 40px); }
.hp-cta p { margin-top: 12px; color: var(--ink-2); font-size: 16px; }
.hp-cta-btns { display: flex; gap: 13px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* ============================ FOOTER ============================ */
.hp-footer { border-top: 1px solid var(--hair); padding: 54px 0 30px; margin-top: 20px; }
.hp-foot-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr) 1.4fr; gap: 28px; }
.hp-foot-brand .hp-brand { font-size: 17px; }
.hp-foot-brand p { margin-top: 14px; color: var(--ink-3); font-size: 13px; line-height: 1.6; max-width: 220px; }
.hp-social { display: flex; gap: 10px; margin-top: 16px; }
.hp-social a { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--hair); display: grid; place-items: center; color: var(--ink-3); transition: color .15s, border-color .15s; }
.hp-social a:hover { color: var(--ink); border-color: var(--hair-2); }
.hp-social svg { width: 15px; height: 15px; }
.hp-fcol h5 { font-size: 13px; font-weight: 700; color: var(--ink); }
.hp-fcol a { display: block; margin-top: 11px; font-size: 13px; color: var(--ink-3); transition: color .15s; }
.hp-fcol a:hover { color: var(--ink); }
.hp-news h5 { font-size: 13px; font-weight: 700; }
.hp-news p { margin-top: 11px; color: var(--ink-3); font-size: 13px; line-height: 1.55; }
.hp-news-form { display: flex; margin-top: 14px; border: 1px solid var(--hair-2); border-radius: 10px; overflow: hidden; background: rgba(255,255,255,.03); }
.hp-news-form input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--ink); padding: 11px 13px; font-size: 13px; font-family: inherit; }
.hp-news-form input::placeholder { color: var(--ink-3); }
.hp-news-form input:focus { outline: none; }
.hp-news-form button { background: var(--grad-cta); border: 0; color: #fff; padding: 0 15px; display: grid; place-items: center; cursor: pointer; }
.hp-news-form button svg { width: 16px; height: 16px; }
.hp-foot-bottom { display: flex; align-items: center; gap: 16px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--hair); font-size: 12.5px; color: var(--ink-3); flex-wrap: wrap; }
.hp-foot-bottom .sp { margin-left: auto; }
.hp-foot-bottom a { color: var(--ink-3); }
.hp-foot-bottom a:hover { color: var(--ink); }

/* ============================ RESPONSIVE ============================ */
/* ---- accessibility: skip-link (home.css is loaded without landing.css) ---- */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 60;
  background: var(--panel, #06031a); color: var(--ink); border: 1px solid var(--hair-2);
  padding: 10px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 600; transition: top .15s;
}
.skip-link:focus { top: 12px; }

/* ============================ FAQ ============================ */
.hp-faq { max-width: 860px; margin-inline: auto; }
.hp-faq-head { text-align: center; margin-bottom: 34px; }
.hp-faq-head .hp-kicker { display: block; margin-bottom: 10px; }
.hp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.hp-faq-item {
  background: var(--card-bg); border: 1px solid var(--hair); border-radius: 14px;
  padding: 4px 20px; transition: border-color .15s, background .15s;
}
.hp-faq-item[open] { border-color: rgba(244,32,88,.30); background: var(--card-bg-2); }
.hp-faq-item summary {
  list-style: none; cursor: pointer; padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 16px; font-weight: 650; color: var(--ink); line-height: 1.4;
}
.hp-faq-item summary::-webkit-details-marker { display: none; }
.hp-faq-item summary::after {
  content: ""; flex: 0 0 auto; width: 11px; height: 11px;
  border-right: 2px solid var(--brand-rose); border-bottom: 2px solid var(--brand-rose);
  transform: rotate(45deg); transition: transform .2s ease; margin-right: 4px;
}
.hp-faq-item[open] summary::after { transform: rotate(225deg); }
.hp-faq-item summary:focus-visible { outline: 2px solid var(--brand-rose); outline-offset: 4px; border-radius: 6px; }
.hp-faq-item p { margin: 0 0 18px; padding-right: 26px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* ---- mobile nav burger ---- */
.hp-nav-burger {
  display: none; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid var(--hair-2); border-radius: 9px;
  width: 40px; height: 40px; color: var(--ink); cursor: pointer; padding: 0;
}
.hp-nav-burger svg { width: 22px; height: 22px; }
.hp-nav-burger .hp-burger-close { display: none; }
.hp-nav.open .hp-nav-burger .hp-burger-open { display: none; }
.hp-nav.open .hp-nav-burger .hp-burger-close { display: block; }

@media (max-width: 1000px) {
  .hp-features { grid-template-columns: repeat(2,1fr); }
  .hp-workspace { grid-template-columns: 1fr; gap: 26px; }
  .hp-band { grid-template-columns: 1fr; text-align: left; }
  .hp-orb { height: 170px; max-width: 320px; }
  .hp-testi { grid-template-columns: 1fr; }
  .hp-testi-cards { grid-template-columns: 1fr; }
  .hp-foot-grid { grid-template-columns: 1fr 1fr; }
  .hp-foot-brand { grid-column: 1 / -1; }
  .hp-news { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .hp-nav-burger { display: inline-flex; }
  /* keep the top bar to brand + language + burger on phones; the nav "Get started"
     button would push the burger off-screen (the hero + footer CTAs cover signup). */
  .hp-nav-cta .hp-login,
  .hp-nav-cta .hp-btn-primary { display: none; }
  .hp-nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    margin-inline: 0; padding: 8px var(--edge) 16px;
    background: var(--panel, #06031a);
    border-bottom: 1px solid var(--hair);
    box-shadow: 0 18px 40px rgba(0,0,0,.5);
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height .26s ease, opacity .2s ease, visibility .2s;
  }
  .hp-nav.open .hp-nav-links { max-height: 80vh; opacity: 1; visibility: visible; }
  .hp-nav-links a { padding: 13px 4px; font-size: 15px; border-bottom: 1px solid var(--hair); }
  .hp-nav-links a:last-child { border-bottom: 0; }
  .hp-hero-grid { grid-template-columns: 1fr; }
  .hp-hero { min-height: auto; padding: 52px 0 40px; }
  .hp-hero::before { background-position: 70% center; }
  /* the art sits behind the copy on narrow screens — darken it top-to-bottom so
     the headline/CTA stay readable while a hint of the glow shows through */
  .hp-hero::after { background: linear-gradient(180deg, rgba(2,1,12,.7) 0%, rgba(2,1,12,.88) 70%, #02010C 100%); }
  .hp-hero .hp-sub { max-width: none; }
  .hp-stats { grid-template-columns: 1fr 1fr; gap: 26px; }
  .hp-tiles { grid-template-columns: 1fr 1fr; }
  .hp-dash-cols { grid-template-columns: 1fr; }
  .hp-dash-side { display: none; }
  .hp-dash-body { grid-template-columns: 1fr; }
  .hp-logos-row { justify-content: center; gap: 22px 26px; }
  .hp-foot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .hp-features { grid-template-columns: 1fr; }
  .hp-stats { grid-template-columns: 1fr; }
  .hp-float { width: 168px; }
}
@media (prefers-reduced-motion: reduce) {
  .hp-orb::before { animation: none; }
}
