:root {
  --navy: #080b0e;
  --navy-2: #151a20;
  --blue: #b7332d;
  --gold: #d7a53e;
  --ink: #17120f;
  --muted: #62686f;
  --line: #e2d8c7;
  --bg: #f4f0e8;
  --white: #ffffff;
  --ok: #18794e;
  --danger: #9b1c1c;
  --red: #b7332d;
  --charcoal: #080b0e;
  --sand: #f0dfbc;
  --shadow: 0 18px 45px rgba(8, 11, 14, 0.16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 20;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  background: rgba(8, 11, 14, 0.98);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 3px solid var(--red);
}

.header-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(215, 165, 62, 0.75);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.brand-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 650;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #eaf3ff;
  text-decoration: none;
  font-size: 0.94rem;
}

.site-nav a:hover {
  color: var(--gold);
}

.portal-link {
  border: 1px solid rgba(244, 185, 66, 0.65);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(183, 51, 45, 0.18);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(215, 165, 62, 0.2), transparent 34rem),
    radial-gradient(circle at bottom left, rgba(183, 51, 45, 0.22), transparent 32rem),
    linear-gradient(135deg, #080b0e, #151a20 58%, #22110f);
  color: var(--white);
  padding: 86px 0 58px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 850;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.22rem;
}

.hero p {
  color: #dbe8f6;
  font-size: 1.18rem;
  max-width: 720px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 850;
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-logo {
  display: block;
  width: min(270px, 100%);
  margin: 0 auto 22px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(215, 165, 62, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.hero-card strong {
  color: var(--gold);
}

.hero-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.section {
  padding: 70px 0;
}

.section-light {
  background: var(--bg);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.card,
.notice,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.06);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(183, 51, 45, 0.1);
  color: var(--red);
  font-weight: 900;
  margin-bottom: 16px;
}

.notice {
  border-left: 6px solid var(--gold);
}

.compliance-list {
  padding-left: 20px;
}

.compliance-list li {
  margin-bottom: 10px;
}

.contact-strip {
  background: var(--navy);
  color: var(--white);
  border-radius: 26px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.contact-strip p {
  color: #dbe8f6;
  margin: 0;
}

.contact-strip a {
  color: var(--white);
}

.site-footer {
  background: #080b0e;
  color: #d6e3f1;
  padding: 34px 0;
  border-top: 3px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #eaf3ff;
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(215, 165, 62, 0.18), transparent 30rem),
    linear-gradient(135deg, #080b0e, #151a20);
  color: var(--white);
  padding: 58px 0;
}

.page-hero p {
  color: #dbe8f6;
  max-width: 760px;
}

.page-content {
  max-width: 900px;
}

.page-content h2 {
  font-size: 1.55rem;
  margin-top: 32px;
}

.form-card {
  max-width: 900px;
}

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

label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #b9c8d8;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(183, 51, 45, 0.18);
  border-color: var(--red);
}

.required-note {
  color: var(--muted);
  margin-bottom: 22px;
}

.consent-box {
  margin-top: 20px;
  padding: 18px;
  background: #f5f8fb;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.checkbox-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 600;
}

.checkbox-line input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.fine-print {
  font-size: 0.92rem;
  color: var(--muted);
}

.success-note {
  display: none;
  margin-top: 16px;
  border: 1px solid #b7e2cb;
  background: #ecf9f2;
  color: var(--ok);
  padding: 14px;
  border-radius: 12px;
  font-weight: 750;
}

.error-note {
  color: var(--danger);
  font-weight: 750;
}

@media (max-width: 880px) {
  .header-inner,
  .hero-grid,
  .two-grid,
  .contact-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    gap: 10px;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 58px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
