:root {
  --bg: #eef4fb;
  --bg-alt: #e5edf7;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.97);
  --ink: #142033;
  --muted: #61728b;
  --line: rgba(20, 32, 51, 0.1);
  --line-strong: rgba(20, 32, 51, 0.18);
  --teal: #0f766e;
  --cyan: #0ea5c6;
  --blue: #376dff;
  --orange: #d4632e;
  --teal-soft: rgba(15, 118, 110, 0.12);
  --cyan-soft: rgba(14, 165, 198, 0.12);
  --blue-soft: rgba(55, 109, 255, 0.12);
  --orange-soft: rgba(212, 99, 46, 0.14);
  --cream: #fffdf8;
  --shadow: 0 24px 64px rgba(47, 79, 126, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --shell: 1220px;
  --font-body: "Aptos", "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
  --font-display: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  --font-mono: "Cascadia Mono", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 8%, rgba(14, 165, 198, 0.18), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(55, 109, 255, 0.16), transparent 24%),
    radial-gradient(circle at 84% 74%, rgba(15, 118, 110, 0.1), transparent 20%),
    linear-gradient(135deg, rgba(55, 109, 255, 0.03), transparent 34%),
    linear-gradient(180deg, #f5f9fd 0%, var(--bg) 52%, var(--bg-alt) 100%);
  font: 400 16px/1.72 var(--font-body);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(55, 109, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 198, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(55, 109, 255, 0.03) 0, rgba(55, 109, 255, 0.03) 1px, transparent 1px, transparent 28px);
  background-size: 88px 88px, 88px 88px, 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 94%);
}

body::after {
  background:
    linear-gradient(120deg, rgba(14, 165, 198, 0.08), transparent 22%),
    linear-gradient(300deg, rgba(55, 109, 255, 0.08), transparent 22%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 0 160px, rgba(55, 109, 255, 0.04) 160px 162px, rgba(255, 255, 255, 0) 162px 320px);
  mix-blend-mode: multiply;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  top: 5rem;
  left: -7rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(14, 165, 198, 0.22), transparent 62%),
    radial-gradient(circle at 60% 40%, rgba(55, 109, 255, 0.14), transparent 58%);
  filter: blur(16px);
}

.page-shell::after {
  top: 12rem;
  right: -11rem;
  width: 38rem;
  height: 38rem;
  border-radius: 34% 66% 58% 42%;
  background:
    radial-gradient(circle, rgba(55, 109, 255, 0.18), transparent 62%),
    radial-gradient(circle at 38% 62%, rgba(14, 165, 198, 0.12), transparent 56%);
  filter: blur(18px);
}

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

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

a:hover {
  color: var(--blue);
}

h1,
h2,
h3 {
  margin: 0 0 0.72rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

h2 {
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
}

h3 {
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

p,
ul,
dl {
  margin: 0;
}

.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;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}

.site-header {
  padding: 1.3rem 0 0.9rem;
}

.masthead {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.05rem 1.2rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 252, 255, 0.74));
  box-shadow: 0 14px 38px rgba(55, 86, 128, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}

.brand img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.1rem;
  box-shadow: 0 14px 28px rgba(42, 32, 22, 0.12);
}

.brand-copy {
  display: grid;
  gap: 0.18rem;
}

.brand-name {
  font: 700 1.18rem/1 var(--font-display);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-kicker,
.section-label,
.card-kicker,
.footer-label {
  color: var(--muted);
  font: 400 0.74rem/1 var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 760px;
}

.site-nav a {
  padding: 0.82rem 0.98rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--ink);
  font: 400 0.74rem/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: rgba(17, 138, 178, 0.2);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(58, 111, 247, 0.08));
  color: var(--teal);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.28rem 0;
  background: var(--ink);
}

.site-main {
  padding: 0 0 3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font: 700 0.76rem/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.button-primary {
  color: var(--cream);
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 12px 28px rgba(58, 111, 247, 0.18);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

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

.landing-board,
.page-stage,
.offer-manifesto,
.story-panel,
.contact-board,
.footer-wrap,
.metrics-line {
  margin-bottom: 1.15rem;
}

.landing-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.landing-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.landing-note,
.offer-panel,
.story-panel,
.contact-poster,
.contact-form-shell,
.footer-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 252, 255, 0.84));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.landing-note::before,
.offer-panel::before,
.story-panel::before,
.contact-poster::before,
.contact-form-shell::before,
.footer-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--blue), var(--orange));
  opacity: 0.92;
}

.landing-note {
  padding: 1.5rem 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(17, 138, 178, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(58, 111, 247, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.88));
}

