:root {
  --deep-violet: #6d28d9;
  --byte-violet: #6b5ce7;
  --lavender: #a78bfa;
  --mist: #ede9fe;
  --midnight: #251f47;
  --slate: #5a5478;
  --cloud: #f8f7fc;
  --paper: #fffefe;
  --ink: #191033;
  --line: rgba(37, 31, 71, .14);
  --shadow: 0 24px 70px rgba(37, 31, 71, .14);
  --soft-shadow: 0 14px 42px rgba(37, 31, 71, .09);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(167, 139, 250, .22), transparent 28rem),
    linear-gradient(180deg, #fff, var(--cloud) 42%, #fff);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 300;
  transform: translateY(-150%);
  border-radius: 999px;
  background: #261044;
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
}
.skip-link:focus { transform: none; }
.construction-marquee {
  position: relative;
  z-index: 120;
  overflow: hidden;
  color: #fff;
  background: #261044;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.construction-marquee__track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 8px 0;
  color: #fff;
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  animation: constructionMarquee 24s linear infinite;
}
.construction-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}
.construction-marquee__track span::after {
  content: "•";
  opacity: .64;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-violet);
  font-family: "DM Mono", "Space Mono", monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, var(--deep-violet) 50%, transparent 0) 0 0 / 9px 9px,
    linear-gradient(90deg, transparent 50%, var(--lavender) 0) 0 0 / 9px 9px;
}
h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  line-height: 1;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; color: var(--slate); }
.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); line-height: 1.75; max-width: 58ch; }
.accent { color: var(--deep-violet); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(38, 16, 68, .08);
  background: rgba(255, 253, 249, .82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 64px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 244px;
  flex: 0 0 auto;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
}

.brand span {
  display: grid;
  gap: 2px;
  color: #16112f;
  line-height: 1;
}

.brand strong {
  color: #1b1434;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: 2.05rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}

.brand small {
  color: #1b1434;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.35vw, 36px);
}

.nav-links a:not(.nav-cta) {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #17102f;
  font-size: .92rem;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  transition: color .2s ease, text-decoration-color .2s ease, transform .2s ease;
}

.nav-links a:hover, .nav-links a.is-active {
  color: var(--deep-violet);
  text-decoration-color: currentColor;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--deep-violet), #7f48f2);
  box-shadow: 0 16px 38px rgba(109, 40, 217, .29);
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta::after {
  content: "\2197";
  display: inline-block;
  margin-left: 10px;
  font-size: .82em;
  font-weight: 500;
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #4a168f, #251044);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(109, 40, 217, .36);
}

.nav-links .nav-cta:hover::after,
.nav-links .nav-cta:focus-visible::after {
  color: #fff;
  transform: translate(2px, -2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(38, 16, 68, .18);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #261044;
}

.rebrand-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(109, 40, 217, .08), transparent 24rem),
    linear-gradient(rgba(109, 40, 217, .018) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(90deg, rgba(109, 40, 217, .014) 1px, transparent 1px) 0 0 / 42px 42px,
    #fffdf9;
}

.rebrand-hero {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 116px) 0 42px;
}

.rebrand-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .62fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
}

.rebrand-kicker,
.legal-card small,
.route-card small {
  color: #6d28d9;
  font-family: "DM Mono", monospace;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.rebrand-hero h1 {
  max-width: 780px;
  margin-top: 18px;
  color: #16112f;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: 0;
}

.rebrand-hero h1 em {
  color: #6d28d9;
  font-style: italic;
}

.rebrand-hero .lead {
  max-width: 62ch;
  margin-top: 26px;
  color: #352b53;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  font-weight: 600;
  line-height: 1.78;
}

.rebrand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.rebrand-panel {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(109, 40, 217, .16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, rgba(109, 40, 217, .12), transparent 12rem),
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(246,242,255,.68));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 22px 70px rgba(38, 16, 68, .1);
}

.rebrand-panel::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 108px;
  height: 108px;
  opacity: .18;
  background: url("/assets/rebrand/pixel-field.svg") center / cover no-repeat;
  pointer-events: none;
}

