:root {
  --bg: #f7fbff;
  --ink: #23175d;
  --ink-soft: #57489d;
  --aqua: #20d2f6;
  --cyan: #6eeaff;
  --deep: #35248c;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(53, 36, 140, 0.12);
  --shadow: 0 24px 60px rgba(35, 23, 93, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(110, 234, 255, 0.85), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(53, 36, 140, 0.16), transparent 18%),
    radial-gradient(circle at bottom right, rgba(32, 210, 246, 0.24), transparent 26%),
    linear-gradient(180deg, #f5fcff 0%, #eef6ff 42%, #ffffff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  filter: blur(1px);
}

body::before {
  top: 7rem;
  right: -4rem;
  width: 18rem;
  height: 24rem;
  background: linear-gradient(180deg, rgba(53, 36, 140, 0.22), rgba(32, 210, 246, 0.36));
  border-radius: 52% 48% 58% 42% / 28% 29% 71% 72%;
  transform: rotate(18deg);
}

body::after {
  left: -5rem;
  bottom: 4rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(32, 210, 246, 0.3), transparent 68%);
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 1rem;
}

.brand {
  display: inline-block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel-strong);
  border: 1px solid rgba(53, 36, 140, 0.1);
  box-shadow: 0 10px 24px rgba(35, 23, 93, 0.08);
}

.brand img {
  width: clamp(230px, 28vw, 330px);
  display: block;
  border-radius: inherit;
}

.top-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.top-nav a {
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(53, 36, 140, 0.08);
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 2rem 0 2.5rem;
}

.hero-copy,
.hero-card,
.feature,
.panel,
.info-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.75rem, 4vw, 3.5rem);
}

.eyebrow,
.section-tag,
.feature-kicker,
.card-label {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0e9db8;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.lead,
.feature p,
.panel p,
.visit-copy p,
.info-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(35, 23, 93, 0.82);
}

.lead {
  max-width: 38rem;
  margin: 1.25rem 0 0;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2e1f7c, #27cfee);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(53, 36, 140, 0.12);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
}

.card-glow {
  position: absolute;
  inset: auto -2rem -1.5rem auto;
  width: 9rem;
  height: 12rem;
  border-radius: 58% 42% 49% 51% / 28% 31% 69% 72%;
  background: linear-gradient(180deg, rgba(53, 36, 140, 0.3), rgba(32, 210, 246, 0.62));
  transform: rotate(16deg);
}

.schedule-item {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(53, 36, 140, 0.08);
}

.schedule-item:first-of-type {
  border-top: 0;
}

.schedule-item span {
  color: #0e9db8;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.schedule-item strong {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  max-width: 16rem;
}

.feature-band,
.content-grid,
.visit-section {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.feature-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature,
.panel {
  padding: 1.7rem;
}

.content-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.quote-panel {
  background:
    radial-gradient(circle at top right, rgba(32, 210, 246, 0.2), transparent 35%),
    linear-gradient(180deg, rgba(53, 36, 140, 0.98), rgba(43, 30, 113, 0.98));
  color: #ffffff;
}

.quote-panel .section-tag,
.quote-panel blockquote {
  color: #ffffff;
}

.quote-panel blockquote {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.visit-section {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  padding-top: 0.75rem;
}

.visit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.info-card {
  padding: 1.5rem;
  background: var(--panel-strong);
}

.info-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.18rem;
}

.info-card p {
  margin: 0.3rem 0;
}

.info-card a {
  text-decoration: none;
  color: #178ca4;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 920px) {
  .hero,
  .feature-band,
  .content-grid,
  .visit-section,
  .visit-cards {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
    padding-top: 0.8rem;
  }

  .top-nav {
    gap: 0.4rem;
  }

  .top-nav a,
  .button {
    width: 100%;
  }

  .hero-copy,
  .hero-card,
  .feature,
  .panel,
  .info-card {
    border-radius: 22px;
  }

  h1 {
    max-width: none;
  }
}