.landing-note h1 {
  max-width: none;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.landing-lead,
.section-text,
.offer-panel p,
.page-stage-copy p,
.story-body p,
.story-card p,
.project-tile p,
.process-step p,
.contact-poster p,
.contact-shortcuts span,
.contact-shortcuts a,
.footer-wrap p,
.footer-wrap a,
.price-row h3 {
  color: var(--muted);
}

.offer-panel {
  min-height: 22rem;
  padding: 1.2rem 1.3rem 1.3rem;
}

.offer-panel::after {
  content: "";
  position: absolute;
  inset: auto -2.5rem -2.5rem auto;
  width: 9rem;
  height: 9rem;
  border-radius: 30px;
  transform: rotate(18deg);
  border: 1px solid rgba(58, 111, 247, 0.1);
}

.offer-panel-tech {
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 251, 250, 0.86));
}

.offer-panel-web {
  background:
    radial-gradient(circle at top left, rgba(58, 111, 247, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.88));
}

.offer-index {
  margin-bottom: 0.8rem;
  color: rgba(24, 34, 49, 0.2);
  font: 700 clamp(1.7rem, 3vw, 2.5rem)/1 var(--font-display);
}

.offer-panel h2 {
  max-width: 11ch;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  text-transform: uppercase;
}

.offer-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: var(--shadow);
}

.manifesto-head,
.manifesto-list {
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.84));
}

.manifesto-head {
  background:
    linear-gradient(145deg, rgba(58, 111, 247, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.84));
}

.manifesto-list {
  margin: 0;
  padding-left: 2.4rem;
  background:
    linear-gradient(145deg, rgba(212, 99, 46, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 248, 245, 0.84));
}

.manifesto-list li + li,
.bullet-list li + li {
  margin-top: 0.55rem;
}

.metrics-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric-chip {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 249, 255, 0.76));
  box-shadow: 0 12px 32px rgba(58, 111, 247, 0.06);
}

.metric-chip strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.page-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1rem;
  align-items: end;
  padding: 0.75rem 0 1.1rem;
  border-bottom: 1px solid rgba(24, 34, 49, 0.14);
}

.compact-stage {
  align-items: start;
}

.page-stage-title h1 {
  max-width: 13ch;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.page-stage-copy {
  padding: 0.85rem 0 0.2rem;
}

.contact-shortcuts {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1rem;
}

.story-panel {
  padding: 1.3rem;
}

.story-panel:nth-of-type(even) {
  margin-left: 7%;
}

.story-panel:nth-of-type(odd) {
  margin-right: 7%;
}

.story-heading {
  max-width: 58rem;
}

.story-heading h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.story-body,
.angled-grid,
.package-layers,
.process-ribbon,
.project-wall,
.price-rail {
  margin-top: 1rem;
}

.angled-grid,
.project-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.story-card,
.project-tile,
.process-step {
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58, 111, 247, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 249, 255, 0.68));
}

.angled-grid article:nth-child(2) {
  transform: translateY(0.8rem);
}

.package-layers {
  display: grid;
  gap: 1rem;
}

.package-layer {
  padding: 1.12rem 1.2rem;
  border: 1px solid rgba(58, 111, 247, 0.08);
  border-left: 6px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(245, 249, 255, 0.68));
}

.package-layer:nth-child(2) {
  border-left-color: var(--blue);
  margin-left: 5%;
}

.package-layer:nth-child(3) {
  border-left-color: var(--orange);
  margin-left: 10%;
}

.package-bar,
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.package-bar strong,
.price-row strong {
  white-space: nowrap;
  color: var(--blue);
  font: 700 0.9rem/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.bullet-list {
  padding-left: 1.2rem;
  margin-top: 0.95rem;
}

.note-slab {
  padding: 1.1rem 1.2rem;
  border-top: 3px solid var(--orange);
  background: linear-gradient(180deg, var(--orange-soft), rgba(255, 255, 255, 0.48));
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.process-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step:nth-child(2),
.process-step:nth-child(4) {
  transform: translateY(0.8rem);
}

.project-tile:nth-child(2) {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.12), rgba(245, 249, 255, 0.74));
}

.project-tile:nth-child(3) {
  background: linear-gradient(180deg, rgba(58, 111, 247, 0.12), rgba(246, 248, 255, 0.74));
}

.text-link {
  display: inline-flex;
  margin-top: 0.95rem;
  color: var(--teal);
  font: 700 0.76rem/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--blue);
}

.project-placeholder {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--muted);
  font: 700 0.78rem/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-rail {
  display: grid;
  gap: 0.8rem;
}

.price-row {
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(24, 34, 49, 0.08);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.34;
}

.contact-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: start;
}

.contact-poster {
  padding: 1.3rem;
  transform: rotate(-1deg);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.86));
}

.contact-form-shell {
  padding: 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(58, 111, 247, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.86));
}

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

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

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