.rebrand-panel strong {
  display: block;
  color: #251044;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.rebrand-panel p,
.legal-card p,
.route-card p {
  color: #51496a;
  line-height: 1.72;
}

.legal-shell,
.route-shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 18px 0 clamp(78px, 9vw, 120px);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card,
.route-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(109, 40, 217, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 56px rgba(38, 16, 68, .07);
}

.legal-card h2,
.route-card h2 {
  margin: 12px 0 10px;
  color: #16112f;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.08;
}

.legal-note {
  margin-top: 18px;
  padding: 22px;
  border-left: 3px solid #6d28d9;
  border-radius: 8px;
  background: rgba(239, 232, 255, .48);
  color: #352b53;
  font-weight: 700;
  line-height: 1.7;
}

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

.route-card {
  display: grid;
  min-height: 190px;
}

.route-card a {
  align-self: end;
  width: max-content;
  margin-top: 22px;
  color: #6d28d9;
  font-weight: 900;
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 40, 217, .2), transparent 22rem),
    linear-gradient(180deg, #17112d, #100b22);
}

.footer-shell {
  width: min(1240px, calc(100% - 64px));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.footer-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.footer-logo span {
  display: grid;
  line-height: 1;
}

.footer-logo strong {
  color: #fff;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: 1.68rem;
  font-style: italic;
}

.footer-logo small {
  color: rgba(255,255,255,.78);
  font-size: .48rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
}

.site-footer a {
  color: rgba(255,255,255,.82);
}

.site-footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: 800 .94rem/1 "DM Sans", system-ui, sans-serif;
  padding: 13px 18px;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--deep-violet), var(--byte-violet));
  color: #fff;
  box-shadow: 0 14px 32px rgba(109, 40, 217, .28);
}
.schedule-cta {
  background: #d8c4ff !important;
  color: #2b145f !important;
  box-shadow: 0 10px 24px rgba(124, 58, 237, .18) !important;
}
.schedule-cta:hover {
  background: #c7adff !important;
  color: #1f0e47 !important;
}
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, .74);
  color: var(--midnight);
}
.btn-dark {
  background: var(--midnight);
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 31, 71, .26);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 86px) 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}
.hero h1 {
  max-width: 13.8ch;
  font-size: clamp(3rem, 5.8vw, 5.35rem);
  letter-spacing: -.015em;
}
.hero-copy { display: grid; gap: 22px; }
.hero-panel {
  position: relative;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--midnight);
}
.hero-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(37, 31, 71, .86)),
    radial-gradient(circle at 14% 12%, rgba(109, 40, 217, .42), transparent 22rem);
}
.metric-stack {
  position: absolute;
  inset: 28px 28px auto auto;
  z-index: 1;
  display: grid;
  width: min(210px, 42%);
  grid-template-columns: 1fr;
  gap: 12px;
}
.metric {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  color: #fff;
  padding: 16px;
}
.metric strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}
.metric span { display: block; color: rgba(255,255,255,.76); font-size: .82rem; margin-top: 6px; }
.cap-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.cap-row span {
  color: var(--midnight);
  font-weight: 900;
  font-size: .92rem;
}
.cap-row small {
  display: block;
  color: var(--slate);
  font-size: .75rem;
  font-weight: 700;
  margin-top: 3px;
}
.trust-block {
  margin-top: 36px;
  text-align: center;
}
.trust-block > p {
  color: rgba(37,31,71,.55);
  font-family: "DM Mono", "Space Mono", monospace;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.trust-pill {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(37, 31, 71, .58);
  font-weight: 900;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
}
.stat-strip {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.64);
}
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.stat-strip span {
  min-height: 98px;
  display: grid;
  place-items: center;
  gap: 4px;
  border-left: 1px solid var(--line);
  color: var(--slate);
  font-weight: 700;
  text-align: center;
}
.stat-strip span:first-child { border-left: 0; }
.stat-strip b {
  color: var(--deep-violet);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
}

