:root {
  --magenta: #d4317a;
  --purple: #9b4fa0;
  --teal: #2db89e;
  --dark: #2d3748;
  --mid: #4a5568;
  --soft: #718096;
  --bg: #ffffff;
  --surface: #f8f9fb;
  --border: #edf0f4;
  --grad: linear-gradient(135deg, #d4317a 0%, #9b4fa0 45%, #2db89e 100%);
  --selection-bg: var(--magenta);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: var(--selection-bg);
  color: #ffffff;
}

::-moz-selection {
  background-color: var(--selection-bg);
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--teal);
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 5%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 769px) {
  nav {
    top: 1.5rem;
    margin: 1.5rem auto;
    width: 92%;
    max-width: 1200px;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.082);
    border-radius: 100px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}

.nav-logo img {
  height: 40px;
  width: 40px;
}

.nav-wordmark {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--magenta);
  background: rgba(212, 49, 122, 0.05);
}

/* ── HERO ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(45, 184, 158, 0.08);
  border: 1px solid rgba(45, 184, 158, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Arial', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--dark);
  max-width: 800px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 .accent {
  color: var(--magenta);
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--soft);
  max-width: 520px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  background: var(--magenta);
  color: #fff;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212, 49, 122, 0.25);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 49, 122, 0.3);
}

.btn-secondary {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--mid);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  opacity: 0.6;
  animation: fadeUp 1s 0.8s ease both;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--soft), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

/* ── PILLARS ── */
.pillars {
  padding: 6rem 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Arial', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--dark);
  max-width: 500px;
  line-height: 1.15;
  margin-bottom: 3.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.pillar-card:nth-child(1) .pillar-icon {
  background: rgba(212, 49, 122, 0.05);
}

.pillar-card:nth-child(2) .pillar-icon {
  background: rgba(212, 49, 122, 0.05);
}

.pillar-card:nth-child(3) .pillar-icon {
  background: rgba(212, 49, 122, 0.05);
}

.pillar-card:nth-child(4) .pillar-icon {
  background: rgba(212, 49, 122, 0.05);
}

.pillar-card h3 {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--soft);
  line-height: 1.65;
}

/* ── ABOUT ── */
.about {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text .section-title {
  margin-bottom: 1.2rem;
}

.about-text p {
  font-size: 0.975rem;
  color: var(--soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}

.stat-num {
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--magenta);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.775rem;
  color: var(--soft);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ── NEWSLETTER ── */
.newsletter {
  padding: 5rem 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.newsletter .section-title {
  margin: 0 auto 0.75rem;
  text-align: center;
  max-width: 520px;
}

.newsletter p {
  font-size: 0.975rem;
  color: var(--soft);
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  background: var(--bg);
}

.newsletter-form input:focus {
  border-color: var(--teal);
}

.newsletter-form input::placeholder {
  color: #aab;
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 5%;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.footer-brand span {
  color: var(--magenta);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.825rem;
  color: var(--soft);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--magenta);
}

.footer-copy {
  font-size: 0.775rem;
  letter-spacing: 1px;
  color: #bbb;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── SUBPAGES & FORMS ── */
.page-header {
  padding: 4rem 5% 4rem;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: 'Arial', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.page-header .accent {
  color: var(--magenta);
}

.page-header p {
  color: var(--soft);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 4rem 5%;
  max-width: 900px;
  margin: 0 auto;
}

.content-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.content-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.content-card h2 {
  font-family: 'Arial', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.content-card p {
  color: var(--mid);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.services-grid .content-card {
  margin-bottom: 0;
  height: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info .pillar-icon {
  margin-bottom: 1rem;
}

.contact-info h3 {
  font-family: 'Arial', sans-serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-info p,
.contact-info a {
  color: var(--soft);
  text-decoration: none;
  line-height: 1.6;
}

.contact-info a:hover {
  color: var(--teal);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* ── ACADEMY ── */
.status-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--magenta);
  background: rgba(212, 49, 122, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(212, 49, 122, 0.2);
}

.locked-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface);
  color: var(--soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: not-allowed;
  text-decoration: none;
  margin-top: 1rem;
}

.locked-link::before {
  content: '🔒';
}

.waitlist-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.waitlist-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  background: var(--bg);
  transition: border-color 0.2s;
}

.waitlist-form input:focus {
  border-color: var(--teal);
}

.waitlist-form button {
  border: none;
  cursor: pointer;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    position: relative;
    flex-direction: column;
    padding: 0.5rem 5%;
    gap: 0.5rem;
  }

  .nav-links {
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .page-header h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}