:root {
  --paper: #f6f3ec;
  --ink: #080808;
  --muted: #716d66;
  --line: rgba(8, 8, 8, 0.16);
  --hot: #ff2d55;
  --hot-dark: #c9002b;
  --acid: #c7ff47;
  --sky: #7ed7ff;
  --night: #050506;
  --soft: #ffffff;
  --max: 1160px;
  --pad: clamp(18px, 4vw, 64px);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --text: "Neue Montreal", "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.page-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--hot);
  color: var(--soft);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--pad);
  background: var(--night);
  color: var(--soft);
  transition: transform 0.8s cubic-bezier(.8, 0, .2, 1), opacity 0.8s ease;
}

.loader.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.loader__top,
.loader__progress {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  font-size: clamp(0.75rem, 1.3vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0;
}

.loader__top {
  top: var(--pad);
}

.loader__progress {
  bottom: var(--pad);
  justify-content: flex-end;
  color: var(--hot);
  font-size: clamp(2rem, 8vw, 6rem);
  font-family: var(--display);
  line-height: 0.85;
}

.loader__brand {
  font-family: var(--display);
  font-size: clamp(8rem, 28vw, 24rem);
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.92);
  text-stroke: 2px rgba(255, 255, 255, 0.92);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 250;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--hot);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.22s ease, height 0.22s ease, opacity 0.2s ease;
}

.cursor.is-active {
  width: 56px;
  height: 56px;
  opacity: 0.76;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(16px, 2.8vw, 34px) var(--pad);
  color: var(--ink);
  transition: color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(246, 243, 236, 0.82);
  box-shadow: 0 1px 0 rgba(8, 8, 8, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-inverted {
  color: var(--soft);
}

.site-header.is-inverted.is-scrolled {
  background: rgba(5, 5, 6, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  display: grid;
  gap: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 0.78;
  letter-spacing: 0;
  transition: font-size 0.24s ease;
}

.site-header.is-scrolled .brand {
  font-size: clamp(1.5rem, 2.8vw, 2.8rem);
}

.site-header.is-scrolled .menu-toggle {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.site-header.is-scrolled .pill {
  min-height: 42px;
  padding-block: 9px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
}

.pill,
.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 12px 25px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.pill:hover,
.pill:focus-visible,
.menu-close:hover,
.menu-close:focus-visible {
  transform: translateY(-2px);
}

.pill--hot {
  border-color: var(--hot);
  background: var(--hot);
  color: var(--soft);
  box-shadow: 0 12px 40px rgba(255, 45, 85, 0.28);
}

.pill--hot:hover,
.pill--hot:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
}

.pill--large {
  min-height: 62px;
  padding-inline: 34px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.menu-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  color: currentColor;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.8;
  text-transform: uppercase;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: var(--pad);
  background: var(--night);
  color: var(--soft);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.75s cubic-bezier(.8, 0, .2, 1), visibility 0.75s;
}

.menu-panel.is-open {
  transform: translateY(0);
  visibility: visible;
}

.menu-panel__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}

.menu-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: clamp(32px, 8vw, 120px);
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.menu-panel__links {
  display: grid;
  gap: 10px;
}

.menu-panel__links a {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.78;
  text-transform: uppercase;
  color: var(--soft);
  transition: color 0.2s ease, transform 0.2s ease;
}

.menu-panel__links a span {
  min-width: 38px;
  padding-top: 0.18em;
  font-family: var(--text);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 800;
}

.menu-panel__links a:hover,
.menu-panel__links a:focus-visible {
  color: var(--hot);
  transform: translateX(10px);
}

.menu-panel__note {
  display: grid;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.menu-panel__note a {
  color: var(--soft);
  font-weight: 800;
}

.menu-panel__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.menu-panel__legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-pad {
  padding: clamp(96px, 14vw, 180px) var(--pad);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-content: start;
  gap: clamp(34px, 4vw, 54px);
  padding-top: clamp(145px, 17vh, 190px);
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 45, 85, 0.12), transparent 18vw),
    linear-gradient(180deg, #fffaf1 0%, var(--paper) 100%);
}

.hero__intro {
  display: grid;
  grid-template-columns: minmax(260px, 560px) auto;
  align-items: start;
  gap: 24px;
}

.hero__intro p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  max-width: 660px;
}

.hero__status {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  font-size: 0.9rem;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--acid);
  box-shadow: 0 0 0 6px rgba(199, 255, 71, 0.22);
}