section { padding: clamp(72px, 8vw, 112px) 0; }
.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
  max-width: 760px;
}
.section-head h2 { font-size: clamp(2.25rem, 4.8vw, 4.6rem); }
.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--soft-shadow);
  padding: clamp(22px, 3vw, 34px);
}
.panel h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); margin-bottom: 12px; }
.dark-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(109, 40, 217, .54), transparent 30rem),
    linear-gradient(135deg, var(--midnight), #151029);
  color: #fff;
}
.dark-band p { color: rgba(255,255,255,.74); }
.dark-band .eyebrow { color: var(--lavender); }

.system-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, .85fr));
  gap: 18px;
}
.system-card {
  min-height: 250px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s, background .2s, border-color .2s;
}
.system-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.12);
  border-color: rgba(167,139,250,.46);
}
.system-card.featured {
  min-height: 250px;
  background: linear-gradient(160deg, rgba(109,40,217,.58), rgba(255,255,255,.08));
}
.system-card h3 { font-size: clamp(1.45rem, 2.8vw, 2.4rem); }
.system-card .mono {
  color: rgba(255,255,255,.6);
  font-family: "DM Mono", "Space Mono", monospace;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: .72fr repeat(2, 1fr);
  gap: 18px;
}
.work-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}
.work-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.work-card .work-body { padding: 24px; display: grid; gap: 10px; }
.work-card h3 { font-size: 1.8rem; }
.work-card.wide { grid-row: auto; }
.work-card.wide img { aspect-ratio: 16 / 10; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.stats span {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--slate);
  font-size: .88rem;
}
.stats b { display: block; color: var(--deep-violet); font-size: 1.28rem; }

.compare-shell {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(16px, 2vw, 24px);
}
.compare {
  --pos: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: var(--midnight);
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare .after { clip-path: inset(0 0 0 var(--pos)); }
.compare input {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  cursor: ew-resize;
}
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 3;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(37,31,71,.18);
}
.compare-handle::after {
  content: "Drag";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #fff;
  color: var(--deep-violet);
  font: 900 .72rem/1 "DM Sans", system-ui, sans-serif;
  padding: 12px 14px;
  box-shadow: var(--soft-shadow);
}
.compare-label {
  position: absolute;
  z-index: 2;
  top: 16px;
  border-radius: 999px;
  background: rgba(37,31,71,.78);
  color: #fff;
  font-weight: 900;
  padding: 9px 12px;
}
.compare-label.before { left: 16px; }
.compare-label.after-label { right: 16px; }

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--soft-shadow);
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  right: 14px;
  top: 8px;
  color: rgba(109, 40, 217, .08);
  font-family: "Fraunces", Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}
.service-card h3 { font-size: 1.55rem; position: relative; }
.service-card p { position: relative; }
.service-card a { color: var(--deep-violet); font-weight: 900; position: relative; }

.demo-browser {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: var(--midnight);
  box-shadow: var(--shadow);
}
.demo-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.demo-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cloud);
  color: var(--midnight);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 14px;
}
.demo-tabs button.is-active {
  background: var(--deep-violet);
  border-color: var(--deep-violet);
  color: #fff;
}
.demo-frame-wrap { position: relative; aspect-ratio: 16 / 9; background: #fff; }
.demo-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.demo-note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  color: var(--slate);
  font-size: .9rem;
}

.route-hero {
  padding: clamp(62px, 8vw, 104px) 0 52px;
}
.route-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.route-hero h1 { font-size: clamp(2.7rem, 5.8vw, 5.6rem); max-width: 12ch; }
.route-visual {
  min-height: 430px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: var(--midnight);
}
.route-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.route-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(37,31,71,.72));
}
.feature-list { display: grid; gap: 14px; }
.feature-list li {
  list-style: none;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(109, 40, 217, .14);
  border-radius: 16px;
  color: var(--slate);
  padding: 14px 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.52);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.timeline article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.76);
  padding: 22px;
}
.timeline strong {
  display: block;
  color: var(--deep-violet);
  font-family: "DM Mono", "Space Mono", monospace;
  font-size: .78rem;
  letter-spacing: .12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.team-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.team-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(560px, 1.15fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}
.footer {
  padding: 46px 0 28px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 40, 217, .2), transparent 22rem),
    linear-gradient(180deg, #17112d, #100b22);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  align-items: start;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.footer-links h4 {
  margin: 0 0 10px;
  color: rgba(238, 231, 255, .92);
  font-family: "DM Mono", "Space Mono", monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  margin: 7px 0;
}

