:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --card: rgba(255,255,255,.96);
  --text: #10294f;
  --muted: #5d6d82;
  --blue: #0d4a9f;
  --sky: #199be8;
  --gold: #c99624;
  --line: #dce5ef;
  --shadow: 0 18px 45px rgba(21, 54, 88, .10);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% 0%, rgba(76,175,245,.12), transparent 36rem),
    radial-gradient(circle at 90% 10%, rgba(244,203,94,.12), transparent 30rem),
    var(--bg);
}

.hero {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hero-banner {
  display: block;
  width: min(1536px, 100%);
  height: auto;
  margin: 0 auto;
}

.shell {
  width: min(880px, calc(100% - 30px));
  margin: 0 auto;
  padding: 34px 0 24px;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(26px, 6vw, 54px);
  margin-bottom: 22px;
}

.intro {
  text-align: center;
}

.brand-icon {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 85, 170, .13);
}

.eyebrow {
  margin: 22px 0 8px;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: .14em;
  font-size: .78rem;
}

h1, h2 {
  margin-top: 0;
  letter-spacing: -.03em;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 4.5vw, 2rem);
}

.lead {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.03rem, 2.8vw, 1.22rem);
}

.coming-soon {
  max-width: 590px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid #d7c08b;
  border-radius: 18px;
  background: #fff9e8;
}

.coming-soon strong,
.coming-soon span {
  display: block;
}

.coming-soon strong {
  color: #8a6317;
  font-size: 1.08rem;
}

.coming-soon span {
  margin-top: 3px;
  color: var(--muted);
}

.compact {
  text-align: left;
}

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

footer {
  width: min(880px, calc(100% - 30px));
  margin: 0 auto;
  padding: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: .92rem;
}

a {
  color: var(--blue);
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 3px solid #f0c658;
  outline-offset: 4px;
  border-radius: 4px;
}

.policy {
  text-align: left;
}

.policy h1 {
  font-size: clamp(2rem, 7vw, 3.3rem);
}

.policy h2 {
  margin-top: 30px;
  font-size: 1.18rem;
}

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

.back {
  display: inline-block;
  margin-bottom: 22px;
  font-weight: 750;
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 22px, 880px);
    padding-top: 22px;
  }

  .panel {
    border-radius: 18px;
    padding: 28px 21px;
  }

  .brand-icon {
    width: 82px;
    height: 82px;
  }

  .hero-banner {
    min-height: 154px;
    object-fit: cover;
    object-position: center;
  }
}
