:root {
  --bw-purple-dark: #2b003f;
  --bw-purple: #5a1f7a;
  --bw-purple-light: #c39ae9;
  --bw-bg: #f5f3fa;
  --bw-text: #222222;
  --bw-muted: #666666;
  --bw-white: #ffffff;
}

/* Global resets */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--bw-text);
  background-color: var(--bw-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--bw-purple);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--bw-purple-dark), var(--bw-purple));
  color: var(--bw-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.logo-mark {
  font-weight: 700;
  font-size: 1.4rem;
}

.logo-text {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--bw-white);
  font-weight: 500;
}

.nav-links a:hover {
  opacity: 0.9;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #7e3bb4, #20002f);
  color: var(--bw-white);
  padding: 4rem 0 0;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2.4rem;
  align-items: stretch;
  padding-bottom: 2.5rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--bw-purple-light);
  margin-bottom: 0.4rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  margin-bottom: 0.9rem;
}

.hero-text p {
  max-width: 34rem;
  color: #f4e9ff;
  margin-bottom: 1.4rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.hero-secondary-link {
  font-size: 0.85rem;
  color: #f4e9ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-meta {
  font-size: 0.8rem;
  color: #d9c7ff;
}

.hero-highlight {
  background-color: rgba(9, 0, 20, 0.45);
  border-radius: 1.1rem;
  padding: 1.7rem 1.5rem;
  border: 1px solid rgba(229, 213, 255, 0.35);
}

.hero-highlight h2 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.hero-highlight ul {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.hero-highlight li {
  margin-bottom: 0.45rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.hero-tags span {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hero stats row */
.hero-stats {
  background: linear-gradient(90deg, #260036, #3c0f5f);
  color: #f5eaff;
  padding: 0.9rem 0;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  font-size: 0.8rem;
}

.stat-item {
  border-left: 1px solid rgba(244, 234, 255, 0.35);
  padding-left: 1rem;
}

.stat-item:first-child {
  border-left: none;
  padding-left: 0;
}

.stat-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  opacity: 0.8;
  margin-bottom: 0.1rem;
}

.stat-value {
  font-weight: 500;
}

/* Section generic */
.section {
  padding: 3.5rem 0;
  background-color: var(--bw-bg);
}

.section-alt {
  background-color: #f0ebfb;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  color: var(--bw-purple-dark);
}

.section-heading p {
  margin: 0;
  color: var(--bw-muted);
}

/* About cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-card {
  background-color: var(--bw-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(32, 8, 56, 0.08);
  border-top: 4px solid var(--bw-purple);
}

.about-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--bw-purple);
}

.about-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.about-card li {
  margin-bottom: 0.4rem;
}

/* Services layout */
.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.services-image-wrapper {
  background-color: var(--bw-white);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(32, 8, 56, 0.08);
}

.services-image {
  border-radius: 0.75rem;
}

.services-list h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  color: var(--bw-purple-dark);
}

.services-list ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

/* Download card */
.download-card {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--bw-white);
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(32, 8, 56, 0.08);
}

.download-card p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-info h3 {
  margin-bottom: 0.2rem;
  color: var(--bw-purple-dark);
}

.contact-info p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--bw-muted);
}

.contact-form {
  background-color: var(--bw-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(32, 8, 56, 0.08);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d2c5ec;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--bw-purple);
  box-shadow: 0 0 0 2px rgba(90, 31, 122, 0.2);
}

.form-note {
  font-size: 0.8rem;
  color: var(--bw-muted);
  margin-top: 0.5rem;
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(120deg, var(--bw-purple-dark), var(--bw-purple));
  color: var(--bw-white);
}

.btn-primary:hover {
  opacity: 0.95;
}

.btn-outline {
  border: 1px solid var(--bw-purple);
  color: var(--bw-purple);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--bw-purple);
  color: var(--bw-white);
}

/* Footer */
.site-footer {
  background-color: #1d0228;
  color: #e8dafb;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-content .tagline {
  color: var(--bw-purple-light);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(235, 221, 255, 0.7);
  font-size: 0.8rem;
  color: #f2e8ff;
}

.social-pill:hover {
  background-color: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.social-icon {
  font-size: 0.9rem;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-content,
  .services-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }

  .stat-item {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
    .footer-disclaimer {
  margin-top: 1rem;
  font-size: 0.72rem;
  line-height: 1.4;
  opacity: 0.75;
}
}