.footer-links a:hover {
  color: #fff;
}

.footer p,
.footer .brand,
.footer .brand span,
.footer .brand strong {
  color: #fff;
}

.footer .brand small {
  color: rgba(255, 255, 255, .82);
}

.footer .brand img {
  filter: drop-shadow(0 10px 22px rgba(109, 40, 217, .24));
}

.footer-base {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
}

.public-footer {
  padding: 44px 0 26px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 40, 217, .2), transparent 22rem),
    linear-gradient(180deg, #17112d, #100b22);
}

.public-footer-shell {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(520px, 1.4fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.public-footer-brand {
  display: grid;
  gap: 18px;
}

.public-footer .public-footer-brand p {
  max-width: 36ch;
  color: rgba(255, 255, 255, .74);
  font-weight: 600;
}

.public-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.public-footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .06);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.public-footer-social a:hover,
.public-footer-social a:focus-visible {
  color: #fff;
  border-color: rgba(167, 139, 250, .55);
  background: rgba(139, 92, 246, .32);
  transform: translateY(-2px);
}

.public-footer-social svg {
  display: block;
}

.public-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.public-footer .footer-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.public-footer .footer-logo span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.public-footer .footer-logo strong {
  color: #fff;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: 2.05rem;
  font-style: italic;
}

.public-footer .footer-logo small {
  color: rgba(255,255,255,.88);
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.public-footer-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 420px;
}

.public-footer-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 0 14px;
  font: 700 .92rem/1 "DM Sans", system-ui, sans-serif;
}

.public-footer-form input::placeholder {
  color: rgba(255, 255, 255, .58);
}

.public-footer-form button {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--deep-violet), #7f48f2);
  box-shadow: 0 14px 32px rgba(109, 40, 217, .24);
  padding: 0 18px;
  font: 900 .92rem/1 "DM Sans", system-ui, sans-serif;
  cursor: pointer;
}

.public-footer-form .form-note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
}

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

.public-footer-links h4 {
  margin: 0 0 12px;
  color: rgba(238, 231, 255, .92);
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.public-footer-links a,
.public-footer-links span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  font-weight: 700;
}

.public-footer-links a:hover {
  color: #fff;
}