.hero__headline h1 {
  margin: 0;
  max-width: none;
  font-family: var(--display);
  font-size: clamp(4.25rem, 10.2vw, 9.35rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.headline-line {
  display: block;
  overflow: hidden;
  transform: translateY(110%);
  animation: lineIn 0.9s cubic-bezier(.12, .78, .25, 1) forwards;
}

.headline-line:nth-child(2) {
  animation-delay: 0.08s;
}

.headline-line:nth-child(3) {
  animation-delay: 0.16s;
}

.headline-line:nth-child(4) {
  animation-delay: 0.24s;
}

.word-rotator {
  color: var(--hot);
  display: inline-block;
  min-width: 4.9ch;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.word-rotator.is-changing {
  opacity: 0;
  transform: translateY(-0.1em);
}

.hero__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  animation: nudge 1.3s ease-in-out infinite;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.hero__proof span,
.tag,
.hosting-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
}

.logo-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  padding: 24px clamp(24px, 5vw, 72px);
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 8rem);
  line-height: 0.82;
  white-space: nowrap;
  text-transform: uppercase;
}

.marquee--slow span {
  font-size: clamp(2rem, 5vw, 5.6rem);
}

.marquee--headline {
  margin: 30px calc(var(--pad) * -1) 64px;
  width: calc(100% + var(--pad) + var(--pad));
}

.marquee--headline span {
  font-size: clamp(4.4rem, 13vw, 12rem);
  padding: 0;
  margin-right: clamp(56px, 8vw, 136px);
}

.impact {
  --impact-mark-opacity: 0.5;
  --impact-mark-brightness: 0.9;
  height: 240svh;
  background: var(--night);
  color: var(--soft);
}

.impact__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: var(--pad);
}

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

.impact__sticky::before {
  width: 54vw;
  height: 54vw;
  background: radial-gradient(circle, rgba(255, 45, 85, 0.16), transparent 66%);
  filter: blur(8px);
}

.impact__sticky::after {
  right: var(--pad);
  bottom: var(--pad);
  width: 18px;
  height: 18px;
  background: var(--hot);
  box-shadow: 0 0 28px rgba(255, 45, 85, 0.9);
}

.impact__mark {
  position: absolute;
  z-index: 0;
  display: grid;
  place-items: center;
  width: clamp(150px, 24vw, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(circle at 50% 70%, rgba(255, 45, 85, 0.54), transparent 48%);
  box-shadow: inset 0 0 80px rgba(255, 45, 85, 0.1), 0 0 80px rgba(255, 45, 85, 0.12);
  opacity: var(--impact-mark-opacity);
  filter: brightness(var(--impact-mark-brightness)) saturate(0.82);
  animation: markFloat 5.8s ease-in-out infinite;
  transition: opacity 0.18s ease, filter 0.18s ease;
}

.impact__mark span {
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.62);
  text-shadow: 0 0 22px rgba(255, 45, 85, 0.42);
}

.impact__text {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  margin: 0;
  text-align: center;
  font-size: clamp(2.25rem, 6vw, 6.8rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.impact__text span {
  color: rgba(255, 255, 255, 0.14);
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.impact__text span.is-lit {
  color: var(--soft);
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}

.work {
  background: var(--paper);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: clamp(110px, 14vw, 160px);
  padding: clamp(22px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  outline: none;
}

.project-row::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--pad) * -0.35);
  z-index: -1;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(.2, .8, .2, 1);
}

.project-row:hover::before,
.project-row:focus-visible::before,
.project-row:focus-within::before {
  transform: scaleY(1);
}

.project-row h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.project-row p {
  max-width: 580px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  transition: color 0.25s ease;
}

.project-row:hover h2,
.project-row:focus-visible h2,
.project-row:focus-within h2,
.project-row:hover p,
.project-row:focus-visible p,
.project-row:focus-within p {
  color: var(--soft);
}

.project-row:hover h2,
.project-row:focus-visible h2,
.project-row:focus-within h2 {
  transform: translateX(12px);
}

.project-row:hover .tag,
.project-row:focus-visible .tag,
.project-row:focus-within .tag {
  color: var(--soft);
  border-color: rgba(255, 255, 255, 0.58);
}

.project-link {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  margin-top: 18px;
  padding: 8px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.project-link:hover,
.project-link:focus-visible {
  border-color: var(--hot);
  background: var(--hot);
  color: var(--soft);
  transform: translateY(-2px);
}

.project-row:hover .project-link,
.project-row:focus-visible .project-link,
.project-row:focus-within .project-link {
  color: var(--soft);
  border-color: rgba(255, 255, 255, 0.58);
}

.project-preview {
  position: absolute;
  right: clamp(90px, 14vw, 180px);
  top: 50%;
  z-index: 2;
  width: clamp(180px, 24vw, 330px);
  aspect-ratio: 1.5;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translate(28px, -50%) rotate(-3deg) scale(0.88);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.project-row:hover .project-preview,
.project-row:focus-visible .project-preview,
.project-row:focus-within .project-preview {
  opacity: 1;
  transform: translate(0, -50%) rotate(-2deg) scale(1);
}

.browser-bar,
.terminal-card__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.browser-bar span,
.terminal-card__bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.3;
}

.preview-hero {
  height: 58px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--acid), #fff);
}

.preview-therapy-hero,
.preview-pool-hero {
  height: 78px;
  border-radius: 4px;
}

.preview-therapy-hero {
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.8), transparent 30%),
    linear-gradient(135deg, #d8e9d8, #f8f4ea);
}

