:root {
  --bg: #ffffff;
  --text: #43355e;
  --muted: #78688f;
  --primary: #7b58b3;
  --primary-strong: #603a98;
  --soft: #f7f2fc;
  --soft-2: #efe5fa;
  --green: #dfeede;
  --border: rgba(123, 88, 179, 0.16);
  --shadow: 0 20px 60px rgba(90, 59, 142, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(123, 88, 179, 0.08);
  backdrop-filter: blur(10px);
}
.header-inner,
.footer-inner,
.hero-grid,
.profile-grid,
.cards-grid {
  display: grid;
  gap: 24px;
}
.header-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  min-width: 0;
}
.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 10px 24px rgba(92, 69, 143, 0.12);
}
.brand-copy strong {
  display: block;
  font-size: 1.05rem;
}
.brand-copy span,
.eyebrow,
.section-heading p,
.profile-role,
.site-footer p,
.cta-box p {
  color: var(--muted);
}
.phone-pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.phone-pill {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  padding: 12px 18px;
  box-shadow: 0 12px 28px rgba(123, 88, 179, 0.22);
}
.phone-pill:hover,
.btn:hover { transform: translateY(-2px); }

.hero {
  padding: 42px 0 28px;
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}
.hero::before {
  width: 320px;
  height: 320px;
  right: -80px;
  top: -40px;
  background: radial-gradient(circle, rgba(210, 193, 238, 0.8), rgba(210, 193, 238, 0));
}
.hero::after {
  width: 280px;
  height: 280px;
  left: -70px;
  bottom: -30px;
  background: radial-gradient(circle, rgba(213, 236, 213, 0.8), rgba(213, 236, 213, 0));
}
.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
}
h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.intro-box,
.hero-card,
.info-card,
.profile-box,
.credentials-box,
.cta-box {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}
.intro-box {
  display: inline-block;
  margin-top: 22px;
  padding: 18px 22px;
  background: linear-gradient(180deg, #fff, #fbf8ff);
}
.intro-name,
.intro-role { margin: 0; }
.intro-name {
  font-size: 1.45rem;
  font-weight: 800;
}
.intro-role {
  color: var(--primary-strong);
  font-size: 1.1rem;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.btn {
  padding: 14px 24px;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 14px 30px rgba(123, 88, 179, 0.22);
}
.btn-secondary {
  color: var(--primary-strong);
  background: #fff;
  border: 1px solid var(--border);
}
.hero-card {
  position: relative;
  padding: 34px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}
.hero-card-glow {
  position: absolute;
  border-radius: 999px;
}
.glow-one {
  width: 180px;
  height: 180px;
  top: -20px;
  right: -40px;
  background: rgba(220, 206, 246, 0.6);
}
.glow-two {
  width: 140px;
  height: 140px;
  bottom: 30px;
  left: -40px;
  background: rgba(218, 238, 218, 0.7);
}
.hero-logo {
  width: min(100%, 280px);
  padding: 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(123, 88, 179, 0.12);
  position: relative;
  z-index: 1;
}
.mode-badge {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  background: var(--soft);
  color: var(--primary-strong);
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 800;
  text-align: center;
}
.section { padding: 34px 0; }
.section-soft { background: linear-gradient(180deg, #fff 0%, #fcfbff 100%); }
.section-heading {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}
.section-tag {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary-strong);
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 12px;
}
h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}
.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.info-card {
  padding: 28px;
  text-align: center;
}
.card-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 10px 24px rgba(123, 88, 179, 0.22);
}
.info-card h3 {
  margin: 18px 0 0;
  font-size: 1.25rem;
}
.profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.profile-box,
.credentials-box,
.cta-box {
  padding: 30px;
}
.credentials-box,
.cta-box { text-align: center; }
.credentials-box ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.credentials-box li {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-strong);
  margin: 10px 0;
}
.cta-section { padding-top: 10px; }
.cta-box h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--primary-strong);
}
.btn-large {
  margin-top: 10px;
  min-width: 200px;
}
.site-footer {
  padding: 22px 0 34px;
}
.footer-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  border-top: 1px solid rgba(123, 88, 179, 0.1);
  padding-top: 22px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards-grid,
  .profile-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .phone-pill {
    width: 100%;
  }

  .brand {
    align-items: flex-start;
  }

  .hero {
    padding-top: 28px;
  }

  .intro-name {
    font-size: 1.25rem;
  }

  .intro-role,
  .info-card h3 {
    font-size: 1rem;
  }

  .profile-box,
  .credentials-box,
  .cta-box,
  .info-card,
  .hero-card {
    padding: 22px;
    border-radius: 24px;
  }
}
