:root {
  --bg-start: #0e1225;
  --bg-end: #665fff;
  --panel: rgba(16, 20, 40, 0.68);
  --panel-border: rgba(255, 255, 255, 0.1);
  --text: #f6f7ff;
  --muted: rgba(246, 247, 255, 0.78);
  --soft: rgba(246, 247, 255, 0.58);
  --accent: #9f99ff;
  --shadow: 0 20px 60px rgba(4, 6, 16, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0.22) 7rem, transparent 7rem),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.18) 12rem, transparent 12rem),
    linear-gradient(100deg, var(--bg-start), var(--bg-end));
}

a {
  color: #ffffff;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  padding: 42px;
  background: linear-gradient(135deg, rgba(10, 13, 28, 0.64), rgba(102, 95, 255, 0.34));
  box-shadow: var(--shadow);
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.hero__glow--left {
  inset: auto auto -84px -84px;
  width: 188px;
  height: 188px;
}

.hero__glow--right {
  inset: -110px -70px auto auto;
  width: 320px;
  height: 320px;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr minmax(280px, 420px);
  gap: 28px;
  align-items: end;
}

.brand-lockup {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.brand-lockup__badge {
  position: absolute;
  top: 22px;
  left: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-lockup__logo {
  width: 136px;
  max-width: 100%;
  display: block;
}

.brand-lockup h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
}

.hero__subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero__summary {
  padding: 24px 24px 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.effective-date {
  margin: 18px 0 0;
  color: var(--text);
  font-weight: 600;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.prose {
  padding: 26px 26px 24px;
}

.prose h2 {
  margin: 0 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.32rem;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 0.99rem;
  line-height: 1.72;
}

.prose p:last-child,
.prose ul:last-child {
  margin-bottom: 0;
}

.prose ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.contact-card {
  grid-column: 1 / -1;
}

.contact-value {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero {
    padding: 88px 24px 24px;
  }

  .brand-lockup__badge {
    left: 24px;
  }

  .hero__content,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .brand-lockup {
    grid-template-columns: 1fr;
  }

  .brand-lockup__logo {
    width: 112px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 10px;
    padding-bottom: 28px;
  }

  .hero {
    border-radius: 28px;
  }

  .prose,
  .hero__summary {
    padding: 20px;
  }
}