:root {
  --bg: #f9f7ff;
  --bg-soft: #fff8fd;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --ink: #26324f;
  --muted: #60708f;
  --blue: #6e96ff;
  --blue-deep: #4f6fdc;
  --pink: #f2a6d7;
  --pink-deep: #dd78ba;
  --line: rgba(77, 101, 171, 0.12);
  --shadow: 0 30px 80px rgba(102, 109, 176, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(242, 166, 215, 0.28), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(110, 150, 255, 0.22), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(242, 166, 215, 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(34px);
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

body::before {
  top: 4rem;
  right: -5rem;
  background: rgba(110, 150, 255, 0.2);
}

body::after {
  left: -5rem;
  bottom: 1rem;
  background: rgba(242, 166, 215, 0.24);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100vw - 1.2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.site-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 10px 24px rgba(120, 122, 204, 0.24);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.nav a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  transform: translateY(-1px);
}

.content {
  padding: 1.4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(18rem, 0.84fr);
  gap: 1.3rem;
  align-items: stretch;
}

.hero-copy,
.hero-side,
.section-card,
.callout,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--surface-strong);
}

.hero-copy,
.hero-side {
  padding: 1.35rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(110, 150, 255, 0.12);
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 0 0 0.32rem rgba(242, 166, 215, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 1.15rem;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.lead {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  line-height: 1.82;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--pink-deep), var(--blue-deep));
  box-shadow: 0 16px 28px rgba(124, 116, 206, 0.22);
}

.button-secondary {
  border: 1px solid rgba(77, 101, 171, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

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

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

.section-card,
.callout,
.contact-card {
  padding: 1.15rem;
}

.section-card p,
.hero-side p,
.callout p,
.contact-card p,
.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.98rem;
}

.hero-side {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246, 247, 255, 0.92));
}

.hero-side .block + .block {
  margin-top: 1rem;
}

.label {
  margin: 0 0 0.5rem;
  color: var(--pink-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(242, 166, 215, 0.2), rgba(110, 150, 255, 0.18));
  border: 1px solid rgba(110, 150, 255, 0.12);
  color: #49617d;
  line-height: 1.7;
}

.section-stack > * + * {
  margin-top: 1rem;
}

.prose ul {
  margin: 0;
  padding-left: 1.1rem;
}

.footer {
  padding: 1rem 1.3rem 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 940px) {
  .hero,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .site-shell {
    width: min(100vw - 0.7rem, 48rem);
  }

  .site-frame {
    border-radius: 1.5rem;
  }

  .topbar,
  .content,
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
