* { margin: 0; padding: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--bone);
}
h1 { font-size: clamp(3.35rem, 5.6vw, 6.25rem); line-height: 0.96; }
h2 { font-size: clamp(2.35rem, 4.2vw, 4.5rem); line-height: 1.02; }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.55rem); line-height: 1.08; }
@media (max-width: 760px) {
  h1 { font-size: clamp(2.6rem, 11vw, 4.2rem); }
}

.section--light h1, .section--light h2, .section--light h3 { color: var(--ink-soft); }

/* ===== Magnet hero ===== */

.magnet-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 12vw, 168px) 0 var(--space-section);
  background: var(--builderz-green);
}
.magnet-hero__media {
  position: absolute;
  inset: 0;
  background-image: url("../images/builderz-world-office.webp");
  background-size: cover;
  background-position: 64% 40%;
  opacity: 0.46;
  filter: saturate(0.78) contrast(1.03) brightness(0.82);
}
.magnet-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 33, 24, 0.92) 0%, rgba(13, 33, 24, 0.72) 48%, rgba(13, 33, 24, 0.28) 100%),
    linear-gradient(180deg, rgba(13, 33, 24, 0.03) 0%, rgba(13, 33, 24, 0.76) 100%);
}
.magnet-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 88%);
  mask-image: linear-gradient(180deg, black, transparent 88%);
  pointer-events: none;
}
.magnet-hero__inner { position: relative; z-index: 1; }
.magnet-hero__inner h1 { max-width: 1020px; }
.magnet-hero__lead {
  font-size: clamp(1.06rem, 1.35vw, 1.28rem);
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.78);
  max-width: 640px;
  margin-top: clamp(28px, 3.4vw, 44px);
}
.magnet-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(34px, 4.2vw, 56px);
}
.magnet-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.55);
  margin-top: clamp(26px, 3.2vw, 40px);
}

/* ===== Sections ===== */

.section--light {
  background: linear-gradient(180deg, rgba(234, 227, 213, 0.82), rgba(244, 240, 232, 0.94)), var(--bone);
  color: var(--ink-soft);
}
.section--dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(168, 133, 74, 0.08), transparent 30rem),
    linear-gradient(180deg, #0d2118, #07160f);
  color: var(--paper);
  border-top: 1px solid rgba(244, 240, 232, 0.10);
  border-bottom: 1px solid rgba(244, 240, 232, 0.10);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.45fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 84px);
}
.section-head p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.64);
}
.section-head p.kicker { color: var(--bronze); font-size: 0.68rem; line-height: 1.5; }
@media (max-width: 980px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

/* ===== Buyer quote ===== */

.buyer-quote {
  max-width: 900px;
  margin-bottom: clamp(64px, 8vw, 112px);
}
.buyer-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--ink-soft);
}
.buyer-quote figcaption {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: clamp(22px, 3vw, 34px);
}

/* ===== Step list (teaser) ===== */

.step-list { list-style: none; border-top: 1px solid var(--builderz-line-light); }
.step-list li {
  display: grid;
  grid-template-columns: minmax(64px, 0.14fr) minmax(180px, 0.36fr) minmax(0, 0.6fr);
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(24px, 3.2vw, 40px) 0;
  border-bottom: 1px solid var(--builderz-line-light);
}
.step-list__num {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--bronze);
}
.step-list__title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.9vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink-soft);
}
.step-list__teaser {
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.64);
}
@media (max-width: 760px) {
  .step-list li { grid-template-columns: 52px 1fr; }
  .step-list__teaser { grid-column: 2; }
}

.dossier-notes {
  max-width: 720px;
  margin-top: clamp(36px, 4.6vw, 60px);
}
.dossier-notes p {
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.64);
}
.dossier-notes p + p { margin-top: 14px; }

/* ===== Prueffrage teaser ===== */

