:root {
  --bg1: #5d43d6;
  --bg2: #8d5bf1;
  --bg3: #f4a6d8;
  --ink: #2b2151;
  --white: #ffffff;
  --pink: #ff77c8;
  --pink2: #ff9cda;
  --blue: #71d6ff;
  --lavender: #d6c7ff;
  --gold: #ffd36b;
  --shadow: 0 18px 40px rgba(68, 37, 124, 0.22);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 12%, rgba(255,255,255,.95) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.7) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 75% 16%, rgba(255,255,255,.85) 0 1px, transparent 2px),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,.55) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 35% 70%, rgba(255,255,255,.5) 0 1px, transparent 2px),
    linear-gradient(180deg, #5f46dd 0%, #8360ef 25%, #a690ff 45%, #f4c4ee 70%, #e9ddff 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  height: 180px;
  pointer-events: none;
  z-index: -1;
}
body::before {
  top: 0;
  height: 240px;
  background: radial-gradient(70% 120% at 50% 0%, rgba(255,255,255,.22), transparent 70%);
}
body::after {
  background:
    radial-gradient(55% 90% at 15% 100%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(45% 75% at 85% 100%, rgba(255,255,255,.28), transparent 60%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(87, 58, 181, .9), rgba(112, 83, 216, .8));
  border-bottom: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 24px rgba(53, 34, 110, .22);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand img {
  width: 78px;
  border-radius: 18px;
}
.brand-text strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}
.brand-text span {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
}
.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.menu a {
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.menu a:hover,
.menu a.active {
  background: rgba(255,255,255,.16);
}
.nav-cta {
  background: linear-gradient(135deg, #ffb96a, #ff7dc8);
  color: #fff;
  box-shadow: 0 10px 18px rgba(255,124,188,.32);
}

.hero {
  padding: 56px 0 28px;
}
.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: var(--shadow);
  border-radius: 36px;
  padding: 34px;
  overflow: hidden;
  position: relative;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255,255,255,.4), transparent 70%);
}
.eyebrow {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.3);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1,
.page-hero h1,
.section-title,
.script-title {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: .2px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: .95;
  color: #fff;
  text-shadow: 0 4px 22px rgba(86, 48, 170, .42);
}
.hero h1 span { display: block; }
.hero p.lead {
  font-size: 1.2rem;
  margin: 18px 0;
  color: #fff;
}
.hero .intro-card {
  background: rgba(255,255,255,.78);
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(94,63,170,.16);
  max-width: 640px;
}
.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), #8c81ff);
  color: #fff;
  box-shadow: 0 10px 18px rgba(111, 89, 223, .22);
}
.button.secondary {
  background: linear-gradient(135deg, #ffaddd, #ff7dc8);
}
.button.gold {
  background: linear-gradient(135deg, #ffdb7d, #ffb55e);
}
.hero-visual {
  position: relative;
}
.hero-visual .glow-panel {
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.14));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: var(--shadow);
}
.hero-visual img {
  border-radius: 26px;
}

.quick-grid,
.feature-grid,
.impact-grid,
.cards-3,
.form-grid,
.page-grid {
  display: grid;
  gap: 22px;
}
.quick-grid,
.feature-grid,
.impact-grid,
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.page-grid { grid-template-columns: 1.15fr .85fr; }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.section { padding: 34px 0; }
.section-tight { padding-top: 18px; }
.section-title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  color: #5a31ae;
}
.section-subtitle {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 26px;
  font-size: 1.08rem;
}

.card,
.panel,
.stat-card,
.tier-card,
.form-card {
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.card,
.panel,
.form-card { padding: 24px; }
.card h3,
.stat-card h3,
.tier-card h3 { margin-top: 0; }

.stat-card {
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,227,245,.7));
}
.stat-card strong {
  display: block;
  font-size: 1.45rem;
  color: #693ac4;
  margin-bottom: 6px;
}

