.ea-page {
  --ea-navy: #061321;
  --ea-ink: #091a2b;
  --ea-panel: rgba(10, 29, 47, 0.88);
  --ea-panel-deep: rgba(4, 15, 27, 0.94);
  --ea-paper: #f4f1e7;
  --ea-muted: #aebbc8;
  --ea-gold: #e6b84f;
  --ea-gold-light: #f4d77e;
  --ea-cyan: #5dc9d6;
  --ea-line: rgba(187, 210, 226, 0.16);
  background: var(--ea-navy);
  color: var(--ea-paper);
}

.ea-page *,
.ea-page *::before,
.ea-page *::after {
  box-sizing: border-box;
}

.ea-page main {
  overflow: hidden;
}

.ea-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ea-eyebrow {
  margin: 0 0 1rem;
  color: var(--ea-gold-light);
  font: 800 0.68rem/1.4 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ea-hero {
  position: relative;
  min-height: min(780px, calc(100vh - 90px));
  display: grid;
  align-items: center;
  padding: clamp(5rem, 10vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid rgba(93, 201, 214, 0.22);
  background:
    radial-gradient(circle at 82% 20%, rgba(230, 184, 79, 0.14), transparent 32rem),
    radial-gradient(circle at 16% 84%, rgba(93, 201, 214, 0.08), transparent 30rem),
    linear-gradient(135deg, #061321 0%, #071829 55%, #08111e 100%);
}

.ea-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

.ea-hero__grid {
  position: relative;
  display: grid;
  align-items: end;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.68fr);
}

.ea-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

html[lang="de"] .ea-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
}

.ea-hero__lead {
  max-width: 61ch;
  margin: 1.65rem 0 0;
  color: #c2ced8;
  font-size: clamp(1.07rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.ea-hero__lead strong {
  color: var(--ea-paper);
}

.ea-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.ea-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(230, 184, 79, 0.7);
  padding: 0.9rem 1.25rem;
  color: #07111c;
  background: var(--ea-gold);
  font: 800 0.72rem/1.2 "Archivo", ui-sans-serif, sans-serif;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.ea-button:hover,
.ea-button:focus-visible {
  transform: translateY(-2px);
  background: var(--ea-gold-light);
}

.ea-button--quiet {
  color: var(--ea-paper);
  border-color: rgba(244, 241, 231, 0.35);
  background: transparent;
}

.ea-button--quiet:hover,
.ea-button--quiet:focus-visible {
  color: #fff;
  border-color: var(--ea-cyan);
  background: rgba(93, 201, 214, 0.08);
}

.ea-hero__signal {
  border: 1px solid rgba(230, 184, 79, 0.35);
  border-top: 3px solid var(--ea-gold);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(5, 17, 30, 0.82);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.28);
}

.ea-hero__signal span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--ea-cyan);
  font: 800 0.62rem/1.3 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.15em;
}

.ea-hero__signal strong {
  display: block;
  color: #fff;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.14;
}

.ea-hero__signal ul {
  display: grid;
  gap: 0.72rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.ea-hero__signal li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ea-muted);
  line-height: 1.45;
}

.ea-hero__signal li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ea-gold);
  content: "";
}

.ea-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--ea-line);
}

.ea-section--deep {
  background: #040e19;
}

.ea-section--soft {
  background:
    radial-gradient(circle at 8% 50%, rgba(93, 201, 214, 0.06), transparent 28rem),
    #071727;
}

.ea-section__head {
  display: grid;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
}

