:root {
  color-scheme: dark;
  --ink: #f7f0dc;
  --muted: rgba(247, 240, 220, 0.68);
  --glass: rgba(7, 6, 4, 0.42);
  --line: rgba(247, 240, 220, 0.16);
  --gold: #d6a64c;
  --violet: #8f42ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(44px) scale(0.985);
    filter: blur(10px);
    transition:
      opacity 760ms ease,
      transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 760ms ease;
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .reveal-on-scroll .service-card,
  .reveal-on-scroll .comparison-browser,
  .reveal-on-scroll .choice-bar,
  .reveal-on-scroll .professionals-strip img,
  .reveal-on-scroll .glow-button,
  .reveal-on-scroll .small-glow-button {
    transition-delay: 90ms;
  }
}

body {
  margin: 0;
  min-width: 320px;
  background: #000;
  color: var(--ink);
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(22, 19, 15, 0.56), rgba(9, 8, 7, 0.3));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 54px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark {
  display: block;
  width: 104px;
  height: auto;
  object-fit: contain;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#0a070b, #0a070b) padding-box,
    linear-gradient(100deg, #9d45ff 0%, #cf3fa2 46%, #ff8b2b 100%) border-box;
  box-shadow: 0 0 18px rgba(157, 69, 255, 0.28), 0 0 16px rgba(255, 139, 43, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 0 24px rgba(157, 69, 255, 0.42), 0 0 22px rgba(255, 139, 43, 0.28);
}

.mobile-menu {
  display: none;
}

.art-stage {
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: clamp(1080px, 102vw, 1960px);
  background: #000;
  perspective: 1600px;
}

.realm-art {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 100%;
  height: auto;
  min-height: 100vh;
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: clamp(410px, 35.5vw, 682px);
  left: 50%;
  width: min(32vw, 520px);
  color: #fff;
  text-align: center;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.44);
  transform: translateX(-50%);
}

.hero-copy h1 {
  display: grid;
  gap: 0;
  max-width: none;
  margin: 0;
  color: #fff;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-line-sans {
  font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(26px, 3.55vw, 68px);
  font-weight: 400;
  line-height: 0.9;
}

.hero-line-serif {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(34px, 4.35vw, 84px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.72;
}

.hero-copy p {
  max-width: 39ch;
  margin: clamp(10px, 1.1vw, 18px) auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(10px, 0.82vw, 16px);
  font-weight: 500;
  line-height: 1.22;
}

.panel-anchor {
  position: absolute;
  z-index: 4;
  top: clamp(620px, 48vw, 850px);
  left: 50%;
  width: min(54vw, 920px);
  aspect-ratio: 1417 / 1025;
  transform: translateX(-50%);
  transform-style: preserve-3d;
}

.floating-panel {
  --panel-rx: 0deg;
  --panel-ry: 0deg;
  --panel-tx: 0px;
  --panel-ty: 0px;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  transform:
    translate3d(var(--panel-tx), var(--panel-ty), 92px)
    rotateX(var(--panel-rx))
    rotateY(var(--panel-ry));
  transform-style: preserve-3d;
  transition: transform 180ms ease, filter 180ms ease;
  filter: drop-shadow(0 42px 60px rgba(0, 0, 0, 0.56)) drop-shadow(0 0 36px rgba(143, 66, 255, 0.18));
  will-change: transform;
}

.floating-panel::before {
  content: "";
  position: absolute;
  inset: 2%;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 111, 18, 0.38), rgba(143, 66, 255, 0.35));
  transform: translateZ(-44px) translateY(34px) scale(0.95);
  filter: blur(30px);
  opacity: 0.7;
}

.floating-panel img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  transform: translateZ(36px);
  backface-visibility: hidden;
}

.panel-button-link {
  position: absolute;
  z-index: 3;
  left: 32.7%;
  top: 62.9%;
  width: 34.5%;
  height: 8.3%;
  border-radius: 999px;
  transform: translateZ(60px);
  cursor: pointer;
}

.panel-button-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