.public-footer-base {
  width: min(var(--max), calc(100% - 64px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
}

@media (max-width: 1180px) {
  .brand {
    min-width: 218px;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    width: min(var(--max), calc(100% - 36px));
  }

  .brand {
    min-width: 202px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  .nav-links {
    position: fixed;
    inset: 78px 18px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(38, 16, 68, .12);
    border-radius: 18px;
    background: rgba(255, 253, 249, .96);
    box-shadow: 0 24px 70px rgba(38, 16, 68, .18);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a:not(.nav-cta) {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: #f6f2ff;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .public-footer-shell,
  .public-footer-links {
    grid-template-columns: 1fr;
  }

  .public-footer-shell,
  .public-footer-base {
    width: min(var(--max), calc(100% - 36px));
  }

  .public-footer-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 176px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.65rem;
  }

  .brand small {
    font-size: .44rem;
  }

  .nav-shell {
    min-height: 70px;
  }
}

@media (max-width: 980px) {
  .hero-grid, .route-hero-grid, .split, .work-grid, .contact-grid, .team-photo-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel, .route-visual, .route-visual img { min-height: 420px; }
  .system-grid, .service-matrix, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { gap: 30px; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .rebrand-hero,
  .legal-shell,
  .route-shell,
  .footer-shell {
    width: min(100% - 34px, 1240px);
  }

  .rebrand-hero {
    padding: 52px 0 30px;
  }

  .rebrand-hero-grid,
  .legal-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .rebrand-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .rebrand-panel {
    min-height: 210px;
    padding: 24px;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .metric-stack { grid-template-columns: 1fr; }
  .hero-panel { min-height: 600px; }
  .system-grid, .service-matrix, .timeline, .stats, .footer-grid, .footer-links {
    grid-template-columns: 1fr;
  }
  .cap-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    padding-right: 58px;
  }
  .stat-strip .wrap {
    grid-template-columns: 1fr;
  }
  .stat-strip span {
    min-height: 76px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .stat-strip span:first-child { border-top: 0; }
  .demo-frame-wrap { aspect-ratio: 4 / 5; }
}

@keyframes constructionMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .construction-marquee__track {
    animation: none !important;
  }
}

/* Homepage reference rebuild. Scoped to index.html only. */
.home-ref {
  background:
    radial-gradient(circle at 18% 0%, rgba(237, 233, 254, .88), transparent 32rem),
    linear-gradient(180deg, #fff, #f8f7fc 42%, #fff);
}
.home-ref::before { opacity: .1; }
.home-ref section { padding: 0; }
.home-ref .home-header { background: rgba(250, 248, 255, .9); }
.home-ref .nav { min-height: 86px; }
.home-ref .brand { font-size: 1.7rem; }
.home-ref .nav-links { gap: 20px; }
.home-ref .nav-links a:not(.btn) { font-size: .86rem; padding: 9px 4px; }
.home-ref .nav-links .btn { padding: 15px 24px; }

.home-hero { overflow: hidden; padding-top: 54px; }
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(520px, .95fr) minmax(540px, 1.05fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: start;
}
.home-hero-copy { display: grid; gap: 20px; }
.home-pill {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(237, 233, 254, .9);
  color: var(--deep-violet);
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 11px 18px;
  text-transform: uppercase;
}
.home-hero h1 {
  max-width: 14.8ch;
  font-size: clamp(2.9rem, 3.9vw, 4.05rem);
  letter-spacing: -.012em;
  line-height: .98;
}
.home-hero h1 span { color: var(--deep-violet); }
.home-hero p {
  max-width: 52ch;
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.65;
}
.home-hero .cta-row { margin-top: 6px; }
.home-hero-media {
  position: relative;
  min-height: 430px;
  margin: 10px 0 0;
  overflow: visible;
}
.home-hero-media > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: 0 28px 80px rgba(37, 31, 71, .14);
}
.home-hero-media::before,
.home-hero-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 142px;
  height: 142px;
  opacity: .55;
  background-image: radial-gradient(var(--lavender) 3px, transparent 3px);
  background-size: 20px 20px;
}
.home-hero-media::before { left: -72px; top: 36px; }
.home-hero-media::after { right: 14px; bottom: -52px; }
.home-float-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 138px;
  border: 1px solid rgba(37, 31, 71, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 42px rgba(37, 31, 71, .16);
  color: var(--ink);
  padding: 18px;
}
.home-float-card small { color: var(--slate); font-size: .72rem; font-weight: 800; }
.home-float-card strong { color: #14102b; font: 900 1.4rem/1 "DM Sans", system-ui, sans-serif; }
.home-float-card span { color: var(--slate); font-size: .78rem; }
.home-float-card.overview { left: -12px; top: 74px; }
.home-float-card.leads { right: -26px; top: 92px; }
.home-float-card.orders { left: 26px; bottom: 72px; }
.home-float-card.tasks { right: -12px; bottom: 44px; }

.home-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 24px;
  padding: 0 6px;
}
.home-feature-row span {
  color: var(--midnight);
  font-weight: 900;
  font-size: .88rem;
}
.home-feature-row small {
  display: block;
  color: var(--slate);
  font-size: .76rem;
  font-weight: 600;
}
.home-trust { margin-top: 42px; text-align: center; }
.home-trust > p {
  color: rgba(37, 31, 71, .58);
  font-family: "DM Mono", monospace;
  font-size: .74rem;
  letter-spacing: .18em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.home-logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 44px;
}
.home-logo-row img {
  max-height: 58px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(.12) saturate(.8);
  opacity: .82;
}
.verde-logo {
  color: rgba(37, 31, 71, .66);
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1;
}
.verde-logo small {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: .64rem;
  letter-spacing: .18em;
  margin-top: 4px;
  text-transform: uppercase;
}
.home-stat-strip {
  margin-top: 30px;
  border-top: 1px solid rgba(37, 31, 71, .12);
  border-bottom: 1px solid rgba(37, 31, 71, .12);
  background: rgba(255, 255, 255, .62);
}
.home-stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.home-stat-strip span {
  min-height: 116px;
  display: grid;
  place-items: center;
  gap: 4px;
  border-left: 1px solid rgba(37, 31, 71, .12);
  color: var(--slate);
  font-weight: 700;
  text-align: center;
}
.home-stat-strip span:first-child { border-left: 0; }
.home-stat-strip b {
  color: var(--deep-violet);
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
}

.home-systems { padding: 64px 0 70px !important; }
.home-systems-grid {
  display: grid;
  grid-template-columns: 1.08fr repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.home-kicker {
  display: block;
  color: var(--deep-violet);
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.dark-band .home-kicker { color: var(--lavender); }
.home-system-intro {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-right: 20px;
}
.home-system-intro h2 { color: #fff; font-size: clamp(1.8rem, 2.7vw, 2.8rem); }
.home-system-card {
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px 22px;
}
.home-system-card.featured {
  background: linear-gradient(145deg, rgba(109, 40, 217, .94), rgba(109, 40, 217, .18));
}
.home-system-card span {
  color: var(--lavender);
  font-family: "DM Mono", monospace;
  font-size: 1.75rem;
  font-weight: 700;
}
.home-system-card h3 { font-size: 1.4rem; }
.home-system-card p { color: rgba(255,255,255,.74); font-size: .92rem; line-height: 1.55; }
.home-system-card b {
  width: max-content;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-family: "DM Mono", monospace;
  font-size: .62rem;
  letter-spacing: .1em;
  padding: 6px 10px;
  text-transform: uppercase;
}

.home-work { padding: 68px 0 72px !important; }
.home-compare {
  padding: 72px 0 !important;
  border-bottom: 1px solid rgba(37, 31, 71, .1);
  background: linear-gradient(180deg, #fff, #fbfaff);
}
.home-compare h2 { font-size: clamp(2rem, 3.4vw, 3.45rem); }
.home-compare .compare-shell {
  box-shadow: 0 22px 60px rgba(37, 31, 71, .1);
}
.home-work-head {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 28px;
}
.home-work-head h2 { font-size: clamp(2rem, 3.2vw, 3.2rem); }
.home-work-head > a {
  justify-self: end;
  color: var(--deep-violet);
  font-weight: 900;
}
.home-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-left: 260px;
}
.home-work-card {
  border: 1px solid rgba(37, 31, 71, .12);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 46px rgba(37, 31, 71, .08);
}
.home-work-card > img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: contain;
  background: #f8f7fc;
  padding: 18px;
}
.home-work-card:first-child > img {
  object-fit: cover;
  padding: 0;
}
.home-work-card > div { padding: 20px; }
.home-work-card span {
  color: var(--deep-violet);
  font-family: "DM Mono", monospace;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.home-work-card h3 { font-size: 1.1rem; margin: 8px 0 8px; line-height: 1.2; }
.home-work-card p { font-size: .92rem; line-height: 1.55; }
.home-work-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 0;
}
.home-work-card dt { color: var(--deep-violet); font-weight: 900; }
.home-work-card dd { margin: 2px 0 0; color: var(--slate); font-size: .7rem; }

.home-help {
  padding: 66px 0 84px !important;
  border-top: 1px solid rgba(37, 31, 71, .1);
}
.home-help-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
}
.home-help h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.home-help .btn { margin-top: 26px; }
.home-help-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.home-help-cards a {
  min-height: 240px;
  border: 1px solid rgba(37, 31, 71, .12);
  border-radius: 10px;
  background: rgba(255,255,255,.68);
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px 22px;
}
.home-help-cards span {
  color: var(--deep-violet);
  font-family: "DM Mono", monospace;
  font-size: .78rem;
  font-weight: 700;
}
.home-help-cards h3 { font-size: 1.22rem; line-height: 1.18; }
.home-help-cards p { font-size: .88rem; line-height: 1.5; }
.home-help-cards b { align-self: end; color: var(--deep-violet); font-size: .86rem; }

@media (max-width: 1100px) {
  .home-hero-grid,
  .home-systems-grid,
  .home-work-head,
  .home-help-grid {
    grid-template-columns: 1fr;
  }
  .home-work-grid { margin-left: 0; }
  .home-systems-grid,
  .home-help-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .home-ref .nav { min-height: 66px; }
  .home-hero { padding-top: 34px; }
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .home-hero-copy { max-width: 100%; }
  .home-pill {
    width: auto;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    padding: 10px 14px;
  }
  .home-hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.45rem);
    max-width: 11ch;
  }
  .home-hero p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .home-hero .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 310px);
  }
  .home-hero .btn {
    width: 100%;
    justify-content: center;
    padding-inline: 14px;
  }
  .home-hero-media,
  .home-hero-media > img { min-height: 360px; height: 420px; }
  .home-float-card { min-width: 122px; padding: 13px; }
  .home-float-card.overview { left: 10px; top: 18px; }
  .home-float-card.leads { right: 10px; top: 60px; }
  .home-float-card.orders { left: 14px; bottom: 34px; }
  .home-float-card.tasks { right: 12px; bottom: 18px; }
  .home-feature-row,
  .home-logo-row,
  .home-stat-strip .wrap,
  .home-work-grid,
  .home-help-cards { grid-template-columns: 1fr; }
  .home-feature-row { gap: 18px; }
  .home-logo-row { gap: 24px; }
  .home-logo-row img { max-height: 70px; }
  .home-stat-strip span {
    min-height: 76px;
    border-left: 0;
    border-top: 1px solid rgba(37,31,71,.12);
  }
  .home-stat-strip span:first-child { border-top: 0; }
}

/* SiteCTA — reusable closing call-to-action.
   Usage: <section data-site-cta></section> (rendered by initSiteCTA in site.js).
   Props via data attributes: data-cta-heading (HTML), data-cta-description,
   data-cta-primary-label, data-cta-primary-href, data-cta-secondary-label, data-cta-secondary-href. */
.site-cta {
  width: min(var(--about-max, var(--max)), calc(100% - 80px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  margin: 14px auto 26px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(109, 40, 217, .14);
  border-radius: clamp(1.5rem, 2vw, 2rem);
  background:
    radial-gradient(circle at 82% 20%, rgba(109, 40, 217, .08), transparent 22rem),
    #fffdf9;
  box-shadow: 0 20px 60px rgba(31, 20, 64, .08);
}

.site-cta__icon {
  width: clamp(4.5rem, 6vw, 6rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(109, 40, 217, .16);
  border-radius: 1.25rem;
  color: var(--deep-violet);
  background: #fff;
  box-shadow: 0 14px 34px rgba(109, 40, 217, .1);
  font-size: 1.9rem;
}

.site-cta__content h2 {
  margin: 0;
  color: #16112f;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height: .98;
  letter-spacing: -.01em;
}

.site-cta__content h2 em {
  color: var(--deep-violet);
  font-style: italic;
}

.site-cta__content p {
  max-width: 52ch;
  margin: 14px 0 0;
  color: #51496a;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.7;
}

.site-cta__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-cta__primary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 12px;
  color: #fff;
  background: var(--deep-violet);
  box-shadow: 0 16px 34px rgba(109, 40, 217, .24);
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-cta__primary::after {
  content: "\2197";
  margin-left: 10px;
}

.site-cta__primary:hover,
.site-cta__primary:focus-visible {
  background: #4a168f;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(109, 40, 217, .32);
}

.site-cta__secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-violet);
  font-weight: 800;
  transition: color .2s ease;
}

.site-cta__secondary:hover,
.site-cta__secondary:focus-visible {
  color: #4a168f;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.site-cta__primary:focus-visible,
.site-cta__secondary:focus-visible {
  outline: 2px solid var(--deep-violet);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .site-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-cta__actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-cta {
    width: min(var(--about-max, var(--max)), calc(100% - 34px));
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 22px 28px;
  }

  .site-cta__actions {
    width: 100%;
    gap: 16px;
  }

  .site-cta__primary {
    width: 100%;
  }
}
