:root {
  --bg-page: #ede9f7;
  --bg-soft: #e4ddf5;
  --bg-band: #ddd6f0;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.92);
  --text: #1c1530;
  --text-soft: #4a4463;
  --muted: #6b6580;
  --accent: #5b21b6;
  --accent-mid: #7c3aed;
  --accent-soft: rgba(91, 33, 182, 0.12);
  --accent2: #c4a5f5;
  --line: rgba(91, 33, 182, 0.12);
  --line-strong: rgba(91, 33, 182, 0.2);
  --shadow: 0 24px 56px rgba(49, 32, 96, 0.12);
  --shadow-card: 0 16px 40px rgba(49, 32, 96, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1100px;
  --deep: #2e1065;
  --deep-end: #1e0639;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background-color: var(--bg-page);
  background-image:
    radial-gradient(1200px 600px at 12% -10%, rgba(196, 165, 245, 0.55) 0%, transparent 55%),
    radial-gradient(900px 500px at 95% 0%, rgba(167, 139, 250, 0.35) 0%, transparent 50%),
    linear-gradient(180deg, #f5f2fc 0%, var(--bg-page) 38%, #ebe4f8 100%);
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  max-width: 640px;
}

.muted {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
}

.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  background: var(--surface-glass);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

#main {
  padding-top: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text);
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent));
  box-shadow: 0 8px 20px rgba(91, 33, 182, 0.35);
}

.brand-name {
  white-space: nowrap;
  font-size: 15px;
}

@media (max-width: 520px) {
  .brand-name {
    white-space: normal;
    max-width: 220px;
    line-height: 1.2;
  }
}

.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.hero {
  padding: 28px 0 48px;
  background:
    radial-gradient(700px 380px at 50% 100%, rgba(167, 139, 250, 0.2) 0%, transparent 60%);
}

.hero-wrap {
  padding-top: 8px;
}

.hero-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 36px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

@media (min-width: 901px) {
  .hero-inner--flip .hero-copy {
    order: 2;
  }

  .hero-inner--flip .hero-media {
    order: 1;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.06), rgba(124, 58, 237, 0.04));
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--text);
}

.lead {
  margin: 0 0 18px;
  font-size: 17px;
  color: var(--text-soft);
  max-width: 52ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 650;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-mid), var(--accent));
  border-color: rgba(91, 33, 182, 0.3);
  color: #fff;
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--accent);
}

.btn-ghost:hover {
  background: var(--accent-soft);
}

.hero-points {
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: var(--text-soft);
  max-width: 52ch;
}

.hero-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent2));
  flex: 0 0 auto;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-promo {
  width: 100%;
  max-width: min(400px, 100%);
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.section {
  padding: 56px 0;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    linear-gradient(135deg, var(--bg-band) 0%, #d4c8ef 50%, #e8e0f7 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-gallery {
  background: linear-gradient(180deg, #faf8ff 0%, var(--surface) 24%, #f3effb 100%);
}

.section-footnote {
  background: linear-gradient(165deg, var(--deep) 0%, var(--deep-end) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #f5f3ff;
}

.section-footnote .section-head h2,
.section-footnote .section-head p {
  color: rgba(245, 243, 255, 0.95);
}

.section-footnote .section-head p {
  opacity: 0.85;
}

.section-head {
  margin-bottom: 28px;
  max-width: 680px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: -0.35px;
  color: var(--text);
}

.section-gallery .section-head h2 {
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .grid.cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .grid.cards {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
  opacity: 0.95;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.card-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.gallery-caption {
  margin-top: 10px;
  font-size: 13px;
}

.disclaimer-box {
  margin-top: 28px;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.disclaimer-box h3 {
  margin: 0 0 10px;
  font-size: 17px;
  color: #fcd34d;
}

.disclaimer-box ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(245, 243, 255, 0.88);
  font-size: 14px;
  line-height: 1.55;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: linear-gradient(120deg, rgba(91, 33, 182, 0.08), rgba(196, 165, 245, 0.2));
  box-shadow: var(--shadow-card);
}

.cta-banner h2 {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--text);
}

.cta-banner p {
  margin: 0;
  max-width: 52ch;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  background: linear-gradient(180deg, #e8e2f4 0%, var(--bg-soft) 100%);
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
