:root {
  --purple: #5e17eb;
  --orbit: #351176;
  --violet: #7c3dff;
  --ink: #161321;
  --black: #0a0912;
  --graphite: #191623;
  --muted: #625d74;
  --soft: #f8f5fb;
  --paper: #fffdfb;
  --line: #ebe5f3;
  --white: #ffffff;
  --blue: #45c7ff;
  --pink: #ff62c7;
  --mint: #ddfaef;
  --peach: #fff0d9;
  --blush: #ffe7f1;
  --lilac: #f0e7ff;
  --sky: #e6f7ff;
  --radius: 8px;
  --shadow: 0 24px 68px rgba(44, 30, 84, 0.14);
  --display: "Aptos Display", "General Sans", "Instrument Sans", "Segoe UI", sans-serif;
  --body: "Aptos", "Source Sans 3", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 12%, rgba(255, 98, 199, 0.12), transparent 26%),
    radial-gradient(circle at 100% 18%, rgba(69, 199, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdfc 0%, #f7fbf8 46%, #fff9fe 100%);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.cosmic-motif {
  color: #b3b3c9;
  overflow: visible;
}

.cosmic-motif .purple {
  stroke: var(--purple);
}

.cosmic-motif .blue {
  stroke: var(--blue);
}

.cosmic-motif .muted {
  stroke: #b3b3c9;
}

.cosmic-motif .fill-purple {
  fill: var(--purple);
  stroke: none;
}

.cosmic-motif .fill-blue {
  fill: var(--blue);
  stroke: none;
}

.cosmic-section-divider {
  width: min(460px, calc(100% - 40px));
  margin: 0 auto;
  color: #b3b3c9;
  pointer-events: none;
}

.cosmic-section-divider .cosmic-motif {
  width: 100%;
  height: 54px;
}

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

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

[data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 24px;
  --reveal-scale: 1;
  --reveal-delay: 0ms;
  --reveal-duration: 720ms;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    clip-path var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: opacity, transform;
}

.reveal-enabled [data-reveal="fade-in"] {
  --reveal-y: 0px;
  --reveal-duration: 840ms;
}

.reveal-enabled [data-reveal="media-rise"] {
  --reveal-y: 18px;
  --reveal-scale: 0.985;
  --reveal-duration: 860ms;
}

.reveal-enabled [data-reveal="card-rise"] {
  --reveal-y: 20px;
  --reveal-scale: 0.99;
  --reveal-duration: 680ms;
}

.reveal-enabled [data-reveal="hero-card-left"] {
  --reveal-x: -12px;
  --reveal-y: 10px;
  --reveal-scale: 0.99;
  --reveal-duration: 740ms;
}

.reveal-enabled [data-reveal="hero-card-right"] {
  --reveal-x: 12px;
  --reveal-y: 12px;
  --reveal-scale: 0.99;
  --reveal-duration: 760ms;
}

.reveal-enabled .home-hero .cosmic-motif[data-reveal] {
  --reveal-y: 8px;
  clip-path: inset(0 18% 0 0);
}

.reveal-enabled [data-reveal-state="visible"] {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-enabled .home-hero .cosmic-motif[data-reveal-state="visible"] {
  clip-path: inset(0 0 0 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(9, 8, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: 150px;
}

@media (min-width: 761px) and (max-width: 1120px) {
  .nav-shell {
    width: min(100% - 44px, 1180px);
  }
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 680;
}

.desktop-nav > a,
.nav-group > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  min-width: 284px;
  padding: 10px;
  display: grid;
  gap: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-menu a {
  padding: 12px;
  border-radius: 6px;
  color: #28233a;
  line-height: 1.25;
}

.nav-menu a:hover {
  color: var(--black);
  background: var(--lilac);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 14px 34px rgba(94, 23, 235, 0.22);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--orbit);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(94, 23, 235, 0.14);
}

.btn-ghost:hover {
  background: var(--white);
}

.btn-ghost-light,
.btn-light {
  color: var(--purple);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.mobile-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  display: grid;
  gap: 6px;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a,
.mobile-nav summary {
  min-height: 44px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.84);
}

.mobile-nav details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav details a {
  display: block;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.64);
}

.mobile-cta {
  margin: 8px 0 4px;
  padding: 14px 16px !important;
  color: var(--white) !important;
  background: var(--purple);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 780;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(44px, 5.5vw, 70px);
  line-height: 0.98;
  font-weight: 820;
}

h2 {
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 780;
}

h3 {
  font-size: 21px;
  line-height: 1.18;
}

p {
  margin: 0;
}

.hero {
  position: relative;
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 98, 199, 0.12), transparent 22%),
    radial-gradient(circle at 94% 10%, rgba(69, 199, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #fffdfd 0%, #f7fbf9 100%);
  overflow: hidden;
}

.cosmic-hero-orbit,
.cosmic-hero-trajectory {
  position: absolute;
  pointer-events: none;
  opacity: 0.28;
}

.cosmic-hero-orbit {
  top: 92px;
  right: max(18px, calc((100vw - 1180px) / 2));
  width: 210px;
}

.cosmic-hero-trajectory {
  right: max(18px, calc((100vw - 1180px) / 2 + 34px));
  bottom: 28px;
  width: 132px;
  transform: rotate(10deg);
}

.hero::before,
.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero::before {
  width: 330px;
  height: 330px;
  left: -110px;
  top: 96px;
  background: radial-gradient(circle, rgba(94, 23, 235, 0.18), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.breadcrumbs {
  margin: 0 0 24px;
  color: #7a7288;
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #b8afc3;
}

.breadcrumbs a:hover {
  color: var(--purple);
}

.eyebrow,
.home-kicker,
.home-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #776f88;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.eyebrow::before,
.home-kicker::before,
.home-section-tag::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--purple);
}

.motif-eyebrow {
  gap: 8px;
}

.motif-eyebrow .cosmic-motif {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.home-section-tag.inverse {
  color: rgba(255, 255, 255, 0.78);
}

.home-section-tag.inverse::before {
  background: var(--white);
}

.hero-lead {
  max-width: 710px;
  margin-top: 22px;
  color: #555066;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  margin: 0;
  aspect-ratio: 1.05;
  border: 1px solid rgba(94, 23, 235, 0.1);
  border-radius: 34px 120px 34px 120px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 78px 0;
}

.white-section,
.strip-section,
.faq-section,
.contact-form-section,
.contact-email-section {
  background: rgba(255, 255, 255, 0.74);
}

.inner-page .white-section {
  position: relative;
  padding: 58px 0;
  background:
    linear-gradient(90deg, rgba(94, 23, 235, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(94, 23, 235, 0.044) 1px, transparent 1px),
    radial-gradient(circle at 94% 14%, rgba(69, 199, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 255, 0.92), rgba(247, 252, 249, 0.9));
  background-size: 78px 78px, 78px 78px, auto, auto;
  border-top: 1px solid rgba(94, 23, 235, 0.08);
}

.inner-page .white-section:nth-of-type(even) {
  background:
    linear-gradient(90deg, rgba(69, 199, 255, 0.048) 1px, transparent 1px),
    linear-gradient(0deg, rgba(94, 23, 235, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 4% 12%, rgba(255, 98, 199, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(250, 247, 255, 0.88), rgba(255, 253, 251, 0.92));
  background-size: 78px 78px, 78px 78px, auto, auto;
}

.inner-page .white-section + .white-section {
  border-top-color: rgba(94, 23, 235, 0.06);
}

.inner-page .white-section .split-section {
  gap: 46px;
  align-items: center;
}

.inner-page .white-section .section-heading {
  position: relative;
  padding-left: 28px;
}

.inner-page .white-section .section-heading::before {
  content: "";
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 3px;
  height: min(86px, 100%);
  background: var(--purple);
  border-radius: 999px;
}

.inner-page .white-section .section-copy {
  padding: 4px 0 4px 26px;
  border-left: 1px solid rgba(94, 23, 235, 0.16);
}

.dark-section,
.answer-section,
.related-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 96% 4%, rgba(94, 23, 235, 0.1), transparent 23%),
    linear-gradient(180deg, #fff8fd 0%, #f4fbf8 100%);
}

.split-section,
.answer-layout,
.related-panel,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: start;
}

.section-heading h2 {
  max-width: 690px;
}

.section-copy,
.answer-card,
.card,
.faq-list p,
.strip-grid p,
.contact-layout > div p {
  color: var(--muted);
  font-size: 17px;
}

.section-copy {
  display: grid;
  gap: 20px;
}

.section-copy p {
  max-width: 760px;
}

.section-copy h3,
.answer-card h3,
.card h3 {
  color: var(--ink);
}

.check-list,
.home-bullet-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.home-bullet-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.home-bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(94, 23, 235, 0.12);
}

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

.card-grid-heading {
  margin-bottom: 26px;
}

.card,
.answer-card,
.faq-list details,
.strip-grid article,
.contact-form,
.related-panel,
.home-process-card,
.home-snapshot-card,
.home-insight-card,
.home-qualification-card,
.home-faq-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(94, 23, 235, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(73, 50, 128, 0.08);
}

.card {
  min-height: 220px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 23, 235, 0.36);
  box-shadow: 0 24px 58px rgba(73, 50, 128, 0.12);
}

.link-card span {
  margin-top: auto;
  color: var(--purple);
  font-weight: 780;
}

.answer-section .eyebrow.dark,
.eyebrow.dark {
  color: var(--purple);
}

.answer-stack {
  display: grid;
  gap: 16px;
}

.quick-answer-section {
  padding: 52px 0;
}

.quick-answer-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 30px 34px;
  position: relative;
  overflow: hidden;
}

.quick-answer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--purple);
}