.ea-section h2 {
  max-width: 16ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.ea-section__head > p,
.ea-section__lead {
  margin: 0;
  color: var(--ea-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.ea-offers {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ea-offer {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  border: 1px solid var(--ea-line);
  border-top: 3px solid rgba(93, 201, 214, 0.7);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--ea-panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.ea-offer--featured {
  border-color: rgba(230, 184, 79, 0.42);
  border-top-color: var(--ea-gold);
  background:
    linear-gradient(180deg, rgba(230, 184, 79, 0.06), transparent 35%),
    var(--ea-panel);
}

.ea-offer__number {
  color: var(--ea-cyan);
  font: 800 0.64rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.14em;
}

.ea-offer h3 {
  margin: 1.2rem 0 0.45rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.04;
}

.ea-offer__format {
  min-height: 2.5em;
  margin: 0;
  color: var(--ea-gold-light);
  font: 800 0.68rem/1.45 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ea-offer__purpose {
  min-height: 6.4em;
  margin: 1.3rem 0;
  color: #c3ced8;
  line-height: 1.58;
}

.ea-offer ul {
  display: grid;
  gap: 0.68rem;
  margin: 0 0 1.8rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--ea-line);
  list-style: none;
}

.ea-offer li {
  color: var(--ea-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.ea-offer li strong {
  color: var(--ea-paper);
}

.ea-offer__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ea-line);
}

.ea-offer__price strong {
  color: #fff;
  font-size: 1.7rem;
}

.ea-offer__price small {
  color: #8798a7;
}

.ea-offer .ea-button {
  width: 100%;
  margin-top: 1rem;
}

.ea-purchase-note {
  margin: 1.2rem 0 0;
  color: #8798a7;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.ea-purchase-note a {
  color: var(--ea-gold-light);
}

.ea-timeline {
  display: grid;
  gap: 1px;
  border: 1px solid var(--ea-line);
  background: var(--ea-line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ea-step {
  min-height: 250px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--ea-panel-deep);
}

.ea-step span {
  color: var(--ea-cyan);
  font: 800 0.65rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.ea-step h3 {
  margin: 1.2rem 0 0.7rem;
  color: #fff;
  font-size: 1.35rem;
}

.ea-step p {
  margin: 0;
  color: var(--ea-muted);
  line-height: 1.6;
}

.ea-step strong {
  color: var(--ea-paper);
}

.ea-confidentiality {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ea-path {
  min-height: 300px;
  border: 1px solid var(--ea-line);
  padding: clamp(1.6rem, 4vw, 3rem);
  background: rgba(4, 15, 27, 0.76);
}

.ea-path:first-child {
  border-top: 3px solid var(--ea-gold);
}

.ea-path:last-child {
  border-top: 3px solid var(--ea-cyan);
}

.ea-path span {
  color: var(--ea-gold-light);
  font: 800 0.64rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.ea-path h3 {
  margin: 1.2rem 0 0.8rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
}

.ea-path p {
  margin: 0;
  color: var(--ea-muted);
  line-height: 1.65;
}

.ea-path a {
  display: inline-block;
  margin-top: 1.4rem;
  color: var(--ea-gold-light);
  font-weight: 800;
}

.ea-no-blocker {
  margin-top: 1.2rem;
  border-left: 3px solid var(--ea-gold);
  padding: 1.2rem 1.4rem;
  color: #d5dee5;
  background: rgba(230, 184, 79, 0.07);
  line-height: 1.6;
}

.ea-wingman {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.ea-wingman__statement {
  border-left: 3px solid var(--ea-gold);
  padding-left: clamp(1.3rem, 3vw, 2.4rem);
}

.ea-wingman__statement strong {
  display: block;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.ea-wingman__copy p {
  color: var(--ea-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.ea-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.ea-scope li {
  border: 1px solid rgba(93, 201, 214, 0.28);
  padding: 0.55rem 0.72rem;
  color: #c5d6df;
  background: rgba(93, 201, 214, 0.05);
  font: 700 0.7rem/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ea-boundary {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ea-boundary article {
  border: 1px solid var(--ea-line);
  padding: 1.5rem;
  background: rgba(7, 24, 40, 0.7);
}

.ea-boundary h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: 1.05rem;
}

.ea-boundary p {
  margin: 0;
  color: var(--ea-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ea-faq {
  display: grid;
  gap: 0.7rem;
  max-width: 900px;
  margin: 0 auto;
}

.ea-faq details {
  border: 1px solid var(--ea-line);
  background: rgba(5, 17, 30, 0.72);
}

.ea-faq summary {
  padding: 1.25rem 1.4rem;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.ea-faq details p {
  margin: 0;
  padding: 0 1.4rem 1.4rem;
  color: var(--ea-muted);
  line-height: 1.65;
}

.ea-final {
  text-align: center;
}

.ea-final h2 {
  max-width: 15ch;
  margin-right: auto;
  margin-left: auto;
}

.ea-final .ea-section__lead {
  max-width: 58ch;
  margin: 1.5rem auto 0;
}

.ea-final .ea-actions {
  justify-content: center;
}

.ea-page :focus-visible {
  outline: 3px solid var(--ea-cyan);
  outline-offset: 4px;
}

.ea-page .site-footer nav a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}

@media (max-width: 920px) {
  .ea-hero__grid,
  .ea-section__head,
  .ea-wingman {
    grid-template-columns: 1fr;
  }

  .ea-hero {
    min-height: auto;
  }

  .ea-hero h1 {
    max-width: 13ch;
  }

  .ea-hero__signal {
    max-width: 560px;
  }

  .ea-offers,
  .ea-boundary {
    grid-template-columns: 1fr;
  }

  .ea-offer {
    min-height: auto;
  }

  .ea-offer__purpose {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .ea-shell {
    width: min(100% - 28px, 1180px);
  }

  .ea-timeline,
  .ea-confidentiality {
    grid-template-columns: 1fr;
  }

  .ea-step,
  .ea-path {
    min-height: auto;
  }

  .ea-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.7rem);
  }

  .ea-hero {
    padding-bottom: 15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ea-button {
    transition: none;
  }
}
