.nav{
  column-gap: 16px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.nav-links{
  gap: 12px;
}
.nav-dropdown{
  position: relative;
}
.nav-dropdown .nav-dd-root{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-dd-chevron{
  font-size: 8px;
  line-height: 1;
  opacity: 0.65;
  transform: translateY(1px);
}
.nav-dd-panel{
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 14px 0 8px;
  margin: 0;
  list-style: none;
  background: rgba(38, 51, 71, 0.98);
  border: 1px solid rgba(245, 242, 234, 0.14);
  border-radius: 10px;
  box-shadow: 0 18px 44px -14px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 60;
}
.nav.is-light .nav-dd-panel{
  background: rgba(246, 244, 238, 0.98);
  border-color: rgba(11, 11, 12, 0.1);
}
.nav-dropdown:hover .nav-dd-panel,
.nav-dropdown:focus-within .nav-dd-panel{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dd-panel a{
  display: block;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
  color: rgba(244, 247, 251, 0.92);
}
.nav.is-light .nav-dd-panel a{
  color: rgba(11, 11, 12, 0.88);
}
.nav-dd-panel a:hover{
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.nav.is-light .nav-dd-panel a:hover{
  background: rgba(63, 105, 143, 0.1);
  color: var(--brand);
}
.nav-dd-panel a::after{
  display: none !important;
}
.nav-dd-panel a.is-current{
  font-weight: 600;
  color: var(--brand-soft);
}
.nav.is-light .nav-dd-panel a.is-current{
  color: var(--brand);
}
@media (max-width: 1100px){
  .nav{
    font-size: 9px;
    letter-spacing: 0.1em;
    padding-left: 14px;
    padding-right: 14px;
  }
  .nav-links{
    gap: 8px;
  }
}
.nav-toggle{
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--button-height);
  height: var(--button-height);
  min-height: var(--button-height);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-toggle:hover{
  background: rgba(255, 255, 255, 0.14);
}
.nav.is-light .nav-toggle{
  background: rgba(11, 11, 12, 0.06);
}
.nav.is-light .nav-toggle:hover{
  background: rgba(63, 105, 143, 0.12);
}
.nav-toggle-bars{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 22px;
}
.nav-toggle-bar{
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav.nav-is-open .nav-toggle-bar:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav.nav-is-open .nav-toggle-bar:nth-child(2){
  opacity: 0;
}
.nav.nav-is-open .nav-toggle-bar:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}
body.nav-drawer-open{
  overflow: hidden;
}
@media (max-width: 1024px){
  #nav.nav{
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  #nav.nav .nav-logo-slot{
    grid-column: unset;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
  }
  #nav.nav .nav-actions{
    grid-column: unset;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    gap: 8px;
    margin-left: auto;
  }
  #nav.nav .nav-toggle{
    display: inline-flex;
  }
  #nav.nav .nav-panel{
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 0;
    grid-column: unset;
    justify-self: unset;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden auto;
    overscroll-behavior: contain;
    background: rgba(38, 51, 71, 0.98);
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .nav.is-light .nav-panel{
    background: rgba(246, 244, 238, 0.98);
  }
  #nav.nav.nav-is-open .nav-panel{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #nav.nav .nav-panel-inner{
    flex: 1 1 auto;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: calc(72px + env(safe-area-inset-top, 0px)) 24px calc(32px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
  }
  #nav.nav .nav-links{
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  #nav.nav .nav-links > a,
  #nav.nav .nav-dropdown .nav-dd-root{
    display: block;
    padding: 16px 0;
    font-size: 13px;
    letter-spacing: 0.14em;
    border-bottom: 1px solid rgba(245, 242, 234, 0.12);
    white-space: normal;
    text-align: left;
  }
  .nav.is-light .nav-links > a,
  .nav.is-light .nav-dropdown .nav-dd-root{
    border-bottom-color: rgba(11, 11, 12, 0.08);
  }
  #nav.nav .nav-links > a::after,
  #nav.nav .nav-dropdown .nav-dd-root::after{
    display: none !important;
  }
  #nav.nav .nav-dropdown{
    position: relative;
    border-bottom: 1px solid rgba(245, 242, 234, 0.12);
    padding-bottom: 8px;
    margin-bottom: 4px;
  }
  #nav.nav.is-light .nav-dropdown{
    border-bottom-color: rgba(11, 11, 12, 0.08);
  }
  #nav.nav .nav-dropdown .nav-dd-root{
    border-bottom: 0;
    padding-bottom: 10px;
  }
  #nav.nav .nav-dd-chevron{
    display: none;
  }
  #nav.nav .nav-dd-panel{
    position: static;
    transform: none;
    left: auto;
    min-width: 0;
    padding: 0 0 8px 12px;
    margin: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  #nav.nav .nav-dd-panel li{
    list-style: none;
  }
  #nav.nav .nav-dd-panel a{
    padding: 10px 0 10px 8px;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(244, 247, 251, 0.78);
    border-bottom: 0;
  }
  #nav.nav.is-light .nav-dd-panel a{
    color: rgba(11, 11, 12, 0.72);
  }
  #nav.nav .nav-dd-panel a:hover{
    background: transparent;
    color: #fff;
  }
  #nav.nav.is-light .nav-dd-panel a:hover{
    color: var(--brand);
  }
  #nav.nav.nav-is-open{
    color: rgba(245, 242, 234, 0.85);
    background: rgba(38, 51, 71, 0.98);
    border-bottom-color: rgba(245, 242, 234, 0.1);
  }
  #nav.nav.nav-is-open .nav-logo-slot img{
    filter: invert(1);
  }
  #nav.nav.nav-is-open .nav-panel{
    background: rgba(38, 51, 71, 0.98);
  }
  #nav.nav.nav-is-open .nav-links > a,
  #nav.nav.nav-is-open .nav-dropdown{
    border-bottom-color: rgba(245, 242, 234, 0.12);
  }
  #nav.nav.nav-is-open a:hover{
    color: #fff;
  }
  #nav.nav.nav-is-open a.is-current{
    color: var(--brand-soft);
  }
  #nav.nav.nav-is-open .nav-dd-panel a{
    color: rgba(244, 247, 251, 0.78);
  }
  #nav.nav.nav-is-open .nav-dd-panel a:hover{
    color: #fff;
  }
  #nav.nav.nav-is-open .nav-toggle{
    background: rgba(255, 255, 255, 0.08);
  }
  #nav.nav.nav-is-open .nav-cta.btn.ghost{
    background: var(--button-ghost-bg);
    color: var(--button-ghost-on-dark-color);
    border-color: var(--button-ghost-on-dark-border);
  }
}
@media (min-width: 1025px){
  #nav.nav .nav-panel{
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    z-index: auto;
    display: block;
  }
  #nav.nav .nav-panel-inner{
    padding: 0;
    max-width: none;
    margin: 0;
  }
}
@view-transition {
	navigation: auto;
}
@media (prefers-reduced-motion: no-preference) {
	@keyframes magio-fade-in {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	}
	@keyframes magio-fade-out {
		from {
			opacity: 1;
		}
		to {
			opacity: 0;
		}
	}
	@keyframes magio-enter-up {
		from {
			opacity: 0;
			transform: translateY(14px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	@keyframes magio-leave-down {
		from {
			opacity: 1;
			transform: translateY(0);
		}
		to {
			opacity: 0;
			transform: translateY(-8px);
		}
	}
	::view-transition-old(root) {
		animation: magio-leave-down 0.26s cubic-bezier(0.4, 0, 0.2, 1) both;
	}
	::view-transition-new(root) {
		animation: magio-enter-up 0.36s cubic-bezier(0.22, 0.61, 0.36, 1) both;
	}
	::view-transition-image-pair(root) {
		isolation: isolate;
	}
	#nav {
		view-transition-name: magio-site-nav;
	}
	::view-transition-group(magio-site-nav) {
		z-index: 100;
	}
	::view-transition-old(magio-site-nav) {
		animation: magio-fade-out 0.2s ease both;
	}
	::view-transition-new(magio-site-nav) {
		animation: magio-fade-in 0.2s ease both;
	}
}
@media (prefers-reduced-motion: reduce) {
	::view-transition-old(root),
	::view-transition-new(root),
	::view-transition-old(magio-site-nav),
	::view-transition-new(magio-site-nav) {
		animation: none;
	}
}
  :root{
    --bg: #F6F4EE;
    --bg-2: #ECE8DE;
    --ink: #0B0B0C;
    --ink-60: rgba(11,11,12,.6);
    --ink-40: rgba(11,11,12,.4);
    --ink-15: rgba(11,11,12,.15);
    --line: rgba(11,11,12,.09);
    --line-strong: rgba(11,11,12,.2);
    --brand-ink: #263347;
    --brand: #3F698F;
    --brand-soft: #6B8BAB;
    --magio-accent: #E87A3A;
    --magio-accent-hover: #F08A4D;
    --magio-accent-ink: #0B0B0C;
    --magio-accent-rgb: 232, 122, 58;
    --coral: var(--brand);
    --mint:  oklch(0.78 0.09 170);
    --violet: oklch(0.68 0.14 300);
    --accent: var(--brand);
    --sans: "DM Sans", system-ui, sans-serif;
    --serif: "Fraunces";
    --radius: 14px;
    --bone: #F1ECE0;
    --bone-2: #ECE6D8;
    --paper: #F4F7FB;
    --ink-on-dark: #E8EEF5;
    --green: #6BCB8B;
    --section-gap: 48px;
    --section-gap-mobile: 40px;
    --section-margin-x: 20px;
    --section-margin-x-mobile: 12px;
    --section-padding-y: var(--wp--custom--section-padding-y, clamp(72px, 8vw, 100px));
    --section-padding-y-mobile: var(--wp--custom--section-padding-y-mobile, 33px);
    --section-padding-x: 80px;
    --section-padding-x-tablet: 24px;
    --section-padding-x-mobile: 28px;
    --button-height: var(--wp--custom--button-height, 44px);
    --button-radius: var(--wp--custom--button-radius, 999px);
    --button-padding-x: var(--wp--custom--button-padding-x, 22px);
    --button-gap: var(--wp--custom--button-gap, 10px);
    --button-font-size: var(--wp--custom--button-font-size, 14px);
    --button-font-weight: var(--wp--custom--button-font-weight, 500);
    --button-letter-spacing: var(--wp--custom--button-letter-spacing, 0.01em);
    --button-primary-bg: var(--wp--custom--button-primary-background, var(--ink));
    --button-primary-color: var(--wp--custom--button-primary-color, var(--bg));
    --button-primary-dot: var(--wp--custom--button-primary-dot, var(--brand));
    --button-primary-border: var(--wp--custom--button-primary-border, transparent);
    --button-primary-on-dark-bg: var(--wp--custom--button-primary-on-dark-background, #F4F7FB);
    --button-primary-on-dark-color: var(--wp--custom--button-primary-on-dark-color, var(--brand-ink));
    --button-primary-on-dark-dot: var(--wp--custom--button-primary-on-dark-dot, var(--brand));
    --button-primary-on-dark-border: var(--wp--custom--button-primary-on-dark-border, transparent);
    --button-ghost-bg: var(--wp--custom--button-ghost-background, transparent);
    --button-ghost-color: var(--wp--custom--button-ghost-color, var(--ink));
    --button-ghost-border: var(--wp--custom--button-ghost-border, var(--line-strong));
    --button-ghost-hover-bg: var(--wp--custom--button-ghost-hover-background, var(--ink));
    --button-ghost-hover-color: var(--wp--custom--button-ghost-hover-color, var(--bg));
    --button-ghost-hover-border: var(--wp--custom--button-ghost-hover-border, var(--ink));
    --button-ghost-on-dark-color: var(--wp--custom--button-ghost-on-dark-color, #F4F7FB);
    --button-ghost-on-dark-border: var(--wp--custom--button-ghost-on-dark-border, rgba(244, 247, 251, 0.35));
    --button-ghost-on-dark-hover-bg: var(--wp--custom--button-ghost-on-dark-hover-background, rgba(244, 247, 251, 0.1));
    --h1-scale: 1.25;
    --h2-scale: 1;
    --h3-scale: 0.8;
    --h4-scale: 0.65;
    --h5-scale: 0.52;
    --h6-scale: 0.45;
  }
  h1{ --heading-scale: var(--h1-scale); }
  h2{ --heading-scale: var(--h2-scale); }
  h3{ --heading-scale: var(--h3-scale); }
  h4{ --heading-scale: var(--h4-scale); }
  h5{ --heading-scale: var(--h5-scale); }
  h6{ --heading-scale: var(--h6-scale); }
  .screen-reader-text{
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
  }
  [data-theme="studio"]{
    --bg:#0E0E10; --bg-2:#17171A; --ink:#F5F2EA; --ink-60:rgba(245,242,234,.65);
    --ink-40:rgba(245,242,234,.4); --ink-15:rgba(245,242,234,.18);
    --line:rgba(245,242,234,.1); --line-strong:rgba(245,242,234,.22);
  }
  [data-theme="sunset"]{
    --bg:#F2E7DC; --bg-2:#EBD9C5;
  }
  *{ box-sizing: border-box; }
  html,
  body{ margin:0; padding:0; overflow-x: clip; }
  html{ scroll-behavior:smooth; }
  body{
    --page-canvas: var(--bg);
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--page-canvas);
    -webkit-font-smoothing: antialiased;
  }
  ::selection{ background: var(--coral); color:#fff; }
  .page{
    position: relative;
    z-index: 1;
    padding-bottom: 88px;
  }
  main.page{
    margin-bottom: calc(-1 * var(--magio-overlap-room, 0px));
  }
  main.page::after{
    content: "";
    display: block;
    height: var(--magio-overlap-room, 0px);
  }
  .page:has(.contact-cta),
  body:has(.contact-cta) main.page{
    padding-bottom: 0;
  }
  body:has(.contact-cta) .contact-cta{
    margin-bottom: 0;
  }
  body:has(.contact-cta) main.page:not(:has(> section:last-child)){
    padding-bottom: 88px;
  }
  .nav{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 24px;
    padding: 22px 40px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,242,234,0.85);
    background: rgba(38,51,71,0.96);
    border-bottom: 1px solid rgba(245,242,234,0.1);
    mix-blend-mode: normal;
    isolation: isolate;
    transition: background .35s ease, color .35s ease, border-color .35s ease;
  }
  .nav.nav--home{
    --nav-scroll-solid: 0;
  }
  .nav.nav--home:not(.is-light){
    background: rgba(38, 51, 71, calc(0.96 * var(--nav-scroll-solid, 0)));
    border-bottom-color: rgba(245, 242, 234, calc(0.1 * var(--nav-scroll-solid, 0)));
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.35s ease;
  }
  .nav.is-light{
    color: rgba(11,11,12,0.88);
    background: rgba(246,244,238,0.98);
    border-bottom-color: rgba(11,11,12,0.09);
  }
  .nav-logo-slot{
    position: relative;
    grid-column: 1;
    width: 96px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
    text-transform: none;
    align-self: center;
  }
  .nav-logo-slot img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
    transition: filter .35s ease;
  }
  .nav.is-light .nav-logo-slot img{ filter: none; }
  .nav a.nav-logo-slot::after{
    display: none !important;
  }
  .nav a{
    color: inherit;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: color .3s ease;
  }
  .nav a:hover{ color: #fff; }
  .nav.is-light a:hover{ color: var(--brand); }
  .nav a.is-current{
    color: var(--brand-soft);
    font-weight: 600;
  }
  .nav.is-light a.is-current{
    color: var(--brand);
  }
  .nav a::after{
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: -6px; height: 1px;
    background: currentColor;
    transition: right .35s ease;
  }
  .nav a:hover::after{ right: 0; }
  .nav-panel{
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    justify-self: stretch;
  }
  .nav-panel-inner{
    min-width: 0;
    width: 100%;
  }
  .nav-links{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin: 0;
    min-width: 0;
  }
  .nav-actions{
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-actions .btn{
    text-transform: none;
  }
  .nav-cta{
    position: relative;
    display: inline-flex !important;
  }
  .nav-cta::after{ display: none !important; }
  .nav-cta:hover .nav-cta-arrow{ transform: translateX(3px); }
  .nav-cta .dot,
  .nav-cta-dot{
    width: 6px;
    height: 6px;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(107,203,139,0.55);
    animation: navCtaPulse 2s infinite;
  }
  .nav-cta:hover .dot,
  .nav-cta:hover .nav-cta-dot{
    transform: none;
    background: var(--green);
    animation: navCtaPulse 2s infinite;
  }
  .nav-cta-arrow{
    display: inline-block;
    transition: transform .25s ease;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0;
  }
  @keyframes navCtaPulse{
    0%   { box-shadow: 0 0 0 0 rgba(107,203,139,0.55); }
    70%  { box-shadow: 0 0 0 7px rgba(107,203,139,0); }
    100% { box-shadow: 0 0 0 0 rgba(107,203,139,0); }
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap: var(--button-gap);
    min-height: var(--button-height);
    padding: 0 var(--button-padding-x);
    border-radius: var(--button-radius);
    font-family: var(--sans);
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    letter-spacing: var(--button-letter-spacing);
    text-decoration:none;
    transition:
      transform .3s cubic-bezier(.2,.8,.2,1),
      background .25s ease,
      color .25s ease,
      box-shadow .35s ease,
      letter-spacing .25s ease;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    will-change: transform;
  }
  .btn::before{
    content:"";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      110deg,
      transparent 20%,
      rgba(255,255,255,.35) 50%,
      transparent 80%
    );
    transform: translateX(-120%);
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
    z-index: 1;
  }
  .btn:hover::before{ transform: translateX(120%); }
  .btn > *{ position: relative; z-index: 2; }
  .btn.primary{
    background: var(--button-primary-bg);
    color: var(--button-primary-color);
    border-color: var(--button-primary-border);
    box-shadow:
      0 1px 0 rgba(255,255,255,.08) inset,
      0 6px 18px -10px rgba(0,0,0,.5);
  }
  .btn.primary:hover{
    transform: translateY(-3px) scale(1.02);
    letter-spacing: .03em;
    box-shadow:
      0 1px 0 rgba(255,255,255,.12) inset,
      0 18px 40px -12px rgba(0,0,0,.55),
      0 0 0 6px rgba(63,105,143,.12),
      0 0 30px -4px rgba(107,139,171,.5);
  }
  .btn.primary:active{
    transform: translateY(-1px) scale(.99);
    transition-duration: .1s;
  }
  .btn .dot{
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--button-primary-dot);
    position: relative;
    transition: transform .4s cubic-bezier(.4,1.6,.4,1), background .3s;
  }
  .btn .dot::before{
    content:"";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s ease;
  }
  .btn:hover .dot{
    transform: scale(1.35) rotate(180deg);
    background: var(--ink-on-dark);
  }
  .btn:hover .dot::before{
    opacity: .9;
    animation: dotPulse 1.2s ease-in-out infinite;
  }
  @keyframes dotPulse{
    0%,100%{ transform: scale(1); opacity: .9; }
    50%{ transform: scale(1.8); opacity: 0; }
  }
  .btn .dot::after{
    content:"";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background:
      radial-gradient(circle 2px at 50% 0%, var(--paper) 100%, transparent),
      radial-gradient(circle 1.5px at 100% 50%, var(--brand-soft) 100%, transparent),
      radial-gradient(circle 2px at 50% 100%, var(--paper) 100%, transparent),
      radial-gradient(circle 1.5px at 0% 50%, var(--brand-soft) 100%, transparent);
    opacity: 0;
    transition: opacity .2s ease;
  }
  .btn:hover .dot::after{
    opacity: 1;
    animation: sparkBurst .9s ease-out infinite;
  }
  @keyframes sparkBurst{
    0%{ transform: scale(.3); opacity: 0; }
    40%{ opacity: 1; }
    100%{ transform: scale(2.4); opacity: 0; }
  }
  .btn.ghost{
    background: var(--button-ghost-bg);
    border-color: var(--button-ghost-border);
    color: var(--button-ghost-color);
  }
  .btn.ghost:hover{
    background: var(--button-ghost-hover-bg);
    color: var(--button-ghost-hover-color);
    border-color: var(--button-ghost-hover-border);
    transform: translateY(-3px) scale(1.02);
    letter-spacing: .03em;
    box-shadow:
      0 18px 40px -12px rgba(0,0,0,.45),
      0 0 0 6px rgba(63,105,143,.1);
  }
  .btn.ghost.on-dark,
  .hero--bg-image .btn.ghost,
  .nav:not(.is-light) .nav-cta.btn.ghost{
    background: var(--button-ghost-bg);
    color: var(--button-ghost-on-dark-color);
    border-color: var(--button-ghost-on-dark-border);
  }
  .btn.ghost.on-dark:hover,
  .hero--bg-image .btn.ghost:hover,
  .nav:not(.is-light) .nav-cta.btn.ghost:hover{
    background: var(--button-ghost-on-dark-hover-bg);
    color: var(--button-ghost-on-dark-color);
    border-color: var(--button-ghost-on-dark-border);
    transform: translateY(-3px) scale(1.02);
    letter-spacing: .03em;
    box-shadow:
      0 18px 40px -12px rgba(0,0,0,.4),
      0 0 0 6px rgba(255,255,255,.12);
  }
  .btn.on-dark:not(.primary){
    background: var(--button-ghost-bg);
    color: var(--button-ghost-on-dark-color);
    border-color: var(--button-ghost-on-dark-border);
  }
  .btn.on-dark:not(.primary):hover{
    background: var(--button-ghost-on-dark-hover-bg);
    color: var(--button-ghost-on-dark-color);
    border-color: var(--button-ghost-on-dark-border);
    transform: translateY(-3px) scale(1.02);
    letter-spacing: .03em;
    box-shadow:
      0 18px 40px -12px rgba(0,0,0,.4),
      0 0 0 6px rgba(255,255,255,.12);
  }
  .card--ink .btn.primary,
  .btn.primary.on-dark,
  .hero--bg-image .btn.primary{
    background: var(--button-primary-on-dark-bg);
    color: var(--button-primary-on-dark-color);
    border-color: var(--button-primary-on-dark-border);
  }
  .card--ink .btn.primary .dot,
  .btn.primary.on-dark .dot,
  .hero--bg-image .btn.primary .dot{ background: var(--button-primary-on-dark-dot); }
  .card--ink .btn.primary:hover,
  .btn.primary.on-dark:hover,
  .hero--bg-image .btn.primary:hover{
    box-shadow:
      0 1px 0 rgba(255,255,255,.3) inset,
      0 18px 40px -12px rgba(0,0,0,.4),
      0 0 0 6px rgba(255,255,255,.15),
      0 0 30px -4px rgba(255,255,255,.4);
  }
  .card--ink .btn:hover .dot,
  .btn.primary.on-dark:hover .dot,
  .hero--bg-image .btn:hover .dot{ background: var(--brand-ink); }
  @media (prefers-reduced-motion: reduce){
    .btn::before{ display:none; }
    .btn:hover{ transform: none; letter-spacing: inherit; }
    .btn:hover .dot{ animation: none; transform: none; }
    .btn:hover .dot::before,
  .btn:hover .dot::after{ animation: none; }
  }
  .see-all svg{
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
  }
  .see-all:hover svg{ transform: translateX(5px); }
  @media (prefers-reduced-motion: reduce){
    .stack-card,
  .interlude,
  .stack-card[data-card="01"],
  .stack-card[data-card="02"],
  .stack-card[data-card="03"],
  .stack-card[data-card="04"],
  .stack-card[data-card="06"],
  .stack-card[data-card="07"],
  .stack-card[data-card="08"],
  .interlude--gallery,
  .contact-cta.contact-cta--astro-global{
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
      animation: none !important;
    }
    .contact-cta.contact-cta--astro-global .reveal-lines,
  .contact-cta.contact-cta--astro-global .reveal-fade{
      opacity: 1 !important;
      transform: none !important;
    }
  }
  .reveal-lines{
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.2,.8,.2,1) .1s, transform .8s cubic-bezier(.2,.8,.2,1) .1s;
  }
  .reveal-fade{
    opacity: 0;
    transition: opacity .9s ease .3s;
  }
  .stack-card.in-view .reveal-lines,
  .interlude.in-view .reveal-lines,
  .contact-cta.in-view .reveal-lines{ opacity: 1; transform: translateY(0); }
  .stack-card.in-view .reveal-fade,
  .interlude.in-view .reveal-fade,
  .contact-cta.in-view .reveal-fade{ opacity: 1; }
  .contact-cta.contact-cta--astro-global,
  .contact-cta.contact-cta--astro-global.in-view{
    opacity: 1;
    transform: none;
    transition: none;
  }
  .contact-cta--astro-global .reveal-lines,
  .contact-cta--astro-global .reveal-fade{
    opacity: 1;
    transform: none;
    transition: none;
  }
  .contact-cta{
    background: var(--brand);
    color: var(--paper);
    padding: var(--section-padding-y) var(--section-padding-x);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: var(--section-gap);
    z-index: 24;
    isolation: isolate;
    box-shadow:
      0 -8px 20px -12px rgba(0,0,0,.16),
      0 -1px 0 rgba(0,0,0,.03);
  }
  .overlap-covered{
    will-change: opacity;
    transition: none !important;
  }
  .overlap-covered.overlap-is-frozen{
    pointer-events: none;
  }
  .contact-cta .people{
    position: absolute;
    right: clamp(8px, 2.5vw, 48px); bottom: 0;
    display: flex;
    align-items: flex-end;
    gap: 0;
    pointer-events: none;
    z-index: 3;
    max-width: 40%;
    justify-content: flex-end;
  }
  .contact-cta .people img{
    width: auto;
    height: clamp(220px, 26vw, 320px);
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.28));
  }
  .contact-cta .people img.jesper{
    margin-right: -28px;
    transform: translateY(8px);
  }
  .contact-inner{
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: auto;
  }
  .contact-inner h2{
    font-family: var(--serif);
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--paper);
    max-width: 15ch;
  }
  .contact-inner h2 em{ font-style: italic; color: var(--paper); }
  .contact-inner .lead{
    max-width: 540px;
    font-size: 19px;
    line-height: 1.5;
    margin-top: 24px;
    color: rgba(244,247,251,0.92);
    font-family: var(--sans);
  }
  .contact-cta .contact-ctas{
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .contact-cta .contact-ctas .btn{
    background: rgba(244,247,251,0.08);
    border: 1px solid rgba(244,247,251,0.25);
    color: var(--paper) !important;
  }
  .contact-cta .contact-ctas .btn:hover{
    background: rgba(244,247,251,0.18);
    border-color: rgba(244,247,251,0.5);
    color: #fff !important;
  }
  .contact-cta .contact-ctas .btn.primary{
    background: var(--paper);
    color: var(--brand-ink) !important;
    border-color: var(--paper);
  }
  .contact-cta .contact-ctas .btn.primary:hover{
    background: #fff;
    color: var(--brand-ink) !important;
  }
  .contact-cta .contact-ctas .btn .dot{ background: var(--green); }
  .contact-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: flex-start;
  }
  .contact-card-info{
    position: relative;
    z-index: auto;
    padding: 32px;
    border-radius: 14px;
    background: transparent;
    border: 0;
  }
  .contact-card-info__glass{
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 14px;
    background: rgba(244,247,251,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(244,247,251,0.18);
    pointer-events: none;
  }
  .contact-card-info__body{
    position: relative;
    z-index: 4;
  }
  .contact-card-info .row{
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(244,247,251,0.18);
    font-size: 14px;
  }
  .contact-card-info .row:last-child{ border-bottom: 0; }
  .contact-card-info .k{
    opacity: 0.78;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .contact-card-info .v{
    font-family: var(--serif);
    font-size: 17px;
  }
  .contact-form{
    position: relative;
    z-index: 5;
    padding: 32px;
    border-radius: 14px;
    background: rgba(244,247,251,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(244,247,251,0.18);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contact-form .cf-eyebrow{
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244,247,251,0.85);
    margin: 0 0 6px;
  }
  .contact-form .cf-submit{
    margin-top: 6px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: var(--button-height);
    padding: 0 var(--button-padding-x);
    border-radius: var(--button-radius);
    background: var(--paper);
    color: var(--brand-ink);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
  }
  .contact-form .cf-submit:hover{ transform: translateY(-2px); background: #fff; }
  .contact-form.is-sent .cf-submit{ background: #C8E6C9; color: #1B3D1B; }
  .footer-bar{
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 80px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(244,247,251,0.22);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244,247,251,0.78);
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-bar a{ text-decoration: none; cursor: pointer; color: inherit; }
  .footer-bar a:hover{ color: #fff; }
  .footer-bar .links{ display: flex; gap: 24px; }
  @media (max-width: 1100px){
    .contact-grid{ grid-template-columns: 1fr; gap: 30px; }
  }
  @media (max-width: 900px){
    .page:not(:has(.contact-cta)){ padding-bottom: 64px; }
    .page:has(.contact-cta),
  body:has(.contact-cta) main.page{ padding-bottom: 0; }
    .contact-cta{
      padding: var(--section-padding-y-mobile) var(--section-padding-x-tablet);
      border-radius: 0;
      margin-left: 0;
      margin-right: 0;
      margin-top: var(--section-gap-mobile);
    }
    .contact-cta .people{ display: none; }
  }
  @media (max-width: 600px){
    .contact-cta{
      padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
      margin-top: var(--section-gap-mobile);
    }
  }
  @media (prefers-reduced-motion: reduce){
    .nav.nav--home:not(.is-light){
      --nav-scroll-solid: 1;
    }
  }
  @media (max-width: 900px){
    .nav{
      font-size: 10px;
      padding: 16px 16px;
    }
    .nav-logo-slot{ width: 80px; height: 22px; }
    .nav-cta.btn{
      padding-left: 12px;
      padding-right: 12px;
    }
  }
.magio-case-single-inner{max-width:760px;margin:0 auto;}
.magio-case-featured{margin:24px 0;border-radius:18px;overflow:hidden;}
.magio-case-featured img{display:block;width:100%;height:auto;}
.magio-case-facts{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:18px;margin:28px 0;padding:20px 0;border-top:1px solid rgba(255,255,255,.14);border-bottom:1px solid rgba(255,255,255,.14);}
.magio-case-facts dt{font-size:12px;text-transform:uppercase;letter-spacing:.06em;opacity:.6;margin-bottom:4px;}
.magio-case-facts dd{margin:0;font-weight:600;}
.magio-case-description{margin:24px 0;font-size:1.05rem;line-height:1.7;}
.magio-case-section{margin:32px 0;}
.magio-case-section h2{margin:0 0 12px;}
.magio-case-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin:32px 0;}
.magio-case-gallery-item{margin:0;border-radius:14px;overflow:hidden;}
.magio-case-gallery-img{display:block;width:100%;height:100%;object-fit:cover;}
:root{
    --bg: #F6F4EE;
    --bg-2: #ECE8DE;
    --bone: #F1ECE0;
    --bone-2: #ECE6D8;
    --ink: #0B0B0C;
    --ink-60: rgba(11,11,12,.6);
    --ink-40: rgba(11,11,12,.4);
    --ink-15: rgba(11,11,12,.15);
    --line: rgba(11,11,12,.09);
    --line-strong: rgba(11,11,12,.2);
    --brand-ink: #263347;
    --brand: #3F698F;
    --brand-soft: #6B8BAB;
    --magio-accent: #E87A3A;
    --magio-accent-hover: #F08A4D;
    --magio-accent-ink: #0B0B0C;
    --magio-accent-rgb: 232, 122, 58;
    --light-on-dark: #E8EEF5;
    --light-on-dark-60: rgba(232,238,245,0.65);
    --light-on-dark-30: rgba(232,238,245,0.30);
    --sans: "DM Sans", system-ui, sans-serif;
    --serif: "Fraunces";
    --radius: 14px;
    --section-gap: 48px;
    --section-gap-mobile: 40px;
    --section-margin-x: 20px;
    --section-margin-x-mobile: 12px;
    --section-padding-y: clamp(72px, 8vw, 100px);
    --section-padding-y-mobile: 33px;
    --section-padding-x: 80px;
    --section-padding-x-tablet: 24px;
    --section-padding-x-mobile: 28px;
  }
  html{ scroll-behavior: smooth; }
  html,
  body{ margin: 0; padding: 0; overflow-x: clip; }
  body{
    --page-canvas: var(--bg);
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--page-canvas);
    -webkit-font-smoothing: antialiased;
  }
  body:has(.hero.wp-hero){
    --page-canvas: var(--brand-ink);
  }
  body:has(.hero.wp-hero) .stack-card.card--ink{
    --card-bg: color-mix(in oklab, var(--brand-ink) 88%, #E8EEF5);
    background: var(--card-bg);
  }
  body:has(.hero.wp-hero) .stack-card.card--ink.section-has-backdrop{
    background: transparent;
  }
  ::selection{ background: var(--brand); color: #fff; }
  a{ color: inherit; }
  .nav{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 24px;
    padding: 22px 40px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,242,234,0.85);
    background: rgba(38,51,71,0.96);
    border-bottom: 1px solid rgba(245,242,234,0.1);
    isolation: isolate;
    transition: background .35s ease, color .35s ease, border-color .35s ease;
  }
  .nav.is-light{
    color: var(--ink);
    background: rgba(246,244,238,0.98);
    border-bottom-color: var(--line);
  }
  .nav a{
    color: inherit; text-decoration: none;
    position: relative;
    cursor: pointer;
  }
  .hero.wp-hero{
    position: relative;
    display: block;
    min-height: 0;
    background: var(--brand-ink);
    color: var(--light-on-dark);
    padding: 140px 60px 120px;
    overflow: hidden;
  }
  .hero-glow{
    position: absolute;
    left: 50%; top: 50%;
    width: 800px; height: 800px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,139,171,0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grid{
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
  }
  @keyframes livePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(127,224,168,0.6); }
    50%     { box-shadow: 0 0 0 8px rgba(127,224,168,0); }
  }
  .wp-hero .wp-h1{
    font-family: var(--serif);
    font-size: calc(clamp(72px, 8vw, 132px) / var(--h1-scale, 1) * var(--heading-scale, 1));
    font-weight: 700;
    font-style: italic;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--light-on-dark);
    text-wrap: balance;
  }
  .wp-hero .wp-h1 em{ font-style: italic; color: var(--brand-soft); }
  .hero-lead{
    margin-top: 32px;
    max-width: 500px;
    font-size: 21px;
    line-height: 1.5;
    color: rgba(232,238,245,0.7);
  }
  .hero-ctas{
    margin-top: 40px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero-trust{
    margin-top: 56px;
    display: flex;
    gap: 16px;
    align-items: center;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232,238,245,0.6);
  }
  .avatars{ display: flex; }
  .avatars .av{
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid var(--brand-ink);
    margin-left: -10px;
  }
  .avatars .av:first-child{ margin-left: 0; }
  .stars-line{ color: var(--brand-soft); font-size: 14px; letter-spacing: 2px; }
  .hero-video{
    aspect-ratio: 4/5;
    border-radius: 18px;
    background: linear-gradient(135deg, #0c1421 0%, #1e2d44 100%);
    border: 1px solid rgba(232,238,245,0.18);
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px -40px rgba(0,0,0,0.7);
    transform: rotate(1deg);
    transition: transform .5s ease;
  }
  .hero-video:hover{ transform: rotate(0); }
  .hv-topbar{
    position: absolute; top: 0; left: 0; right: 0;
    padding: 16px 20px;
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(232,238,245,0.6);
    text-transform: uppercase;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
    z-index: 3;
  }
  .hv-rec{
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #FF4040;
    margin-right: 8px;
    animation: livePulse 1.5s ease-in-out infinite;
  }
  .hv-char{
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; justify-content: center;
  }
  .hv-char img{
    height: 85%;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
  }
  .hv-play{
    position: absolute;
    top: 45%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90px; height: 90px;
    border-radius: 50%;
    background: rgba(244,247,251,0.95);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
    transition: transform .25s, background .25s;
  }
  .hv-play:hover{ transform: translate(-50%, -50%) scale(1.08); }
  .hv-play.is-playing{
    width: 60px; height: 60px;
    background: rgba(244,247,251,0.85);
  }
  .hv-caption{
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 24px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 3;
  }
  .hv-caption-title{
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    color: var(--paper);
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .hv-caption-sub{
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232,238,245,0.7);
    margin-top: 6px;
  }
  .hero-v-split .hero-grid{
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
  }
  .hero-split-media{
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 18px;
    background: linear-gradient(135deg, #0c1421 0%, #1e2d44 100%);
    border: 1px solid rgba(232,238,245,0.18);
    overflow: hidden;
    box-shadow: 0 50px 100px -40px rgba(0,0,0,0.7);
    transform: rotate(1deg);
    transition: transform .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-split-media:hover{ transform: rotate(0); }
  .hero-split-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-split-empty{
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232,238,245,0.45);
  }
  @keyframes heroStatusFloat{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-10px); }
  }
  @keyframes heroStatusPulse{
    0%, 100%{ box-shadow: 0 0 0 0 rgba(127,224,168,0.5); }
    50%{ box-shadow: 0 0 0 7px rgba(127,224,168,0); }
  }
  .hero-status{
    position: relative;
    z-index: 2;
    max-width: 460px;
    justify-self: center;
    width: 100%;
    border-radius: 18px;
    background: #0c1421;
    border: 1px solid rgba(232,238,245,0.18);
    box-shadow: 0 50px 100px -40px rgba(0,0,0,0.7);
    padding: 24px 28px 20px;
    animation: heroStatusFloat 7s ease-in-out infinite;
  }
  .hs-topbar{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(232,238,245,0.12);
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7FE0A8;
  }
  .hs-dot{
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #7FE0A8;
    flex-shrink: 0;
    animation: heroStatusPulse 2.2s ease-in-out infinite;
  }
  .hs-live{
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    padding: 18px 0 8px;
  }
  .hs-live-label{
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(232,238,245,0.55);
  }
  .hs-live-sep{
    color: rgba(232,238,245,0.35);
    font-size: 14px;
  }
  .hs-live-num{
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--light-on-dark);
    font-variant-numeric: tabular-nums;
  }
  .hs-lines{
    list-style: none;
    margin: 0;
    padding: 6px 0 4px;
  }
  .hs-lines li{
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(232,238,245,0.1);
    font-size: 14px;
  }
  .hs-lines li:last-child{ border-bottom: 0; }
  .hs-check{
    color: #7FE0A8;
    font-size: 13px;
    line-height: 1;
    flex-shrink: 0;
  }
  .hs-lines span:not(.hs-check){
    flex: 1;
    color: rgba(232,238,245,0.6);
  }
  .hs-lines strong{
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--light-on-dark);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }
  .hs-note{
    margin: 14px 0 0;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(232,238,245,0.45);
  }
  @media (prefers-reduced-motion: reduce){
    .hero-status{ animation: none; }
    .hs-dot{ animation: none; }
  }
  @keyframes hbrImgPulse{
    0%, 100%{ opacity: .45; }
    50%{ opacity: .85; }
  }
  .hero-browser{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    justify-self: center;
    border-radius: 16px;
    background: #0c1421;
    border: 1px solid rgba(232,238,245,0.18);
    box-shadow: 0 50px 100px -40px rgba(0,0,0,0.7);
    overflow: hidden;
    transform: rotate(1deg);
    animation: heroStatusFloat 8s ease-in-out infinite;
  }
  .hbr-chrome{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(232,238,245,0.1);
    background: rgba(232,238,245,0.05);
  }
  .hbr-dots{ display: inline-flex; gap: 6px; }
  .hbr-dots i{
    width: 10px; height: 10px;
    border-radius: 50%;
  }
  .hbr-dots i:nth-child(1){ background: #E8907E; }
  .hbr-dots i:nth-child(2){ background: #E8C97E; }
  .hbr-dots i:nth-child(3){ background: #9BC49B; }
  .hbr-url{
    flex: 1;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(232,238,245,0.08);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(232,238,245,0.55);
    text-align: center;
  }
  .hbr-screen{
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 22px 24px;
    background: linear-gradient(160deg, #101a2a 0%, #0c1421 100%);
  }
  .hbr-skel{
    border-radius: 6px;
    background: rgba(232,238,245,0.1);
  }
  .hbr-skel-nav{ height: 10px; width: 48%; margin-bottom: 18px; }
  .hbr-skel-hero{ height: 28px; width: 72%; margin-bottom: 16px; }
  .hbr-skel-row{ display: flex; gap: 12px; margin-bottom: 16px; }
  .hbr-skel-card{ height: 54px; flex: 1; }
  .hbr-cta{
    display: inline-block;
    width: 96px; height: 28px;
    border-radius: 999px;
    background: var(--brand-soft);
    margin-bottom: 18px;
  }
  .hbr-skel-img{
    position: absolute;
    right: 24px; bottom: 22px;
    width: 38%; height: 42%;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(107,139,171,0.35), rgba(232,238,245,0.08));
    animation: hbrImgPulse 3.2s ease-in-out infinite;
  }
  .hero-print{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    justify-self: center;
    aspect-ratio: 5 / 4;
    animation: heroStatusFloat 8.5s ease-in-out infinite;
  }
  .hp-card{
    position: absolute;
    border-radius: 10px;
    background: #FDFCF9;
    border: 1px solid rgba(11,11,12,0.08);
    box-shadow:
      0 2px 4px rgba(11,11,12,0.08),
      0 28px 50px -22px rgba(11,11,12,0.45);
    padding: 22px 20px;
  }
  .hp-card--brochure{
    width: 58%;
    height: 72%;
    left: 6%;
    top: 10%;
    transform: rotate(-4deg);
  }
  .hp-card--card{
    width: 42%;
    height: 38%;
    right: 4%;
    bottom: 12%;
    transform: rotate(5deg);
  }
  .hp-swatch{
    width: 42%;
    height: 28%;
    border-radius: 6px;
    background: linear-gradient(135deg, #C4D8E8, #6B8BAB);
    margin-bottom: 14px;
  }
  .hp-swatch--alt{ background: linear-gradient(135deg, #F3C8B2, #C97B5C); height: 34%; }
  .hp-skel{
    height: 8px;
    border-radius: 4px;
    background: rgba(11,11,12,0.1);
    margin-bottom: 8px;
  }
  .hp-skel--short{ width: 55%; }
  .hp-skel--mid{ width: 78%; }
  .hero-flow{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    justify-self: center;
    aspect-ratio: 100 / 70;
    border-radius: 16px;
    border: 1px solid rgba(232,238,245,0.18);
    background:
      repeating-linear-gradient(0deg, rgba(232,238,245,0.04) 0, rgba(232,238,245,0.04) 1px, transparent 1px, transparent 20px),
      repeating-linear-gradient(90deg, rgba(232,238,245,0.04) 0, rgba(232,238,245,0.04) 1px, transparent 1px, transparent 20px),
      #0c1421;
    box-shadow: 0 50px 100px -40px rgba(0,0,0,0.7);
    overflow: hidden;
    animation: heroStatusFloat 8s ease-in-out infinite;
  }
  .hf-lines{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .hf-path{
    stroke: rgba(107,139,171,0.55);
    stroke-width: 1px;
    stroke-dasharray: 4 3;
    vector-effect: non-scaling-stroke;
  }
  .hf-dot{ fill: var(--brand-soft); }
  .hf-node{
    position: absolute;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 7px;
    background: #16233a;
    border: 1px solid rgba(107,139,171,0.5);
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-on-dark);
    white-space: nowrap;
  }
  .hf-node i{
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-soft);
  }
  .hf-label{
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(232,238,245,0.45);
  }
  .hero.wp-hero.hero-v-statement{ padding: 170px 60px 130px; }
  .hero-statement{
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .hero-v-statement .wp-h1{
    font-size: calc(clamp(80px, 10vw, 156px) / var(--h1-scale, 1) * var(--heading-scale, 1));
    max-width: 14ch;
    margin: 0 auto;
  }
  .hero-statement .hero-lead{
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-statement .hero-ctas{ justify-content: center; }
  .hero.wp-hero.hero--ink{
    background: var(--brand-ink);
    color: var(--light-on-dark, #E8EEF5);
  }
  .hero.wp-hero.hero--ink .wp-h1{ color: var(--light-on-dark, #E8EEF5); }
  .hero.wp-hero.hero--ink .wp-h1 em{ color: var(--brand-soft); }
  .hero.wp-hero.hero--ink .hero-lead{ color: rgba(232,238,245,0.72); }
  .hero.wp-hero.hero--ink .hero-glow{
    opacity: 0.35;
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(var(--magio-accent-rgb), 0.22), transparent 70%);
  }
  .hero.wp-hero.hero--ink .btn.primary.on-dark,
  .sig-hourbank .btn.hb-cta,
  .ps-card .btn.primary.on-dark,
  .pd-card--featured .btn.primary.on-dark{
    background: var(--magio-accent);
    color: var(--magio-accent-ink);
    border-color: transparent;
    box-shadow:
      0 1px 0 rgba(255,255,255,.18) inset,
      0 10px 28px -12px rgba(var(--magio-accent-rgb), 0.75);
  }
  .hero.wp-hero.hero--ink .btn.primary.on-dark .dot,
  .sig-hourbank .btn.hb-cta .dot,
  .ps-card .btn.primary.on-dark .dot,
  .pd-card--featured .btn.primary.on-dark .dot{
    background: var(--magio-accent-ink);
  }
  .hero.wp-hero.hero--ink .btn.primary.on-dark:hover,
  .sig-hourbank .btn.hb-cta:hover,
  .ps-card .btn.primary.on-dark:hover,
  .pd-card--featured .btn.primary.on-dark:hover{
    background: var(--magio-accent-hover);
    color: var(--magio-accent-ink);
    box-shadow:
      0 1px 0 rgba(255,255,255,.25) inset,
      0 18px 40px -12px rgba(var(--magio-accent-rgb), 0.85),
      0 0 0 6px rgba(var(--magio-accent-rgb), 0.18);
  }
  .hero.wp-hero.hero--ink .btn.primary.on-dark:hover .dot,
  .sig-hourbank .btn.hb-cta:hover .dot,
  .ps-card .btn.primary.on-dark:hover .dot,
  .pd-card--featured .btn.primary.on-dark:hover .dot{
    background: var(--magio-accent-ink);
  }
  .hero.wp-hero.hero-v-compact{ padding: 110px 60px 48px; }
  .hero-compact{
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
  }
  .hero-eyebrow{
    margin: 0 0 16px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-soft);
  }
  .hero-v-compact .wp-h1{
    font-size: calc(clamp(40px, 5vw, 64px) / var(--h1-scale, 1) * var(--heading-scale, 1));
    max-width: 24ch;
  }
  .hero-v-compact .hero-lead{
    margin-top: 16px;
    max-width: 680px;
    font-size: 18px;
  }
  .hero-v-compact .hero-ctas{ margin-top: 24px; align-items: center; }
  .hero-v-compact .hero-trust{ margin-top: 26px; }
  .stack-card.wp-card{
    border-radius: 40px;
    padding: 0;
    position: relative;
    z-index: 2;
    margin-left: var(--section-margin-x);
    margin-right: var(--section-margin-x);
    min-height: 0;
    display: block;
    box-shadow: none;
    border-top: 0;
  }
  .stack-card.wp-card > .stack-inner{
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: var(--section-padding-y) var(--section-padding-x);
    box-sizing: border-box;
  }
  .stack-card.wp-card.has-side-image{
    overflow: hidden;
  }
  .stack-card.wp-card.has-side-image.section-has-backdrop{
    overflow: visible;
  }
  .stack-card.wp-card.has-side-image.section-has-backdrop > .stack-inner{
    overflow: hidden;
    border-radius: inherit;
  }
  .stack-card.has-side-image > .stack-inner{
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-rows: 1fr;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: clamp(520px, 72vh, 880px);
    padding: 0 !important;
    gap: 0;
  }
  .stack-card.has-side-image--left > .stack-inner{
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
  .stack-card.has-side-image--left .side-media{ order: 1; }
  .stack-card.has-side-image--left .side-copy{ order: 2; }
  .stack-card.has-side-image--top > .stack-inner,
  .stack-card.has-side-image--bottom > .stack-inner{
    grid-template-columns: 1fr;
    grid-template-rows: minmax(240px, 40vh) auto;
    min-height: 0;
  }
  .stack-card.has-side-image--top .side-media{ order: 1; }
  .stack-card.has-side-image--top .side-copy{ order: 2; }
  .stack-card.has-side-image--bottom .side-copy{ order: 1; }
  .stack-card.has-side-image--bottom .side-media{ order: 2; }
  .stack-card.has-side-image--top .side-media,
  .stack-card.has-side-image--bottom .side-media{
    min-height: 240px;
    aspect-ratio: 21 / 9;
  }
  .stack-card.has-side-image .side-copy{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: clamp(48px, 8vw, 110px) clamp(28px, 5vw, 72px);
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
  .stack-card.has-side-image .side-media{
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.12);
  }
  .stack-card.has-side-image .side-media img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .stack-card.has-side-image .svc-side .ed-img{ display: none; }
  .stack-card.has-side-image .svc-rows .svc-row{
    grid-template-columns: 110px 1fr 120px;
    gap: 18px;
  }
  @media (max-width: 1100px){
    .stack-card.has-side-image > .stack-inner{
      grid-template-columns: 1fr;
      grid-template-rows: minmax(240px, 52vw) auto;
      min-height: 0;
    }
    .stack-card.has-side-image .side-copy{
      order: 2;
      padding: 40px 24px 48px;
    }
    .stack-card.has-side-image .side-media{
      order: 1;
      min-height: 240px;
      aspect-ratio: 4 / 3;
    }
    .stack-card.has-side-image--bottom .side-copy{ order: 1; }
    .stack-card.has-side-image--bottom .side-media{ order: 2; }
  }
  #faq.stack-card{
    border-radius: 40px;
    padding: 0;
    position: relative;
    z-index: 2;
    margin-left: var(--section-margin-x);
    margin-right: var(--section-margin-x);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    border-top: 0;
  }
  #faq.stack-card .stack-inner{
    width: 100%;
    flex: 1;
    display: grid;
    grid-template-columns: minmax(280px, 1100px);
    justify-content: center;
    justify-items: stretch;
    align-content: center;
    gap: var(--section-gap);
    padding: var(--section-padding-y) var(--section-padding-x);
    box-sizing: border-box;
  }
  #faq.stack-card .stack-inner > *{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  :is(.stack-card, .interlude, .interlude-proof, .reviews-section) ~ :is(.stack-card, .interlude, .interlude-proof, .reviews-section),
  .stack-card.section-overlap,
  .interlude-proof.section-overlap{
    margin-top: var(--section-gap);
  }
  .stack-card.wp-card:nth-of-type(n+2),
  #faq.stack-card:nth-of-type(n+2){ z-index: 3; }
  .stack-card.bone{
    --card-bg: var(--bone);
    --card-muted: var(--ink-60);
    background: var(--card-bg);
    color: var(--ink);
  }
  .stack-card.bone-2{
    --card-bg: var(--bone-2);
    --card-muted: var(--ink-60);
    background: var(--card-bg);
    color: var(--ink);
  }
  .stack-card.ink{
    --card-bg: var(--brand-ink);
    --card-muted: rgba(232,238,245,0.7);
    background: var(--card-bg);
    color: var(--light-on-dark);
  }
  .stack-card.brand{
    --card-bg: var(--brand);
    --card-muted: rgba(255,255,255,0.78);
    background: var(--card-bg);
    color: var(--paper);
  }
  .stack-card.card--bone{
    --card-bg: var(--bone); background: var(--card-bg); color: var(--ink);
    --card-line: rgba(17,17,17,.10);
    --card-text-60: rgba(17,17,17,.6);
    --card-muted: var(--card-text-60);
    --card-plus-border: rgba(17,17,17,.25);
  }
  .stack-card.card--ink{
    --card-bg: var(--brand-ink); background: var(--card-bg); color: var(--light-on-dark);
    --card-line: rgba(232,238,245,.18);
    --card-text-60: rgba(232,238,245,.7);
    --card-muted: var(--card-text-60);
    --card-plus-border: rgba(232,238,245,.3);
  }
  .section-width-full,
  .stack-card.wp-card.section-width-full,
  #faq.stack-card.section-width-full{
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
  .stack-card.section-has-backdrop{
    overflow: visible;
    background: transparent;
  }
  .stack-card.section-has-backdrop::before{
    content: "";
    position: absolute;
    top: calc(-1 * var(--section-gap, 48px));
    bottom: calc(-1 * var(--section-gap, 48px));
    left: calc(50% - 50vw);
    width: 100vw;
    background: var(--section-backdrop-bg);
    z-index: -2;
    pointer-events: none;
  }
  .stack-card.wp-card.section-has-backdrop::before{
    top: 0;
    bottom: 0;
  }
  @media (max-width: 600px){
    .stack-card.section-has-backdrop::before{
      top: calc(-1 * var(--section-gap-mobile, 40px));
      bottom: calc(-1 * var(--section-gap-mobile, 40px));
    }
    .stack-card.wp-card.section-has-backdrop::before{
      top: 0;
      bottom: 0;
    }
  }
  .stack-card.section-has-backdrop::after{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--card-bg);
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
  }
  .stack-card.section-has-backdrop > *{
    position: relative;
    z-index: 1;
  }
  .hero + .stack-card.section-has-backdrop::before{
    background: linear-gradient(
      180deg,
      color-mix(in oklab, var(--section-backdrop-bg) 0%, transparent) 0%,
      var(--section-backdrop-bg) 70%
    );
  }
  .section-backdrop--page{ --section-backdrop-bg: var(--page-canvas, var(--bg)); }
  .section-backdrop--bone{ --section-backdrop-bg: var(--bone); }
  .section-backdrop--bone-2{ --section-backdrop-bg: var(--bone-2); }
  .section-backdrop--ink{ --section-backdrop-bg: var(--brand-ink); }
  .interlude-proof.section-width-full,
  .reviews-section.section-width-full{
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
  .interlude-proof.section-has-backdrop,
  .reviews-section.section-has-backdrop{
    overflow: visible;
  }
  .interlude-proof.section-has-backdrop::before,
  .reviews-section.section-has-backdrop::before{
    content: "";
    position: absolute;
    inset: auto;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    background: var(--section-backdrop-bg);
    border-radius: 0;
    z-index: -2;
    pointer-events: none;
  }
  .interlude-proof.section-has-backdrop::after,
  .reviews-section.section-has-backdrop::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
  }
  .interlude-proof.section-has-backdrop::after{
    background: radial-gradient(circle at 80% 50%, rgba(107,139,171,0.18), transparent 60%) var(--brand-ink);
  }
  .reviews-section.section-has-backdrop::after{
    background: var(--bone);
  }
  .interlude-proof.section-has-backdrop > *,
  .reviews-section.section-has-backdrop > *{
    position: relative;
    z-index: 1;
  }
  .stack-card.wp-card,
  #faq.stack-card,
  .interlude-proof,
  .reviews-section{
    opacity: 0;
    transform: translateY(48px) scale(.985);
    transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1), filter 1s cubic-bezier(.2,.8,.2,1);
  }
  #om.wp-card:not(.in-view){ filter: blur(14px); transform: translateY(60px) scale(.97); }
  #faq:not(.in-view){ filter: blur(12px); transform: translateY(60px) scale(.97); }
  .stack-card.wp-card.in-view,
  #faq.stack-card.in-view,
  .interlude-proof.in-view,
  .reviews-section.in-view{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  @media (max-width: 700px){
    .stack-card.wp-card,
    #faq.stack-card,
    .interlude-proof,
    .reviews-section,
    #om.wp-card:not(.in-view),
    #faq:not(.in-view){
      opacity: 1;
      transform: none;
      filter: none;
      transition: none;
    }
  }
  .stack-inner{ max-width: 1300px; margin: 0 auto; box-sizing: border-box; }
  .reveal-lines{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .9s cubic-bezier(.2,.8,.2,1) .15s, transform .9s cubic-bezier(.2,.8,.2,1) .15s;
  }
  .reveal-fade{
    opacity: 0;
    transition: opacity .9s ease .35s;
  }
  .stack-card.in-view .reveal-lines,
  .interlude-proof.in-view .reveal-lines,
  .reviews-section.in-view .reveal-lines,
  .contact-cta.in-view .reveal-lines{ opacity: 1; transform: translateY(0); }
  .stack-card.in-view .reveal-fade,
  .interlude-proof.in-view .reveal-fade,
  .reviews-section.in-view .reveal-fade,
  .contact-cta.in-view .reveal-fade{ opacity: 1; }
  .stack-h{
    font-family: var(--serif);
    font-size: calc(clamp(48px, 5.4vw, 80px) * var(--heading-scale, 1));
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 20px 0 0;
  }
  .stack-h em{ font-style: italic; color: var(--brand); }
  .stack-card.ink .stack-h em,
  .stack-card.card--ink .stack-h em,
  .stack-card.brand .stack-h em{ color: var(--brand-soft); }
  .ed-img{
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: var(--bone-2);
    isolation: isolate;
  }
  .ed-img > img{
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .ed-img.ratio-43{ aspect-ratio: 4 / 3; }
  .ed-img.ratio-54{ aspect-ratio: 5 / 4; }
  .ed-img.placeholder{
    display: flex;
    align-items: flex-end;
    padding: 18px;
    color: rgba(11,11,12,0.55);
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px dashed rgba(11,11,12,0.18);
  }
  .ed-img.placeholder.on-dark,
  .stack-card.ink .ed-img.placeholder{
    color: rgba(232,238,245,0.55);
    border-color: rgba(232,238,245,0.25);
    background: rgba(232,238,245,0.04);
  }
  .ed-img.placeholder::before{
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(63,105,143,0.10), rgba(107,139,171,0.04) 50%, rgba(63,105,143,0.08));
    pointer-events: none;
  }
  .ed-img.placeholder::after{
    content: "+";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(11,11,12,0.04);
    border: 1px solid rgba(11,11,12,0.15);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--sans);
    font-size: 22px;
    font-weight: 300;
    color: rgba(11,11,12,0.4);
    letter-spacing: 0;
    text-transform: none;
  }
  .ed-img.placeholder.on-dark::after,
  .stack-card.ink .ed-img.placeholder::after{
    background: rgba(232,238,245,0.05);
    border-color: rgba(232,238,245,0.2);
    color: rgba(232,238,245,0.4);
  }
  .ed-img > .ed-caption{
    position: relative; z-index: 1;
  }
  .ed-img.has-photo > img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .svc-grid{
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: flex-start;
  }
  .svc-side{ position: relative; }
  .svc-side .stack-h{ font-size: calc(clamp(56px, 6vw, 88px) * var(--heading-scale, 1)); line-height: 0.98; }
  .svc-row{
    position: relative;
    padding: 36px 0 36px 0;
    border-top: 1px solid var(--line-strong);
    display: grid;
    grid-template-columns: 130px 1fr 160px;
    gap: 30px;
    align-items: baseline;
    transition: transform .3s ease, padding .3s ease, box-shadow .3s ease;
  }
  .svc-row::before{
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 999px;
    background: var(--brand);
    opacity: 0;
    transform: scaleY(0.6);
    transition: opacity .3s ease, transform .3s ease;
  }
  .svc-row:hover{
    padding-left: 14px;
    transform: translateY(-2px);
  }
  .svc-row:hover::before{
    opacity: 1;
    transform: scaleY(1);
  }
  .svc-row:last-child{ border-bottom: 1px solid var(--line-strong); }
  .svc-tag{
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand);
  }
  .svc-tag--akut{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d64545;
  }
  .svc-tag--akut::before{
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff4040;
    box-shadow: 0 0 0 0 rgba(255, 64, 64, 0.55);
    animation: magio-akut-pulse 1.8s ease-out infinite;
  }
  @keyframes magio-akut-pulse{
    0%{ box-shadow: 0 0 0 0 rgba(255, 64, 64, 0.55); }
    70%{ box-shadow: 0 0 0 10px rgba(255, 64, 64, 0); }
    100%{ box-shadow: 0 0 0 0 rgba(255, 64, 64, 0); }
  }
  @media (prefers-reduced-motion: reduce){
    .svc-tag--akut::before{ animation: none; }
    .svc-row{ transition: none; }
  }
  .svc-row h3{
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.015em;
    line-height: 1.1;
  }
  .svc-row p{
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-60);
  }
  .svc-price{
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--ink);
    text-align: right;
  }
  .svc-layout-selector .svc-selector-head{
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
  }
  .svc-layout-selector .svc-selector-lead{
    margin: 20px auto 0;
    max-width: 52ch;
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-60);
  }
  .stack-card.ink.svc-layout-selector .svc-selector-lead{ color: rgba(232,238,245,0.7); }
  .svc-selector-prompt{
    margin: 28px auto 0;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
  }
  .stack-card.ink .svc-selector-prompt{ color: var(--brand-soft); }
  .svc-layout-selector.is-js .svc-selector-fallback,
  [data-svc-selector].is-js .svc-selector-fallback{ display: none !important; }
  .svc-layout-selector:not(.is-js) .svc-selector-ui{ display: none !important; }
  .svc-chips{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 36px;
    max-width: 920px;
  }
  .svc-chip{
    appearance: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.7);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
  }
  .stack-card.ink .svc-chip{
    background: rgba(232,238,245,0.06);
    border-color: rgba(232,238,245,0.2);
    color: rgba(232,238,245,0.88);
  }
  .svc-chip:hover{
    border-color: var(--brand);
    color: var(--brand-ink);
  }
  .stack-card.ink .svc-chip:hover{
    border-color: var(--brand-soft);
    color: #fff;
  }
  .svc-chip:focus-visible{
    outline: 2px solid var(--brand);
    outline-offset: 3px;
  }
  .svc-chip--featured{
    min-height: 52px;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;
    border-color: var(--brand);
    box-shadow: 0 10px 28px -18px rgba(63,105,143,0.55);
  }
  .svc-chip.is-selected{
    background: var(--magio-accent);
    border-color: var(--magio-accent);
    color: var(--magio-accent-ink);
    transform: translateY(-1px);
  }
  .svc-chip--featured.is-selected{
    background: var(--magio-accent);
    border-color: var(--magio-accent);
    color: var(--magio-accent-ink);
  }
  .svc-chip-dot{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--magio-accent);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(var(--magio-accent-rgb), 0.45);
    animation: svcUrgentPulse 1.8s ease-out infinite;
  }
  @keyframes svcUrgentPulse{
    0%{ box-shadow: 0 0 0 0 rgba(var(--magio-accent-rgb), 0.5); }
    70%{ box-shadow: 0 0 0 8px rgba(var(--magio-accent-rgb), 0); }
    100%{ box-shadow: 0 0 0 0 rgba(var(--magio-accent-rgb), 0); }
  }
  .svc-panel-stage{
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
    transition: height .35s cubic-bezier(.2,.8,.2,1);
  }
  .svc-panel{
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    padding: 36px 40px 40px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 40px 80px -50px rgba(0,0,0,0.28);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .28s ease, transform .35s cubic-bezier(.2,.8,.2,1);
  }
  .stack-card.ink .svc-panel{
    background: rgba(12,20,33,0.55);
    border-color: rgba(232,238,245,0.14);
  }
  .svc-panel.is-active{
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .svc-panel.is-leaving{
    position: absolute;
    opacity: 0;
    transform: translateY(-8px);
  }
  .svc-panel-title{
    margin: 12px 0 14px;
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--ink);
  }
  .stack-card.ink .svc-panel-title{ color: var(--light-on-dark); }
  .svc-panel-text{
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-60);
  }
  .stack-card.ink .svc-panel-text{ color: rgba(232,238,245,0.72); }
  .svc-panel-text p{ margin: 0 0 0.8em; }
  .svc-panel-text p:last-child{ margin-bottom: 0; }
  .svc-panel-price{
    margin: 22px 0 0;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--brand);
  }
  .stack-card.ink .svc-panel-price{ color: var(--brand-soft); }
  .svc-panel-guide{
    margin: 14px 0 0;
    font-family: var(--sans);
    font-size: 14px;
  }
  .svc-panel-guide a{
    color: var(--accent, var(--brand));
    text-decoration: none;
  }
  .svc-panel-guide a:hover{ text-decoration: underline; text-underline-offset: 3px; }
  .stack-card.ink .svc-panel-guide a{ color: var(--brand-soft); }
  .svc-panel-cta{ margin-top: 28px; }
  .svc-selector-fallback-cta{ margin-top: 32px; }
  @media (prefers-reduced-motion: reduce){
    .svc-chip-dot{ animation: none; }
    .svc-panel-stage{ transition: none; }
    .svc-panel{ transition: none; }
  }
  @media (max-width: 700px){
    .svc-chips{ justify-content: stretch; }
    .svc-chip{ flex: 1 1 calc(50% - 10px); }
    .svc-chip--featured{ flex: 1 1 100%; }
    .svc-panel{ padding: 28px 22px 30px; }
  }
  .svc-grid-head{
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
  }
  .svc-grid-head .stack-h{ text-align: center; }
  .svc-grid-lead{
    margin: 20px auto 0;
    max-width: 54ch;
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-60);
  }
  .stack-card.ink .svc-grid-lead{ color: rgba(232,238,245,0.7); }
  .svc-grid-cta{ margin-top: 28px; }
  .svc-cards{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .svc-card{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 100%;
    padding: 32px 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line-strong);
    box-shadow: 0 24px 50px -40px rgba(11,11,12,0.35);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .svc-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 36px 60px -36px rgba(11,11,12,0.4);
  }
  .stack-card.ink .svc-card{
    background: rgba(232,238,245,0.05);
    border-color: rgba(232,238,245,0.15);
  }
  .svc-card .svc-tag{ margin-bottom: 4px; }
  .svc-card h3{
    margin: 0;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
  }
  .stack-card.ink .svc-card h3{ color: var(--light-on-dark); }
  .svc-card p{
    margin: 0;
    flex: 1;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-60);
  }
  .stack-card.ink .svc-card p{ color: rgba(232,238,245,0.65); }
  .svc-card .svc-price{
    margin-top: 8px;
    text-align: left;
    color: var(--brand);
  }
  .stack-card.ink .svc-card .svc-price{ color: var(--brand-soft); }
  .seo-callout{
    max-width: 900px;
    margin: 0 auto;
  }
  .seo-manifest{
    position: relative;
    margin: 40px 0 0;
    padding: 8px 0 8px 28px;
    border-left: 3px solid var(--brand);
    quotes: none;
  }
  .stack-card.ink .seo-manifest{ border-left-color: var(--brand-soft); }
  .seo-manifest p{
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: calc(clamp(28px, 3.4vw, 44px) * var(--heading-scale, 1));
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
    text-wrap: balance;
  }
  .stack-card.ink .seo-manifest p{ color: var(--light-on-dark); }
  .seo-callout-body{
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .seo-callout-body p{
    margin: 0;
    max-width: 62ch;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-60);
  }
  .stack-card.ink .seo-callout-body p{ color: rgba(232,238,245,0.7); }
  .svc-grid-head{
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
  }
  .svc-grid-lead{
    margin: 20px auto 0;
    max-width: 52ch;
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-60);
  }
  .stack-card.ink .svc-grid-lead{ color: rgba(232,238,245,0.7); }
  .svc-grid-cta{ margin-top: 28px; }
  .svc-cards{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .svc-card{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 100%;
    padding: 32px 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line-strong);
    box-shadow: 0 24px 48px -36px rgba(11,11,12,0.3);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .stack-card.ink .svc-card{
    background: rgba(232,238,245,0.05);
    border-color: rgba(232,238,245,0.15);
  }
  .svc-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 36px 60px -36px rgba(11,11,12,0.4);
  }
  .svc-card h3{
    margin: 0;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--ink);
  }
  .stack-card.ink .svc-card h3{ color: var(--light-on-dark); }
  .svc-card p{
    margin: 0;
    flex: 1;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-60);
  }
  .stack-card.ink .svc-card p{ color: rgba(232,238,245,0.65); }
  .svc-card .svc-price{
    margin-top: 8px;
    text-align: left;
    color: var(--brand);
  }
  .stack-card.ink .svc-card .svc-price{ color: var(--brand-soft); }
  .counter-row{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    border-top: 1px solid rgba(232,238,245,0.18);
    border-bottom: 1px solid rgba(232,238,245,0.18);
    padding: 60px 0;
  }
  .counter-cell{
    text-align: center;
    border-right: 1px solid rgba(232,238,245,0.15);
    padding: 0 24px;
  }
  .counter-cell:last-child{ border-right: none; }
  .counter-num{
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(64px, 7.5vw, 110px);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--light-on-dark);
    line-height: 1;
    white-space: nowrap;
  }
  .counter-num .suffix{ color: var(--brand-soft); font-size: 0.5em; }
  .counter-label{
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232,238,245,0.6);
    margin-top: 16px;
  }
  .timeline{
    --tl-progress: 1;
    position: relative;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 560px;
    padding-left: 40px;
  }
  .tl-rail{
    position: absolute;
    left: 4px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    pointer-events: none;
  }
  .tl-rail-bg,
  .tl-rail-fill{
    position: absolute;
    inset: 0;
    border-radius: 2px;
  }
  .tl-rail-bg{
    background: rgba(232,238,245,0.18);
  }
  .tl-rail-fill{
    background: linear-gradient(180deg, var(--magio-accent), rgba(var(--magio-accent-rgb), 0.55));
    transform: scaleY(var(--tl-progress, 1));
    transform-origin: top center;
    will-change: transform;
  }
  .tl-item{
    position: relative;
    padding-top: 0;
    transition: opacity .35s ease;
  }
  .tl-dot{
    position: absolute;
    top: 6px;
    left: -40px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(232,238,245,0.45);
    box-shadow: 0 0 0 3px rgba(12,20,33,0.9);
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
  }
  .timeline.is-js .tl-item.is-lit .tl-dot,
  .timeline:not(.is-js) .tl-dot,
  .tl-item.now .tl-dot{
    background: var(--light-on-dark);
  }
  .tl-item.now .tl-dot{
    background: var(--brand-soft);
    box-shadow: 0 0 0 6px rgba(107,139,171,0.25);
    animation: livePulse 2s ease-in-out infinite;
  }
  .tl-year{
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232,238,245,0.4);
    display: inline-block;
    transform: scale(1);
    transform-origin: left center;
    transition: color .3s ease, transform .35s cubic-bezier(.2,.8,.2,1);
  }
  .timeline:not(.is-js) .tl-year,
  .timeline.is-js .tl-item.is-lit .tl-year,
  .tl-item.now .tl-year{
    color: var(--brand-soft);
  }
  .timeline.is-js .tl-item.is-lit .tl-year,
  .tl-item.now .tl-year{
    transform: scale(1.06);
  }
  .tl-item h4{
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    margin: 8px 0 6px;
    letter-spacing: -0.01em;
    color: var(--light-on-dark);
  }
  .tl-item p{
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(232,238,245,0.65);
  }
  .interlude-proof{
    background: var(--brand-ink);
    color: var(--light-on-dark);
    padding: var(--section-padding-y) var(--section-padding-x);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(244,247,251,0.12);
    margin-left: var(--section-margin-x);
    margin-right: var(--section-margin-x);
    margin-top: var(--section-gap);
    border-radius: 40px;
  }
  .interlude-proof::before{
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(107,139,171,0.18), transparent 60%);
    pointer-events: none;
  }
  .ip-inner{
    max-width: 1300px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .ip-inner .ip-h{
    font-family: var(--serif);
    font-style: italic;
    font-size: calc(clamp(34px, 3.4vw, 48px) / var(--h3-scale, 1) * var(--heading-scale, 1));
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin: 18px 0 0;
    color: var(--light-on-dark);
    max-width: 14ch;
  }
  .ip-quote{
    border-left: 1px solid rgba(232,238,245,0.25);
    padding-left: 40px;
  }
  .ip-quote p{
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 24px;
    color: rgba(232,238,245,0.85);
  }
  .ip-meta{
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(232,238,245,0.6);
  }
  .ip-meta .av{
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C4D8E8, #E8E0C8);
    border: 2px solid rgba(232,238,245,0.2);
    flex-shrink: 0;
    overflow: hidden;
    aspect-ratio: 1;
  }
  .ip-meta .av--photo{
    background: transparent;
    padding: 0;
  }
  .ip-meta .av--photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .ip-meta strong{ color: #fff; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; text-transform: none; font-size: 14px; display: block; }
  .ip-left{ display: flex; flex-direction: column; gap: 28px; }
  .ip-stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(232,238,245,0.15);
    border-bottom: 1px solid rgba(232,238,245,0.15);
    padding: 24px 0;
  }
  .ip-stat{ padding: 0 18px; border-right: 1px solid rgba(232,238,245,0.10); }
  .ip-stat:last-child{ border-right: 0; }
  .ip-stat:first-child{ padding-left: 0; }
  .ip-stat-num{
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 500;
    line-height: 1;
    color: var(--light-on-dark);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .ip-stat-lbl{
    font-family: var(--sans);
    font-size: 10.5px;
    line-height: 1.5;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232,238,245,0.55);
  }
  .ip-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .ip-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(107,139,171,0.18);
    border: 1px solid rgba(107,139,171,0.35);
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--light-on-dark);
  }
  .ip-badge.ghost{
    background: transparent;
    border-color: rgba(232,238,245,0.18);
    color: rgba(232,238,245,0.65);
  }
  .ip-quote{ position: relative; }
  .ip-mark{
    position: absolute;
    top: -28px; left: 28px;
    font-family: var(--serif);
    font-size: 140px;
    line-height: 1;
    color: var(--brand-soft);
    opacity: 0.35;
    pointer-events: none;
    user-select: none;
  }
  .ip-quote p{ position: relative; }
  .reviews-section{
    background: var(--bone);
    padding: var(--section-padding-y) 0;
    border-radius: 40px;
    margin-top: var(--section-gap);
    margin-left: var(--section-margin-x);
    margin-right: var(--section-margin-x);
    position: relative;
    overflow: hidden;
    z-index: 4;
  }
  .stack-card + .reviews-section,
  .interlude + .reviews-section{
    margin-top: var(--section-gap);
  }
  .reviews-head{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--section-padding-x) var(--section-padding-x);
    text-align: center;
  }
  .reviews-viewport{
    overflow: hidden;
    border-radius: inherit;
  }
  .reviews-track{
    display: flex;
    gap: 24px;
    padding: 0 60px;
    width: max-content;
    animation: reviewMarquee 60s linear infinite;
  }
  .reviews-track:hover{ animation-play-state: paused; }
  @keyframes reviewMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .review-card{
    flex: 0 0 380px;
    padding: 28px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 40px -30px rgba(0,0,0,0.15);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .review-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -25px rgba(0,0,0,0.2);
  }
  .review-stars{ color: var(--brand); font-size: 16px; letter-spacing: 2px; }
  .review-card p{
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    flex: 1;
    letter-spacing: 0;
  }
  .review-meta{
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-60);
  }
  .review-meta strong{ color: var(--ink); }
  .reviews-cta{
    text-align: center;
    margin-top: 60px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-60);
  }
  .reviews-cta a{ text-decoration: underline; }
  @media (max-width: 700px){
    .reviews-viewport{
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .reviews-viewport::-webkit-scrollbar{ display: none; }
    .reviews-track{
      animation: none !important;
      gap: 14px;
      padding: 0 var(--section-padding-x-mobile);
    }
    .review-card{
      flex: 0 0 84vw;
      max-width: 340px;
      scroll-snap-align: center;
    }
  }
  .faq-grid{
    width: 100%;
    max-width: 1100px;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0 48px;
    box-sizing: border-box;
  }
  .faq-col{
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  details.faq{
    padding: 22px 0;
    border-bottom: 1px solid var(--card-line, rgba(232,238,245,0.18));
  }
  details.faq summary{
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: inherit;
  }
  details.faq summary::-webkit-details-marker{ display: none; }
  details.faq .plus{
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--card-plus-border, rgba(232,238,245,0.3));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--brand-soft);
    flex-shrink: 0;
    transition: transform .25s ease, background .25s ease, color .25s ease;
  }
  details.faq[open] .plus{
    transform: rotate(45deg);
    background: var(--brand-soft);
    color: var(--brand-ink);
  }
  details.faq p{
    margin: 0;
    padding-top: 14px;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.55;
    color: var(--card-text-60, rgba(232,238,245,0.7));
    max-width: 60ch;
    transition: max-height .32s ease, opacity .28s ease;
  }
  @media (prefers-reduced-motion: reduce){
    details.faq p{ transition: none; }
    details.faq .plus{ transition: none; }
  }
  .process-track{
    position: relative;
    margin-top: 56px;
    padding-left: 28px;
  }
  .process-thread{
    position: absolute;
    left: 6px;
    top: 56px;
    bottom: 56px;
    width: 4px;
    height: auto;
    overflow: visible;
    pointer-events: none;
  }
  .process-thread-rail,
  .process-thread-draw{
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
  }
  .process-thread-rail{
    stroke: rgba(11,11,12,0.12);
  }
  .process-thread-draw{
    stroke: var(--magio-accent);
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
  }
  .process-track.is-js .process-thread-draw{
    stroke-dashoffset: 100;
  }
  .stack-card.ink .process-thread-rail{
    stroke: rgba(232,238,245,0.16);
  }
  .stack-card.ink .process-thread-draw{
    stroke: var(--magio-accent);
  }
  .process-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .process-grid--2{ grid-template-columns: repeat(2, 1fr); }
  .process-grid--4{ grid-template-columns: repeat(4, 1fr); }
  .process-card{
    padding: 36px;
    border-radius: 18px;
    background: rgba(11,11,12,0.04);
    border: 1px solid rgba(11,11,12,0.1);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  }
  .stack-card.ink .process-card{
    background: rgba(232,238,245,0.05);
    border-color: rgba(232,238,245,0.12);
  }
  .process-card:hover{
    transform: translateY(-4px);
    background: rgba(63,105,143,0.07);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.2);
  }
  .stack-card.ink .process-card:hover{
    background: rgba(232,238,245,0.09);
  }
  .process-num{
    font-family: var(--serif);
    font-style: italic;
    font-size: 80px;
    line-height: 1;
    font-weight: 500;
    color: rgba(11,11,12,0.22);
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    transition: color .35s ease, transform .35s ease;
  }
  .stack-card.ink .process-num{
    color: rgba(232,238,245,0.28);
  }
  .process-card.is-lit .process-num,
  .process-track:not(.is-js) .process-num{
    color: var(--brand);
    transform: scale(1.02);
  }
  .stack-card.ink .process-card.is-lit .process-num,
  .stack-card.ink .process-track:not(.is-js) .process-num{
    color: var(--brand-soft);
  }
  @media (prefers-reduced-motion: reduce){
    .process-num{ transition: none; transform: none !important; }
    .process-track.is-js .process-thread-draw{ stroke-dashoffset: 0; }
    .process-card .process-num{ color: var(--brand); }
    .stack-card.ink .process-card .process-num{ color: var(--brand-soft); }
  }
  .process-card h3{
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.015em;
  }
  .stack-card.ink .process-card h3{ color: var(--light-on-dark); }
  .process-card p{
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-60);
    margin: 0;
  }
  .stack-card.ink .process-card p{ color: rgba(232,238,245,0.68); }
  @media (max-width: 700px){
    .process-track{ padding-left: 0; }
    .process-thread{ display: none; }
    .process-grid{
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 14px;
      margin-left: calc(-1 * var(--section-padding-x-mobile));
      margin-right: calc(-1 * var(--section-padding-x-mobile));
      padding: 4px var(--section-padding-x-mobile) 18px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .process-grid::-webkit-scrollbar{ display: none; }
    .process-card{
      flex: 0 0 84%;
      max-width: 340px;
      scroll-snap-align: center;
    }
  }
  .seo-with-image{
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
  }
  .seo-with-image .seo-cols{
    column-count: 1;
    column-gap: 0;
    font-size: 17px;
    line-height: 1.65;
    color: var(--card-muted, var(--ink-60));
  }
  .seo-with-image .seo-cols p{
    max-width: 60ch;
    margin: 0 0 1.15em;
  }
  .seo-with-image .seo-cols p:last-child{ margin-bottom: 0; }
  .cf-eyebrow{
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244,247,251,0.85);
    margin: 0 0 6px;
  }
  .cf-submit{
    margin-top: 6px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--paper);
    color: var(--brand-ink, var(--brand-ink));
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
  }
  .cf-submit:hover{ transform: translateY(-2px); background: #fff; }
  .footer-bar a{ text-decoration: none; cursor: pointer; }
  body[data-accent="sunset"]{ --brand: #C97B5C; --brand-soft: #E2A488; --brand-ink: #3D2A20; }
  body[data-accent="mint"]{ --brand: #5E8A65; --brand-soft: #8FB997; --brand-ink: #1F2D22; }
  body[data-accent="violet"]{ --brand: #6E5BA0; --brand-soft: #9B8AC6; --brand-ink: #2A2138; }
  body[data-density="compact"] .stack-card.wp-card > .stack-inner,
  body[data-density="compact"] #faq.stack-card .stack-inner{
    padding: 80px var(--section-padding-x);
  }
  body[data-density="spacious"] .stack-card.wp-card > .stack-inner,
  body[data-density="spacious"] #faq.stack-card .stack-inner{
    padding: 140px var(--section-padding-x);
  }
  @media (max-width: 1100px){
    .hero-grid,
  .svc-grid,
  .contact-grid,
  .faq-grid,
  .process-grid,
    .svc-side{ position: static; }
    .timeline{ max-width: none; }
    .counter-row{ grid-auto-flow: row; grid-template-columns: 1fr 1fr; gap: 40px 0; }
    .counter-cell:nth-child(2n){ border-right: 0; }
    .faq-grid{ grid-template-columns: minmax(0, 1fr); }
    .nav{
      padding: 16px 16px;
      font-size: 10px;
    }
    .nav-logo-slot{ width: 80px; height: 22px; }
    .stack-card.wp-card{ padding: 0; }
    .stack-card.wp-card > .stack-inner{ padding: var(--section-padding-y) var(--section-padding-x-tablet); }
    #faq.stack-card{
      min-height: 0;
      padding: 0;
    }
    #faq.stack-card .stack-inner{ padding: var(--section-padding-y) var(--section-padding-x-tablet); }
    :is(.stack-card, .interlude, .interlude-proof, .reviews-section) ~ :is(.stack-card, .interlude, .interlude-proof, .reviews-section),
    .reviews-section{
      margin-top: var(--section-gap);
    }
    .hero.wp-hero{ padding: 110px 24px 24px; }
    .reviews-section{ padding: var(--section-padding-y) 0; }
    .reviews-head{ padding: 0 var(--section-padding-x-tablet) var(--section-padding-x-tablet); }
    .ip-inner{ grid-template-columns: 1fr; gap: 30px; }
    .ip-quote{ border-left: 0; border-top: 1px solid rgba(232,238,245,0.25); padding-left: 0; padding-top: 30px; }
    .interlude-proof{ padding: var(--section-padding-y) var(--section-padding-x-tablet); }
    .seo-cols{ column-count: 1; }
    .seo-with-image{ grid-template-columns: 1fr; gap: 30px; }
    .seo-with-image .ed-img{ position: relative !important; top: auto !important; }
    .svc-row{ grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
    .svc-price{ text-align: left; }
    .wp-hero .wp-h1{ font-size: calc(clamp(56px, 13vw, 84px) / var(--h1-scale, 1) * var(--heading-scale, 1)); }
    .hero.wp-hero.hero-v-split,
    .hero.wp-hero.hero-v-statement,
    .hero.wp-hero.hero-v-compact{ padding: 110px 24px 24px; }
    .hero-v-split .hero-grid{ grid-template-columns: 1fr; }
    .hero-status,
    .hero-browser,
    .hero-print,
    .hero-flow{ max-width: none; }
    .svc-cards{ grid-template-columns: 1fr; }
    .svc-grid-head{ text-align: left; margin-bottom: 32px; }
    .svc-grid-head .stack-h{ text-align: left; }
    .seo-manifest{ padding-left: 18px; }
    .hero-v-statement .wp-h1{ font-size: calc(clamp(56px, 14vw, 92px) / var(--h1-scale, 1) * var(--heading-scale, 1)); }
    .hero-v-compact .wp-h1{ font-size: calc(clamp(40px, 10vw, 60px) / var(--h1-scale, 1) * var(--heading-scale, 1)); }
    .hero-statement{ text-align: left; }
    .hero-v-statement .wp-h1,
    .hero-statement .hero-lead{ margin-left: 0; margin-right: 0; }
    .hero-statement .hero-ctas{ justify-content: flex-start; }
  }
  @media (max-width: 600px){
    .stack-card.wp-card,
    #faq.stack-card,
    .reviews-section,
    .interlude-proof{
      margin-left: var(--section-margin-x-mobile);
      margin-right: var(--section-margin-x-mobile);
    }
    .stack-card.wp-card > .stack-inner,
    #faq.stack-card .stack-inner{
      padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
    }
    .interlude-proof{
      padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
    }
    .reviews-section{ padding: var(--section-padding-y-mobile) 0; }
    .reviews-head{ padding: 0 var(--section-padding-x-mobile) var(--section-padding-x-mobile); }
    .reviews-cta{ margin-top: var(--section-padding-y-mobile); }
    :is(.stack-card, .interlude, .interlude-proof, .reviews-section) ~ :is(.stack-card, .interlude, .interlude-proof, .reviews-section),
    .reviews-section,
    .interlude-proof{
      margin-top: var(--section-gap-mobile);
    }
    .stack-card.has-side-image .side-copy{
      padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
    }
    .counter-row{
      grid-template-columns: 1fr;
      gap: 32px 0;
      padding: 40px 0;
    }
    .counter-cell{
      border-right: 0;
      border-bottom: 1px solid rgba(232,238,245,0.15);
      padding: 0 0 32px;
    }
    .counter-cell:last-child{ border-bottom: 0; padding-bottom: 0; }
  }
  @media (prefers-reduced-motion: reduce){
    *,
  *::before,
  *::after{
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .stack-card.wp-card,
    #faq.stack-card,
    #om.wp-card,
    #faq,
    .interlude-proof,
    .reviews-section{
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
    }
    .hf-dot{ display: none; }
    .hero-browser,
    .hero-print,
    .hero-flow,
    .hero-status{ animation: none; }
    .hbr-skel-img{ animation: none; opacity: .65; }
  }
.wp-h1{font-size: 59px; font-weight: 700}
.wp-h2{font-weight: 700}
.wp-h3{background:#F3C8B2;}
.wp-h4{background:#C4D8E8;}
.wp-h5{background:#E8E0C8;}
.wp-h6{background:#DCC8D8;}
.wp-h7{margin-top: 2px;}
.wp-h8{margin-top: 24px; font-size: 18px; line-height: 1.5; color: var(--ink-60); max-width: 360px;}
.wp-h9{margin-top: 32px;}
.wp-h10{margin-top: 40px;}
.wp-h12{position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(107,139,171,0.15) 0%, transparent 60%); pointer-events: none;}
.wp-h13{position: relative; z-index: 2;}
.wp-h14{text-align: center; margin-bottom: 80px;}
.wp-h16{font-size: calc(clamp(56px, 6.4vw, 100px) * var(--heading-scale, 1)); margin: 24px auto 0; max-width: 18ch; text-align: center;}
.wp-h17{max-width: 600px; margin: 24px auto 0; font-size: 19px; line-height: 1.55; color: rgba(232,238,245,0.65);}
.wp-erfaring-lead p{ margin: 0 0 1em; }
.wp-erfaring-lead p:last-child{ margin-bottom: 0; }
#om .wp-h16{ max-width: 22ch; }
.wp-h18{display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 30px;}
.wp-h19{max-width: 14ch;}
.wp-h20{max-width: 380px; margin: 0; font-size: 17px; line-height: 1.5; color: var(--ink-60);}
.stack-card.ink .wp-h20{ color: rgba(232,238,245,0.7); }
.wp-h26{margin: 20px auto 0; max-width: 30ch; text-align: center;}
.wp-h31{max-width: 1240px; margin: 0 auto;}
.wp-h32{font-size: calc(clamp(40px, 4.4vw, 64px) * var(--heading-scale, 1)); margin: 20px 0 40px; max-width: 22ch;}
.wp-h33{position: sticky; top: 100px;}
.magio-case-single{
  position: relative;
  padding-bottom: 40px;
}
.cs-back{
  position: absolute;
  top: 96px;
  left: max(24px, calc((100% - 1300px) / 2));
  z-index: 5;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,238,245,0.7);
  text-decoration: none;
}
.cs-back:hover{ color: #fff; }
.cs-hero{
  background: var(--brand-ink);
  color: var(--light-on-dark);
  padding: 140px 60px 100px;
  overflow: hidden;
}
.cs-hero-inner{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.cs-eyebrow{
  margin: 0 0 18px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-soft);
}
.cs-title{
  margin: 0;
  font-family: var(--serif);
  font-size: calc(clamp(44px, 5.5vw, 84px) * var(--heading-scale, 1));
  font-weight: 700;
  font-style: italic;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--light-on-dark);
  text-wrap: balance;
}
.cs-sub{
  margin: 18px 0 0;
  max-width: 36ch;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(232,238,245,0.7);
}
.cs-chip{
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.cs-chip--quiet{
  margin-top: 0;
  background: rgba(255,255,255,0.08);
  color: rgba(232,238,245,0.75);
}
.cs-byline{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.cs-byline-avs{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cs-byline-av{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(38,51,71,0.95);
  background: rgba(255,255,255,0.12);
  aspect-ratio: 1;
  margin-left: -8px;
}
.cs-byline-av:first-child{ margin-left: 0; }
.cs-byline-av img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-byline-text{
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(232,238,245,0.72);
}
.cs-visit{ margin: 28px 0 0; }
.cs-visit a{
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--brand-soft);
  text-decoration: none;
}
.cs-visit a:hover{ color: #fff; }
.cs-device{
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  border-radius: 16px;
  background: #0c1421;
  border: 1px solid rgba(232,238,245,0.18);
  box-shadow: 0 50px 100px -40px rgba(0,0,0,0.7);
  overflow: hidden;
}
.cs-device--laptop{ transform: rotate(1deg); }
.cs-device--desktop{ border-radius: 10px; }
.cs-device--tablet{
  max-width: 340px;
  border-radius: 22px;
  justify-self: center;
  padding: 14px;
  background: #16233a;
}
.cs-device--phone{
  max-width: 220px;
  border-radius: 28px;
  justify-self: center;
  padding: 12px;
  background: #16233a;
}
.cs-device-chrome{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(232,238,245,0.1);
  background: rgba(232,238,245,0.05);
}
.cs-device--tablet .cs-device-chrome,
.cs-device--phone .cs-device-chrome{
  display: none;
}
.cs-device-dots{ display: inline-flex; gap: 6px; }
.cs-device-dots i{
  width: 9px; height: 9px;
  border-radius: 50%;
}
.cs-device-dots i:nth-child(1){ background: #E8907E; }
.cs-device-dots i:nth-child(2){ background: #E8C97E; }
.cs-device-dots i:nth-child(3){ background: #9BC49B; }
.cs-device-url{
  flex: 1;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(232,238,245,0.08);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(232,238,245,0.55);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cs-device-screen{
  position: relative;
  aspect-ratio: 16 / 10;
  background: #101a2a;
}
.cs-device--tablet .cs-device-screen{ aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden; }
.cs-device--phone .cs-device-screen{ aspect-ratio: 9 / 16; border-radius: 18px; overflow: hidden; }
.cs-device-screen img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-device-base{
  height: 14px;
  background: linear-gradient(to bottom, #1a2740, #0c1421);
  border-top: 1px solid rgba(232,238,245,0.08);
}
.cs-device-skel{
  position: absolute;
  inset: 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs-skel{
  display: block;
  border-radius: 6px;
  background: rgba(232,238,245,0.1);
}
.cs-skel-nav{ height: 10px; width: 42%; }
.cs-skel-hero{ height: 26px; width: 68%; }
.cs-skel-row{ display: flex; gap: 10px; }
.cs-skel-row i{
  flex: 1;
  height: 48px;
  border-radius: 6px;
  background: rgba(232,238,245,0.08);
}
.cs-skel-cta{
  width: 88px;
  height: 26px;
  border-radius: 999px;
  background: var(--brand-soft);
  opacity: 0.7;
}
.cs-intro.stack-card{
  margin: 48px 20px 0;
  padding: 80px 60px;
}
.cs-sections.stack-card{
  margin: 48px 20px 0;
  padding: 80px 60px;
}
.cs-section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line-strong);
}
.cs-section:first-child{ border-top: 0; padding-top: 0; }
.cs-section--flip .cs-section-text{ order: 2; }
.cs-section--flip .cs-section-media{ order: 1; }
.cs-section--text{
  grid-template-columns: 1fr;
  max-width: 72ch;
}
.cs-section-num{
  display: inline-block;
  margin-bottom: 12px;
}
.cs-section-title{
  margin: 0;
  font-family: var(--serif);
  font-size: calc(clamp(32px, 3.6vw, 52px) * var(--heading-scale, 1));
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.cs-section-body{
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-60);
}
.cs-section-body p{ margin: 0 0 1em; }
.cs-section-body p:last-child{ margin-bottom: 0; }
.cs-section-media{
  border-radius: 16px;
  overflow: hidden;
  background: var(--bone-2);
  aspect-ratio: 16 / 10;
}
.cs-section-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-quote{
  background: var(--brand-ink);
  color: var(--light-on-dark);
  padding: 90px 60px;
  margin: 48px 20px 0;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.cs-quote::before{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(107,139,171,0.2), transparent 60%);
  pointer-events: none;
}
.cs-quote-inner{
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.cs-quote blockquote{
  margin: 0;
  padding-left: 28px;
  border-left: 2px solid rgba(232,238,245,0.3);
}
.cs-quote blockquote p{
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: calc(clamp(26px, 3.2vw, 40px) * var(--heading-scale, 1));
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: rgba(232,238,245,0.92);
  text-wrap: balance;
}
.cs-quote cite{
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,238,245,0.55);
}
.cs-quote cite strong{
  display: block;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #fff;
  margin-bottom: 4px;
}
.cs-outro.stack-card{
  margin: 48px 20px 0;
  padding: 80px 60px;
}
.cs-outro-inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.cs-outro-title{
  margin: 0;
  font-family: var(--serif);
  font-size: calc(clamp(36px, 4.2vw, 64px) * var(--heading-scale, 1));
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
}
.cs-outro-ctas{
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cs-adjacent{
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.cs-adj{
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: var(--ink);
  padding: 8px 0;
}
.cs-adj--next{ text-align: right; align-items: flex-end; }
.cs-adj span{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.cs-adj strong{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cs-adj:hover strong{ color: var(--brand); }
.cs-adj--empty{ pointer-events: none; }
@media (max-width: 1100px){
  .cs-hero{ padding: 120px 24px 48px; }
  .cs-hero-inner{ grid-template-columns: 1fr; gap: 40px; }
  .cs-device{
    justify-self: center;
    max-width: 100%;
    order: -1;
  }
  .cs-back{ top: 88px; left: 24px; }
  .cs-intro.stack-card,
  .cs-sections.stack-card,
  .cs-outro.stack-card{ padding: 48px 24px; margin-left: 12px; margin-right: 12px; }
  .cs-quote{ padding: 56px 24px; margin-left: 12px; margin-right: 12px; border-radius: 28px; }
  .cs-section{ grid-template-columns: 1fr; gap: 28px; }
  .cs-section--flip .cs-section-text,
  .cs-section--flip .cs-section-media{ order: unset; }
  .cs-adjacent{ grid-template-columns: 1fr; }
  .cs-adj--next{ text-align: left; align-items: flex-start; }
}
.contact-form .gform_wrapper,
.contact-form .gform_wrapper.gravity-theme,
.contact-form .gform_wrapper.gform-theme--foundation {
	margin: 0;
	padding: 0;
	max-width: none;
}
.contact-form .gform_heading,
.contact-form .gform_required_legend {
	display: none;
}
.contact-form .gform_fields {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.contact-form .gfield {
	margin: 0;
	padding: 0;
}
.contact-form .gfield_label,
.contact-form .gform-field-label {
	font-family: var(--sans);
	font-size: 10px !important;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(244, 247, 251, 0.55) !important;
	font-weight: 400 !important;
	margin-bottom: 6px !important;
}
.contact-form .gfield_label .gfield_required,
.contact-form .gform-field-label .gfield_required {
	color: rgba(244, 247, 251, 0.75);
}
.contact-form .ginput_container input[type="text"],
.contact-form .ginput_container input[type="email"],
.contact-form .ginput_container input[type="tel"],
.contact-form .ginput_container input[type="url"],
.contact-form .ginput_container input[type="number"],
.contact-form .ginput_container textarea,
.contact-form .ginput_container select {
	width: 100% !important;
	background: rgba(244, 247, 251, 0.04) !important;
	border: 1px solid rgba(244, 247, 251, 0.22) !important;
	border-radius: 10px !important;
	padding: 12px 14px !important;
	color: var(--paper) !important;
	font-family: var(--serif) !important;
	font-size: 16px !important;
	line-height: 1.4 !important;
	box-shadow: none !important;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form .ginput_container textarea {
	min-height: 96px;
	resize: vertical;
}
.contact-form .ginput_container input::placeholder,
.contact-form .ginput_container textarea::placeholder {
	color: rgba(244, 247, 251, 0.65);
}
.contact-form .ginput_container input:focus,
.contact-form .ginput_container textarea:focus,
.contact-form .ginput_container select:focus {
	outline: none !important;
	border-color: rgba(244, 247, 251, 0.6) !important;
	background: rgba(244, 247, 251, 0.09) !important;
}
.contact-form .gform-grid-row,
.contact-form .gform-grid-col {
	margin: 0;
	padding: 0;
}
.contact-form .gform-grid-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.contact-form .gform_footer,
.contact-form .gform_page_footer {
	margin: 6px 0 0;
	padding: 0;
}
.contact-form .gform_button,
.contact-form .gform_next_button,
.contact-form input[type="submit"].gform_button {
	margin-top: 6px !important;
	align-self: flex-start;
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	padding: 14px 22px !important;
	border-radius: 999px !important;
	background: var(--paper) !important;
	color: var(--brand-ink) !important;
	font-family: var(--sans) !important;
	font-size: 12px !important;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	border: 0 !important;
	cursor: pointer;
	transition: transform 0.25s ease, background 0.25s ease;
	line-height: 1.2 !important;
	min-height: 0 !important;
	width: auto !important;
}
.contact-form .gform_button:hover,
.contact-form input[type="submit"].gform_button:hover {
	transform: translateY(-2px);
	background: #fff !important;
}
.contact-form .gform_button:after {
	content: "→";
	margin-left: 4px;
}
.contact-form .gfield_validation_message,
.contact-form .validation_message {
	font-family: var(--sans);
	font-size: 12px;
	color: #ffb4b4;
	background: transparent;
	border: 0;
	padding: 4px 0 0;
}
.contact-form .gform_validation_errors {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 180, 180, 0.4);
	border-radius: 10px;
	padding: 12px 14px;
	margin-bottom: 12px;
	color: var(--paper);
}
.contact-form .gform_confirmation_message {
	font-family: var(--serif);
	color: #c8e6c9;
	padding: 8px 0;
}
.contact-form .gfield--type-html,
.contact-form .gfield_html {
	color: rgba(244, 247, 251, 0.75);
}
.contact-form .magio-form-placeholder {
	font-family: var(--sans);
	font-size: 13px;
	color: rgba(244, 247, 251, 0.55);
	margin: 0;
	padding: 12px 0;
}
@media (max-width: 600px) {
	.contact-form .gform-grid-row {
		grid-template-columns: 1fr;
	}
}
.cp-form .contact-form {
	padding: 0;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.contact-form--on-light .gfield_label,
.contact-form--on-light .gform-field-label {
	color: rgba(11, 11, 12, 0.55) !important;
}
.contact-form--on-light .gfield_label .gfield_required,
.contact-form--on-light .gform-field-label .gfield_required {
	color: rgba(11, 11, 12, 0.7);
}
.contact-form--on-light .ginput_container input[type="text"],
.contact-form--on-light .ginput_container input[type="email"],
.contact-form--on-light .ginput_container input[type="tel"],
.contact-form--on-light .ginput_container input[type="url"],
.contact-form--on-light .ginput_container input[type="number"],
.contact-form--on-light .ginput_container textarea,
.contact-form--on-light .ginput_container select {
	background: rgba(11, 11, 12, 0.03) !important;
	border-color: rgba(11, 11, 12, 0.2) !important;
	color: var(--ink, #0B0B0C) !important;
}
.contact-form--on-light .ginput_container input::placeholder,
.contact-form--on-light .ginput_container textarea::placeholder {
	color: rgba(11, 11, 12, 0.35);
}
.contact-form--on-light .ginput_container input:focus,
.contact-form--on-light .ginput_container textarea:focus,
.contact-form--on-light .ginput_container select:focus {
	border-color: rgba(11, 11, 12, 0.5) !important;
	background: rgba(11, 11, 12, 0.06) !important;
}
.contact-form--on-light .gform_button,
.contact-form--on-light .gform_next_button,
.contact-form--on-light input[type="submit"].gform_button {
	background: var(--brand-ink, #0B0B0C) !important;
	color: var(--paper, #F4F7FB) !important;
}
.contact-form--on-light .gform_button:hover,
.contact-form--on-light input[type="submit"].gform_button:hover {
	background: #1a1a1c !important;
}
.contact-form--on-light .gfield_validation_message,
.contact-form--on-light .validation_message {
	color: #b3372f;
}
.contact-form--on-light .gform_validation_errors {
	background: rgba(11, 11, 12, 0.04);
	border-color: rgba(179, 55, 47, 0.4);
	color: var(--ink, #0B0B0C);
}
.contact-form--on-light .gform_confirmation_message {
	color: #2e7d32;
}
.contact-form--on-light .gfield--type-html,
.contact-form--on-light .gfield_html {
	color: rgba(11, 11, 12, 0.7);
}