:root {
  --bg: #ffffff;
  --surface: #fffdf9;
  --surface-strong: #fff7eb;
  --text: #102331;
  --muted: #4e5a64;
  --line: rgba(16, 35, 49, 0.14);
  --blue: #487595;
  --teal: #75b6b0;
  --sand: #eebc71;
  --rose: #d9a7b5;
  --coral: #f07e45;
  --green: #337a5d;
  --header-height: 92px;
  --section-pad: 120px;
  --container: 1240px;
  --services-height: calc(100vh - var(--header-height));
  --service-panel-width: min(88vw, 1320px);
  --service-slide-gutter: 30px;
  --service-bevel-width: clamp(10px, 1.4vw, 16px);
  --service-content-offset: clamp(20px, 2.4vw, 36px);
  --service-plastic-rib-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(16, 35, 49, 0.05)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18) 0 1px,
      rgba(255, 255, 255, 0.04) 1px 4px,
      rgba(16, 35, 49, 0.05) 4px 5px,
      transparent 5px 9px
    );
  --service-plastic-rib-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(16, 35, 49, 0.08);
  --shadow: 0 24px 80px rgba(16, 35, 49, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

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

button {
  cursor: pointer;
}

/* Brand cursor: desktop-only custom cursor using the Lytco icon. */
@media (any-hover: hover) and (any-pointer: fine) {
  body.has-brand-cursor,
  body.has-brand-cursor * {
    cursor: none;
  }

  body.has-brand-cursor input,
  body.has-brand-cursor textarea,
  body.has-brand-cursor select,
  body.has-brand-cursor iframe {
    cursor: auto;
  }
}

.brand-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 140ms ease,
    filter 180ms ease;
  will-change: transform;
}

.brand-cursor.is-visible {
  opacity: 1;
}

.brand-cursor__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #477595;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.88),
    0 6px 14px rgba(16, 35, 49, 0.22);
  transform: translate(-50%, -50%);
}

.brand-cursor__icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 36px;
  height: 36px;
  opacity: 0.9;
  filter: drop-shadow(0 8px 14px rgba(16, 35, 49, 0.18));
  transform-origin: center;
  transition: filter 160ms ease;
  will-change: transform;
}

