:root {
  --ink: #102334;
  --ink-soft: #4d6070;
  --navy: #13283d;
  --navy-deep: #0b1b2a;
  --blue: #2e658e;
  --blue-light: #eaf2f7;
  --gold: #b68a45;
  --paper: #ffffff;
  --mist: #f3f6f8;
  --line: #dbe3e8;
  --success: #2d6a4f;
  --shadow-sm: 0 12px 35px rgba(16, 35, 52, 0.08);
  --shadow-lg: 0 24px 70px rgba(9, 29, 45, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-light { background: var(--mist); }
.section-dark { color: #fff; background: var(--navy-deep); position: relative; overflow: hidden; }
.section-dark::before {
  content: "";
  position: absolute;
  inset: -25% -10% auto 45%;
  height: 620px;
  background: radial-gradient(circle, rgba(64, 124, 164, 0.22), transparent 68%);
  pointer-events: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 16px; }
.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; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 227, 232, 0.85);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 0.98rem; letter-spacing: -0.01em; }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: 0.71rem; }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a { padding: 10px 12px; border-radius: 9px; text-decoration: none; color: #334959; font-size: 0.9rem; font-weight: 650; }
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav a[aria-current="page"] { color: var(--navy); background: var(--blue-light); }
.primary-nav .nav-cta { margin-left: 4px; color: #fff; background: var(--navy); padding-inline: 18px; }
.primary-nav .nav-cta:hover, .primary-nav .nav-cta:focus-visible { color: #fff; background: #1c3b57; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 11px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(19, 40, 61, 0.98), rgba(20, 57, 82, 0.93)),
    radial-gradient(circle at 80% 10%, #3e789e, transparent 40%);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(4, 16, 25, 0.18));
  pointer-events: none;
}
.hero-decoration { position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.12); }
.hero-decoration-one { width: 480px; height: 480px; right: -140px; top: 80px; box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018); }
.hero-decoration-two { width: 220px; height: 220px; left: 42%; bottom: -120px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 88px; padding: 110px 0 120px; }
.eyebrow { margin: 0 0 16px; color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.hero h1, .legal-hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -0.035em; line-height: 1.04; }
.hero h1 { max-width: 790px; font-size: clamp(3.2rem, 7vw, 6.2rem); }
.hero-subtitle { max-width: 680px; margin: 28px 0 0; color: rgba(255, 255, 255, 0.78); font-size: clamp(1.05rem, 1.6vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 22px; border: 1px solid transparent; border-radius: 10px; text-decoration: none; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--gold); box-shadow: 0 12px 30px rgba(182, 138, 69, 0.22); }
.button-primary:hover, .button-primary:focus-visible { background: #c19755; }
.button-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.06); }
.button-secondary:hover, .button-secondary:focus-visible { background: rgba(255, 255, 255, 0.12); }
.button-full { width: 100%; border: 0; }
.hero-note { display: flex; align-items: center; gap: 9px; margin: 26px 0 0; color: rgba(255, 255, 255, 0.63); font-size: 0.9rem; }
.hero-note span { color: #67c495; font-size: 0.7rem; }
.hero-panel { padding: 34px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: var(--shadow-lg); backdrop-filter: blur(15px); }
.panel-label { padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.62); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.process-preview { margin: 0; padding: 24px 0 10px; list-style: none; }
.process-preview li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 17px 0; }
.process-preview li + li { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.process-preview li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.11); color: #f2d6a6; font-size: 0.75rem; font-weight: 800; }
.process-preview strong { display: block; font-size: 1rem; }
.process-preview p { margin: 5px 0 0; color: rgba(255, 255, 255, 0.63); font-size: 0.9rem; }
.panel-footnote { margin-top: 12px; padding: 15px 17px; color: #d9e9f3; background: rgba(8, 24, 37, 0.4); border-radius: 10px; font-size: 0.88rem; text-align: center; }

.trust-bar { position: relative; z-index: 3; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 94px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; }
.trust-grid div { display: flex; align-items: center; gap: 10px; padding: 20px 18px; color: #455969; font-size: 0.82rem; font-weight: 650; border-right: 1px solid var(--line); }
.trust-grid div:first-child { border-left: 1px solid var(--line); }
.trust-grid span { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; color: var(--success); background: #e8f4ee; border-radius: 50%; font-size: 0.75rem; }

.split-layout { display: grid; grid-template-columns: 1.16fr 0.84fr; gap: 90px; align-items: center; }
.section-intro h2, .section-heading h2, .contact-copy h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4vw, 3.7rem); font-weight: 500; letter-spacing: -0.035em; line-height: 1.12; }
.section-intro > p:not(.eyebrow) { max-width: 720px; color: var(--ink-soft); font-size: 1.02rem; }
.principles-card { position: relative; padding: 38px; color: #fff; background: var(--navy); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.principles-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -90px; bottom: -110px; border: 48px solid rgba(255, 255, 255, 0.045); border-radius: 50%; }
.card-kicker { margin: 0 0 22px; color: #dcc397; font-size: 0.77rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 34px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #8fd0ab; }

.registration-section { background: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.section-heading > p { max-width: 480px; margin: 0 0 8px; color: var(--ink-soft); }
.section-heading-light { position: relative; z-index: 1; }
.section-heading-light > p { color: rgba(255, 255, 255, 0.65); }
.data-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.data-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 10px 35px rgba(16, 35, 52, 0.04); }
.data-card-wide { grid-column: 1 / -1; }
.data-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.data-card-header > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--blue); background: var(--blue-light); font-size: 0.72rem; font-weight: 800; }
.data-card h3 { margin: 0; font-size: 1.08rem; letter-spacing: -0.015em; }
.data-list { margin: 0; }
.data-list.two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 36px; }
.data-list > div { display: grid; grid-template-columns: minmax(145px, 0.85fr) 1.15fr; gap: 20px; padding: 13px 0; border-top: 1px solid #edf1f3; }
.data-list dt { color: #6a7b88; font-size: 0.82rem; }
.data-list dd { margin: 0; color: var(--ink); font-size: 0.9rem; font-weight: 700; overflow-wrap: anywhere; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 4px 9px; color: var(--success); background: #e8f4ee; border-radius: 99px; font-size: 0.78rem; }
.status-pill::before { content: ""; width: 6px; height: 6px; background: currentColor; border-radius: 50%; }

.steps-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 22px; }
.step-card { min-height: 250px; padding: 30px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.055); }
.step-number { display: inline-flex; margin-bottom: 48px; color: #e0c395; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; }
.step-card h3, .operations-grid h3 { margin: 0 0 10px; font-size: 1.18rem; }
.step-card p, .operations-grid p { margin: 0; color: rgba(255, 255, 255, 0.63); font-size: 0.91rem; }
.operations-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 22px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-md); overflow: hidden; }
.operations-grid article { padding: 28px; background: #10263a; }
.operation-icon { width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 10px; color: #e0c395; background: rgba(255, 255, 255, 0.07); font-weight: 800; }

.contact-section { background: linear-gradient(180deg, #fff, #f5f7f8); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 84px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.03rem; }
.contact-details { margin: 34px 0 0; }
.contact-details > div { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 15px 0; border-top: 1px solid var(--line); }
.contact-details dt { color: #6c7d89; font-size: 0.82rem; }
.contact-details dd { margin: 0; font-size: 0.91rem; font-weight: 700; }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.form-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 26px; }
.form-heading h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; font-weight: 500; }
.form-heading p { margin: 0; color: #748490; font-size: 0.8rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form > label, .field-grid label { display: grid; gap: 8px; margin-bottom: 17px; color: #334959; font-size: 0.84rem; font-weight: 750; }
input, select, textarea { width: 100%; border: 1px solid #cad5dc; border-radius: 9px; background: #fff; color: var(--ink); outline: none; }
input, select { min-height: 49px; padding: 0 13px; }
textarea { resize: vertical; min-height: 140px; padding: 12px 13px; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(46, 101, 142, 0.1); }
.consent-field { grid-template-columns: 20px 1fr; align-items: start; gap: 11px; font-weight: 500; line-height: 1.45; }
.consent-field input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--navy); }
.form-disclaimer { margin: 13px 0 0; color: #7a8994; font-size: 0.76rem; text-align: center; }
.form-status { margin-top: 18px; padding: 14px 16px; border-radius: 9px; font-size: 0.88rem; }
.form-status.success { color: #245b43; background: #e8f4ee; border: 1px solid #c8e4d5; }
.form-status.error { color: #8b302d; background: #fff0ef; border: 1px solid #f2cecb; }

.site-footer { padding: 72px 0 0; color: rgba(255, 255, 255, 0.72); background: #0a1926; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 0.9fr; gap: 64px; padding-bottom: 48px; }
.footer-label { margin: 0 0 18px; color: #d7bd8e; font-size: 0.73rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.site-footer h2 { margin: 0 0 18px; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; }
.site-footer dl { margin: 0; }
.site-footer dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 8px 0; }
.site-footer dt { color: rgba(255, 255, 255, 0.46); font-size: 0.77rem; }
.site-footer dd { margin: 0; font-size: 0.82rem; overflow-wrap: anywhere; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 22px; }
.footer-links a { color: #fff; text-underline-offset: 4px; font-size: 0.84rem; }
.footer-contact { padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-contact p { margin: 3px 0; font-size: 0.82rem; }
.footer-contact strong { color: #fff; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.78rem; }
.footer-bottom p { margin: 0; }
.compact-footer { padding-top: 0; }

.legal-hero { padding: 100px 0 78px; color: #fff; background: linear-gradient(120deg, var(--navy-deep), #1c4767); }
.legal-hero-inner { max-width: 850px; }
.legal-hero h1 { font-size: clamp(3rem, 7vw, 5.3rem); }
.legal-hero p:not(.eyebrow) { max-width: 720px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.7); font-size: 1.08rem; }
.legal-section { padding-top: 78px; }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 780px); justify-content: center; gap: 80px; align-items: start; }
.legal-nav { position: sticky; top: 108px; display: grid; gap: 4px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--mist); }
.legal-nav p { margin: 0 0 10px; color: var(--ink); font-size: 0.79rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.legal-nav a { padding: 7px 8px; border-radius: 7px; color: #5d7080; text-decoration: none; font-size: 0.81rem; }
.legal-nav a:hover { color: var(--navy); background: #fff; }
.legal-content section { scroll-margin-top: 110px; padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 13px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; letter-spacing: -0.025em; }
.legal-content p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--blue); font-weight: 750; text-underline-offset: 4px; }
.legal-notice { padding: 24px; background: var(--blue-light); border-left: 4px solid var(--blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.legal-notice p { margin: 6px 0 0; }

:focus-visible { outline: 3px solid rgba(46, 101, 142, 0.35); outline-offset: 3px; }

@media (max-width: 1040px) {
  .primary-nav a { padding-inline: 8px; font-size: 0.83rem; }
  .hero-grid { grid-template-columns: 1fr 0.8fr; gap: 45px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid div:first-child { border-left: 0; }
  .trust-grid div { border-bottom: 1px solid var(--line); }
  .split-layout, .contact-grid { gap: 50px; }
  .operations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid section:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 720px); }
  .section { padding: 76px 0; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 13px; }
  .primary-nav .nav-cta { margin: 4px 0 0; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 90px 0; }
  .hero-panel { max-width: 620px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .split-layout, .contact-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; gap: 20px; }
  .data-list.two-column { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .step-number { margin-bottom: 24px; }
  .legal-layout { grid-template-columns: 1fr; gap: 34px; }
  .legal-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .legal-nav p { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 24px, 540px); }
  .header-inner { min-height: 70px; }
  .brand-copy small { display: none; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-panel, .principles-card, .form-card { padding: 25px; border-radius: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; }
  .data-grid { grid-template-columns: 1fr; }
  .data-card-wide { grid-column: auto; }
  .data-card { padding: 23px; }
  .data-list > div { grid-template-columns: 1fr; gap: 4px; }
  .operations-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-details > div { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid section:last-child { grid-column: auto; }
  .site-footer dl > div { grid-template-columns: 1fr; gap: 2px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
  .legal-nav { grid-template-columns: 1fr; }
  .legal-nav p { grid-column: auto; }
}

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