.elementor-1782 .elementor-element.elementor-element-17c0705{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-17c0705 */.whitepaper-cover-image {
  margin-bottom: 40px;
}/* End custom CSS */
/* Start custom CSS */:root {
  --navy: #1B2A4A;
  --navy-90: #243456;
  --orange: #F28745;
  --cyan: #13BEDB;
  --offwhite: #FAFAF7;
  --white: #FFFFFF;
  --slate: #6B7280;
  --slate-line: rgba(107, 114, 128, 0.18);
  --slate-line-soft: rgba(107, 114, 128, 0.12);
  --display: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

.eidas-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12.5px;
  color: var(--orange);
  margin: 0;
}

/* ---- Hero ---- */
.eidas-hero {
  padding: clamp(34px, 4.4vw, 56px) 0 clamp(44px, 5vw, 72px);
  background-image:
    linear-gradient(rgba(27, 42, 74, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 42, 74, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--slate);
}
.doc-meta .sep { width: 1px; height: 11px; background: var(--slate-line); }
.doc-meta span:not(.sep) { white-space: nowrap; }

.hero-head { max-width: 920px; }
.eidas-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 16px 0 0;
  text-wrap: balance;
}
.eidas-hero .subhead {
  color: var(--slate);
  font-size: clamp(17px, 1.6vw, 19.5px);
  line-height: 1.55;
  max-width: 68ch;
  margin: 20px 0 0;
}

.hero-body {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.hero-left { display: flex; flex-direction: column; gap: clamp(34px, 4vw, 48px); }

/* ---- Whitepaper cover ---- */
.whitepaper-cover-image {
  width: 100%;
  max-width: 340px;
  border-radius: 12px;
  box-shadow: 0 30px 60px -30px rgba(27, 42, 74, 0.5);
  transform: rotate(-4deg) translateY(40px);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.whitepaper-cover-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.whitepaper-cover-image.in-view { transform: rotate(0deg) translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .whitepaper-cover-image { transform: rotate(-1.4deg); transition: none; }
}

/* ---- Form card (holds Brevo iframe) ---- */
.form-card {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.form-card iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}
.hero-right { position: sticky; top: 96px; }

.privacy {
  font-size: 11px;
  color: var(--slate);
  line-height: 1.5;
  margin-top: 12px;
}
.privacy a {
  color: var(--slate);
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-underline-offset: 2px;
}

/* ---- Table of contents ---- */
.inside-block h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 26px);
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-top: 10px;
}
.toc {
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(107, 114, 128, 0.2);
}
.toc-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(107, 114, 128, 0.2);
  border-radius: 6px;
  transition: background .2s ease, border-color .2s ease;
}
.toc-row:hover { background: var(--offwhite); border-bottom-color: var(--cyan); }
.toc-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.02em;
  transition: transform .2s ease;
}
.toc-row:hover .toc-num { transform: translateX(4px); }
.toc-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-body { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { position: static; top: auto; }
  .whitepaper-cover-image {
    transform: rotate(-2deg) translateY(0);
    max-width: 240px;
    margin: 20px auto 40px;
  }
  .form-card iframe {
    height: 1100px !important;
  }
}
@media (max-width: 560px) {
  .form-card iframe {
    height: 1200px !important;
  }
}/* End custom CSS */