.quick-answer-card .eyebrow {
  margin-bottom: 14px;
}

.quick-answer-card h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
}

.answer-card {
  padding: 24px;
}

.answer-card h3 {
  margin-bottom: 14px;
}

.answer-card p + p,
.answer-card p + ul,
.answer-card ul + p {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 780;
  cursor: pointer;
}

.faq-list summary,
.home-faq-card summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-list summary::-webkit-details-marker,
.home-faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::marker,
.home-faq-card summary::marker {
  content: "";
}

.faq-list summary::before,
.home-faq-card summary::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  margin-top: 0.46em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.18s ease;
  flex: 0 0 auto;
}

.faq-list details[open] > summary::before,
.home-faq-card[open] > summary::before {
  transform: rotate(45deg);
}

.faq-list p {
  margin-top: 14px;
}

.related-panel {
  padding: 30px;
}

.related-links,
.inline-link-list,
.home-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.related-links a,
.inline-link-list a,
.home-inline-links a {
  padding: 10px 12px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(94, 23, 235, 0.12);
  border-radius: 999px;
  font-weight: 740;
}

.related-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.text-link {
  color: var(--purple);
  font-weight: 780;
}

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

.strip-grid article {
  position: relative;
  padding: 30px;
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.cosmic-card-mark {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 76px;
  height: 76px;
  opacity: 0.26;
  pointer-events: none;
}

.cosmic-card-mark .cosmic-motif {
  width: 100%;
  height: 100%;
}

.strip-grid h2 {
  font-size: 28px;
}

.contact-layout {
  align-items: start;
}

.contact-layout > div p {
  margin-top: 18px;
}

.contact-form,
.home-contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--ink);
}

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