.contact-form span {
  color: var(--muted);
  font: 400 0.75rem/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.12rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(58, 111, 247, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 12rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(58, 111, 247, 0.3);
  box-shadow: 0 0 0 4px rgba(58, 111, 247, 0.08);
}

.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  margin-top: 1rem;
}

.notice-success {
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(15, 118, 110, 0.08);
}

.notice-error {
  border: 1px solid rgba(212, 99, 46, 0.18);
  background: rgba(212, 99, 46, 0.08);
}

.article-shell {
  max-width: 980px;
}

.article-intro {
  font-size: 1rem;
}

.article-section + .article-section {
  margin-top: 1.35rem;
}

.legal-stack {
  display: grid;
  gap: 1rem;
}

.footer-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-content: start;
}

.footer-links a {
  font: 400 0.77rem/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .landing-board,
  .landing-offers,
  .page-stage,
  .offer-manifesto,
  .contact-board,
  .footer-wrap,
  .process-ribbon,
  .angled-grid,
  .project-wall {
    grid-template-columns: 1fr;
  }

  .story-panel:nth-of-type(even),
  .story-panel:nth-of-type(odd),
  .package-layer:nth-child(2),
  .package-layer:nth-child(3),
  .process-step:nth-child(2),
  .process-step:nth-child(4) {
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }
}

@media (max-width: 860px) {
  .masthead {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    padding-top: 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: block;
  }

  .field-grid,
  .metrics-line {
    grid-template-columns: 1fr;
  }
}

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

  .landing-note,
  .offer-panel,
  .story-panel,
  .contact-poster,
  .contact-form-shell,
  .footer-wrap {
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .landing-note h1 {
    font-size: clamp(1.75rem, 8vw, 2.65rem);
  }
}

body.page-home{
  margin:0;
  color:#fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(52,211,255,.14), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(168,85,247,.18), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(255,99,216,.14), transparent 18%),
    linear-gradient(180deg,#080312 0%, #130526 50%, #090414 100%);
  overflow-x:hidden;
}

body.page-home .site-header,
body.page-home .site-footer {
  display:none;
}

body.page-home .site-main{
  padding:0 0 48px;
}

body.page-home .site-main > .shell{
  width:min(1440px, calc(100% - 40px));
}

body.page-home .page-shell::before,
body.page-home .page-shell::after{
  display:none;
}

body.page-home .page-bg,
body.page-home .noise{
  pointer-events:none;
  position:fixed;
  inset:0;
}

body.page-home .page-bg{
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.04), transparent 30%),
    radial-gradient(circle at 20% 70%, rgba(0,255,255,.06), transparent 22%),
    radial-gradient(circle at 85% 25%, rgba(255,0,204,.08), transparent 26%);
  filter:blur(8px);
}

body.page-home .noise{
  opacity:.15;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:80px 80px;
}

body.page-home .container{
  width:min(1440px, calc(100% - 40px));
  margin-inline:auto;
  position:relative;
  z-index:1;
}

body.page-home .home-site-header{
  position:sticky;
  top:0;
  z-index:50;
  padding:22px 0 10px;
  backdrop-filter:blur(10px);
}

body.page-home .nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 22px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(14,8,35,.78), rgba(17,10,44,.68));
  border-radius:28px;
  box-shadow:0 10px 40px rgba(0,0,0,.25);
}

body.page-home .brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#fff;
}

body.page-home .brand-logo-image{
  width:56px;
  height:56px;
  border-radius:18px;
  box-shadow:0 0 24px rgba(255,120,74,.18);
}

body.page-home .brand-copy strong{
  display:block;
  color:#fff;
  font:800 18px/1 var(--font-body);
  letter-spacing:.02em;
}

body.page-home .brand-copy span{
  display:block;
  color:rgba(255,255,255,.68);
  font:600 10px/1 var(--font-mono);
  letter-spacing:.22em;
}

body.page-home .home-site-nav{
  display:flex;
  align-items:center;
  gap:10px;
}

body.page-home .home-site-nav a{
  text-decoration:none;
  color:rgba(255,255,255,.85);
  font:700 13px/1 var(--font-body);
  letter-spacing:.08em;
  padding:14px 16px;
  border-radius:999px;
  transition:.25s ease;
}

body.page-home .home-site-nav a:hover,
body.page-home .home-site-nav a.is-active{
  color:#dff8ff;
  background:rgba(255,255,255,.08);
  box-shadow:0 0 22px rgba(99,102,241,.18);
}

body.page-home .menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  cursor:pointer;
}

body.page-home .menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:5px auto;
  border-radius:999px;
}

body.page-home .section-card{
  margin-top:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow:0 24px 80px rgba(0,0,0,.36);
  backdrop-filter:blur(14px);
  position:relative;
}

body.page-home .section-card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:4px;
  background:linear-gradient(90deg,#34d3ff,#8b5cf6,#ff8a3d);
}

