/* Home of AI — content pages.
   Built on the same tokens, fonts and rules as the home page; the home page is
   the captured Framer layout, these are hand-authored so they stay editable. */

:root {
  --hoa-ground: var(--token-e5662dc5-8379-47af-9af3-a158a621738a, rgba(9, 10, 14, 0.62));
  --hoa-light: var(--token-66dcf652-8e3a-472b-802f-a55f8a0c31ee, #edefff);
  --hoa-ink: var(--token-39611b59-dddd-49c0-9302-bc35e4840470, #ffffff);
  --hoa-ink-dark: var(--token-7e2d38b2-3650-4480-a12a-e144458cdcbf, #000000);
  --hoa-muted: var(--token-5d8c038e-1267-402c-9a6b-49ac194024bc, rgb(211, 211, 217));
  --hoa-accent: var(--token-b30191df-7460-445d-a666-adc984b0fddb, #7c3aed);
  --hoa-surface: var(--token-d1b88842-891b-49e5-bb97-a973fc1c7c4f, rgba(255, 255, 255, 0.05));
  --hoa-rim: var(--token-cfdedb11-e22c-44a6-bd2c-05e152b90ba3, rgba(255, 255, 255, 0.1));
  --hoa-sans: "Zalando Sans", "Zalando Sans Placeholder", sans-serif;
  --hoa-mono: "Disket Mono Regular", "Disket Mono Regular Placeholder", monospace;
  --hoa-max: 1280px;
  --hoa-gutter: 80px;
}

/* The content pages have no full-page orb behind them, so their ground is a
   solid colour — not the shared --hoa-ground token, which the home page drives
   to fully transparent so the sphere can show through it. */
html, body { background: #06060c; margin: 0; }

.hoa {
  background: transparent;   /* lets the header's sphere show behind the hero */
  color: var(--hoa-ink);
  font-family: var(--hoa-sans);
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.hoa * { box-sizing: border-box; }
.hoa a { color: inherit; }

.hoa-wrap {
  max-width: var(--hoa-max);
  margin: 0 auto;
  padding: 0 var(--hoa-gutter);
}

/* ---------- page hero ---------- */
.hoa-hero {
  position: relative;
  padding: 220px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--hoa-rim);
}
.hoa-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
}
.hoa-hero__glow {
  position: absolute;
  left: 50%;
  bottom: -40%;
  width: 120%;
  height: 90%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 72% 72% at 50% 108%,
    rgba(124, 58, 237, 0.62) 0%,
    rgba(124, 58, 237, 0.30) 45%,
    rgba(124, 58, 237, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
.hoa-hero .hoa-wrap { position: relative; z-index: 1; }

.hoa-eyebrow {
  font-family: var(--hoa-mono);
  font-size: 10px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: var(--hoa-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
}
.hoa-eyebrow::before {
  content: "";
  width: 6px;
  height: 12px;
  background: var(--hoa-accent);
  display: inline-block;
}

.hoa-h1 {
  font-size: 88px;
  line-height: 0.92em;
  letter-spacing: -0.045em;
  font-weight: 300;
  margin: 0;
  max-width: 16ch;
}
.hoa-lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--hoa-muted);
  max-width: 62ch;
  margin: 32px 0 0;
}

/* ---------- sections ---------- */
.hoa-section { padding: 100px 0; border-bottom: 1px solid var(--hoa-rim); }
/* the last section runs straight into the closing gradient — no hairline seam */
.hoa .hoa-section:last-child { border-bottom: 0; }
.hoa-section--light {
  background: var(--hoa-light);
  color: var(--hoa-ink-dark);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.hoa-section--light .hoa-eyebrow,
.hoa-section--light .hoa-body { color: #3a3a44; }

.hoa-h2 {
  font-size: 48px;
  line-height: 1em;
  letter-spacing: -0.03em;
  font-weight: 300;
  margin: 0 0 40px;
  max-width: 22ch;
}
.hoa-h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0 0 12px;
}
.hoa-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hoa-muted);
  max-width: 68ch;
  margin: 0 0 20px;
}
.hoa-body strong { font-weight: 400; color: var(--hoa-ink); }
.hoa-section--light .hoa-body strong { color: var(--hoa-ink-dark); }

/* ---------- grids ---------- */
.hoa-grid { display: grid; gap: 1px; background: var(--hoa-rim); border: 1px solid var(--hoa-rim); }
.hoa-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hoa-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hoa-card { background: var(--hoa-ground); padding: 36px 32px; }
.hoa-section--light .hoa-grid { background: rgba(0, 0, 0, 0.1); border-color: rgba(0, 0, 0, 0.1); }
.hoa-section--light .hoa-card { background: var(--hoa-light); }
.hoa-card__no {
  font-family: var(--hoa-mono);
  font-size: 10px;
  letter-spacing: 0.45px;
  color: var(--hoa-accent);
  display: block;
  margin-bottom: 18px;
}

/* ---------- list rows ---------- */
.hoa-rows { border-top: 1px solid var(--hoa-rim); }
.hoa-row {
  display: grid;
  grid-template-columns: 140px 1fr 160px;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--hoa-rim);
}
.hoa-section--light .hoa-rows,
.hoa-section--light .hoa-row { border-color: rgba(0, 0, 0, 0.12); }
.hoa-row__code { font-family: var(--hoa-mono); font-size: 12px; letter-spacing: 0.45px; }
.hoa-row__title { font-size: 16px; }
.hoa-row__tag {
  font-family: var(--hoa-mono);
  font-size: 10px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  justify-self: end;
  padding: 4px 8px;
  background: var(--hoa-surface);
  color: var(--hoa-muted);
}
.hoa-section--light .hoa-row__tag { background: rgba(124, 58, 237, 0.12); color: var(--hoa-accent); }

/* ---------- statement + CTA ---------- */
.hoa-statement {
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 24ch;
  margin: 0;
}
.hoa-cta { padding: 140px 0 40px; text-align: center; position: relative; }
.hoa-cta .hoa-h2 { max-width: none; margin: 0 auto 40px; font-size: 64px; }

.hoa a.hoa-btn,
.hoa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hoa-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  background: var(--hoa-brand);
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.hoa-btn:hover { transform: translateY(-1px); background: #8b53f0; }
.hoa a.hoa-btn--ghost,
.hoa-btn--ghost {
  background: transparent;
  color: var(--hoa-ink);
  border: 1px solid var(--hoa-rim);
}
.hoa-btn__arrow { color: rgba(255, 255, 255, 0.7); }

.hoa a.hoa-inline-link,
.hoa-inline-link { color: var(--hoa-accent); text-decoration: none; border-bottom: 1px solid currentColor; }

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  :root { --hoa-gutter: 48px; }
  .hoa-h1 { font-size: 64px; }
  .hoa-cta .hoa-h2 { font-size: 44px; }
}
@media (max-width: 809px) {
  :root { --hoa-gutter: 24px; }
  .hoa-hero { padding: 160px 0 80px; }
  .hoa-h1 { font-size: 44px; max-width: none; }
  .hoa-h2 { font-size: 32px; }
  .hoa-statement { font-size: 26px; max-width: none; }
  .hoa-lead { font-size: 17px; }
  .hoa-section { padding: 64px 0; }
  .hoa-grid--3, .hoa-grid--2 { grid-template-columns: 1fr; }
  .hoa-row { grid-template-columns: 1fr; gap: 6px; }
  .hoa-row__tag { justify-self: start; }
  .hoa-cta { padding: 90px 0; }
  .hoa-cta .hoa-h2 { font-size: 32px; }
}

/* ---------- chrome (content pages) ---------- */
.hoa-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  background: linear-gradient(rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(2px);
}
.hoa-header__bar {
  max-width: var(--hoa-max);
  margin: 0 auto;
  padding: 14px var(--hoa-gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.hoa-logo {
  font-family: var(--hoa-mono);
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--hoa-ink);
}
.hoa-logo span { color: var(--hoa-accent); }
.hoa-nav {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.hoa-nav a {
  font-family: var(--hoa-mono);
  font-size: 10px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--hoa-ink);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.hoa-nav a:hover { opacity: 1; }
.hoa-header__cta {
  font-family: var(--hoa-mono);
  font-size: 10px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 16px;
  background: var(--hoa-brand);
  color: #fff;
  white-space: nowrap;
}

/* CTA + footer share one gradient, so there is no seam where two glows meet.
   The block is opaque: the home page's closing band hides the sphere behind it,
   and leaving it translucent here let the starfield grey the violet out — which
   is what made this purple read differently from the home page's. */
.hoa-close {
  position: relative;
  z-index: 1;              /* above the fixed orb layer, like the home page's band */
  background: transparent;
  overflow: hidden;
  color: var(--hoa-ink);
}
/* One layer paints the whole closing band: the violet glow on top of a ground
   that fades in from transparent, so the block meets the translucent page above
   it without an edge. Not rgba(9, 10, 14, 0.62) — recolor.js rewrites that literal to the
   translucent ground and the starfield then greys the violet out. */
.hoa-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 62% at 50% 112%,
      rgba(124, 58, 237, 0.62) 0%,
      rgba(124, 58, 237, 0.30) 45%,
      rgba(124, 58, 237, 0) 100%),
    linear-gradient(to bottom, rgba(10, 11, 14, 0) 0, #0a0b0e 220px);
  pointer-events: none;
  z-index: 0;
}
.hoa-close > * { position: relative; z-index: 1; }

.hoa-footer {
  color: var(--hoa-ink);
  padding: 120px 0 56px;
  font-family: var(--hoa-sans);
  position: relative;
}
.hoa-footer__cols {
  display: flex;
  gap: 72px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.hoa-footer__cols a {
  display: block;
  font-family: var(--hoa-mono);
  font-size: 10px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--hoa-muted);
  padding: 5px 0;
}
.hoa-footer__cols a:hover { color: var(--hoa-ink); }
.hoa-footer__h {
  font-family: var(--hoa-mono);
  font-size: 10px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--hoa-ink);
  margin: 0 0 14px;
}
.hoa-footer__legal {
  font-family: var(--hoa-mono);
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: rgba(211, 211, 217, 0.5);
  text-align: center;
  margin: 72px 0 0;
}

@media (max-width: 1000px) {
  .hoa-nav { display: none; }
  .hoa-header__bar { justify-content: space-between; }
}
@media (max-width: 809px) {
  .hoa-footer { padding: 56px 0 32px; }
  .hoa-footer__cols { gap: 40px; }
  .hoa-footer__legal { margin-top: 48px; white-space: normal; }
}

/* ---------- contact form ---------- */
.hoa-form { max-width: 720px; }
.hoa-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hoa-field { display: block; margin-bottom: 20px; }
.hoa-field > span {
  display: block;
  font-family: var(--hoa-mono);
  font-size: 10px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--hoa-muted);
  margin-bottom: 8px;
}
.hoa-field > span em { font-style: normal; opacity: 0.6; }
.hoa-field input,
.hoa-field textarea {
  width: 100%;
  background: var(--hoa-surface);
  border: 1px solid var(--hoa-rim);
  color: var(--hoa-ink);
  font-family: var(--hoa-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  padding: 13px 14px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.hoa-field input:focus,
.hoa-field textarea:focus { border-color: var(--hoa-brand); background: rgba(124, 58, 237, 0.08); }
.hoa-field textarea { resize: vertical; min-height: 140px; }
.hoa-field--trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hoa-form__foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.hoa-form button[type="submit"] { border: 0; cursor: pointer; font-family: var(--hoa-mono); }
.hoa-form button[disabled] { opacity: 0.5; cursor: default; }
.hoa-form__status { margin: 0; font-size: 14px; color: var(--hoa-muted); }
.hoa-form__status[data-state="ok"] { color: #34d399; }
.hoa-form__status[data-state="error"] { color: #ff8a8a; }
.hoa-form__note { font-size: 13px; color: var(--hoa-muted); opacity: 0.75; margin: 24px 0 0; }
@media (max-width: 809px) { .hoa-form__row { grid-template-columns: 1fr; gap: 0; } }

.hoa-portrait__link {
  font-family: var(--hoa-mono);
  font-size: 10px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin: 10px 0 0;
}
.hoa-portrait__link a { color: var(--hoa-brand); text-decoration: none; }
.hoa-portrait__link a:hover { text-decoration: underline; }