.brand-cursor__icon-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-cursor__segment {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.brand-cursor.is-button-hover {
  filter: drop-shadow(0 0 18px rgba(117, 182, 176, 0.34));
}

.brand-cursor.is-button-hover .brand-cursor__dot {
  background: #477595;
}

@media (any-hover: none) and (pointer: coarse) {
  .brand-cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-cursor {
    transition: none;
  }

  .brand-cursor__icon {
    transition: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(16, 35, 49, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin: 0 auto;
}

.site-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  transform-origin: left center;
  transition: transform 0.32s ease;
}

.site-logo-icon-wrap {
  width: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo-icon-spin {
  display: block;
  width: 100%;
  transform-origin: center center;
}

.site-logo-icon {
  display: block;
  width: 100%;
  height: auto;
}

.site-logo-text {
  display: block;
  width: 86px;
  height: auto;
}

.header-menu-toggle {
  display: none;
}

.site-logo-icon-spin.spin-in {
  animation: logoSpinIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.site-logo-icon-spin.spin-back {
  animation: logoSpinBack 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-logo-icon-spin.spin-forward {
  animation: logoSpinForward 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes logoSpinIn {
  0% {
    opacity: 0;
    transform: rotate(0deg) scale(0.82);
    filter: blur(4px);
  }
  70% {
    opacity: 1;
    transform: rotate(332deg) scale(1.04);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: rotate(360deg) scale(1);
    filter: blur(0);
  }
}

@keyframes logoSpinBack {
  0% {
    transform: rotate(0deg);
  }
  78% {
    transform: rotate(-330deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes logoSpinForward {
  0% {
    transform: rotate(0deg);
  }
  78% {
    transform: rotate(330deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.header-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.header-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-nav a.is-active {
  color: var(--blue);
}

.nav-indicator {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--sand);
  transform: translateX(0);
  transition:
    transform 0.28s ease,
    width 0.28s ease,
    opacity 0.2s ease;
  opacity: 0;
}

.page-main {
  padding-top: 0;
}

.section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

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

.section-heading-row {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}

.section-heading-row--center {
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Anton SC", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
  max-width: 12ch;
}

.section-text,
.cta-text,
.pricing-hook {
  margin: 0;
  max-width: 44rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.why-section {
  min-height: auto;
  padding: calc(var(--header-height) + 15px) 0 15px;
  background: var(--blue);
  overflow: visible;
  font-family: "Space Mono", monospace;
}

.why-section h1,
.why-section h2,
.why-section h3,
.why-section p,
.why-section button,
.why-section .eyebrow,
.services-section h1,
.services-section h2,
.services-section h3,
.services-section p,
.services-section button,
.services-section a,
.services-section li {
  font-family: "Space Mono", monospace;
}

.swipe-hint {
  display: none;
}

.why-shell {
  --why-grid-height: calc(100dvh - var(--header-height) - 30px);
  --why-slide-exit-duration: 1050ms;
  --why-slide-enter-duration: 1250ms;
  --why-slide-enter-delay: 840ms;
  display: block;
  overflow: visible;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: stretch;
  justify-content: center;
  height: var(--why-grid-height);
  overflow: visible;
}

.why-stage {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: visible;
  width: 100%;
}

.why-stage--left .why-slide {
  padding-left: 96px;
}

.why-stage--right .why-slide {
  padding-right: 96px;
}

.why-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  transform: scale(0.84);
  pointer-events: none;
  will-change: opacity, transform;
}

.why-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.why-slide.is-entering {
  z-index: 1;
}

.why-slide.is-leaving {
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.why-stage--left .why-slide.is-leaving.is-forward {
  animation: whySlideExitDown var(--why-slide-exit-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.why-stage--right .why-slide.is-leaving.is-forward {
  animation: whySlideExitUp var(--why-slide-exit-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.why-stage--left .why-slide.is-entering.is-forward {
  animation:
    whySlideEnterFromTop var(--why-slide-enter-duration) cubic-bezier(0.22, 1, 0.36, 1)
    var(--why-slide-enter-delay) both;
}

.why-stage--right .why-slide.is-entering.is-forward {
  animation:
    whySlideEnterFromBottom var(--why-slide-enter-duration) cubic-bezier(0.22, 1, 0.36, 1)
    var(--why-slide-enter-delay) both;
}

.why-stage--left .why-slide.is-leaving.is-backward {
  animation: whySlideExitUp var(--why-slide-exit-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.why-stage--right .why-slide.is-leaving.is-backward {
  animation: whySlideExitDown var(--why-slide-exit-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.why-stage--left .why-slide.is-entering.is-backward {
  animation:
    whySlideEnterFromBottom var(--why-slide-enter-duration) cubic-bezier(0.22, 1, 0.36, 1)
    var(--why-slide-enter-delay) both;
}

.why-stage--right .why-slide.is-entering.is-backward {
  animation:
    whySlideEnterFromTop var(--why-slide-enter-duration) cubic-bezier(0.22, 1, 0.36, 1)
    var(--why-slide-enter-delay) both;
}

.why-art {
  padding: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.why-copy {
  display: grid;
  gap: 18px;
  height: 100%;
}

.why-connectivity-svg {
  width: min(100%, 430px);
  height: auto;
  display: block;
  overflow: visible;
  pointer-events: none;
}

.why-copy--graphic {
  position: relative;
  align-items: center;
  justify-items: center;
}

.why-copy__graphic {
  width: auto;
  max-width: min(100%, 523px);
  max-height: 100%;
  height: auto;
  display: block;
}

/* Why Lytco magnetic hover: JS applies this only to the four static right-side block SVGs. */
.why-stage--right .why-copy__graphic[data-why-magnetic-graphic="true"] {
  --why-magnet-x: 0px;
  --why-magnet-y: 0px;
  --why-magnet-rotate: 0deg;
  --why-magnet-skew-x: 0deg;
  --why-magnet-skew-y: 0deg;
  --why-magnet-scale: 1;
  transform:
    translate3d(var(--why-magnet-x), var(--why-magnet-y), 0)
    rotate(var(--why-magnet-rotate))
    skew(var(--why-magnet-skew-x), var(--why-magnet-skew-y))
    scale(var(--why-magnet-scale));
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  transition: filter 280ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.why-stage--right .why-copy__graphic[data-why-magnetic-rendered="true"] {
  opacity: 0;
}

.why-copy__magnetic-canvas {
  position: absolute;
  z-index: 1;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition:
    opacity 180ms ease,
    filter 240ms ease;
}

.why-copy__magnetic-canvas.is-ready {
  opacity: 1;
}

@media (any-hover: hover) and (any-pointer: fine) and (prefers-reduced-motion: no-preference) {
  .why-stage--right .why-slide.is-active .why-copy__graphic[data-why-magnetic-graphic="true"],
  .why-stage--right .why-slide.is-active .why-copy__magnetic-canvas.is-ready {
    will-change: transform, filter;
  }

  .why-stage--right .why-copy__magnetic-canvas[data-why-magnetic-active="true"] {
    filter:
      drop-shadow(0 26px 42px rgba(5, 22, 36, 0.16))
      saturate(1.04)
      contrast(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-stage--right .why-copy__graphic[data-why-magnetic-graphic="true"] {
    opacity: 1;
    transform: none;
    filter: none;
    will-change: auto;
  }

  .why-copy__magnetic-canvas {
    display: none;
  }
}

.why-panel {
  --why-panel-font-size: clamp(0.92rem, 1.4vw, 1.1rem);
  --why-panel-gap: 22px;
  --why-panel-line-height: 1.52;
  display: grid;
  align-content: center;
  gap: var(--why-panel-gap);
  height: 100%;
  padding: 0;
  text-align: justify;
  text-justify: inter-word;
}

.why-panel p {
  margin: 0;
  font-size: var(--why-panel-font-size);
  line-height: var(--why-panel-line-height);
  color: rgba(255, 255, 255, 0.9);
  text-align: inherit;
  text-align-last: auto;
  hyphens: auto;
}

.why-panel__typed {
  display: inline;
}

.why-panel__char {
  opacity: 0;
  transition: opacity 0.08s linear;
}

.why-panel__char.is-cursor-anchor {
  position: relative;
}

.why-panel__char.is-cursor-anchor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.12em);
  width: 0.075em;
  height: 0.92em;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-48%);
  animation: whyCaretBlink 1s steps(1, end) infinite;
  pointer-events: none;
}

.why-panel__char.is-visible,
.why-panel.is-typing-complete .why-panel__char {
  opacity: 1;
}

@keyframes whyCaretBlink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.why-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 40px;
  height: 96px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 3.8rem;
  line-height: 0.8;
  pointer-events: auto;
  text-shadow: 0 10px 28px rgba(16, 35, 49, 0.22);
  transform: translateY(-50%);
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
}

.why-slider__nav--prev {
  left: 0;
}

.why-slider__nav--next {
  right: 0;
}

.why-slider__nav:hover,
.why-slider__nav:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

.why-slider__nav--prev:hover,
.why-slider__nav--prev:focus-visible {
  transform: translateY(-50%) translateX(-4px);
}

.why-slider__nav--next:hover,
.why-slider__nav--next:focus-visible {
  transform: translateY(-50%) translateX(4px);
}

.why-slider__nav:disabled {
  opacity: 0.48;
  cursor: wait;
  transform: translateY(-50%);
}

@keyframes whySlideExitDown {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(18%) scale(0.94);
  }
}

@keyframes whySlideExitUp {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-18%) scale(0.94);
  }
}

@keyframes whySlideEnterFromTop {
  0% {
    opacity: 0;
    transform: translateY(-18%) scale(0.94);
  }

  58% {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }

  78% {
    opacity: 1;
    transform: translateY(0) scale(0.988);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes whySlideEnterFromBottom {
  0% {
    opacity: 0;
    transform: translateY(18%) scale(0.94);
  }

  58% {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }

  78% {
    opacity: 1;
    transform: translateY(0) scale(0.988);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-slider__nav {
    transition: none;
  }
}

.services-section {
  padding: 0;
  background: transparent;
  font-family: "Space Mono", monospace;
}

.services-shell {
  display: grid;
  gap: 0;
  width: 100%;
}

.services-section .section-shell {
  width: 100%;
  max-width: none;
}

.services-showcase {
  --services-accent: var(--coral);
  --services-accent-glow: rgba(240, 126, 69, 0.4);
  --services-wheel-angle: 0deg;
  position: relative;
  height: var(--services-height);
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.services-showcase[data-active-service="intro"] {
  --services-accent: var(--coral);
  --services-accent-glow: rgba(240, 126, 69, 0.42);
}

.services-showcase[data-active-service="website"] {
  --services-accent: var(--teal);
  --services-accent-glow: rgba(117, 182, 176, 0.42);
}

.services-showcase[data-active-service="dashboard"] {
  --services-accent: var(--rose);
  --services-accent-glow: rgba(217, 167, 181, 0.42);
}

.services-showcase[data-active-service="leads"] {
  --services-accent: var(--sand);
  --services-accent-glow: rgba(238, 188, 113, 0.42);
}

.services-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.services-wheel-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 110vw;
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.services-wheel {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(var(--services-wheel-angle));
  transform-origin: center;
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.services-status {
  display: none;
}

.services-slide__mobile-graphic {
  display: block;
  width: min(78%, 260px);
  height: auto;
}

.services-slides {
  position: relative;
  z-index: 2;
  height: 100%;
}

.services-slide {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    visibility 0s linear 260ms;
}

.services-slide.is-active,
.services-slide.is-entering,
.services-slide.is-leaving {
  visibility: visible;
  transition-delay: 0s;
}

.services-slide.is-active,
.services-slide.is-entering {
  opacity: 1;
}

.services-slide.is-active {
  pointer-events: auto;
}

.services-slide.is-leaving {
  opacity: 0;
}

.services-slide__layout {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  height: 100%;
  width: 70%;
  max-width: 980px;
  margin: 0 auto;
  margin-top: clamp(38px, 6vh, 55px);
  gap: clamp(12px, 1.8vh, 16px);
  padding:
    clamp(36px, 5vh, 52px)
    clamp(28px, 4vw, 54px)
    clamp(72px, 8vh, 128px);
}

.services-slide--intro .services-slide__layout {
  grid-template-rows: 1fr;
  place-items: center;
  gap: 0;
}

.services-slide__media {
  display: grid;
  align-self: end;
  justify-self: center;
  width: min(52vw, 500px, calc((100vh - var(--header-height) - 280px) * 1.6));
}

.services-slide--intro .services-slide__media {
  width: min(52vw, 460px, calc((100vh - var(--header-height) - 280px) * 1.6));
  align-self: center;
  justify-items: center;
  align-content: center;
}

.services-slide__media-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.services-slide__media-frame::after {
  display: none;
}

.service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {
  .services-slide__media:hover {
    z-index: 4;
  }

  .services-slide__media:hover .services-slide__media-frame {
  transform: translateY(52px) scale(1.6);
  }
}

.services-slide__summary {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(0.9rem, 2.5vh, 1.18rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  text-wrap: balance;
}

.services-slide__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(12px, 2vw, 24px);
}

.services-slide__copy,
.services-slide__details {
  min-width: 0;
}

.services-slide__copy {
  display: grid;
  gap: clamp(16px, 2.6vh, 22px);
  align-content: start;
  justify-self: end;
  width: min(100%, 36ch);
  max-width: 36ch;
  text-align: justify;
}

.services-slide__copy p {
  margin: 0;
  width: 100%;
  font-size: clamp(0.82rem, 2.2vh, 1.02rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
  text-align: justify;
  text-align-last: right;
}

.services-slide__actions {
  display: flex;
  flex-wrap: wrap;
  justify-self: center;
  justify-content: center;
  width: fit-content;
  gap: 12px;
}

.services-slide__actions .button {
  width: fit-content;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.services-slide__actions .button.button--primary {
  background: #ffffff;
  color: var(--text);
}

.services-slide__details {
  justify-self: end;
  width: min(100%, 420px);
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.services-slide__heading-art,
.services-mobile-only {
  display: none;
}

.services-slide__list {
  display: grid;
  gap: clamp(10px, 1.6vh, 14px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-slide__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  font-size: clamp(0.78rem, 2.0vh, 0.95rem);
  line-height: 1.5;
  color: #ffffff;
  text-align: left;
}

.services-slide__list li::before {
  content: "";
  position: static;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
  transform: none;
  flex-shrink: 0;
  margin-top: 0.42em;
}

.services-nav {
  position: absolute;
  top: 50%;
  bottom: auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  transform: translateY(-50%);
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.services-nav:hover,
.services-nav:focus-visible {
  transform: translateY(calc(-50% - 2px));
}

.services-nav:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.48);
  outline-offset: 2px;
}

.services-nav:disabled {
  opacity: 0.45;
  cursor: default;
  transform: translateY(-50%);
}

.services-nav--prev {
  left: clamp(180px, 12vw, 300px);
}

.services-nav--next {
  right: clamp(180px, 12vw, 300px);
}

.services-nav__image {
  display: block;
  width: auto;
  height: clamp(50px, 5vw, 72px);
  transform: rotate(180deg);
}

.how-section {
  min-height: calc(100vh - var(--header-height));
  padding: 0;
  display: grid;
  align-items: center;
  background: var(--teal);
  font-family: "Space Mono", monospace;
}

.how-shell {
  display: grid;
  gap: 0;
  justify-items: center;
}

.how-intro {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(100%, 920px);
  color: #ffffff;
  text-align: center;
}

.how-heading-art {
  display: block;
  width: min(100%, 520px);
  height: auto;
}

.how-intro__copy {
  display: grid;
  gap: 12px;
  width: min(100%, 760px);
  text-align: justify;
  text-justify: inter-word;
}

.how-intro__copy p {
  margin: 0;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.76;
  color: rgba(255, 255, 255, 0.92);
  text-align: justify;
}

.how-intro__copy p:first-child {
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
}

.tv-stage-wrap {
  width: min(100%, 920px);
  display: block;
}

@media (min-width: 1101px) {
  .how-shell {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
    justify-items: stretch;
  }

  .how-intro {
    width: 100%;
    max-width: 300px;
    justify-items: start;
    text-align: left;
  }

  .how-heading-art {
    width: min(100%, 320px);
  }

  .how-intro__copy {
    width: 100%;
    max-width: 300px;
  }

  .tv-stage-wrap {
    width: 100%;
    max-width: 780px;
  }
}

.tv-stage {
  position: relative;
  --tv-screen-top: 14.07%;
  --tv-screen-left: 2.85%;
  --tv-screen-width: 82%;
  --tv-screen-height: 61%;
  --tv-knob-top: 29.05%;
  --tv-knob-right: 4.81%;
  --tv-knob-size: 10%;
  --tv-power-top: 43.6%;
  --tv-power-right: 9.3%;
  --tv-power-size: 4.6%;
  --tv-audio-right: 8.15%;
  --tv-audio-bottom: 25.79%;
  --tv-audio-size: clamp(24px, 3.48%, 32px);
  width: 100%;
  aspect-ratio: 1.13 / 1;
  overflow: visible;
}

.tv-screen-video {
  position: absolute;
  top: var(--tv-screen-top);
  left: var(--tv-screen-left);
  width: var(--tv-screen-width);
  height: var(--tv-screen-height);
  overflow: hidden;
  background: #101010;
  isolation: isolate;
}

.tv-screen-video video,
.tv-game-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.tv-screen-video video {
  object-fit: cover;
  filter: sepia(0.68) saturate(0.72) contrast(1.12) brightness(0.94);
  transition: opacity 0.28s ease;
}

.tv-game-frame {
  border: 0;
  opacity: 0;
  pointer-events: none;
  background: #dec894;
  transition: opacity 0.28s ease;
}

.tv-stage.is-game-active .tv-screen-video video {
  opacity: 0;
  pointer-events: none;
}

.tv-stage.is-tv-off .tv-screen-video video {
  opacity: 0;
  pointer-events: none;
}

.tv-stage.is-game-active .tv-game-frame {
  opacity: 1;
  pointer-events: auto;
}

.tv-knob-button {
  position: absolute;
  top: var(--tv-knob-top);
  right: var(--tv-knob-right);
  z-index: 3;
  width: var(--tv-knob-size);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.tv-mobile-icon {
  display: none;
}

.tv-knob-button::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 248, 221, 0);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.tv-knob-button:hover::after,
.tv-knob-button:focus-visible::after,
.tv-stage.is-game-active .tv-knob-button::after {
  box-shadow:
    0 0 0 2px rgba(255, 248, 221, 0.5),
    0 0 22px rgba(255, 248, 221, 0.24);
  transform: scale(0.98);
}

.tv-knob-button:focus-visible {
  outline: none;
}

.tv-knob-button:disabled {
  cursor: default;
  opacity: 0.82;
}

.tv-stage.is-tv-off .tv-audio-toggle,
.tv-stage.is-tv-transitioning .tv-audio-toggle {
  opacity: 0;
  pointer-events: none;
}

.tv-power-button {
  position: absolute;
  top: var(--tv-power-top);
  right: var(--tv-power-right);
  z-index: 4;
  width: var(--tv-power-size);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  opacity: 0;
}

.tv-power-button::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 116, 94, 0);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.tv-power-button:hover::after,
.tv-power-button:focus-visible::after,
.tv-stage.is-tv-off .tv-power-button::after {
  box-shadow:
    0 0 0 2px rgba(255, 116, 94, 0.56),
    0 0 16px rgba(255, 116, 94, 0.36);
  transform: scale(0.96);
}

.tv-power-button:focus-visible {
  outline: none;
}

.tv-audio-toggle {
  position: absolute;
  right: var(--tv-audio-right);
  bottom: var(--tv-audio-bottom);
  z-index: 4;
  display: grid;
  place-items: center;
  width: var(--tv-audio-size);
  height: var(--tv-audio-size);
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(16, 35, 49, 0.74);
  color: transparent;
  font-size: 0;
  line-height: 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  opacity: 0;
}

.tv-audio-toggle::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  opacity: 0.42;
  transform: scale(0.92);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.tv-audio-toggle:hover,
.tv-audio-toggle:focus-visible {
  transform: scale(1.04);
  background: rgba(16, 35, 49, 0.88);
  border-color: rgba(255, 255, 255, 0.55);
}

.tv-audio-toggle:focus-visible {
  outline: none;
}

.tv-audio-toggle[aria-pressed="true"] {
  background: rgba(255, 247, 235, 0.94);
  border-color: rgba(16, 35, 49, 0.18);
  box-shadow: 0 10px 24px rgba(16, 35, 49, 0.16);
}

.tv-audio-toggle[aria-pressed="true"]::before {
  background: var(--text);
  opacity: 1;
  transform: scale(1);
}

.tv-callout-hints {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

.tv-callout {
  position: absolute;
  left: calc(100% + 93px);
  width: 210px;
  margin: 0;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.tv-callout::before {
  content: "";
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.94);
  transform-origin: right center;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.16);
}

.tv-callout--channel {
  top: 34.2%;
}

.tv-callout--channel::before {
  width: 122px;
  transform: translateY(-50%);
}

.tv-callout--power {
  top: 45.2%;
}

.tv-callout--power::before {
  width: 156px;
  transform: translateY(-50%);
}

.tv-callout--sound {
  top: 71.8%;
}

.tv-callout--sound::before {
  width: 144px;
  transform: translateY(-50%);
}

.tv-screen-video::before,
.tv-screen-video::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tv-screen-video::before {
  inset: -22%;
  z-index: 1;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.95'/%3E%3C/svg%3E");
  background-size: 170px 170px;
  mix-blend-mode: soft-light;
  animation: tvGrainShift 220ms steps(2) infinite;
}

.tv-stage.is-tv-off .tv-screen-video::before,
.tv-stage.is-tv-off .tv-screen-video::after,
.tv-stage.is-tv-transitioning .tv-screen-video::before,
.tv-stage.is-tv-transitioning .tv-screen-video::after {
  opacity: 0;
}

.tv-screen-video::after {
  inset: 0;
  z-index: 2;
  opacity: 0.42;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 247, 216, 0.12) 0 1px,
      rgba(0, 0, 0, 0) 1px 3px
    ),
    radial-gradient(circle at 50% 42%, rgba(255, 237, 184, 0.12), rgba(0, 0, 0, 0) 58%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 48%, rgba(18, 13, 9, 0.34) 100%);
  mix-blend-mode: screen;
  animation: tvFlicker 2.8s linear infinite;
}

.tv-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

@keyframes tvGrainShift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-8%, 6%); }
  40% { transform: translate(7%, -10%); }
  60% { transform: translate(-6%, 9%); }
  80% { transform: translate(10%, -7%); }
  100% { transform: translate(0, 0); }
}

@keyframes tvFlicker {
  0%, 100% { opacity: 0.38; }
  10% { opacity: 0.46; }
  22% { opacity: 0.32; }
  36% { opacity: 0.5; }
  52% { opacity: 0.34; }
  68% { opacity: 0.44; }
  84% { opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
  .tv-screen-video::before,
  .tv-screen-video::after {
    animation: none;
  }
}

.pricing-section {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.pricing-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.pricing-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3) 0.1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0.1px, transparent 1px);
  background-size: 2px 2px;
  background-position: 0 0;
}

.pricing-video-bg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.pricing-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.pricing-shell .eyebrow,
.pricing-shell h2 {
  color: var(--text);
}

.pricing-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.pricing-stage {
  position: relative;
  min-height: 540px;
}

.pricing-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(22%) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.34s ease;
}

.pricing-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.pricing-card__inner {
  position: relative;
  display: grid;
  gap: 26px;
  height: 100%;
  padding: 34px;
  border: 1px solid rgba(16, 35, 49, 0.14);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.pricing-card__inner--featured {
  background: rgba(255, 253, 249, 0.94);
}

.pricing-card__inner--muted {
  background: rgba(243, 238, 229, 0.92);
}

.pricing-save-text {
  margin: -8px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.pricing-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(72, 117, 149, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.pricing-card h3 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.pricing-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  width: fit-content;
  padding: 6px;
  border: 1px solid rgba(16, 35, 49, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

.pricing-toggle button {
  border: 0;
  padding: 12px 18px;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-toggle button.is-active {
  background: var(--text);
  color: #fff;
}

.pricing-panel {
  display: none;
  grid-template-columns: minmax(220px, 0.72fr) minmax(280px, 1fr);
  gap: 16px 30px;
  align-items: start;
}

.pricing-panel.is-active {
  display: grid;
}

.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  grid-column: 1;
}

.pricing-offer-stack {
  display: grid;
  gap: 6px;
  grid-column: 1;
}

.pricing-price-row strong {
  font-family: "Anton SC", Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.9;
}

.pricing-price-row span {
  padding-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-price-row--promo {
  align-items: center;
}

.pricing-price-row--promo .pricing-price-compare {
  padding-bottom: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--coral);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: currentColor;
  opacity: 0.95;
}

.pricing-promo-note {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
}

.pricing-card__actions {
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
  margin-top: auto;
  padding-top: 12px;
}

.pricing-card__cta {
  min-width: 220px;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-column: 2;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
}

@media (min-width: 901px) {
  .pricing-stage {
    min-height: 500px;
  }

  .pricing-card__inner {
    grid-template-columns: minmax(300px, 1.1fr) minmax(270px, 1fr);
    gap: 16px 36px;
    padding: 30px 34px;
    align-content: center;
    align-items: start;
  }

  .pricing-card__inner--featured {
    padding-bottom: 92px;
  }

  .pricing-card__inner--featured .pricing-card__actions {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .pricing-card__inner > .pricing-badge,
  .pricing-card__inner > h3,
  .pricing-card__inner > .pricing-toggle,
  .pricing-card__inner > .pricing-save-text,
  .pricing-card__inner .pricing-offer-stack,
  .pricing-card__inner .pricing-price-row {
    grid-column: 1;
    justify-self: end;
    padding-right: 15px;
    text-align: right;
  }

  .pricing-card__inner .pricing-panel.is-active {
    display: contents;
  }

  .pricing-card__inner .pricing-price-row {
    justify-content: flex-end;
  }

  .pricing-card__inner .pricing-offer-stack {
    text-align: right;
  }

  .pricing-card__inner .pricing-list {
    grid-column: 2;
    grid-row: 1 / span 5;
    justify-self: start;
    align-self: center;
    margin-top: 0;
    padding-left: 22px;
    border-left: 1px solid rgba(16, 35, 49, 0.14);
    text-align: left;
  }
}

.pricing-nav,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(16, 35, 49, 0.16);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.cta-section {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding-bottom: 140px;
  background: var(--blue);
}

.cta-shell {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  padding: clamp(30px, 5vw, 50px);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-shell h2 {
  max-width: none;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button--primary {
  background: var(--text);
  color: #fff;
}

.button--secondary {
  background: transparent;
}

.launch-offer-dock {
  --launch-offer-tab-width: clamp(228px, 22vw, 280px);
  --launch-offer-tab-height: 56px;
  --launch-offer-panel-width: min(calc(100vw - 40px), 1120px);
  position: fixed;
  top: calc(var(--header-height) - 1px);
  left: 50%;
  z-index: 995;
  width: min(calc(100% - 40px), var(--container));
  height: var(--launch-offer-tab-height);
  transform: translateX(-50%);
  pointer-events: none;
}

.launch-offer-dock.is-hidden {
  display: none;
}

.launch-offer-dock__tab {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: var(--launch-offer-tab-width);
  height: var(--launch-offer-tab-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 46px 0 20px;
  border: 1px solid rgba(16, 35, 49, 0.14);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, var(--coral), #d86a37 70%, #c95f30);
  box-shadow: 0 18px 42px rgba(16, 35, 49, 0.14);
  color: #ffffff;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: auto;
}

.launch-offer-dock__tab span {
  display: block;
  max-width: none;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.launch-offer-dock__dismiss {
  position: absolute;
  top: 50%;
  left: auto;
  right: calc(50% - (var(--launch-offer-tab-width) / 2) + 8px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}

.launch-offer-dock__dismiss:hover,
.launch-offer-dock__dismiss:focus-visible {
  background: rgba(255, 255, 255, 0.32);
}

.launch-offer-dock__dismiss:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}

.launch-offer-dock__tab:hover,
.launch-offer-dock__tab:focus-visible {
  background: linear-gradient(180deg, #ff8c51, var(--coral) 72%, #c95f30);
}

.launch-offer-dock__tab:focus-visible {
  outline: 2px solid rgba(72, 117, 149, 0.32);
  outline-offset: 3px;
}

.launch-offer-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: var(--launch-offer-panel-width);
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: start;
  padding: 22px 22px 20px;
  border: 1px solid rgba(16, 35, 49, 0.12);
  border-top: 0;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 26px 60px rgba(16, 35, 49, 0.14);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, -16px, 0);
  transition:
    opacity 0.22s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.34s;
}

.launch-offer-dock.is-open .launch-offer-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
  transition-delay: 0s;
}

.launch-offer-panel__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(16, 35, 49, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1;
}

.launch-offer-panel__eyebrow {
  margin: 0;
  font-family: "Space Mono", monospace;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

.launch-offer-panel__title {
  margin: 0;
  max-width: 48ch;
  font-size: clamp(1.7rem, 1.95vw, 2.16rem);
  line-height: 1.02;
}

.launch-offer-panel__lead {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.launch-offer-panel__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(16, 35, 49, 0.1);
}

.launch-offer-panel__copy-group,
.launch-offer-panel__section {
  display: grid;
  gap: 8px;
}

.launch-offer-panel__copy {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.launch-offer-panel__divider {
  height: 1px;
  background: rgba(16, 35, 49, 0.1);
}

.launch-offer-panel__section-title,
.launch-offer-panel__note {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.launch-offer-panel__section-title {
  font-size: 0.94rem;
  line-height: 1.35;
}

.launch-offer-panel__list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-offer-panel__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.48;
}

.launch-offer-panel__note {
  margin-top: auto;
  font-size: 0.95rem;
  line-height: 1.35;
}

.launch-offer-panel__list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.launch-offer-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.launch-offer-panel__actions .button {
  flex: 1 1 0;
  min-width: 0;
}

body.modal-open {
  overflow: hidden;
}

.footer-panel-wrap {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-panel {
  display: grid;
  gap: 18px;
  padding: 26px 0 30px;
}

.footer-contact-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition:
    max-height 0.38s ease,
    opacity 0.24s ease,
    transform 0.32s ease,
    padding 0.32s ease;
  padding: 0 28px;
  border: 1px solid transparent;
  background: transparent;
  position: relative;
}

.footer-panel.contact-open .footer-contact-block {
  max-height: 680px;
  opacity: 1;
  transform: translateY(0);
  padding: 28px;
  border-color: rgba(16, 35, 49, 0.12);
  background: #fffdf9;
}

.footer-contact-close {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 35, 49, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.footer-contact-details {
  display: flex;
  align-items: center;
}

.footer-contact-details-inner {
  display: grid;
  gap: 10px;
  max-width: 320px;
}

.footer-contact-kicker {
  margin: 0 0 6px;
  font-family: "Anton SC", Impact, sans-serif;
  font-size: 1.9rem;
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue);
}

.footer-contact-kicker--secondary {
  margin-top: 14px;
  color: var(--coral);
}

.footer-contact-details p,
.footer-contact-details a {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-contact-details a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact-form {
  display: grid;
  gap: 14px;
}

.footer-contact-context {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(72, 117, 149, 0.10);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-field {
  display: grid;
  gap: 7px;
}

.footer-contact-field label {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-field input,
.footer-contact-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 49, 0.12);
  background: #ffffff;
  color: var(--text);
  padding: 13px 14px;
  font-size: 0.98rem;
  outline: none;
}

.footer-contact-field textarea {
  min-height: 126px;
  resize: vertical;
}

.footer-contact-field input:focus,
.footer-contact-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(72, 117, 149, 0.12);
}

.footer-contact-actions {
  display: flex;
  justify-content: flex-start;
}

.footer-contact-submit {
  min-width: 140px;
}

.footer-contact-status {
  min-height: 1.4em;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-contact-status.is-success {
  color: var(--green);
}

.footer-contact-status.is-error {
  color: #9d3a2f;
}

.footer-contact-status.is-pending {
  color: var(--blue);
}

.footer-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-sep {
  color: rgba(16, 35, 49, 0.34);
}

.footer-link-btn {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

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

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 1350;
  display: none;
}

.apply-modal.is-open {
  display: block;
}

.apply-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 35, 49, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.apply-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  overflow: auto;
  border-radius: 28px;
  background: #fffdf9;
  border: 1px solid rgba(16, 35, 49, 0.12);
  box-shadow: 0 28px 80px rgba(16, 35, 49, 0.18);
}

.apply-modal__close {
  position: sticky;
  top: 8px;
  z-index: 3;
  display: grid;
  place-items: center;
  margin: 8px 12px -34px auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 35, 49, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.apply-modal__header {
  padding: 28px 28px 0;
}

.apply-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
}

.apply-modal__header h2 {
  margin: 0 0 12px;
  max-width: none;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.92;
}

.apply-modal__intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 60ch;
}

.apply-progress {
  margin-top: 24px;
}

.apply-progress__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: rgba(16, 35, 49, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.apply-progress__bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(16, 35, 49, 0.08);
  overflow: hidden;
}

.apply-progress__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 50%, var(--sand) 100%);
  transition: width 0.25s ease;
}

.apply-form {
  padding: 18px 28px 34px;
}

.apply-form__status {
  min-height: 24px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.apply-form__status.is-error {
  color: #9d3a2f;
}

.apply-form__status.is-success {
  color: var(--green);
}

.apply-form__status.is-pending {
  color: var(--blue);
}

.apply-step {
  display: none;
}

.apply-step.is-active {
  display: block;
}

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

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apply-field--full {
  grid-column: 1 / -1;
}

.apply-field label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.apply-field label span {
  color: var(--coral);
}

.apply-field input,
.apply-field select,
.apply-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 49, 0.12);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(72, 117, 149, 0.12);
}

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

.apply-field input::placeholder,
.apply-field textarea::placeholder {
  color: rgba(16, 35, 49, 0.42);
}

.conditional-field {
  display: none;
}

.conditional-field.is-visible {
  display: flex;
}

.apply-word-count {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.apply-review__intro {
  margin: 0 0 16px;
  color: var(--muted);
}

.apply-review__grid {
  display: grid;
  gap: 12px;
}

.apply-review__item {
  padding: 14px 16px;
  border: 1px solid rgba(16, 35, 49, 0.12);
  border-radius: 16px;
  background: rgba(255, 247, 235, 0.45);
}

.apply-review__label {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apply-review__value {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.apply-form__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.apply-form__actions .button {
  min-width: 140px;
}

#applySubmitBtn,
#freeWebsiteSubmitBtn {
  display: none;
}

.apply-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 26px) calc(50% - 3px),
    calc(100% - 20px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.apply-field select:invalid {
  color: rgba(16, 35, 49, 0.42);
}

.apply-success-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.apply-success-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.apply-success-toast__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 280px;
  max-width: min(92vw, 460px);
  padding: 16px 18px;
  border-radius: 16px;
  background: #fffdf9;
  border: 1px solid rgba(72, 117, 149, 0.28);
  box-shadow: 0 20px 40px rgba(16, 35, 49, 0.14);
  color: var(--text);
  text-align: center;
}

.apply-success-toast__inner strong {
  font-size: 0.98rem;
  color: var(--blue);
}

.apply-success-toast__inner span {
  font-size: 0.9rem;
  color: var(--muted);
}

.website-enquiry-modal .apply-modal__dialog {
  width: min(760px, calc(100vw - 28px));
}

.website-enquiry-package {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  margin-top: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(72, 117, 149, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.website-enquiry-form__actions {
  justify-content: center;
}

.website-enquiry-form__actions .button {
  min-width: 200px;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
}

.legal-modal.is-open {
  display: block;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 35, 49, 0.45);
  backdrop-filter: blur(10px);
}

.legal-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  overflow: auto;
  background: #fffdf9;
  border: 1px solid rgba(16, 35, 49, 0.12);
  box-shadow: 0 28px 80px rgba(16, 35, 49, 0.18);
}

.legal-modal__content {
  padding: 28px 28px 34px;
}

.legal-modal__close {
  position: sticky;
  top: 8px;
  z-index: 3;
  display: grid;
  place-items: center;
  margin: 8px 12px -34px auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 35, 49, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.legal-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
}

.legal-modal__content h2 {
  margin: 0 0 8px;
  max-width: none;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.92;
}

.legal-modal__updated {
  margin: 0 0 24px;
  color: rgba(16, 35, 49, 0.56);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.legal-modal__content h3 {
  margin: 24px 0 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.legal-modal__content p,
.legal-modal__content li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-modal__content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-modal__dialog {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.legal-modal__dialog::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.demo-select-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(117, 182, 176, 0.16), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(240, 126, 69, 0.12), transparent 24%),
    linear-gradient(180deg, #fff8ef 0%, #ffffff 38%, #fffdf9 100%);
}

.demo-select-main {
  position: relative;
}

.demo-select-header {
  background: rgba(255, 253, 249, 0.94);
}

.demo-select-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.demo-select-header__title {
  margin: 0;
  justify-self: center;
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.demo-select-header__link {
  min-height: 46px;
  white-space: nowrap;
}

.demo-select-hero {
  min-height: 100vh;
  padding: calc(var(--header-height) + 66px) 0 28px;
  text-align: center;
}

.demo-select-shell {
  position: relative;
  display: grid;
  gap: 18px;
}

.demo-select-shell::before,
.demo-select-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.7;
}

.demo-select-shell::before {
  top: 80px;
  right: 8%;
  width: 180px;
  height: 180px;
  background: rgba(117, 182, 176, 0.16);
}

.demo-select-shell::after {
  left: -60px;
  bottom: 80px;
  width: 160px;
  height: 160px;
  background: rgba(238, 188, 113, 0.2);
}

.demo-select-heading {
  position: relative;
  z-index: 1;
  gap: 10px;
  margin-bottom: 0;
  max-width: 70rem;
}

.demo-select-heading h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 8vw, 5rem);
  line-height: 0.9;
}

.demo-select-intro {
  max-width: 48rem;
  font-size: 1.06rem;
}

.demo-select-banner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 14px 18px 14px 22px;
  border: 1px solid rgba(16, 35, 49, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 44px rgba(16, 35, 49, 0.08);
}

.demo-select-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--coral), var(--sand));
}

.demo-select-banner p {
  margin: 0;
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  line-height: 1.55;
}

.demo-select-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: clamp(52px, 5vw, 72px) minmax(0, 1fr) clamp(52px, 5vw, 72px);
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
}

.demo-select-nav {
  display: grid;
  place-items: center;
  width: clamp(52px, 5vw, 72px);
  height: clamp(52px, 5vw, 72px);
  padding: 0;
  border: 1px solid rgba(16, 35, 49, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 35, 49, 0.08);
  font-family: "Space Mono", monospace;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1;
  color: var(--text);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.demo-select-nav:hover,
.demo-select-nav:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(16, 35, 49, 0.2);
}

.demo-select-nav:focus-visible {
  outline: 2px solid rgba(72, 117, 149, 0.34);
  outline-offset: 3px;
}

.demo-select-viewport {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.demo-select-grid {
  position: relative;
  min-height: clamp(440px, 58vh, 620px);
  transition: height 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-card {
  --demo-card-accent: var(--teal);
  --demo-card-accent-soft: rgba(117, 182, 176, 0.14);
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
  min-height: clamp(440px, 58vh, 620px);
  gap: clamp(22px, 2.6vw, 36px);
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(16, 35, 49, 0.12);
  background: transparent;
  box-shadow: 0 18px 44px rgba(16, 35, 49, 0.08);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.demo-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.demo-card::before {
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--demo-card-accent), transparent 80%);
}

.demo-card > * {
  position: relative;
  z-index: 1;
}

.demo-card.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.demo-card.is-entering,
.demo-card.is-leaving {
  visibility: visible;
  z-index: 3;
}

.demo-card.is-entering.is-forward {
  animation: demoSlideInFromRight 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.demo-card.is-entering.is-backward {
  animation: demoSlideInFromLeft 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.demo-card.is-leaving {
  z-index: 2;
}

.demo-card.is-leaving.is-forward {
  animation: demoSlideOutToLeft 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.demo-card.is-leaving.is-backward {
  animation: demoSlideOutToRight 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.demo-card__content {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 26px);
  min-width: 0;
  height: 100%;
}

.demo-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(16, 35, 49, 0.56);
}

.demo-card__index {
  color: var(--demo-card-accent);
}

.demo-card__badge {
  padding: 8px 12px;
  border: 1px solid rgba(16, 35, 49, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

.demo-card__stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.demo-card__detail {
  display: grid;
  gap: 6px;
  align-content: start;
}

.demo-card__label {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(16, 35, 49, 0.56);
}

.demo-card__detail p {
  margin: 0;
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  line-height: 1.6;
  color: var(--muted);
}

.demo-card__tagline {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.demo-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
}

.demo-card__button {
  min-width: 184px;
  min-height: 52px;
  padding: 0 18px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.demo-card__button[disabled] {
  cursor: not-allowed;
  border-color: rgba(16, 35, 49, 0.16);
  background: rgba(16, 35, 49, 0.92);
  color: #ffffff;
  opacity: 1;
}

.demo-card__media {
  min-height: 100%;
  border: 1px solid rgba(16, 35, 49, 0.12);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(16, 35, 49, 0.08);
  align-self: stretch;
}

.demo-card--hawthorne {
  --demo-card-accent: #487595;
  --demo-card-accent-soft: rgba(73, 118, 155, 0.16);
}

.demo-card--rapidflow {
  --demo-card-accent: #eebc71;
  --demo-card-accent-soft: rgba(243, 196, 108, 0.15);
}

.demo-card__media--rapidflow {
  background-image: url("../assets/images/pages/rapidflow-demo-card.png");
}

.demo-card__media--summit {
  background-image: url("../assets/images/pages/summit-demo-card.svg");
}

.demo-card__media--blackline {
  background-image: url("../assets/images/pages/landscape-demo-card.png");
}

.demo-card__media--hawthorne {
  background-image: url("../assets/images/pages/luxury-demo-card.png");
}
.demo-card--summit {
  --demo-card-accent: #75b6b0;
  --demo-card-accent-soft: rgba(127, 189, 182, 0.15);
}

.demo-card--blackline {
  --demo-card-accent: #ee9c8d;
  --demo-card-accent-soft: rgba(243, 165, 152, 0.16);
}

@keyframes demoSlideInFromRight {
  from {
    opacity: 0;
    transform: translate3d(48px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes demoSlideInFromLeft {
  from {
    opacity: 0;
    transform: translate3d(-48px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes demoSlideOutToLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-48px, 0, 0);
  }
}

@keyframes demoSlideOutToRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(48px, 0, 0);
  }
}