body.page-home .hero-grid{
  min-height:840px;
  display:grid;
  gap:32px;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  padding:42px;
}

body.page-home .eyebrow{
  margin:0;
  font:700 12px/1 var(--font-mono);
  letter-spacing:.34em;
  color:rgba(255,255,255,.72);
}

body.page-home .eyebrow.dark{
  color:#7b819e;
}

body.page-home h1,
body.page-home h2{
  margin:0;
  line-height:.95;
  letter-spacing:-.04em;
  font-family:var(--font-body);
  font-weight:900;
}

body.page-home .hero h1{
  margin-top:18px;
  font-size:clamp(44px, 5.2vw, 84px);
  max-width:780px;
  color:#fff;
}

body.page-home .lead{
  margin:22px 0 0;
  font-size:20px;
  line-height:1.6;
  color:rgba(255,255,255,.72);
  max-width:760px;
}

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

body.page-home .btn,
body.page-home .pill-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 28px;
  border:none;
  border-radius:999px;
  text-decoration:none;
  color:#fff;
  font:800 13px/1 var(--font-body);
  letter-spacing:.14em;
}

body.page-home .btn-warm{
  background:linear-gradient(90deg,#ff4f77,#ff8a3d);
  box-shadow:0 18px 34px rgba(255,109,114,.32);
}

body.page-home .btn-cool{
  background:linear-gradient(90deg,#316cff,#7a3cff);
  box-shadow:0 18px 34px rgba(85,93,255,.28);
}

body.page-home .hero-benefits{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:120px;
}

body.page-home .benefit{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background:rgba(255,255,255,.04);
  font:700 15px/1.25 var(--font-body);
  letter-spacing:.06em;
}

body.page-home .benefit span{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}

body.page-home .hero-art{
  position:relative;
  min-height:620px;
}

body.page-home .orb,
body.page-home .ring,
body.page-home .device-stack,
body.page-home .laptop{
  position:absolute;
}

body.page-home .orb{
  border-radius:999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.9), rgba(255,255,255,.12) 28%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), transparent 70%),
    linear-gradient(135deg, rgba(68,211,255,.9), rgba(165,93,255,.92), rgba(255,103,216,.88));
  box-shadow:0 0 50px rgba(189,92,255,.35);
}

body.page-home .orb-a{width:130px;height:130px;right:38px;top:24px}
body.page-home .orb-b{width:100px;height:100px;right:-4px;bottom:110px}
body.page-home .orb-c{width:56px;height:56px;right:120px;top:180px}

body.page-home .ring{
  border-radius:999px;
  border:2px solid rgba(255,255,255,.28);
  filter:drop-shadow(0 0 20px rgba(255,116,217,.35));
}

body.page-home .ring-a{width:390px;height:520px;right:20px;top:16px;transform:rotate(22deg)}
body.page-home .ring-b{width:460px;height:280px;right:10px;top:170px;transform:rotate(-12deg);border-color:rgba(113,232,255,.24)}

body.page-home .device-stack{
  width:420px;
  height:260px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(109,48,255,.22), rgba(255,93,193,.14));
  box-shadow:0 30px 60px rgba(0,0,0,.26);
}

body.page-home .back-1{right:90px;top:80px;transform:rotate(11deg)}
body.page-home .back-2{right:120px;top:130px;transform:rotate(-8deg);background:linear-gradient(180deg, rgba(38,192,255,.16), rgba(57,84,255,.14))}

body.page-home .laptop{
  right:54px;
  top:120px;
  width:min(100%, 540px);
  height:430px;
}

body.page-home .screen{
  position:absolute;
  left:62px;
  right:0;
  top:0;
  height:295px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(180deg, rgba(20,29,58,.96), rgba(42,11,68,.92));
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  overflow:hidden;
}

body.page-home .screen::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 18%, rgba(52,211,255,.18), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(255,99,216,.16), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

body.page-home .screen-bar{
  position:absolute;
  left:20px;
  right:20px;
  top:18px;
  height:16px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
}

body.page-home .screen-grid{
  position:absolute;
  left:24px;
  right:24px;
  top:54px;
  bottom:24px;
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  grid-template-rows:80px 1fr 86px;
  gap:16px;
}

body.page-home .pane{
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
}

body.page-home .pane-lg{grid-column:1 / 2}
body.page-home .pane-sm{grid-column:2 / 3}
body.page-home .pane-md{grid-column:3 / 4}
body.page-home .pane-card{grid-column:1 / 3; background:rgba(63,191,255,.14)}
body.page-home .pane-card.accent{grid-column:3 / 4; background:rgba(255,96,218,.16)}

