:root {
  --navy: #0B2344;
  --navy-2: #14365F;
  --gold: #D9A94F;
  --cream: #F7EBCB;
  --paper: #FFFDF7;
  --text: #14263F;
  --muted: #607086;
  --border: rgba(11, 35, 68, 0.14);
  --max: 1180px;
}

* { 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;
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }

.container {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(11, 35, 68, 0.10);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 118px;
  background:
    radial-gradient(circle at 82% 15%, rgba(217,169,79,.18), transparent 28%),
    linear-gradient(180deg, var(--paper), #fbf5e3);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-label,
.badge {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 800;
}

.eyebrow,
.section-label { color: var(--gold); }

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 18px;
}

.hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  margin: 0 0 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-icon-wrap {
  display: grid;
  place-items: center;
}

.hero-icon {
  width: min(100%, 330px);
  height: auto;
  border-radius: 30%;
  box-shadow: 0 28px 70px rgba(11, 35, 68, 0.16);
}

.section {
  padding: 92px 0;
}

.alt {
  background: var(--cream);
}

.copy {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  background: rgba(255,255,255,.74);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.coming-card {
  padding: 34px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.coming-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.coming-card p {
  margin: 0;
  color: var(--muted);
}

.button {
  flex: 0 0 auto;
  display: inline-block;
  text-decoration: none;
  font-weight: 750;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
}

.button:hover { background: var(--navy-2); }

.page-hero {
  padding: 88px 0 50px;
  background: linear-gradient(180deg, #fbf5e3, var(--paper));
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.prose {
  max-width: 820px;
  padding: 56px 0 94px;
}

.prose h2 {
  font-size: 1.7rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.notice {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: #fbf5e3;
  border-radius: 10px;
  color: var(--muted);
}

.email-link {
  color: var(--navy);
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 34px;
  color: var(--muted);
  font-size: .92rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-links a {
  text-decoration: none;
}

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

@media (max-width: 800px) {
  .hero {
    padding: 78px 0 86px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-icon {
    width: min(68vw, 290px);
  }

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

  .coming-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: .95rem;
  }

  nav {
    gap: 13px;
  }

  nav a {
    font-size: .88rem;
  }

  nav a:first-child {
    display: none;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-left: 4px;
  font-size: 0.86rem;
  font-weight: 750;
  color: var(--muted);
}

.language-switch a {
  min-width: 32px;
  padding: 6px 8px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  color: var(--muted);
}

.language-switch a:hover {
  color: var(--navy);
  background: rgba(11, 35, 68, 0.06);
}

.language-switch a[aria-current="page"] {
  color: white;
  background: var(--navy);
}

.language-separator {
  color: rgba(11, 35, 68, 0.28);
}

.language-landing {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 72px 0;
  text-align: center;
}

.language-landing-card {
  width: min(100%, 720px);
}

.language-landing .hero-icon {
  width: 150px;
  margin-bottom: 28px;
}

.language-options {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.language-options a {
  min-width: 150px;
}

@media (max-width: 620px) {
  .language-switch {
    gap: 2px;
  }

  .language-switch a {
    min-width: 29px;
    padding: 5px 6px;
  }
}