.form-grid.compact {
  gap: 14px;
}

.contact-form label,
.home-contact-form label {
  display: grid;
  gap: 8px;
  color: #29243b;
  font-weight: 720;
}

.contact-form label span,
.home-contact-form label span {
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.home-contact-form input,
.home-contact-form select,
.home-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #dbd3e9;
  border-radius: var(--radius);
}

.contact-form textarea,
.home-contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"],
.home-contact-form input[aria-invalid="true"],
.home-contact-form select[aria-invalid="true"],
.home-contact-form textarea[aria-invalid="true"] {
  border-color: #ef4444;
}

.honeypot {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0 !important;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: #166534;
}

.form-status[data-state="error"] {
  color: #b91c1c;
}

.home-page {
  background:
    radial-gradient(circle at -6% 9%, rgba(94, 23, 235, 0.16), transparent 19%),
    radial-gradient(circle at 100% 12%, rgba(69, 199, 255, 0.15), transparent 20%),
    radial-gradient(circle at 0 58%, rgba(255, 98, 199, 0.11), transparent 20%),
    radial-gradient(circle at 100% 72%, rgba(52, 211, 153, 0.13), transparent 22%),
    linear-gradient(180deg, #fffdfc 0%, #f9fbf6 44%, #fff8fd 100%);
}

.home-hero {
  position: relative;
  padding: 82px 0 30px;
  overflow: hidden;
}

.home-hero::before {
  width: 320px;
  height: 320px;
  left: -160px;
  top: 26px;
  background: radial-gradient(circle at 45% 42%, rgba(94, 23, 235, 0.35), rgba(94, 23, 235, 0.08) 55%, transparent 72%);
}

.home-hero::after {
  width: 240px;
  height: 240px;
  right: 6%;
  top: 84px;
  border: 1px solid rgba(94, 23, 235, 0.16);
}

.home-decor {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.home-decor::before,
.home-decor::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-decor-a {
  width: 126px;
  height: 126px;
  left: 5%;
  top: 42%;
  opacity: 0.72;
  border: 1.5px solid rgba(94, 23, 235, 0.28);
  background: transparent;
  box-shadow: inset 0 0 0 12px rgba(94, 23, 235, 0.025);
}

.home-decor-a::before {
  inset: 20px -24px -10px -18px;
  border: 1px solid transparent;
  border-bottom-color: rgba(148, 119, 255, 0.28);
  border-left-color: rgba(148, 119, 255, 0.16);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.home-decor-a::after {
  width: 9px;
  height: 9px;
  right: 17%;
  top: 10%;
  border-radius: 999px;
  background: rgba(94, 23, 235, 0.42);
  box-shadow: 0 0 0 7px rgba(94, 23, 235, 0.07);
}

.home-decor-b {
  width: 84px;
  height: 84px;
  right: 11%;
  bottom: 11%;
  opacity: 0.58;
  border: 1.5px solid rgba(94, 23, 235, 0.22);
  background: transparent;
  box-shadow: inset 0 0 0 9px rgba(94, 23, 235, 0.02);
}

.home-decor-b::before {
  inset: 16px -18px -8px -14px;
  border: 1px solid transparent;
  border-bottom-color: rgba(158, 216, 255, 0.34);
  border-left-color: rgba(148, 119, 255, 0.16);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.home-decor-b::after {
  width: 7px;
  height: 7px;
  right: 16%;
  top: 9%;
  border-radius: 999px;
  background: rgba(94, 23, 235, 0.34);
  box-shadow: 0 0 0 6px rgba(94, 23, 235, 0.055);
}

.cosmic-home-star-a,
.cosmic-home-trajectory {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.cosmic-home-star-a {
  top: 70px;
  left: 12px;
  width: 42px;
  height: 42px;
}

.cosmic-home-trajectory {
  right: 4px;
  bottom: 158px;
  width: 74px;
  height: 74px;
  opacity: 0.72;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 0.86fr);
  gap: 54px;
  align-items: center;
}

.home-hero h1 {
  max-width: 690px;
  color: #161321;
}

.home-hero-lead {
  max-width: 655px;
  margin-top: 24px;
  color: #514b62;
  font-size: 20px;
  line-height: 1.72;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-secondary-btn {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(94, 23, 235, 0.12);
}

.home-secondary-btn:hover {
  background: var(--white);
}

.home-hero-art {
  position: relative;
  min-height: 720px;
}

.spark {
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 24px;
}

.spark::before,
.spark::after {
  content: "";
  position: absolute;
  background: var(--pink);
  border-radius: 999px;
}

.spark::before {
  inset: 10px 0;
}

.spark::after {
  inset: 0 10px;
}

.spark-a {
  top: 74px;
  left: 20px;
}

.spark-b {
  right: 10px;
  bottom: 170px;
  transform: rotate(24deg);
}

.hero-editorial-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 500px);
  height: 700px;
  margin: 0;
  border: 1px solid rgba(94, 23, 235, 0.1);
  border-radius: 42px 150px 42px 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(69, 199, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 248, 0.98));
  box-shadow: 0 30px 76px rgba(94, 23, 235, 0.16);
}

.hero-editorial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
  max-width: 230px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(94, 23, 235, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 20px 52px rgba(116, 94, 176, 0.18);
}

.hero-floating-card span {
  color: #7f7793;
  font-size: 12px;
  text-transform: uppercase;
}

.hero-floating-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.hero-floating-card-top {
  top: 24px;
  left: 24px;
}

.hero-floating-card-bottom {
  right: -18px;
  bottom: 86px;
}

.home-trust-strip {
  padding: 12px 0 42px;
}

.home-trust-strip .container {
  padding: 22px 0;
  border-top: 1px solid rgba(94, 23, 235, 0.1);
  border-bottom: 1px solid rgba(94, 23, 235, 0.1);
}

.home-trust-strip p {
  margin-bottom: 18px;
  color: #686176;
  text-align: center;
  font-weight: 720;
}

.home-trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.home-trust-items a {
  padding: 10px 14px;
  color: #4d4860;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(94, 23, 235, 0.1);
  border-radius: 999px;
  font-weight: 740;
}

.home-section {
  position: relative;
  padding: 74px 0;
}

.home-section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.home-section-heading.center {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  justify-items: center;
}

.home-section-heading p,
.home-copy-column p,
.home-proof-intro p,
.home-qualification-copy p,
.home-service-card p,
.home-snapshot-card p,
.home-process-card p,
.home-insight-card p,
.home-faq-card p {
  color: #5c566b;
  font-size: 17px;
  line-height: 1.72;
}

.home-editorial-split,
.home-proof-layout,
.home-qualification-layout,
.home-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.home-overview-visuals {
  position: relative;
  min-height: 610px;
}

.home-photo-oval {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(94, 23, 235, 0.1);
  box-shadow: var(--shadow);
}

.home-photo-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-photo-oval-main {
  left: 0;
  top: 18px;
  width: min(78%, 470px);
  height: 500px;
  border-radius: 160px 160px 12px 12px;
}

.home-photo-oval-side {
  right: 0;
  bottom: 28px;
  width: min(48%, 280px);
  height: 360px;
  border-radius: 150px;
}

.home-photo-badge {
  position: absolute;
  left: 42px;
  bottom: 0;
  max-width: 230px;
  padding: 17px 18px;
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(94, 23, 235, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 20px 52px rgba(116, 94, 176, 0.14);
}

.home-photo-badge span,
.home-service-card-kicker,
.home-snapshot-card span,
.home-insight-card span {
  color: #756d87;
  font-size: 12px;
  text-transform: uppercase;
}

.home-photo-badge strong {
  color: var(--ink);
  line-height: 1.4;
}

.home-copy-column,
.home-proof-stack,
.home-qualification-copy {
  display: grid;
  gap: 18px;
}

.home-bullet-list.compact {
  gap: 10px;
}

.home-service-band {
  background:
    radial-gradient(circle at 8% 0, rgba(255, 98, 199, 0.13), transparent 20%),
    radial-gradient(circle at 100% 22%, rgba(69, 199, 255, 0.13), transparent 22%),
    rgba(255, 255, 255, 0.54);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.home-service-card {
  min-height: 276px;
  padding: 22px 18px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(94, 23, 235, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(123, 97, 175, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.home-service-card:hover,
.home-process-card:hover,
.home-insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(115, 88, 173, 0.14);
}

.home-card-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--purple);
  border-radius: 999px;
  font-weight: 820;
  box-shadow: 0 14px 28px rgba(94, 23, 235, 0.2);
}

.home-card-icon .cosmic-motif {
  width: 36px;
  height: 36px;
}

.home-card-icon .cosmic-motif .purple,
.home-card-icon .cosmic-motif .blue,
.home-card-icon .cosmic-motif .muted {
  stroke: var(--white);
}

.home-card-icon .cosmic-motif .fill-purple,
.home-card-icon .cosmic-motif .fill-blue {
  fill: var(--white);
}

.home-service-card h3,
.home-focus-card span,
.home-snapshot-card h3,
.home-process-card h3,
.home-insight-card h3,
.home-qualification-card h3 {
  color: var(--ink);
}

.tone-lilac {
  background: var(--lilac);
}

.tone-peach {
  background: var(--peach);
}

.tone-blush {
  background: var(--blush);
}

.tone-mint {
  background: var(--mint);
}

.tone-sky {
  background: var(--sky);
}

.home-proof-process {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(246, 252, 248, 0.82));
}

.home-proof-layout {
  align-items: stretch;
}

.home-proof-visual {
  position: relative;
}

.home-proof-frame {
  height: 100%;
  min-height: 520px;
  margin: 0;
  border: 1px solid rgba(94, 23, 235, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.home-proof-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-proof-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 20px 22px;
  display: grid;
  gap: 8px;
  color: var(--white);
  background: rgba(18, 14, 30, 0.76);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.home-proof-overlay p,
.home-proof-overlay .text-link {
  color: var(--white);
}

.home-proof-intro,
.home-process-card,
.home-snapshot-card,
.home-qualification-card,
.home-faq-card {
  padding: 24px;
}

.home-process-card {
  display: grid;
  gap: 10px;
}

.home-focus-section {
  background:
    radial-gradient(circle at 0 20%, rgba(255, 98, 199, 0.1), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(52, 211, 153, 0.12), transparent 20%);
}

.home-focus-grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.home-focus-card {
  position: relative;
  flex: 0 1 126px;
  min-width: 0;
  height: 378px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 18px 44px rgba(20, 17, 33, 0.14);
  transition: flex-basis 240ms ease, box-shadow 180ms ease;
  scroll-snap-align: start;
}

.home-focus-card:first-child {
  flex-basis: 382px;
}

.home-focus-grid:hover .home-focus-card,
.home-focus-grid:focus-within .home-focus-card {
  flex-basis: 126px;
}

.home-focus-grid .home-focus-card:hover,
.home-focus-grid .home-focus-card:focus-visible {
  flex-basis: 382px;
  box-shadow: 0 24px 58px rgba(20, 17, 33, 0.18);
}

.home-focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 8, 15, 0.08) 0%, rgba(8, 8, 15, 0.78) 100%);
}

.home-focus-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.home-focus-card:hover img {
  transform: scale(1.04);
}

.home-focus-card span,
.home-focus-card p {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.home-focus-card span {
  align-self: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: transform 180ms ease, font-size 180ms ease;
}

.home-focus-card p {
  font-size: 13px;
  line-height: 1.45;
  max-height: 0;
  max-width: 310px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 180ms ease, max-height 180ms ease;
}

.home-focus-card:first-child span,
.home-focus-card:hover span,
.home-focus-card:focus-visible span {
  align-self: flex-start;
  font-size: 21px;
  line-height: 1.14;
  white-space: normal;
  writing-mode: horizontal-tb;
  transform: none;
}

.home-focus-card:first-child p,
.home-focus-card:hover p,
.home-focus-card:focus-visible p {
  max-height: 130px;
  opacity: 0.92;
}

.home-focus-grid:hover .home-focus-card:first-child:not(:hover) span,
.home-focus-grid:focus-within .home-focus-card:first-child:not(:focus-visible) span {
  align-self: center;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.home-focus-grid:hover .home-focus-card:first-child:not(:hover) p,
.home-focus-grid:focus-within .home-focus-card:first-child:not(:focus-visible) p {
  max-height: 0;
  opacity: 0;
}

.home-credibility-section {
  background: rgba(255, 255, 255, 0.5);
}

.home-snapshot-grid,
.home-insights-grid,
.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.home-snapshot-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.home-snapshot-card img {
  width: calc(100% + 48px);
  height: 190px;
  margin: -24px -24px 0;
  object-fit: cover;
}

.home-insights-section {
  background:
    radial-gradient(circle at 100% 12%, rgba(255, 98, 199, 0.1), transparent 20%),
    rgba(250, 247, 255, 0.5);
}

.home-insight-card {
  display: grid;
  overflow: hidden;
}

.home-insight-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.home-insight-card div {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.home-insight-card strong {
  color: var(--purple);
}

.home-qualification-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: start;
}

.home-qualification-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(180deg, #ffffff 0%, #f4eeff 100%);
}

.home-qualification-card .home-section-tag,
.home-qualification-card h3,
.home-qualification-card .home-bullet-list {
  margin: 0;
}

.home-qualification-card .home-section-tag {
  margin-bottom: 24px;
}

.home-qualification-card h3 {
  line-height: 1.12;
  margin-bottom: 28px;
}

.home-qualification-card .home-bullet-list {
  width: 100%;
  gap: 12px;
  margin-bottom: 34px;
}

.home-qualification-card .btn {
  align-self: flex-start;
  margin-top: 0;
  margin-left: 28px;
}

.home-contact-section {
  background:
    radial-gradient(circle at 0 0, rgba(255, 98, 199, 0.12), transparent 22%),
    radial-gradient(circle at 100% 100%, rgba(69, 199, 255, 0.1), transparent 24%),
    rgba(255, 255, 255, 0.72);
}

.home-contact-layout {
  align-items: start;
}

.home-contact-card {
  padding: 36px;
  display: grid;
  align-content: start;
  gap: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 110% -10%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #6b2df1 0%, #4817c1 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-contact-card p {
  color: rgba(255, 255, 255, 0.82);
}

.home-contact-points {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.home-contact-points span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 720;
}

.home-contact-email,
.contact-email-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(94, 23, 235, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-contact-email,
.contact-email-card {
  padding: 36px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.home-contact-email {
  justify-items: start;
}

.home-contact-email h2,
.contact-email-copy h2 {
  margin: 0;
}

.home-contact-email p,
.contact-email-copy p,
.contact-email-note {
  margin: 0;
}

.home-contact-email-link,
.footer-email,
.contact-email-note a {
  color: var(--purple);
  font-weight: 720;
}

.home-contact-email-link:hover,
.footer-email:hover,
.contact-email-note a:hover {
  color: #4a16c7;
}

.home-contact-email .contact-email-note {
  margin-top: 2px;
  max-width: 28ch;
  color: #5d5770;
}

.contact-email-layout {
  align-items: start;
}

.contact-email-card {
  align-self: start;
  height: fit-content;
}

.contact-email-copy {
  display: grid;
  gap: 18px;
}

.contact-email-card .home-bullet-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 10px;
}

.contact-email-card .home-bullet-list.compact li {
  padding-left: 24px;
}

@media (max-width: 760px) {
  .contact-email-card .home-bullet-list.compact {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

.home-faq-card {
  padding: 0;
  overflow: hidden;
  align-self: start;
}

.home-faq-card summary {
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 780;
  cursor: pointer;
}

.home-faq-card p {
  padding: 0 24px 22px;
}

.home-page-summary {
  max-width: 860px;
  margin: 28px auto 0;
  color: #555066;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.88);
  background: var(--black);
}

.footer-cta {
  padding: 76px 0;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.13), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #6b2df1 0%, #4817c1 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
  margin: 0 auto;
  max-width: 760px;
}

.footer-cta p {
  max-width: 580px;
  margin: 16px auto 26px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  padding: 58px 0 38px;
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.55fr);
  gap: 54px;
  align-items: start;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  column-gap: 34px;
  row-gap: 30px;
}

.footer-brand img {
  width: 126px;
}

.footer-brand p {
  max-width: 290px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.footer-nav-grid nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav-grid h3 {
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--white);
}

.footer-nav-grid a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.42;
}

.footer-nav-grid a:hover {
  color: #ffffff;
}

.footer-legal {
  padding: 20px 0 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-legal a,
.footer-credit a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-credit {
  margin: 0;
}

.footer-credit a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.blog-page {
  background:
    radial-gradient(circle at 0 12%, rgba(255, 98, 199, 0.12), transparent 26%),
    radial-gradient(circle at 100% 18%, rgba(69, 199, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdfc 0%, #f7fbf8 46%, #fff9fe 100%);
}

.blog-hero,
.blog-index-hero {
  padding: 76px 0 32px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 98, 199, 0.08), transparent 20%),
    radial-gradient(circle at 100% 12%, rgba(69, 199, 255, 0.08), transparent 20%),
    rgba(255, 255, 255, 0.9);
}

.blog-hero-inner,
.blog-index-hero-inner {
  display: grid;
  gap: 18px;
}

.blog-deck {
  max-width: 860px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.5;
}

.legal-hero {
  padding: 76px 0 44px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 98, 199, 0.08), transparent 20%),
    radial-gradient(circle at 100% 12%, rgba(69, 199, 255, 0.08), transparent 20%),
    rgba(255, 255, 255, 0.9);
}

.legal-hero-inner {
  display: grid;
  max-width: 920px;
  gap: 18px;
}

.legal-content-section {
  padding-top: 76px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 44px;
  align-items: start;
}

.legal-document {
  display: grid;
  gap: 34px;
}

.legal-document section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.legal-document p,
.legal-aside p {
  color: #565166;
}

.legal-aside {
  position: sticky;
  top: 110px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-aside h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.legal-aside .btn {
  margin-top: 14px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-meta span,
.blog-card-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(94, 23, 235, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #615877;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.blog-audience {
  max-width: 860px;
  color: var(--muted);
}

.blog-feature {
  margin: 8px 0 0;
  overflow: hidden;
  border: 1px solid rgba(94, 23, 235, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-feature img,
.blog-index-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.blog-direct-answer-section {
  padding-top: 6px;
  padding-bottom: 28px;
  background: rgba(255, 253, 255, 0.92);
}

.blog-direct-answer-card {
  max-width: 980px;
  background: rgba(255, 255, 255, 0.94);
}

.blog-direct-answer-card > p:last-child {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.blog-main-section {
  padding: 0 0 72px;
  background:
    linear-gradient(90deg, rgba(94, 23, 235, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(94, 23, 235, 0.044) 1px, transparent 1px),
    radial-gradient(circle at 94% 14%, rgba(69, 199, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 255, 0.94), rgba(247, 252, 249, 0.92));
  background-size: 78px 78px, 78px 78px, auto, auto;
  border-top: 1px solid rgba(94, 23, 235, 0.08);
}

.blog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 108px;
}

.blog-toc {
  padding: 22px;
  border: 1px solid rgba(94, 23, 235, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(73, 50, 128, 0.08);
}

.blog-sidebar-label {
  margin: 0 0 14px;
  color: #776f88;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.blog-toc ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.blog-toc a {
  color: var(--ink);
}

.blog-toc a:hover {
  color: var(--purple);
}

.blog-article {
  padding: 4px 0 4px 26px;
  display: grid;
  gap: 24px;
  border-left: 1px solid rgba(94, 23, 235, 0.16);
}

.blog-article > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.blog-article .check-list,
.blog-article .step-list,
.blog-article li {
  color: var(--muted);
}

.blog-section {
  display: grid;
  gap: 14px;
  padding: 30px 0;
  border-top: 1px solid rgba(94, 23, 235, 0.1);
}

.blog-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.blog-section h2 {
  margin: 0 0 6px;
}

.blog-section h3 {
  margin: 16px 0 0;
  font-size: 24px;
}

.blog-section p {
  color: var(--muted);
  font-size: 17px;
}

.step-list {
  margin: 0;
  padding-left: 24px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.step-list li {
  padding-left: 6px;
}

.blog-related-section .card-grid,
.blog-index-grid {
  align-items: stretch;
}

.blog-page .faq-section,
.blog-related-section,
.blog-cta-section {
  background:
    radial-gradient(circle at 4% 12%, rgba(255, 98, 199, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(250, 247, 255, 0.88), rgba(255, 253, 251, 0.92));
}

.blog-related-card {
  min-height: 100%;
}

.blog-index-card {
  padding: 0;
  overflow: hidden;
}

.blog-index-card-body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.blog-index-card .blog-meta {
  margin-top: 2px;
}

.blog-cta-card {
  padding: 34px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(94, 23, 235, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(69, 199, 255, 0.12), transparent 28%),
    radial-gradient(circle at 0 100%, rgba(255, 98, 199, 0.1), transparent 24%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.blog-cta-card .btn {
  justify-self: start;
  width: auto;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .hero-grid,
  .split-section,
  .answer-layout,
  .related-panel,
  .contact-layout,
  .home-hero-grid,
  .home-editorial-split,
  .home-proof-layout,
  .home-qualification-layout,
  .home-contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
  }

  .home-hero-art,
  .home-overview-visuals {
    min-height: auto;
  }

  .hero-editorial-frame,
  .home-photo-oval-main,
  .home-photo-oval-side,
  .home-photo-badge {
    position: relative;
    inset: auto;
  }

  .home-hero-art,
  .home-overview-visuals {
    display: grid;
    gap: 16px;
    justify-items: start;
  }

  .home-hero-art {
    padding-top: 118px;
  }

  .hero-editorial-frame {
    width: min(100%, 620px);
    height: 700px;
  }

  .hero-floating-card-top {
    top: 0;
    left: 0;
  }

  .hero-floating-card-bottom {
    right: -12px;
    bottom: 40px;
  }

  .home-photo-oval-main,
  .home-photo-oval-side {
    width: min(100%, 620px);
    height: 420px;
    border-radius: var(--radius);
  }

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

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

  .footer-grid {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: 36px;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .container,
  .nav-shell,
  .mobile-nav {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 66px;
    gap: 12px;
  }

  .brand-link img {
    width: 132px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .home-hero {
    padding: 58px 0 44px;
  }

  .cosmic-hero-orbit,
  .cosmic-hero-trajectory,
  .cosmic-home-trajectory {
    opacity: 0.18;
  }

  h1,
  .home-hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead,
  .home-hero-lead {
    font-size: 17px;
  }

  .section,
  .home-section {
    padding: 56px 0;
  }

  .inner-page .white-section {
    padding: 46px 0;
    background-size: 56px 56px, 56px 56px, auto, auto;
  }

  .hero-grid,
  .split-section,
  .answer-layout,
  .related-panel,
  .contact-layout,
  .home-hero-grid,
  .home-editorial-split,
  .home-proof-layout,
  .home-qualification-layout,
  .home-contact-layout {
    gap: 30px;
  }

  .card-grid,
  .strip-grid,
  .form-grid,
  .footer-grid,
  .home-service-grid,
  .home-snapshot-grid,
  .home-insights-grid,
  .home-faq-grid,
  .blog-index-grid {
    grid-template-columns: 1fr;
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .card {
    min-height: auto;
  }

  .contact-form,
  .home-contact-form,
  .strip-grid article,
  .related-panel,
  .home-contact-card,
  .home-proof-intro,
  .home-process-card,
  .home-snapshot-card,
  .home-qualification-card,
  .home-faq-card summary,
  .home-faq-card p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .inner-page .white-section .section-heading {
    padding-left: 20px;
  }

  .inner-page .white-section .section-copy {
    padding-left: 20px;
  }

  .home-service-card {
    min-height: auto;
  }

  .home-focus-card {
    flex-basis: 104px;
    height: 320px;
  }

  .home-focus-card:first-child,
  .home-focus-grid .home-focus-card:hover,
  .home-focus-grid .home-focus-card:focus-visible {
    flex-basis: 290px;
  }

  .home-focus-grid:hover .home-focus-card,
  .home-focus-grid:focus-within .home-focus-card {
    flex-basis: 104px;
  }

  .hero-editorial-frame {
    height: 540px;
    border-radius: var(--radius);
  }

  .home-proof-frame {
    min-height: 360px;
  }

  .home-trust-items a,
  .home-inline-links a {
    width: 100%;
    justify-content: center;
  }

  .footer-cta {
    padding: 58px 0;
  }

  .blog-hero,
  .blog-index-hero,
  .legal-hero {
    padding: 58px 0 22px;
  }

  .blog-deck {
    font-size: 18px;
  }

  .blog-feature img,
  .blog-index-card img {
    height: 280px;
  }

  .blog-cta-card,
  .blog-toc {
    padding: 20px 18px;
  }

  .blog-article {
    padding: 4px 0 4px 20px;
  }
}

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

  .reveal-enabled [data-reveal],
  .reveal-enabled [data-reveal-state="visible"],
  .reveal-enabled .home-hero .cosmic-motif[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}