body.page-home .keyboard{
  position:absolute;
  left:0;
  right:20px;
  bottom:36px;
  height:86px;
  border-radius:0 0 28px 28px;
  background:linear-gradient(180deg, rgba(73,61,153,.95), rgba(24,15,71,.98));
  transform:skewX(-22deg);
  box-shadow:0 20px 30px rgba(0,0,0,.35);
}

body.page-home .keyboard::before{
  content:"";
  position:absolute;
  inset:10px 24px 14px 34px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

body.page-home .services{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:18px;
}

body.page-home .service-card{
  position:relative;
  overflow:hidden;
  padding:34px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.2);
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,245,255,.84));
  box-shadow:0 24px 60px rgba(0,0,0,.16);
}

body.page-home .service-card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:4px;
  background:linear-gradient(90deg,#34d3ff,#8b5cf6,#ff63d8);
}

body.page-home .service-card-alt{
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,241,252,.86));
}

body.page-home .service-index{
  font:900 64px/1 var(--font-body);
  color:#7bd9ff;
}

body.page-home .service-index.pink{color:#ff8ad9}

body.page-home .service-card h2{
  margin-top:8px;
  color:#18164c;
  font:900 52px/.95 var(--font-body);
}

body.page-home .service-card ul{
  list-style:none;
  padding:0;
  margin:28px 0 0;
}

body.page-home .service-card li{
  position:relative;
  padding-left:28px;
  margin-bottom:20px;
  color:#40436d;
  font-size:20px;
  line-height:1.6;
}

body.page-home .service-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight:900;
  color:#3f46c4;
}

body.page-home .pill-btn{
  margin-top:20px;
  min-height:54px;
}