.floating-panel.is-active {
  filter: drop-shadow(0 54px 72px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 56px rgba(143, 66, 255, 0.28));
}

.page-buttons {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(44px, 5.2vw, 78px);
  padding: clamp(42px, 4.8vw, 72px) 0 clamp(54px, 6vw, 86px);
  background: #000;
}

.services-section,
.differences-section {
  width: min(78vw, 980px);
}

.services-section h2,
.differences-section h2 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(32px, 4.35vw, 68px);
  font-weight: 400;
  line-height: 0.86;
  text-align: center;
}

.services-section em,
.differences-section em {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.section-logo,
.card-logo {
  color: #fff;
  font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(15px, 1.65vw, 25px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.section-logo {
  margin: clamp(12px, 1.4vw, 20px) 0 clamp(10px, 1.5vw, 22px);
}

.section-logo img {
  display: block;
  width: clamp(92px, 9vw, 132px);
  height: auto;
}

.differences-section {
  display: grid;
  justify-items: center;
}

.comparison-browser {
  width: min(68vw, 900px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(3, 3, 4, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mini-browser-bar {
  display: grid;
  grid-template-columns: auto auto minmax(180px, 420px) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  min-height: 48px;
  padding: 0 clamp(18px, 2vw, 28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.browser-dots,
.browser-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-nav,
.browser-tools {
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.mini-browser-bar p {
  margin: 0;
  justify-self: center;
  width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 0.83fr 1fr;
  align-items: center;
  gap: clamp(26px, 3.8vw, 48px);
  padding: clamp(30px, 3.8vw, 50px) clamp(34px, 4vw, 56px);
}

.comparison-card {
  display: grid;
  gap: 9px;
  padding: clamp(15px, 1.7vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
}

.comparison-card.muted {
  min-height: 184px;
  align-content: center;
  opacity: 0.9;
}

.comparison-card.featured {
  position: relative;
  min-height: 258px;
  padding: clamp(18px, 2vw, 30px);
  border: 1.6px solid transparent;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.78)) padding-box,
    linear-gradient(105deg, #a64cff 0%, #d34aa3 48%, #ff8b29 100%) border-box;
  box-shadow: 0 0 24px rgba(166, 76, 255, 0.26), 0 0 22px rgba(255, 139, 41, 0.2);
}

.comparison-card p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: #fff;
  font-size: clamp(11px, 0.96vw, 15px);
  font-weight: 400;
}

.comparison-card p span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: #fff;
  color: #0b0b0d;
  font-size: 14px;
  line-height: 1;
}

.comparison-card p:last-child span {
  background: transparent;
  color: #fff;
}

.card-logo {
  justify-self: end;
  margin-top: 2px;
  font-size: clamp(14px, 1.45vw, 21px);
}

.card-logo img {
  display: block;
  width: clamp(82px, 7vw, 112px);
  height: auto;
}

.choice-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(74vw, 920px);
  margin: 10px 0 clamp(18px, 2vw, 28px);
  padding: 14px 22px;
  border: 1.6px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(100deg, #a64cff 0%, #d34aa3 48%, #ff8b29 100%) border-box;
  box-shadow: 0 0 18px rgba(166, 76, 255, 0.28), 0 0 18px rgba(255, 139, 41, 0.2);
  color: #fff;
  font-size: clamp(11px, 1vw, 16px);
  font-weight: 400;
}

.choice-bar span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.choice-bar span:nth-child(2) {
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
}

.choice-bar i {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.differences-section > p {
  max-width: 800px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(12px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.28;
  text-align: center;
}

.small-glow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 48px;
  min-width: min(250px, 70vw);
  padding: 0 34px;
  border: 1.6px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(100deg, #a64cff 0%, #d34aa3 48%, #ff8b29 100%) border-box;
  box-shadow: 0 0 18px rgba(166, 76, 255, 0.28), 0 0 18px rgba(255, 139, 41, 0.18);
  color: #fff;
  font-size: clamp(14px, 1.18vw, 19px);
  font-weight: 400;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.professionals-strip {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.professionals-strip h2 {
  max-width: none;
  margin: 0 0 clamp(16px, 2vw, 30px);
  color: #fff;
  font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.professionals-strip h2 em {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.professionals-strip img {
  display: block;
  width: 100%;
  height: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(15px, 1.7vw, 24px);
  margin-top: clamp(18px, 2.4vw, 34px);
}

.service-card {
  display: grid;
  padding: clamp(22px, 2.35vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.72);
  min-height: 430px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: clamp(62px, 6.7vw, 92px);
  height: clamp(62px, 6.7vw, 92px);
  margin-bottom: clamp(22px, 2.3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  color: #fff;
  font-size: clamp(26px, 3vw, 46px);
}

.service-card h3 {
  margin: 0;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(34px, 3.7vw, 58px);
  font-weight: 400;
  line-height: 0.95;
}

.service-card p {
  margin: clamp(14px, 1.45vw, 22px) 0 clamp(18px, 1.8vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.1vw, 18px);
  margin: 0 0 clamp(24px, 2.5vw, 36px);
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: clamp(28px, 3vw, 42px);
  padding: 0 clamp(12px, 1.35vw, 20px);
  border: 1.5px solid #b855ff;
  border-radius: 999px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(105deg, #a84fff 0%, #d3439a 48%, #ff8a2b 100%) border-box;
  border-color: transparent;
  box-shadow:
    0 0 14px rgba(168, 79, 255, 0.22),
    0 0 16px rgba(255, 138, 43, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(11px, 0.95vw, 16px);
  font-weight: 400;
}

.glow-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.6vw, 24px);
  min-height: clamp(46px, 4.5vw, 72px);
  padding: 0 clamp(12px, 1.7vw, 25px);
  border: 1.6px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(100deg, #9d45ff 0%, #cf3fa2 46%, #ff8b2b 100%) border-box;
  box-shadow:
    0 0 18px rgba(157, 69, 255, 0.34),
    0 0 18px rgba(255, 139, 43, 0.22),
    inset 0 0 18px rgba(255, 255, 255, 0.025);
  color: #fff;
  font-size: clamp(14px, 1.48vw, 24px);
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.glow-button:hover,
.glow-button:focus-visible,
.small-glow-button:hover,
.small-glow-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.08);
  box-shadow:
    0 0 26px rgba(157, 69, 255, 0.48),
    0 0 26px rgba(255, 139, 43, 0.34),
    inset 0 0 20px rgba(255, 255, 255, 0.04);
}

.button-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(34px, 3.8vw, 58px);
  height: clamp(34px, 3.8vw, 58px);
  border: 1.4px solid rgba(184, 85, 255, 0.9);
  border-radius: 50%;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 400;
  box-shadow: inset -1px 0 0 rgba(255, 132, 38, 0.9);
}

.button-logo img {
  display: block;
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: calc(clamp(410px, 35.5vw, 682px) + clamp(126px, 10vw, 176px));
  width: 68px;
  height: 42px;
  transform: translateX(-50%);
  animation: arrowFloat 1.5s ease-in-out infinite;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  width: 42px;
  height: 42px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: translateX(-50%) rotate(45deg);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.26));
}

.scroll-cue span:first-child {
  top: -12px;
}

.scroll-cue span:last-child {
  top: 3px;
}

.content-band,
.entry-band {
  position: relative;
  display: grid;
  min-height: 72vh;
  padding: clamp(72px, 9vw, 144px) clamp(22px, 6vw, 96px);
  background:
    radial-gradient(circle at 22% 18%, rgba(214, 166, 76, 0.22), transparent 30%),
    radial-gradient(circle at 78% 36%, rgba(143, 66, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #000 0%, #050307 100%);
}

.content-band::before,
.entry-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 240, 220, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 240, 220, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.content-grid,
.entry-band > div {
  position: relative;
  align-self: center;
  max-width: 720px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 118px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 9ch;
}

.content-grid p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.entry-band {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  min-height: 62vh;
}

.entry-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(247, 240, 220, 0.36);
  border-radius: 999px;
  background: rgba(247, 240, 220, 0.08);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.entry-button:hover {
  border-color: rgba(247, 240, 220, 0.68);
  background: rgba(247, 240, 220, 0.14);
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(-7px);
    opacity: 0.45;
  }

  50% {
    transform: translateY(7px);
    opacity: 1;
  }
}

@keyframes arrowFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(-4px);
    opacity: 0.72;
  }

  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

@media (max-width: 900px), (pointer: coarse) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    top: 12px;
    align-items: center;
    width: calc(100% - 24px);
    padding: 10px 12px;
    border-radius: 18px;
  }

  .brand-wordmark {
    width: 96px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: inline-grid;
    gap: 4px;
    width: 36px;
    height: 32px;
    place-content: center;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .mobile-menu span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
  }

  .realm-art {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    content: url("./mobile-hero.png");
    transform: none;
  }

  .art-stage {
    height: 100svh;
    min-height: 720px;
    max-height: 940px;
    overflow: visible;
  }

  .hero-copy {
    top: 56%;
    bottom: auto;
    left: 50%;
    width: min(78vw, 340px);
    transform: translate(-50%, -50%);
  }

  .hero-line-sans {
    font-size: clamp(28px, 9vw, 42px);
  }

  .hero-line-serif {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero-copy p {
    max-width: 32ch;
    font-size: 11px;
    line-height: 1.35;
  }

  .scroll-cue {
    top: auto;
    bottom: 54px;
    width: 48px;
    height: 32px;
  }

  .scroll-cue span {
    width: 30px;
    height: 30px;
    border-right-width: 3px;
    border-bottom-width: 3px;
  }

  .scroll-cue span:first-child {
    top: -8px;
  }

  .scroll-cue span:last-child {
    top: 3px;
  }

  .panel-anchor {
    position: absolute;
    top: calc(100% - 145px);
    left: 50%;
    width: min(88vw, 360px);
    margin: 0;
    transform: translateX(-50%);
    z-index: 8;
  }

  .floating-panel {
    border-radius: 12px;
    transform: none;
  }

  .page-buttons {
    gap: 42px;
    padding: 210px 0 64px;
  }

  .service-grid,
  .comparison-grid,
  .choice-bar {
    grid-template-columns: 1fr;
  }

  .services-section,
  .differences-section,
  .comparison-browser,
  .choice-bar {
    width: calc(100% - 28px);
  }

  .services-section h2,
  .differences-section h2,
  .professionals-strip h2 {
    font-size: clamp(30px, 10vw, 46px);
    line-height: 0.95;
  }

  .section-logo img {
    width: 96px;
  }

  .comparison-browser {
    border-radius: 16px;
  }

  .mini-browser-bar {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 42px;
    padding: 0 12px;
  }

  .browser-nav {
    display: none;
  }

  .browser-tools {
    font-size: 13px;
    gap: 7px;
  }

  .mini-browser-bar p {
    font-size: 10px;
    padding: 7px 10px;
  }

  .comparison-grid {
    gap: 16px;
    padding: 18px;
  }

  .comparison-card.muted,
  .comparison-card.featured {
    min-height: auto;
  }

  .comparison-card p {
    font-size: 12px;
    padding: 8px 10px;
  }

  .choice-bar {
    gap: 12px;
    padding: 14px;
    font-size: 11px;
  }

  .choice-bar span {
    justify-content: flex-start;
  }

  .differences-section > p {
    max-width: calc(100% - 48px);
    font-size: 12px;
  }

  .professionals-strip h2 {
    width: min(86vw, 360px);
    margin-inline: auto;
  }

  .professionals-strip img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center top;
  }

  .service-grid {
    gap: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 16px;
  }

  .service-card h3 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .service-card p {
    font-size: 13px;
  }

  .tag-row {
    gap: 9px;
  }

  .glow-button {
    min-height: 54px;
    font-size: 13px;
  }

  .button-logo {
    width: 38px;
    height: 38px;
  }

  .small-glow-button {
    min-height: 48px;
    font-size: 14px;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