.teaser {
  margin-top: clamp(64px, 8vw, 104px);
  border-top: 1px solid var(--builderz-line-light);
  padding-top: clamp(36px, 4.6vw, 56px);
  max-width: 880px;
}
.teaser__item {
  position: relative;
  padding-left: clamp(44px, 5vw, 60px);
  margin-top: clamp(28px, 3.6vw, 44px);
}
.teaser__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--ink-soft);
}
.teaser__label {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.52);
  margin-bottom: 10px;
}
.teaser__question {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.teaser__body {
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.64);
  max-width: 680px;
}
.teaser__close {
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.64);
  max-width: 680px;
  margin-top: clamp(28px, 3.6vw, 44px);
  margin-bottom: clamp(22px, 3vw, 34px);
}

/* ===== Boundary (dark tease) ===== */

.boundary__intro {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.72);
  max-width: 640px;
  margin-top: clamp(20px, 2.6vw, 32px);
  margin-bottom: clamp(44px, 5.6vw, 72px);
}
.boundary-ledger {
  border-top: 1px solid var(--atelier-line);
}
.boundary-ledger > div {
  display: grid;
  grid-template-columns: minmax(64px, 0.14fr) minmax(200px, 0.4fr) minmax(0, 0.56fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: baseline;
  padding: clamp(20px, 2.8vw, 34px) 0;
  border-bottom: 1px solid var(--atelier-line);
}
.boundary-ledger__num {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--bronze);
}
.boundary-ledger h3 {
  font-size: clamp(1.35rem, 2vw, 2.1rem);
}
.boundary-ledger p {
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.68);
}
@media (max-width: 760px) {
  .boundary-ledger > div { grid-template-columns: 52px 1fr; }
  .boundary-ledger p { grid-column: 2; }
}

.veto-quote {
  max-width: 980px;
  margin-top: clamp(64px, 8vw, 112px);
}
.veto-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--bone);
}
.veto-quote figcaption {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: clamp(22px, 3vw, 34px);
}

/* ===== Credibility strip ===== */

.cred-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4.4vw, 72px);
  margin-top: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--atelier-line-strong);
  padding-top: clamp(28px, 3.6vw, 44px);
}
.cred-strip strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
  color: var(--bone);
}
.cred-strip span {
  display: block;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.58);
  max-width: 22ch;
  margin-top: 14px;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .cred-strip { grid-template-columns: 1fr; }
}

/* ===== Gate ===== */

.gate {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 980px) {
  .gate { grid-template-columns: 1fr; }
}
.gate__pitch p:not(.kicker) {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.64);
  max-width: 560px;
  margin-top: 20px;
}
.gate__pitch h2 + p { margin-top: clamp(24px, 3vw, 36px); }

.gate__panel {
  border: 1px solid var(--builderz-line-light);
  background: rgba(234, 227, 213, 0.55);
  padding: clamp(26px, 3.4vw, 44px);
}
.gate__form { display: grid; gap: 18px; }
.gate__form label { display: grid; gap: 8px; }
.gate__form label > span {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23, 23, 20, 0.7);
}
.gate__form input[type="text"],
.gate__form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--builderz-line-light);
  border-radius: 0;
  background: var(--bone);
  color: var(--ink-soft);
  font: inherit;
}
.gate__form input:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 1px;
  border-color: var(--bronze);
}
.gate__consent {
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}
.gate__consent input { margin-top: 5px; accent-color: var(--bronze); }
.gate__form label.gate__consent > span {
  font-family: "Tiempos Text", Georgia, serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.55;
  color: rgba(23, 23, 20, 0.62);
}
.gate__consent a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.gate__consent a:hover { color: var(--bronze); }
.gate__status {
  min-height: 1.1em;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8f351e;
}
.gate__form .button { justify-self: start; }
.gate__noscript {
  font-size: 0.88rem;
  color: rgba(23, 23, 20, 0.62);
}

.gate__success h3 {
  color: var(--ink-soft);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
}
.gate__success h3:focus { outline: none; }
.gate__success p {
  font-size: clamp(0.95rem, 1.1vw, 1.02rem);
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.64);
  margin-top: 16px;
}
.gate__success p a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.gate__success p a:hover { color: var(--bronze); }
.gate__success .button { margin-top: clamp(24px, 3vw, 36px); }

/* ===== Reveal on scroll ===== */

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 640ms var(--ease-atelier), transform 640ms var(--ease-atelier);
}
.js-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
