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

:root {
  --ink: #2E3C40;
  --ink-2: #1e282a;
  --ink-3: #111718;
  --cream: #DDE5ED;
  --cream-2: #cddbe6;
  --cream-3: #bed1e0;
  --sage: #307FE2;
  --sage-2: #A7C6ED;
  --blush: #2D68C4;
  --blush-2: #825DC7;
  --gold: #9ADBE8;
  --muted: rgba(46, 60, 64, 0.6);
  --border: rgba(46, 60, 64, 0.12);
  --border-2: rgba(46, 60, 64, 0.22);
  --shadow-soft: 0 14px 34px rgba(46, 60, 64, 0.1);
  --shadow-deep: 0 24px 54px rgba(46, 60, 64, 0.18);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  cursor: none;
}

body.no-cursor,
body.no-cursor * {
  cursor: auto !important;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 76px;
  padding: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.topbar.is-solid {
  background: rgba(221, 229, 237, 0.9);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 28px rgba(46, 60, 64, 0.08);
}

.brand {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blush);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  opacity: 0.72;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--blush);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active,
.nav-links a:hover {
  opacity: 1;
  color: var(--blush);
}

.btn {
  border: 2px solid var(--blush);
  border-radius: 50px;
  background: transparent;
  color: var(--blush);
  padding: 0.88rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: rgba(45, 104, 196, 0.08);
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--blush);
  color: #ffffff;
  border-color: var(--blush);
  box-shadow: var(--shadow-soft);
}

.btn-solid:hover {
  background: var(--sage);
  color: #ffffff;
  border-color: var(--sage);
  box-shadow: var(--shadow-deep);
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  padding: 130px 72px 98px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 58vw;
  height: 58vw;
  right: -28vw;
  top: -22vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 104, 196, 0.16), transparent 72%);
  pointer-events: none;
}

.kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blush);
  margin-bottom: 16px;
  font-weight: 700;
}

.display {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-lg {
  font-size: clamp(2.8rem, 8.2vw, 5.5rem);
}

.display-md {
  font-size: clamp(2.1rem, 6.1vw, 3.5rem);
}

.display em {
  color: var(--blush);
  font-style: normal;
}

.lead {
  margin-top: 30px;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.section {
  padding: 108px 72px;
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
  margin-bottom: 44px;
}

.section-note {
  max-width: 380px;
  color: var(--muted);
  line-height: 1.85;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.card {
  background: var(--cream);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.card-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 700;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.dark-zone {
  background: var(--ink);
  color: var(--cream);
}

.dark-zone .section-note,
.dark-zone .card p,
.dark-zone .lead {
  color: rgba(221, 229, 237, 0.75);
}

.dark-zone .card {
  background: var(--ink-2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat {
  border-left: 1px solid var(--border);
  padding-left: 22px;
}

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

.stat strong {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer {
  background: var(--ink-2);
  color: var(--cream);
  padding: 82px 72px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(221, 229, 237, 0.14);
}

.site-footer h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.6;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.site-footer a {
  opacity: 0.66;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-footer a:hover {
  opacity: 1;
  color: var(--blush);
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--border-2);
  background: transparent;
  color: inherit;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.panel {
  max-width: 1080px;
  margin-inline: auto;
}

.form-wrap {
  max-width: 640px;
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.55);
  padding: 0.85rem 0.95rem;
  outline: none;
  border-radius: 8px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.error {
  color: #a83e2f;
  font-size: 0.85rem;
  display: none;
}

.form-msg {
  font-size: 0.95rem;
  color: var(--sage);
  min-height: 1.2em;
}

@media (max-width: 980px) {
  body { cursor: auto; }
  .topbar { padding: 0 18px; }
  .mobile-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    background: rgba(221, 229, 237, 0.98);
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    width: min(80vw, 280px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar.open .nav-links { display: flex; }
  .btn.topbar-cta { display: none; }
  .page-hero,
  .section,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }
  .page-hero { padding-top: 108px; padding-bottom: 82px; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .section-head,
  .form-row,
  .grid-3,
  .grid-2,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 18px;
  }
  .stat:first-child { border-top: 0; padding-top: 0; }
}