body.page-home .blue{background:linear-gradient(90deg,#1f80ff,#6f45ff);box-shadow:0 18px 34px rgba(79,70,229,.28)}
body.page-home .violet{background:linear-gradient(90deg,#6135ff,#a227ff);box-shadow:0 18px 34px rgba(147,51,234,.28)}

body.page-home .about-grid{
  min-height:720px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:32px;
  align-items:end;
  padding:42px;
}

body.page-home .about h2{
  margin-top:14px;
  font:900 clamp(42px, 4.7vw, 74px)/.95 var(--font-body);
  color:#fff;
}

body.page-home .about-list{
  list-style:none;
  padding:0;
  margin:34px 0 0;
}

body.page-home .about-list li{
  position:relative;
  padding-left:34px;
  margin-bottom:18px;
  font-size:22px;
}

body.page-home .about-list li::before{
  content:"◉";
  position:absolute;
  left:0;
  top:-1px;
  color:#deb0ff;
}

body.page-home .server-visual{
  position:relative;
  min-height:500px;
}

body.page-home .server-glow{
  position:absolute;
  inset:80px 70px 50px;
  background:radial-gradient(circle, rgba(255,99,216,.22), transparent 50%);
  filter:blur(24px);
}

body.page-home .server-ring,
body.page-home .server-ring-2{
  position:absolute;
  border:2px solid rgba(255,255,255,.24);
  border-radius:999px;
}

body.page-home .server-ring{width:360px;height:180px;right:36px;bottom:80px;transform:rotate(18deg)}
body.page-home .server-ring-2{width:260px;height:140px;right:90px;bottom:120px;transform:rotate(-14deg);border-color:rgba(93,234,255,.26)}

body.page-home .server{
  position:absolute;
  right:110px;
  bottom:90px;
  width:230px;
  height:360px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(52,25,101,.95), rgba(31,13,71,.98));
  box-shadow:0 40px 100px rgba(0,0,0,.45);
}

body.page-home .server::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:26px;
  background:
    radial-gradient(circle at 24% 18%, rgba(52,211,255,.14), transparent 28%),
    radial-gradient(circle at 78% 24%, rgba(255,99,216,.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

body.page-home .server-top{
  position:absolute;
  left:20px;
  right:20px;
  top:24px;
  height:18px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
}

body.page-home .server-lines{
  position:absolute;
  left:22px;
  right:22px;
  top:64px;
  bottom:70px;
  border-radius:18px;
  background:repeating-linear-gradient(180deg, rgba(255,255,255,.06) 0 10px, transparent 10px 28px);
}

body.page-home .server-lights{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  display:flex;
  gap:10px;
}

body.page-home .server-lights span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#ff9f50;
  box-shadow:0 0 12px rgba(255,159,80,.6);
}

body.page-home .server-lights span:nth-child(2){background:#6bf1ff;box-shadow:0 0 12px rgba(107,241,255,.6)}
body.page-home .server-lights span:nth-child(3){background:#ff63d8;box-shadow:0 0 12px rgba(255,99,216,.6)}
body.page-home .server-lights span:nth-child(4){background:#8b5cf6;box-shadow:0 0 12px rgba(139,92,246,.6)}

body.page-home .server-platform{
  position:absolute;
  right:50px;
  bottom:56px;
  width:360px;
  height:42px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(59,130,246,.4), rgba(232,121,249,.45), rgba(14,165,233,.4));
  filter:blur(12px);
}

body.page-home .reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}

body.page-home .reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (max-width: 1100px){
  body.page-home .hero-grid,
  body.page-home .about-grid,
  body.page-home .services{
    grid-template-columns:1fr;
  }

  body.page-home .hero-benefits{
    grid-template-columns:1fr;
  }

  body.page-home .hero-grid,
  body.page-home .about-grid{
    min-height:auto;
  }
}

@media (max-width: 900px){
  body.page-home .menu-toggle{display:block}

  body.page-home .home-site-nav{
    position:absolute;
    left:20px;
    right:20px;
    top:calc(100% + 8px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:14px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(12,7,28,.96);
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
  }

  body.page-home .home-site-nav.is-open{display:flex}
}

@media (max-width: 760px){
  body.page-home .container,
  body.page-home .site-main > .shell{
    width:min(100% - 20px, 1440px);
  }

  body.page-home .nav-wrap{padding:14px 16px}
  body.page-home .hero-grid,
  body.page-home .about-grid{padding:26px}
  body.page-home .service-card{padding:24px}
  body.page-home .hero h1,
  body.page-home .about h2{font-size:38px}
  body.page-home .service-card h2{font-size:40px}
  body.page-home .hero-actions{flex-direction:column}
  body.page-home .btn,
  body.page-home .pill-btn{width:100%}
  body.page-home .benefit{font-size:13px}
  body.page-home .hero-art{min-height:420px}
  body.page-home .laptop{width:100%;right:0;top:100px}
  body.page-home .screen{left:38px;height:220px}
  body.page-home .keyboard{height:64px;right:14px}
  body.page-home .device-stack{width:290px;height:180px}
  body.page-home .back-1{right:60px;top:78px}
  body.page-home .back-2{right:80px;top:110px}
  body.page-home .orb-a{width:90px;height:90px}
  body.page-home .orb-b{width:70px;height:70px}
  body.page-home .server{right:50%;transform:translateX(50%);width:180px;height:290px}
  body.page-home .server-platform{right:50%;transform:translateX(50%);width:280px}
  body.page-home .server-ring{right:50%;transform:translateX(50%) rotate(18deg)}
  body.page-home .server-ring-2{right:50%;transform:translateX(50%) rotate(-14deg)}
}

body:not(.page-home){
  margin:0;
  color:#fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(52,211,255,.12), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(168,85,247,.14), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(255,99,216,.1), transparent 18%),
    linear-gradient(180deg,#080312 0%, #130526 50%, #090414 100%);
  overflow-x:hidden;
}

body:not(.page-home) .page-bg,
body:not(.page-home) .noise{
  pointer-events:none;
  position:fixed;
  inset:0;
}

body:not(.page-home) .page-bg{
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.03), transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(0,255,255,.05), transparent 20%),
    radial-gradient(circle at 85% 25%, rgba(255,0,204,.06), transparent 24%);
  filter:blur(10px);
}

body:not(.page-home) .noise{
  opacity:.12;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:100px 100px;
}

body:not(.page-home) .container{
  width:min(1440px, calc(100% - 40px));
  margin-inline:auto;
  position:relative;
  z-index:1;
}

body:not(.page-home) .site-main{
  padding:0 0 48px;
}

body:not(.page-home) .site-main > .shell{
  width:min(1320px, calc(100% - 40px));
}

body:not(.page-home) .home-site-header{
  position:sticky;
  top:0;
  z-index:50;
  padding:22px 0 10px;
  backdrop-filter:blur(10px);
}

body:not(.page-home) .nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 22px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(14,8,35,.78), rgba(17,10,44,.68));
  border-radius:28px;
  box-shadow:0 10px 40px rgba(0,0,0,.25);
}

body:not(.page-home) .brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#fff;
}

body:not(.page-home) .brand-logo-image{
  width:56px;
  height:56px;
  border-radius:18px;
  box-shadow:0 0 24px rgba(255,120,74,.18);
}

body:not(.page-home) .brand-copy strong{
  display:block;
  color:#fff;
  font:800 18px/1 var(--font-body);
  letter-spacing:.02em;
}

body:not(.page-home) .brand-copy span{
  display:block;
  color:rgba(255,255,255,.68);
  font:600 10px/1 var(--font-mono);
  letter-spacing:.22em;
}

body:not(.page-home) .home-site-nav{
  display:flex;
  align-items:center;
  gap:10px;
}

body:not(.page-home) .home-site-nav a{
  text-decoration:none;
  color:rgba(255,255,255,.85);
  font:700 13px/1 var(--font-body);
  letter-spacing:.08em;
  padding:14px 16px;
  border-radius:999px;
  transition:.25s ease;
}

body:not(.page-home) .home-site-nav a:hover,
body:not(.page-home) .home-site-nav a.is-active{
  color:#dff8ff;
  background:rgba(255,255,255,.08);
  box-shadow:0 0 22px rgba(99,102,241,.18);
}

body:not(.page-home) .menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  cursor:pointer;
}

body:not(.page-home) .menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:5px auto;
  border-radius:999px;
}

