:root {
  --navy-950: #040914;
  --navy-900: #07142f;
  --navy-800: #091f4f;
  --navy-700: #0d3279;
  --blue: #1158df;
  --blue-soft: #dce8ff;
  --gold: #d9a23a;
  --gold-soft: #f7e4b1;
  --white: #ffffff;
  --ink: #16233f;
  --muted: #68748a;
  --line: rgba(18, 40, 84, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --danger: #b42318;
  --success: #067647;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-lg: 0 28px 80px rgba(4, 18, 45, 0.22);
  --shadow-md: 0 16px 42px rgba(4, 18, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(17, 88, 223, 0.16), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(217, 162, 58, 0.2), transparent 32rem),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 42%, #f5f8ff 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(7, 20, 47, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 20, 47, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.42), transparent 60%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(8, 27, 67, 0.14));
}

.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-800);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
  font-weight: 700;
}

.tm {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.42em;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 4px;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--navy-800);
}

.language-select {
  min-width: 72px;
  appearance: none;
  border: 1px solid rgba(13, 50, 121, 0.16);
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy-800);
  border-radius: 999px;
  padding: 10px 32px 10px 14px;
  font-weight: 800;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy-800) 50%), linear-gradient(135deg, var(--navy-800) 50%, transparent 50%);
  background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  box-shadow: 0 8px 22px rgba(7, 20, 47, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 54px;
  align-items: center;
  padding: 80px 0 38px;
}

.hero-content {
  padding: 10px 0;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  color: var(--navy-900);
  font-size: clamp(3.2rem, 7vw, 6.55rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
  max-width: 880px;
}

h2 {
  color: var(--navy-900);
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

h3 {
  color: var(--navy-900);
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.4vw, 1.25rem);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  min-height: 52px;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-800), var(--blue));
  box-shadow: 0 18px 42px rgba(17, 88, 223, 0.3);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-800);
  border: 1px solid rgba(13, 50, 121, 0.15);
  box-shadow: 0 12px 34px rgba(7, 20, 47, 0.08);
}

.trust-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(13, 50, 121, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: #4e5b75;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.64)),
    linear-gradient(135deg, rgba(17,88,223,0.16), rgba(217,162,58,0.24));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(13, 50, 121, 0.08);
  border-radius: 26px;
}

.hero-logo {
  position: relative;
  width: min(82%, 440px);
  filter: drop-shadow(0 28px 40px rgba(4, 18, 45, 0.22));
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.78;
}

.orb-one {
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(17,88,223,0.28), transparent 70%);
  top: 18px;
  right: -48px;
}

.orb-two {
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(217,162,58,0.26), transparent 68%);
  bottom: -78px;
  left: -62px;
}

.status-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 20, 47, 0.86);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 850;
  backdrop-filter: blur(18px);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3ef2a5;
  box-shadow: 0 0 0 8px rgba(62, 242, 165, 0.13);
}

.notice-panel {
  background: linear-gradient(135deg, rgba(7, 20, 47, 0.96), rgba(9, 31, 79, 0.95));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-md);
  margin: 18px 0 86px;
  border: 1px solid rgba(217, 162, 58, 0.28);
}

.notice-panel strong {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.notice-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 92px;
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 820px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.info-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 50, 121, 0.1);
  box-shadow: 0 16px 38px rgba(7, 20, 47, 0.08);
}

.info-card .number {
  display: inline-flex;
  color: var(--gold);
  font-weight: 950;
  margin-bottom: 30px;
  letter-spacing: -0.04em;
  font-size: 2.2rem;
}

.info-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.register-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 80px;
}

.register-intro {
  position: sticky;
  top: 112px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.46));
  border: 1px solid rgba(13, 50, 121, 0.1);
  box-shadow: 0 16px 42px rgba(7, 20, 47, 0.08);
}

.register-intro p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
}

.interest-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 50, 121, 0.11);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(22px, 3vw, 40px);
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 26px;
}

legend {
  font-weight: 950;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.role-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.role-option {
  border: 1px solid rgba(13, 50, 121, 0.13);
  border-radius: 18px;
  padding: 14px 14px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-weight: 900;
  color: var(--navy-800);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.role-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.role-option.active {
  border-color: rgba(17, 88, 223, 0.65);
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  box-shadow: 0 12px 28px rgba(17, 88, 223, 0.12);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 850;
  margin-bottom: 16px;
}

label span,
legend {
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(13, 50, 121, 0.16);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(17, 88, 223, 0.8);
  box-shadow: 0 0 0 4px rgba(17, 88, 223, 0.12);
}

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

.role-section {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 10px;
}

.role-section h3 {
  margin-bottom: 18px;
}

.hidden {
  display: none !important;
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkboxes {
  display: grid;
  gap: 10px;
  margin: 20px 0 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(245, 248, 255, 0.9);
  border: 1px solid rgba(13, 50, 121, 0.08);
}

.checkbox-line {
  display: flex;
  grid-template-columns: none;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: #4d5b76;
  font-weight: 650;
  line-height: 1.5;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex: 0 0 auto;
}

.checkbox-line a {
  color: var(--blue);
  font-weight: 900;
}

.form-status {
  min-height: 0;
  margin-bottom: 16px;
}

.form-status:not(:empty) {
  padding: 14px 16px;
  border-radius: 16px;
  line-height: 1.5;
  font-weight: 750;
}

.form-status.success {
  color: var(--success);
  background: rgba(6, 118, 71, 0.08);
  border: 1px solid rgba(6, 118, 71, 0.18);
}

.form-status.error {
  color: var(--danger);
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.18);
}

.submit-button {
  width: 100%;
  font-size: 1rem;
}

.footer {
  border-top: 1px solid rgba(13, 50, 121, 0.12);
  padding: 36px 0 46px;
  color: var(--muted);
  line-height: 1.65;
}

.footer strong {
  display: block;
  color: var(--navy-900);
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.footer p {
  max-width: 980px;
}

.copyright {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.legal-page .topbar {
  position: relative;
}

.legal-content {
  max-width: 880px;
  margin: 64px auto 96px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 50, 121, 0.11);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 32px;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.78;
}

.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;
}

@media (max-width: 980px) {
  .hero,
  .register-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-card {
    min-height: 430px;
  }

  .register-intro {
    position: relative;
    top: auto;
  }

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

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 4px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .status-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .notice-panel,
  .register-intro,
  .interest-form,
  .legal-content {
    padding: 22px;
    border-radius: 22px;
  }

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

  .hero-actions .button {
    width: 100%;
  }
}

.brand-mark,
.hero-logo {
  background: rgba(255, 255, 255, 0.82);
}

.brand-mark {
  border-radius: 16px;
  padding: 3px;
}

.hero-logo {
  border-radius: 24px;
}