.preview-pool-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(135deg, #d7d3c7 0%, #f2eee3 46%, #75c9df 47%, #b7efff 100%);
}

.preview-grid,
.preview-lines,
.preview-dashboard,
.server-stack {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.preview-therapy-grid,
.preview-pool-grid {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.preview-therapy-grid {
  grid-template-columns: 1.1fr 0.9fr 0.7fr;
}

.preview-pool-grid {
  grid-template-columns: repeat(4, 1fr);
}

.preview-grid span,
.preview-therapy-grid span,
.preview-pool-grid span,
.preview-lines span,
.preview-dashboard span,
.server-stack span,
.preview-split span {
  display: block;
  min-height: 28px;
  border-radius: 4px;
  background: rgba(8, 8, 8, 0.12);
}

.project-preview--therapy {
  background: #fbf7ee;
}

.project-preview--therapy .preview-therapy-grid span {
  background: rgba(91, 121, 88, 0.18);
}

.project-preview--pool {
  background: #f7f5ef;
}

.project-preview--pool .preview-pool-grid span {
  min-height: 44px;
  background: linear-gradient(135deg, rgba(143, 133, 113, 0.18), rgba(117, 201, 223, 0.22));
}

.project-preview--rose .preview-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
}

.project-preview--rose .preview-split span:first-child {
  min-height: 92px;
  background: linear-gradient(135deg, #ffd8e1, var(--hot));
}

.project-preview--blue .preview-dashboard {
  grid-template-columns: 1fr 1fr;
}

.project-preview--blue .preview-dashboard span:first-child {
  grid-column: 1 / -1;
  min-height: 62px;
  background: linear-gradient(135deg, var(--sky), #fff);
}

.project-preview--dark {
  color: var(--soft);
  background: #111;
  border-color: var(--soft);
}

.project-preview--dark .browser-bar span,
.project-preview--dark .server-stack span {
  background: var(--hot);
  opacity: 1;
}

.project-preview--dark .server-stack span {
  min-height: 34px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.benefits {
  background: var(--soft);
}

.benefit--center {
  max-width: 900px;
  margin: 0 auto clamp(54px, 8vw, 96px);
  text-align: center;
}

.benefit h2,
.hosting h2,
.packages h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.benefit p,
.hosting p,
.packages__intro,
.contact p {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.benefit-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.benefit-card,
.package-card {
  min-height: 320px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover,
.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 8, 8, 0.34);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.card-index {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.8;
  color: var(--hot);
}

.benefit-card h3,
.package-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.benefit-card p,
.package-card p {
  margin: 0;
  color: var(--muted);
}

.hosting {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
  background: var(--ink);
  color: var(--soft);
}

.hosting p {
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.72);
}

.hosting__visual {
  min-height: 500px;
  display: grid;
  place-items: center;
}

.terminal-card {
  width: min(100%, 480px);
  min-height: 360px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 48%),
    radial-gradient(circle at 85% 18%, rgba(255, 45, 85, 0.42), transparent 34%),
    #111;
  box-shadow: 0 40px 120px rgba(255, 45, 85, 0.18);
  transform: rotate(-2deg);
}

.terminal-card p {
  margin: 18px 0;
  color: var(--soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.terminal-card p span {
  color: var(--acid);
}

.terminal-card .terminal-ok {
  color: var(--acid);
}

.pulse-lines {
  display: grid;
  gap: 14px;
  margin-top: 54px;
}

.pulse-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hot), rgba(255, 255, 255, 0.14), var(--acid));
  background-size: 220% 100%;
  animation: pulseLine 2.2s ease-in-out infinite;
}

.pulse-lines span:nth-child(2) {
  width: 72%;
  animation-delay: 0.2s;
}

.pulse-lines span:nth-child(3) {
  width: 88%;
  animation-delay: 0.4s;
}

.pulse-lines span:nth-child(4) {
  width: 56%;
  animation-delay: 0.6s;
}

.hosting-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hosting-points span {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--soft);
}

.packages {
  background: var(--paper);
}

.packages__intro {
  display: grid;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto clamp(40px, 7vw, 78px);
}

.packages__intro p {
  margin-inline: 0;
}

.package-card {
  background: var(--soft);
}

.package-card--featured {
  background: var(--ink);
  color: var(--soft);
  border-color: var(--ink);
}

.package-card--featured p,
.package-card--featured li {
  color: rgba(255, 255, 255, 0.72);
}

.package-card__label {
  width: max-content;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  color: var(--muted);
}

.package-card li::before {
  content: "+ ";
  color: var(--hot);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(36px, 7vw, 90px);
  background: var(--soft);
}

.contact__text p {
  margin-inline: 0;
}

.contact__actions {
  display: grid;
  justify-items: end;
  gap: 20px;
}

.contact-mail {
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--pad);
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  background: rgba(246, 243, 236, 0.88);
  box-shadow: 0 1px 0 rgba(8, 8, 8, 0.08);
  backdrop-filter: blur(18px);
}

