:root {
  /* BP theme colors */
  --bp-blue: #004887;
  --bp-gold: #a78c46;

  /* neutrals */
  --bg-0: #0a111a;
  --bg-1: #0b1624;
  --bg-2: #0d1d2f;
  --bg-3: #121212; /* AElite */
  --text: #eef2f7;
  --muted: rgba(238, 242, 247, 0.75);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);

  --gold-soft: rgba(167, 140, 70, 0.95);
  --gold-tint: rgba(167, 140, 70, 0.12);
  --blue-tint: rgba(0, 72, 135, 0.2);

  --card-bg: rgba(255, 255, 255, 0.03);
  --card-bg-strong: rgba(255, 255, 255, 0.04);

  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-card: 0 14px 36px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.18);

  --max-col: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg-0);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      700px 380px at 50% 8%,
      rgba(0, 72, 135, 0.14),
      transparent 70%
    ),
    radial-gradient(
      520px 320px at 80% 22%,
      rgba(167, 140, 70, 0.07),
      transparent 75%
    ),
    radial-gradient(
      760px 520px at 20% 80%,
      rgba(0, 72, 135, 0.08),
      transparent 78%
    ),
    linear-gradient(180deg, #09111b 0%, #0a1623 40%, #0b1520 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 15% 20%, #ffffff 0.7px, transparent 0.9px),
    radial-gradient(circle at 70% 35%, #ffffff 0.7px, transparent 0.9px),
    radial-gradient(circle at 35% 70%, #ffffff 0.7px, transparent 0.9px);
  background-size:
    190px 190px,
    240px 240px,
    210px 210px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 10px;
}

.page {
  position: relative;
  z-index: 1;
  width: min(var(--max-col), calc(100% - 28px));
  margin-inline: auto;
  padding: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.top-utility {
  display: flex;
  justify-content: center;
  padding-top: 2px;
  margin-bottom: 8px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(238, 242, 247, 0.75);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 8px;
  border-radius: var(--radius-pill);
  transition:
    color 140ms ease,
    background-color 140ms ease;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 14px 0 8px;
}

.brand-mark {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

.brand-name {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: rgba(227, 235, 244, 0.93);
  text-transform: uppercase;
}

.brand-location {
  margin: 2px 0 0;
  color: rgba(167, 140, 70, 0.95);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.brand-status {
  margin: 0;
  color: rgba(238, 242, 247, 0.66);
  font-size: 0.92rem;
}

.card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(
      360px 200px at 0% 0%,
      rgba(0, 72, 135, 0.08),
      transparent 75%
    ),
    radial-gradient(
      260px 180px at 100% 0%,
      rgba(167, 140, 70, 0.05),
      transparent 78%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.02)
    );
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.intro-card {
  text-align: center;
  padding: 22px 20px;
}

.card-eyebrow {
  margin: 0 0 8px;
  color: rgba(167, 140, 70, 0.95);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.intro-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.02;
}

.intro-title-main,
.intro-title-sub {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.intro-title-main {
  font-size: clamp(2rem, 5.2vw, 3rem);
}

.intro-title-sub {
  font-size: clamp(1.15rem, 2.9vw, 1.65rem);
  color: rgba(167, 140, 70, 0.95);
}

.intro-description {
  margin: 14px auto 0;
  color: var(--muted);
  max-width: 54ch;
}

.intro-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  text-decoration: none;
  border-radius: var(--radius-pill);
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease;
}

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

.btn-primary {
  color: #0d1620;
  border: 1px solid rgba(167, 140, 70, 0.35);
  background: linear-gradient(
    180deg,
    rgba(201, 175, 102, 0.95),
    rgba(167, 140, 70, 0.95)
  );
  box-shadow:
    0 8px 22px rgba(167, 140, 70, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.text-link {
  color: rgba(238, 242, 247, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 1px;
  transition:
    color 140ms ease,
    border-color 140ms ease;
}

.text-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
}

.aelite-card {
  padding: 0;
  overflow: hidden;
}

.aelite-card-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.aelite-bp,
.aelite-club {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
}

.aelite-bp {
  background:
    radial-gradient(
      220px 120px at 12% 10%,
      rgba(0, 72, 135, 0.13),
      transparent 72%
    ),
    linear-gradient(180deg, rgba(10, 22, 36, 0.65), rgba(10, 18, 29, 0.82));
}

.aelite-bp-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.aelite-bp-text {
  color: rgba(231, 238, 246, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  white-space: nowrap;
}

.aelite-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.aelite-club {
  background: #121212;
}

.aelite-club-link {
  text-decoration: none;
  transition:
    background-color 140ms ease,
    box-shadow 140ms ease;
}

.aelite-club-link:hover {
  background: #171717;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.aelite-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  display: block;
}

.aelite-note {
  margin: 0;
  padding: 12px 14px 8px;
  text-align: center;
  color: rgba(238, 242, 247, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.94rem;
}

.aelite-note-secondary {
  padding-top: 0;
  padding-bottom: 14px;
  border-top: 0;
  color: rgba(238, 242, 247, 0.72);
  font-size: 0.9rem;
}

.contact-card {
  padding: 20px 18px;
}

.contact-title {
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.1;
  color: rgba(238, 242, 247, 0.98);
}

.contact-card .card-eyebrow {
  text-align: center;
}

.contact-description {
  margin: 12px auto 0;
  text-align: center;
  color: var(--muted);
  max-width: 56ch;
}

.contact-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease;
}

.contact-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.contact-label {
  color: rgba(167, 140, 70, 0.95);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.contact-value {
  color: rgba(242, 246, 251, 0.95);
  word-break: break-word;
  text-align: center;
}

.bottom-note {
  margin: 0;
  padding-top: 2px;
  text-align: center;
  color: rgba(238, 242, 247, 0.54);
  font-size: 0.86rem;
}

.back-to-top {
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 17, 26, 0.78);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  z-index: 10;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 680px) {
  .page {
    width: calc(100% - 20px);
    padding-top: 14px;
    gap: 14px;
  }

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

  .brand-name {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .intro-card,
  .contact-card {
    padding: 18px 14px;
  }

  .aelite-card-inner {
    grid-template-columns: 1fr;
  }

  .aelite-divider {
    display: none;
  }

  .aelite-club {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .aelite-bp-text {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .aelite-logo {
    max-width: 150px;
    max-height: 28px;
  }

  .btn {
    width: 100%;
  }

  .intro-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .text-link {
    display: inline-block;
    text-align: center;
    border-bottom: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