.highlight-card {
  background: linear-gradient(135deg, rgba(255, 198, 233, .55), rgba(180, 235, 255, .6));
}
.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(255,255,255,.45));
}

.banner-strip {
  padding: 24px 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,245,252,.72));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.banner-strip h3 { margin: 0 0 6px; }
.banner-strip p { margin: 0; }

.about-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.avatar-wrap {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.1));
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: var(--shadow);
}
.avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.quote-box {
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(252,239,248,.84));
  padding: 22px;
  border-radius: 26px;
  border-left: 6px solid var(--pink);
}

.list-clean {
  padding-left: 18px;
  margin: 0;
}
.list-clean li + li { margin-top: 8px; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.video-card {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(241,233,255,.7));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.38);
}
.video-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.75) 0 22px, transparent 23px),
    linear-gradient(135deg, #ffc4e6, #99dfff 48%, #b69bff);
  position: relative;
  margin-bottom: 14px;
}
.video-thumb::after {
  content: "▶";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-45%, -50%);
  font-size: 2rem;
  color: rgba(91, 48, 181, .85);
}

.tier-card {
  padding: 24px;
  text-align: center;
}
.tier-card .amount {
  font-size: 2rem;
  color: #5c31b0;
  font-weight: 900;
}
.tier-card p { margin-bottom: 0; }

.notice {
  padding: 16px 18px;
  background: rgba(255,255,255,.66);
  border-radius: 20px;
}

form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(99,77,167,.22);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  background: rgba(255,255,255,.92);
  color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
.form-row { margin-bottom: 16px; }
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.checkbox-row input {
  width: 20px;
  margin-top: 4px;
}
.small {
  font-size: .95rem;
  opacity: .88;
}

.footer {
  margin-top: 32px;
  padding: 26px 0 50px;
  color: #fff;
}
.footer-shell {
  border-top: 1px solid rgba(255,255,255,.26);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer a { color: #fff; opacity: .92; }

.page-hero {
  padding: 46px 0 18px;
}
.page-hero-shell {
  padding: 28px 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,243,251,.7));
  box-shadow: var(--shadow);
}
.page-hero h1 {
  color: #602fb3;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 10px;
}
.page-hero p { max-width: 860px; margin: 0; }

@media (max-width: 980px) {
  .hero-shell,
  .about-intro,
  .page-grid { grid-template-columns: 1fr; }
  .quick-grid,
  .feature-grid,
  .impact-grid,
  .cards-3,
  .video-grid,
  .form-grid { grid-template-columns: 1fr 1fr; }
  .nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 20px, 1180px); }
  .quick-grid,
  .feature-grid,
  .impact-grid,
  .cards-3,
  .video-grid,
  .form-grid { grid-template-columns: 1fr; }
  .hero-shell,
  .page-hero-shell,
  .card,
  .panel,
  .form-card { padding: 20px; }
  .menu { gap: 4px; }
  .menu a { padding: 8px 10px; font-size: .94rem; }
}

.about-page-hero {
  padding-bottom: 10px;
}

.about-hero-shell {
  background: linear-gradient(180deg, rgba(255,248,239,.94), rgba(255,244,236,.82));
  border: 1px solid rgba(255,255,255,.55);
}

.about-title-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-eyebrow {
  background: linear-gradient(135deg, rgba(255,202,227,.78), rgba(255,230,187,.7));
  color: #9e4b65;
}

.left-title {
  text-align: left;
}

.about-intro-enhanced {
  align-items: stretch;
}

.avatar-wrap-soft {
  background: linear-gradient(180deg, rgba(255,246,235,.88), rgba(255,231,206,.62));
  padding: 12px;
}

.story-box {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soft-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,243,238,.72));
}

.panel-script {
  margin-top: 0;
  color: #d6677e;
  font-size: 2.5rem;
}

.feature-list li + li {
  margin-top: 10px;
}

.mission-card {
  text-align: center;
}

.mission-card .icon-badge {
  margin-left: auto;
  margin-right: auto;
}
