:root {
  --navy: #002d72;
  --navy-dark: #001f50;
  --navy-soft: #eaf1fb;
  --pale: #f6f9fd;
  --white: #ffffff;
  --ink: #16233a;
  --muted: #5d6879;
  --line: #dbe4f0;
  --success: #14653d;
  --danger: #9b1c31;
  --shadow: 0 18px 52px rgba(0, 45, 114, 0.10);
  --radius: 22px;
  --font: "Gitaluevo", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, .button { -webkit-tap-highlight-color: transparent; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(760px, 100%); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(219,228,240,.85);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand-link { flex: 0 0 auto; display: inline-flex; align-items: center; text-decoration: none; }
.brand-link img { width: 104px; }
.primary-nav { display: flex; align-items: center; gap: 27px; font-size: .94rem; font-weight: 700; }
.primary-nav a { text-decoration: none; color: var(--navy); }
.primary-nav a.button { color: var(--white); }
.primary-nav a:not(.button):hover, .primary-nav a:not(.button):focus-visible { text-decoration: underline; text-underline-offset: 5px; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.button:hover, .button:focus-visible { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(0,45,114,.18); }
.button-outline { background: transparent; color: var(--navy); }
.button-outline:hover, .button-outline:focus-visible { color: #fff; }
.button-small { min-height: 42px; padding: 9px 17px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 126px) 0 clamp(76px, 10vw, 118px);
  text-align: center;
  background:
    radial-gradient(circle at 15% 16%, rgba(0,45,114,.08), transparent 27%),
    radial-gradient(circle at 87% 78%, rgba(0,45,114,.07), transparent 30%),
    #fff;
}
.hero::before, .hero::after { content: ""; position: absolute; border: 1px solid rgba(0,45,114,.10); border-radius: 50%; pointer-events: none; }
.hero::before { width: 420px; height: 420px; left: -275px; bottom: -220px; }
.hero::after { width: 340px; height: 340px; right: -235px; top: -165px; }
.hero-logo { width: clamp(160px, 24vw, 250px); margin: 0 auto 33px; }
.eyebrow { margin: 0 0 13px; color: var(--navy); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--navy); line-height: 1.12; letter-spacing: -.025em; }
h1 { max-width: 930px; margin-inline: auto; margin-bottom: 25px; font-size: clamp(2.45rem, 7vw, 5rem); }
h1 span { display: block; }
h2 { margin-bottom: 19px; font-size: clamp(2rem, 4.6vw, 3.35rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2.5vw, 1.8rem); }
.lede { max-width: 800px; margin: 0 auto; color: #3e4a5e; font-size: clamp(1.06rem, 2vw, 1.3rem); }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.section { padding: clamp(70px, 9vw, 108px) 0; }
.section-pale { background: var(--pale); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.center { margin-inline: auto; text-align: center; }

.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.audience-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.audience-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -80px; bottom: -92px; border: 32px solid var(--navy-soft); border-radius: 50%; }
.audience-label { display: inline-flex; align-self: flex-start; margin-bottom: 24px; padding: 7px 12px; border-radius: 999px; background: var(--navy-soft); color: var(--navy); font-size: .77rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.audience-card p { margin: 0 0 28px; color: var(--muted); }
.audience-card .button { align-self: flex-start; margin-top: auto; z-index: 1; }
.statement { margin-top: 26px; padding: 28px 34px; border-radius: var(--radius); background: var(--navy); color: #fff; text-align: center; font-size: clamp(1.12rem, 2.2vw, 1.4rem); }
.statement p { margin: 0; }

.registration-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(35px, 7vw, 78px); align-items: start; }
.registration-intro { position: sticky; top: 116px; }
.registration-intro p:not(.eyebrow) { color: var(--muted); }
.tab-list { display: flex; gap: 8px; margin: 0 0 18px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.tab-button { flex: 1; min-height: 46px; border: 0; border-radius: 999px; background: transparent; color: var(--navy); font-weight: 800; cursor: pointer; }
.tab-button[aria-selected="true"] { background: var(--navy); color: #fff; }
.form-panel { padding: clamp(26px, 4.2vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-panel[hidden] { display: none; }
.form-panel h3 { margin-bottom: 7px; }
.form-panel > p { margin: 0 0 28px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 19px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .91rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #bac8da;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(0,45,114,.10); }
.consent-field { margin-top: 2px; }
.checkbox-label { display: grid !important; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; margin: 0 !important; color: var(--ink) !important; font-size: .88rem !important; font-weight: 500 !important; line-height: 1.45; }
.checkbox-label input { width: 19px; min-height: 19px; height: 19px; margin: 2px 0 0; padding: 0; accent-color: var(--navy); }
.checkbox-label a { color: var(--navy); font-weight: 800; }
.form-footer { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; margin-top: 24px; }
.form-message { width: 100%; margin: 0; padding-top: 5px; font-weight: 700; }
.form-message.notice { color: var(--navy); }
.form-message.error { color: var(--danger); }

.investor-cta { padding: 60px 0; background: var(--navy); color: #fff; }
.investor-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.investor-cta .eyebrow, .investor-cta h2 { color: #fff; }
.investor-cta h2 { margin-bottom: 8px; }
.investor-cta p:last-child { margin: 0; color: rgba(255,255,255,.78); }
.investor-cta .button { flex: 0 0 auto; border-color: #fff; background: #fff; color: var(--navy); }
.investor-cta .button:hover { background: var(--navy-soft); }

.page-hero { padding: clamp(68px, 9vw, 106px) 0 70px; text-align: center; background: linear-gradient(180deg,#fff 0%,var(--pale) 100%); }
.page-hero .hero-logo { margin-bottom: 24px; }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
.seis-badge { display: inline-flex; margin-bottom: 23px; padding: 8px 13px; border-radius: 999px; background: var(--navy-soft); color: var(--navy); font-size: .82rem; font-weight: 900; }
.investor-content { display: grid; grid-template-columns: 1fr .86fr; gap: clamp(38px, 8vw, 90px); align-items: start; }
.copy-panel p { color: #465267; }
.copy-panel .lead-copy { color: var(--ink); font-size: 1.16rem; }

.legal-hero { padding: 76px 0 42px; background: var(--pale); }
.legal-body { min-height: 48vh; padding: 55px 0 90px; }
.approval-notice { margin-bottom: 34px; padding: 18px 20px; border: 2px solid #d69a21; border-radius: 14px; background: #fff9eb; color: #654507; font-weight: 800; }
.legal-date { margin: 12px 0 0; color: var(--muted); }
.legal-container { width: min(900px, calc(100% - 40px)); margin-inline: auto; }
.legal-copy { color: #39465a; }
.legal-copy > p:first-child { color: var(--ink); font-size: 1.08rem; }
.legal-copy h2 { margin-top: 42px; margin-bottom: 13px; font-size: 1.48rem; }
.legal-copy h3 { margin-top: 28px; font-size: 1.15rem; }
.legal-copy ul { padding-left: 1.25rem; }
.legal-copy li + li { margin-top: 8px; }
.legal-copy address { padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--pale); font-style: normal; }
.legal-copy a { color: var(--navy); font-weight: 700; text-underline-offset: 3px; }
.table-wrap { margin: 22px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--pale); color: var(--navy); font-size: .9rem; }
tbody tr:last-child td { border-bottom: 0; }
.rights-callout, .cookie-status-card { margin: 22px 0; padding: 20px 22px; border-left: 4px solid var(--navy); border-radius: 0 14px 14px 0; background: var(--pale); color: var(--ink); }
.cookie-status-card p { margin: 8px 0 0; }

.site-footer { padding: 48px 0 30px; border-top: 1px solid var(--line); background: #fff; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.footer-brand img { width: 110px; margin-bottom: 13px; }
.footer-brand p { margin: 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 13px 24px; }
.footer-links a { color: var(--navy); font-size: .9rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

@media (max-width: 850px) {
  .menu-button { display: block; }
  .primary-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 13px; }
  .primary-nav .button { margin-top: 5px; }
  .audience-grid, .registration-wrap, .investor-content { grid-template-columns: 1fr; }
  .registration-intro { position: static; }
  .investor-cta-inner, .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 68px; }
  .brand-link img { width: 88px; }
  .hero { padding-top: 62px; }
  h1 { font-size: clamp(2.35rem, 13vw, 3.65rem); }
  h1 span { display: inline; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .audience-card { min-height: 0; padding: 28px; }
  .statement { padding: 23px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .tab-list { border-radius: 16px; }
  .tab-button { padding-inline: 10px; }
  .form-footer .button { width: 100%; }
  .investor-cta .button { width: 100%; }
  .footer-links { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* Live registration forms */
[data-forgebos-form] {
  width: 100%;
  min-height: 320px;
}
[data-forgebos-form] iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}
