.ey2026 {
  --ey-yellow: #FED018;
  --ey-navy: #052651;
  --ey-navy-soft: #0a3a78;
  --ey-ink: #0c1a2e;
  --ey-muted: #5a6b80;
  --ey-line: #d7e0ec;
  --ey-paper: #f5f8fc;
  --ey-panel: #ffffff;
  --ey-soft: #eef3fb;
  --ey-shadow: 0 18px 42px rgba(5, 38, 81, 0.12);

  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 64px;
  color: var(--ey-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.ey2026 * {
  box-sizing: border-box;
}

.ey2026 h1,
.ey2026 h2,
.ey2026 h3,
.ey2026 p {
  overflow-wrap: anywhere;
}

/* Topbar */
.ey-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 3px solid var(--ey-yellow);
  padding: 12px 4px;
  background: rgba(255, 255, 255, 0.97);
}

.ey-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ey-navy);
  font-weight: 900;
  text-decoration: none;
}

.ey-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.ey-nav a {
  display: inline-grid;
  min-height: 40px;
  place-items: center;
  border-radius: 8px;
  padding: 8px 16px;
  background: var(--ey-navy);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

/* Hero */
.ey-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.ey-eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  border-radius: 999px;
  padding: 7px 14px;
  background: var(--ey-yellow);
  color: var(--ey-navy);
  font-size: 13px;
  font-weight: 900;
}

.ey-hero h1 {
  margin: 0 0 10px;
  color: var(--ey-navy);
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.04;
}

.ey-tagline {
  margin: 0 0 14px;
  color: var(--ey-navy-soft);
  font-size: clamp(18px, 3vw, 24px);
  font-style: italic;
  font-weight: 800;
}

.ey-lead {
  max-width: 760px;
  margin: 0 0 20px;
  color: #354250;
  font-size: 18px;
}

/* Benefits box */
.ey-benefits {
  border: 1px solid var(--ey-line);
  border-top: 6px solid var(--ey-yellow);
  border-radius: 12px;
  padding: 24px;
  background: var(--ey-panel);
  box-shadow: var(--ey-shadow);
}

.ey-benefits h2 {
  margin: 0 0 8px;
  color: var(--ey-navy);
}

.ey-benefits-sub {
  margin: 16px 0 6px;
  color: var(--ey-navy);
  font-weight: 900;
}

.ey-benefits ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

/* Panels */
.ey-panel {
  margin-bottom: 28px;
  border: 1px solid var(--ey-line);
  border-radius: 12px;
  padding: clamp(20px, 4vw, 32px);
  background: var(--ey-panel);
  box-shadow: var(--ey-shadow);
}

.ey-panel h2 {
  margin: 0 0 14px;
  color: var(--ey-navy);
  font-size: 28px;
}

.ey-about p {
  max-width: 900px;
  color: #354250;
}

.ey-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0;
}

.ey-card {
  border: 1px solid var(--ey-line);
  border-left: 5px solid var(--ey-navy);
  border-radius: 10px;
  padding: 20px;
  background: var(--ey-soft);
}

.ey-card h3 {
  margin: 0 0 10px;
  color: var(--ey-navy);
}

.ey-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}

.ey-tags li {
  border: 1px solid var(--ey-navy);
  border-radius: 999px;
  padding: 5px 12px;
  background: #fff;
  color: var(--ey-navy);
  font-size: 13px;
  font-weight: 700;
}

.ey-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.ey2026 .ey-highlight > div {
  border-radius: 10px;
  padding: 20px;
  background: var(--ey-navy);
  color: #ffffff;
}

.ey2026 .ey-highlight > div h3 {
  margin: 0 0 8px;
  color: var(--ey-yellow);
}

.ey2026 .ey-highlight > div p,
.ey2026 .ey-highlight > div strong {
  margin: 0;
  color: #ffffff;
}

/* Section head */
.ey-section-head {
  margin-bottom: 18px;
}

.ey-section-head p {
  margin: 0;
  color: var(--ey-muted);
}

/* Form */
.ey-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ey-group {
  margin: 8px 0 0;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ey-yellow);
  color: var(--ey-navy);
  font-size: 18px;
}

.ey2026 label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.ey2026 label span {
  font-size: 14px;
}

.ey2026 label span em {
  color: #c2410c;
  font-style: normal;
}

.ey2026 input,
.ey2026 select,
.ey2026 textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--ey-line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ey-ink);
  font: inherit;
}

.ey2026 input[type="file"] {
  padding: 9px 12px;
}

.ey2026 textarea {
  resize: vertical;
}

.ey2026 input:focus,
.ey2026 select:focus,
.ey2026 textarea:focus,
.ey2026 button:focus {
  outline: 3px solid rgba(254, 208, 24, 0.6);
  outline-offset: 2px;
}

.span-2 {
  grid-column: span 2;
}

.ey-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.ey-checkbox input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.ey-form-message {
  margin: 0;
  font-weight: 800;
}

.ey-form-message.ey-error {
  color: #b91c1c;
}

.ey-form-message.ey-success {
  color: #0a7c3f;
}

/* Buttons */
.ey-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ey-navy);
  border-radius: 8px;
  padding: 10px 20px;
  background: #fff;
  color: var(--ey-navy);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.ey-button.ey-primary {
  border-color: var(--ey-navy);
  background: var(--ey-navy);
  color: var(--ey-yellow);
}

.ey-button.ey-primary:hover {
  background: var(--ey-navy-soft);
}

/* Certificate */
.ey-hidden {
  display: none;
}

.ey-certificate-wrap {
  margin-top: 8px;
}

.ey-success-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.ey-success-actions h2 {
  margin: 0;
  color: var(--ey-navy);
}

.ey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ey-certificate {
  position: relative;
  min-height: 640px;
  border: 14px solid var(--ey-navy);
  outline: 3px solid var(--ey-yellow);
  outline-offset: -26px;
  padding: clamp(34px, 7vw, 72px);
  background: #fff;
  text-align: center;
  box-shadow: var(--ey-shadow);
}

.ey-cert-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 6px;
}

.ey-cert-kicker {
  margin: 0;
  color: var(--ey-navy);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ey-certificate h2 {
  max-width: 860px;
  margin: 10px auto 0;
  color: var(--ey-navy);
  font-size: clamp(26px, 4.5vw, 46px);
}

.ey-cert-copy {
  max-width: 760px;
  margin: 16px auto;
  font-size: 20px;
}

.ey-certificate h3 {
  margin: 22px auto;
  color: var(--ey-navy-soft);
  font-size: clamp(34px, 6vw, 60px);
}

.ey-cert-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 28px 0 18px;
  color: var(--ey-navy);
  font-weight: 900;
}

.ey-cert-note {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ey-muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 780px) {
  .ey-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ey-nav {
    width: 100%;
  }

  .ey-nav a {
    width: 100%;
  }

  .ey-hero,
  .ey-cards,
  .ey-highlight,
  .ey-form-grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: span 1;
  }

  .ey-button,
  .ey-actions,
  .ey-success-actions {
    width: 100%;
  }

  .ey-success-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ey-certificate {
    min-height: auto;
    border-width: 8px;
    outline-offset: -18px;
  }
}

/* Print */
@media print {
  body * {
    visibility: hidden;
  }

  #ey2026CertificateSection,
  #ey2026CertificateSection * {
    visibility: visible;
  }

  #ey2026CertificateSection {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }

  .ey-success-actions {
    display: none;
  }

  .ey-certificate {
    min-height: 100vh;
    box-shadow: none;
  }
}