body:not(.page-home) .section-card{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow:0 24px 80px rgba(0,0,0,.36);
  backdrop-filter:blur(14px);
  position:relative;
}

body:not(.page-home) .section-card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:4px;
  background:linear-gradient(90deg,#34d3ff,#8b5cf6,#ff8a3d);
}

body:not(.page-home) .eyebrow{
  margin:0;
  font:700 12px/1 var(--font-mono);
  letter-spacing:.34em;
  color:rgba(255,255,255,.72);
}

body:not(.page-home) .eyebrow.dark{
  color:#7b819e;
}

body:not(.page-home) .lead{
  margin:18px 0 0;
  font-size:19px;
  line-height:1.6;
  color:rgba(255,255,255,.72);
  max-width:760px;
}

body:not(.page-home) .subpage-hero{
  position:relative;
  margin-top:18px;
  margin-bottom:18px;
  padding:42px;
}

body:not(.page-home) .subpage-hero h1{
  margin:16px 0 0;
  color:#fff;
  font:900 clamp(38px, 4vw, 68px)/.95 var(--font-body);
  letter-spacing:-.04em;
}

body:not(.page-home) .subpage-hero-glow{
  position:absolute;
  right:-80px;
  top:-30px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(168,85,247,.28), transparent 62%);
  filter:blur(18px);
  pointer-events:none;
}

body:not(.page-home) .subpage-panel{
  margin-bottom:18px;
  padding:30px 32px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,245,255,.84));
  box-shadow:0 24px 60px rgba(0,0,0,.16);
}

body:not(.page-home) .subpage-panel-head h2{
  margin:10px 0 0;
  color:#18164c;
  font:900 clamp(28px, 2.8vw, 48px)/.98 var(--font-body);
  letter-spacing:-.04em;
}

body:not(.page-home) .subpage-copy,
body:not(.page-home) .subpage-card p,
body:not(.page-home) .subpage-price-row h3,
body:not(.page-home) .legal-copy{
  color:#40436d;
}

body:not(.page-home) .subpage-copy p{
  font-size:18px;
  line-height:1.7;
}

body:not(.page-home) .subpage-card-grid,
body:not(.page-home) .subpage-process-grid,
body:not(.page-home) .subpage-contact-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

body:not(.page-home) .subpage-card-grid-tight{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

body:not(.page-home) .subpage-stack{
  display:grid;
  gap:18px;
}

body:not(.page-home) .subpage-card{
  padding:24px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.22);
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,245,255,.86));
  box-shadow:0 16px 36px rgba(93,72,164,.12);
}

body:not(.page-home) .subpage-card h3{
  margin:10px 0 12px;
  color:#18164c;
  font:900 clamp(22px, 1.9vw, 34px)/1 var(--font-body);
  letter-spacing:-.03em;
}

body:not(.page-home) .subpage-card-price{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

body:not(.page-home) .subpage-card-price strong,
body:not(.page-home) .subpage-price-row strong{
  color:#5d35ff;
  font:800 15px/1 var(--font-body);
  letter-spacing:.06em;
  white-space:nowrap;
}

body:not(.page-home) .subpage-list{
  list-style:none;
  padding:0;
  margin:16px 0 0;
}

body:not(.page-home) .subpage-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:16px;
  color:#40436d;
  font-size:18px;
  line-height:1.6;
}

body:not(.page-home) .subpage-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#3f46c4;
  font-weight:900;
}

body:not(.page-home) .subpage-note{
  padding:22px 24px;
  border-radius:24px;
  background:linear-gradient(90deg, rgba(255,99,216,.08), rgba(99,102,241,.08));
}

body:not(.page-home) .subpage-note p{
  color:#40436d;
  font-size:18px;
  line-height:1.7;
}

body:not(.page-home) .subpage-price-list{
  display:grid;
  gap:10px;
}

body:not(.page-home) .subpage-price-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
  border-bottom:1px solid rgba(24,22,76,.08);
}

body:not(.page-home) .subpage-price-row:last-child{
  border-bottom:0;
}

body:not(.page-home) .subpage-price-row h3{
  margin:0;
  font:700 18px/1.5 var(--font-body);
}

