:root {
  --bg: #07111d;
  --text: #ffffff;
  --muted: rgba(255,255,255,.76);
  --line: rgba(255,255,255,.18);
  --glass: rgba(7,17,29,.58);
  --accent: #f6c46d;
  --accent-2: #fff1c9;
  --success: #55e39f;
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(3,9,17,.28) 0%, rgba(3,9,17,.40) 42%, rgba(3,9,17,.84) 100%),
    url('background.jpg') center center / cover no-repeat fixed;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 22%, rgba(246,196,109,.12), transparent 34%);
}
.page-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 22px max(20px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 21px;
  background: rgba(8,16,27,.45);
  backdrop-filter: blur(12px);
}
.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(7,17,29,.45);
  backdrop-filter: blur(14px);
}
.globe { color: var(--accent); font-weight: 800; }
select {
  appearance: none;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding-right: 4px;
}
select option { color: #111; }
.hero {
  display: flex;
  align-items: center;
  padding: 56px 0 38px;
}
.content-card {
  width: min(610px, 100%);
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(7,17,29,.72), rgba(7,17,29,.48));
  box-shadow: 0 28px 80px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(18px) saturate(120%);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(85,227,159,.12);
}
h1 {
  margin: 20px 0 16px;
  max-width: 11ch;
  font-size: clamp(42px, 6.7vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
}
.subtitle {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.55;
}
.availability {
  margin: 28px 0 24px;
  padding: 18px;
  border: 1px solid rgba(246,196,109,.30);
  border-radius: 18px;
  background: rgba(246,196,109,.08);
}
.availability-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}
.availability-row strong { color: var(--accent-2); font-size: 18px; }
.progress {
  height: 8px;
  margin: 13px 0 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}
.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.availability p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; }
.cta {
  min-height: 60px;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #101722;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 18px 40px rgba(246,196,109,.26);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .035em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(246,196,109,.34); }
.cta:active { transform: translateY(0); }
.cta-arrow { font-size: 25px; }
.microcopy { margin: 13px 0 0; text-align: center; font-size: 12px; color: rgba(255,255,255,.58); }
footer { color: rgba(255,255,255,.52); font-size: 12px; letter-spacing: .04em; }
@media (max-width: 700px) {
  body { background-attachment: scroll; background-position: 57% center; }
  .page-shell { padding-left: 16px; padding-right: 16px; }
  .brand { font-size: 11px; }
  .brand-mark { width: 31px; height: 31px; }
  .language-picker { padding: 7px 9px; }
  select { font-size: 13px; max-width: 110px; }
  .hero { align-items: end; padding: 42px 0 22px; }
  .content-card { border-radius: 24px; padding: 26px 20px 22px; }
  h1 { max-width: 12ch; font-size: clamp(39px, 12vw, 58px); }
  .subtitle { font-size: 16px; }
  .availability { margin-top: 23px; }
  .cta { min-height: 58px; }
  footer { text-align: center; }
}
@media (max-height: 700px) and (orientation: landscape) {
  .hero { padding: 24px 0; }
  .content-card { padding: 24px; }
  h1 { font-size: 44px; }
}
