:root {
  color-scheme: dark;
  --navy: #06142c;
  --navy-2: #0c203c;
  --card: rgba(17, 39, 67, .88);
  --gold: #ddb86f;
  --gold-bright: #f5d98d;
  --text: #f6f3ea;
  --muted: #aab3c5;
  --line: rgba(221, 184, 111, .22);
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(42, 79, 128, .52), transparent 44rem),
    linear-gradient(180deg, #07162e 0%, #041024 100%);
  line-height: 1.75;
}

a { color: var(--gold-bright); }
.shell { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(4, 16, 36, .82);
  backdrop-filter: blur(18px);
}
.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 10px; color: white; text-decoration: none; font-weight: 800; }
.brand img { width: 38px; height: 38px; border-radius: 11px; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold-bright); }
.lang-button {
  border: 1px solid var(--line);
  color: var(--gold-bright);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  cursor: pointer;
}

.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0 56px;
}
.hero-logo { width: min(520px, 92%); height: auto; filter: drop-shadow(0 22px 34px rgba(0,0,0,.28)); }
.eyebrow { margin: 26px 0 8px; color: var(--gold); font-weight: 700; letter-spacing: .04em; }
h1 { font-size: clamp(2.25rem, 7vw, 5rem); line-height: 1.08; margin: 0; }
.lead { max-width: 700px; margin: 20px auto 0; color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.3rem); }
.actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 750;
  color: #07162e;
  background: linear-gradient(135deg, var(--gold-bright), #c99b48);
  box-shadow: 0 10px 28px rgba(201, 155, 72, .18);
}
.button.secondary { color: var(--text); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); box-shadow: none; }

.section { padding: 52px 0; }
.section h2 { text-align: center; font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0 0 24px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(18,43,74,.95), rgba(11,29,53,.95));
  box-shadow: var(--shadow);
}
.card-icon { color: var(--gold); font-size: 1.6rem; }
.card h3 { margin: 12px 0 8px; }
.card p { margin: 0; color: var(--muted); }

.page { padding: 56px 0 80px; }
.page-header { text-align: center; margin-bottom: 34px; }
.page-header img { width: 92px; height: 92px; border-radius: 24px; }
.page-header h1 { font-size: clamp(2rem, 6vw, 3.5rem); margin-top: 18px; }
.page-header p { color: var(--muted); }
.policy { max-width: 860px; margin: 0 auto; }
.policy article { padding: 30px; border-radius: 24px; background: var(--card); border: 1px solid rgba(255,255,255,.08); }
.policy h2 { color: var(--gold-bright); margin-top: 34px; }
.policy h2:first-child { margin-top: 0; }
.policy p, .policy li { color: #d7dbe5; }
.policy li + li { margin-top: 8px; }
.notice { border-inline-start: 4px solid var(--gold); padding: 14px 18px; background: rgba(221,184,111,.08); border-radius: 12px; }
.contact-box { text-align: center; }
.contact-email { font-size: clamp(1.1rem, 3vw, 1.4rem); word-break: break-word; }

.footer { border-top: 1px solid rgba(255,255,255,.08); padding: 30px 0 46px; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer a { color: var(--muted); }
[hidden] { display: none !important; }

@media (max-width: 760px) {
  .shell { width: min(100% - 22px, 1080px); }
  .nav a:not(.lang-button) { display: none; }
  .grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 56px; }
  .card, .policy article { padding: 22px; border-radius: 20px; }
}

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