body:not(.page-home) .subpage-muted-tag{
  display:inline-flex;
  margin-top:14px;
  color:#7b819e;
  font:700 12px/1 var(--font-mono);
  letter-spacing:.16em;
  text-transform:uppercase;
}

body:not(.page-home) .contact-form{
  display:grid;
  gap:16px;
  margin-top:16px;
}

body:not(.page-home) .field-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

body:not(.page-home) .contact-form label{
  display:block;
}

body:not(.page-home) .contact-form span{
  display:block;
  margin-bottom:8px;
  color:#7b819e;
  font:700 13px/1 var(--font-mono);
  letter-spacing:.12em;
  text-transform:uppercase;
}

body:not(.page-home) .contact-form input,
body:not(.page-home) .contact-form select,
body:not(.page-home) .contact-form textarea{
  width:100%;
  border:1px solid rgba(24,22,76,.1);
  background:rgba(255,255,255,.84);
  color:#18164c;
  border-radius:18px;
  padding:16px 18px;
  font:inherit;
  outline:none;
}

body:not(.page-home) .contact-form input:focus,
body:not(.page-home) .contact-form select:focus,
body:not(.page-home) .contact-form textarea:focus{
  border-color:rgba(99,102,241,.45);
  box-shadow:0 0 0 4px rgba(99,102,241,.12);
}

body:not(.page-home) .notice{
  padding:14px 16px;
  border-radius:16px;
  margin-top:14px;
}

body:not(.page-home) .notice-success{
  border:1px solid rgba(15,118,110,.18);
  background:rgba(15,118,110,.08);
  color:#e9fff9;
}

body:not(.page-home) .notice-error{
  border:1px solid rgba(212,99,46,.18);
  background:rgba(212,99,46,.08);
  color:#fff2eb;
}

body:not(.page-home) .btn,
body:not(.page-home) .pill-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 28px;
  border:none;
  border-radius:999px;
  text-decoration:none;
  color:#fff;
  font:800 13px/1 var(--font-body);
  letter-spacing:.14em;
}

body:not(.page-home) .btn-warm{
  background:linear-gradient(90deg,#ff4f77,#ff8a3d);
  box-shadow:0 18px 34px rgba(255,109,114,.32);
}

body:not(.page-home) .btn-cool{
  background:linear-gradient(90deg,#316cff,#7a3cff);
  box-shadow:0 18px 34px rgba(85,93,255,.28);
}

body:not(.page-home) .full{
  width:100%;
}

body:not(.page-home) .text-link{
  display:inline-flex;
  margin-top:16px;
  color:#4c48e6;
  font:800 13px/1 var(--font-body);
  letter-spacing:.08em;
  text-transform:uppercase;
}

body:not(.page-home) .text-link:hover{
  color:#7a3cff;
}

body:not(.page-home) .subpage-footer{
  padding:18px 0 50px;
}

body:not(.page-home) .footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding:18px 22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
}

body:not(.page-home) .footer-wrap strong{
  display:block;
  margin-bottom:6px;
}

body:not(.page-home) .footer-wrap p{
  margin:0;
  color:rgba(255,255,255,.64);
}

body:not(.page-home) .footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

body:not(.page-home) .footer-links a{
  color:rgba(255,255,255,.72);
  text-decoration:none;
  font-weight:600;
}

body:not(.page-home) .sub-article-section + .sub-article-section{
  margin-top:24px;
}

@media (max-width: 1100px){
  body:not(.page-home) .subpage-card-grid,
  body:not(.page-home) .subpage-card-grid-tight,
  body:not(.page-home) .subpage-process-grid,
  body:not(.page-home) .subpage-contact-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px){
  body:not(.page-home) .menu-toggle{display:block}

  body:not(.page-home) .home-site-nav{
    position:absolute;
    left:20px;
    right:20px;
    top:calc(100% + 8px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:14px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(12,7,28,.96);
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
  }

  body:not(.page-home) .home-site-nav.is-open{display:flex}
}

@media (max-width: 760px){
  body:not(.page-home) .container,
  body:not(.page-home) .site-main > .shell{
    width:min(100% - 20px, 1440px);
  }

  body:not(.page-home) .nav-wrap,
  body:not(.page-home) .subpage-hero,
  body:not(.page-home) .subpage-panel{
    padding:22px;
  }

  body:not(.page-home) .subpage-hero h1{
    font-size:38px;
  }

  body:not(.page-home) .subpage-panel-head h2{
    font-size:30px;
  }

  body:not(.page-home) .field-grid{
    grid-template-columns:1fr;
  }

  body:not(.page-home) .hero-actions{
    flex-direction:column;
  }

  body:not(.page-home) .btn,
  body:not(.page-home) .pill-btn{
    width:100%;
  }

  body:not(.page-home) .footer-wrap{
    flex-direction:column;
    align-items:flex-start;
  }
}