.legal-main {
  padding-top: clamp(140px, 18vh, 190px);
}

.legal-hero {
  padding: 0 var(--pad) clamp(54px, 8vw, 96px);
  max-width: 1220px;
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(90px, 12vw, 150px);
}

.legal-content article,
.legal-warning {
  padding: clamp(24px, 4vw, 38px) 0;
  border-top: 1px solid var(--line);
}

.legal-content article:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
}

.legal-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-warning {
  color: var(--ink);
  font-weight: 700;
}

.legal-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
}

.legal-list dt {
  font-weight: 900;
}

.legal-list dd {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lineIn {
  to {
    transform: translateY(0);
  }
}

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

@keyframes nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes markFloat {
  0%,
  100% {
    transform: translateY(-10px) rotate(-4deg) scale(1);
  }
  50% {
    transform: translateY(10px) rotate(4deg) scale(1.04);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 900px) {
  .cursor {
    display: none;
  }

  .header-actions .pill {
    display: none;
  }

  .menu-panel__grid,
  .hero__intro,
  .hosting,
  .contact,
  .benefit-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero__status {
    justify-self: start;
  }

  .hero__bottom {
    align-items: start;
    flex-direction: column-reverse;
  }

  .hero__proof {
    justify-content: flex-start;
  }

  .project-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .project-row::before {
    display: none;
  }

  .tag {
    justify-self: start;
  }

  .project-preview {
    display: none;
  }

  .project-row:hover .project-preview,
  .project-row:focus-visible .project-preview,
  .project-row:focus-within .project-preview {
    transform: none;
  }

  .project-row:hover h2,
  .project-row:focus-visible h2,
  .project-row:focus-within h2 {
    transform: none;
  }

  .project-row:hover h2,
  .project-row:focus-visible h2,
  .project-row:focus-within h2,
  .project-row:hover p,
  .project-row:focus-visible p,
  .project-row:focus-within p {
    color: inherit;
  }

  .project-row:hover .tag,
  .project-row:focus-visible .tag,
  .project-row:focus-within .tag {
    color: var(--ink);
    border-color: var(--ink);
  }

  .project-row:hover .project-link,
  .project-row:focus-visible .project-link,
  .project-row:focus-within .project-link {
    color: var(--ink);
    border-color: var(--ink);
  }

  .hosting__visual {
    min-height: 360px;
  }

  .contact__actions {
    justify-items: start;
  }
}

@media (pointer: fine) {
  body,
  a,
  button,
  input,
  textarea,
  select,
  .project-row {
    cursor: none;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding-block: 86px;
  }

  .brand {
    font-size: 2.1rem;
  }

  .menu-toggle {
    font-size: 2.4rem;
  }

  .hero {
    padding-top: 136px;
  }

  .hero__headline h1 {
    font-size: clamp(2.85rem, 13.8vw, 4.75rem);
    line-height: 0.99;
  }

  .headline-line {
    overflow: visible;
  }

  .hero__headline .word-rotator {
    display: block;
    margin-top: 0.12em;
  }

  .hero__intro p {
    font-size: 1.05rem;
  }

  .menu-panel__links a {
    font-size: clamp(3rem, 17vw, 6rem);
  }

  .benefit h2,
  .hosting h2,
  .packages h2,
  .contact h2 {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .impact__text {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .legal-hero h1 {
    max-width: none;
    font-size: clamp(3.1rem, 12.5vw, 4.2rem);
    overflow-wrap: break-word;
  }

  .pill--large {
    width: 100%;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

  .loader {
    display: none;
  }
}
