:root {
  color-scheme: light;
  --bg: #e8e0fb;
  --surface: #ece6fb;
  --surface-2: #dfd7f8;
  --text: #23264a;
  --muted: #565984;
  --accent: #8f7cff;
  --accent-strong: #5d4bff;
  --border: rgba(95, 83, 255, 0.22);
  --radius: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, rgba(143, 124, 255, 0.24), transparent 35%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(233, 223, 255, 0.8);
  border-bottom: 1px solid rgba(95, 83, 255, 0.28);
  box-shadow: 0 22px 40px rgba(84, 61, 215, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
}

.brand-logo {
  width: auto;
  height: 72px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button-primary {
  box-shadow: 0 22px 38px rgba(93, 75, 255, 0.24);
}

.button-secondary {
  border: 1px solid rgba(95, 83, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #9b7cff, #5d4bff);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(115, 99, 255, 0.2);
}

.button-secondary {
  border: 1px solid rgba(95, 83, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  padding: 5.5rem 0 3rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(143, 124, 255, 0.24);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(81, 57, 255, 0.12);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  filter: blur(80px);
  opacity: 0.8;
}

.shape-1 {
  width: 260px;
  height: 260px;
  background: rgba(141, 124, 255, 0.38);
  top: -40px;
  left: -20px;
  border-radius: 50%;
}

.shape-2 {
  width: 220px;
  height: 220px;
  background: rgba(52, 193, 255, 0.24);
  top: 80px;
  right: -60px;
  border-radius: 50%;
}

.shape-3 {
  width: 320px;
  height: 320px;
  background: rgba(235, 218, 255, 0.42);
  bottom: -90px;
  left: 20%;
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-header h2,
.pricing-copy h2,
.about-inner h2,
.section-proof h2,
.section-contact h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.03;
}

.hero-text,
.section-header p,
.pricing-copy p,
.about-inner p,
.section-contact p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
}

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

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card {
  background: rgba(255, 255, 255, 0.86);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(95, 83, 255, 0.18);
  box-shadow: 0 24px 55px rgba(81, 57, 255, 0.12);
}

.panel-card h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.section {
  padding: 4rem 0;
  background: transparent;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.cards-grid,
.proof-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 1.5rem;
}

.card,
.proof-card,
.pricing-card,
.about-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(95, 83, 255, 0.18);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(18px);
}

.card h3,
.proof-card h3,
.pricing-card h3,
.about-card h3 {
  margin-top: 0;
}

.section-slate {
  background: rgba(225, 213, 255, 0.88);
  border: 1px solid rgba(143, 124, 255, 0.18);
  border-radius: 32px;
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.pricing-rate {
  font-size: 2rem;
  margin: 1rem 0 1.2rem;
  color: var(--text);
}

.small-note {
  color: var(--muted);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.about-headshot-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.headshot {
  width: 100%;
  max-width: 260px;
  border-radius: 28px;
  object-fit: cover;
  margin: 0 auto;
  border: 1px solid rgba(95, 83, 255, 0.18);
  box-shadow: 0 18px 40px rgba(95, 83, 255, 0.12);
}

.about-headshot-card h3 {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--accent);
}

.about-panel {
  display: flex;
  align-items: center;
}

.about-card ul,
.pricing-card ul {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.about-card li,
.pricing-card li {
  margin-bottom: 0.75rem;
}

.section-proof {
  padding-top: 0;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-contact {
  background: rgba(224, 213, 255, 0.96);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(95, 83, 255, 0.15);
  background: #f5f3ff;
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(36, 41, 74, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(51, 199, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(51, 199, 255, 0.12);
}

.site-footer {
  padding: 2rem 0 3rem;
  background: rgba(250, 247, 255, 0.92);
  border-top: 1px solid rgba(95, 83, 255, 0.12);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

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

@media (max-width: 940px) {
  .hero-inner,
  .pricing-inner,
  .about-inner,
  .contact-inner,
  .cards-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
