@font-face {
  font-family: "Inter Variable";
  src: url("./inter-latin-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --accent: #AD7CFB;
  --accent-rgb: 173, 124, 251;
  --text: #19151f;
  --muted: #686270;
  --background: #f3f8fc;
  --surface: #ffffff;
  --line: rgba(25, 21, 31, 0.1);
  --line-soft: rgba(25, 21, 31, 0.065);
  --shadow-soft: 0 24px 80px rgba(49, 37, 70, 0.1);
  --shadow-card: 0 18px 44px rgba(49, 37, 70, 0.075);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--accent-rgb), 0.08), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.95), transparent 28%),
    var(--background);
  content: "";
  pointer-events: none;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(var(--accent-rgb), 0.28);
}

:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.48);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: #7f4fce;
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-intro h2,
.experience-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5rem);
  font-weight: 690;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-intro > p:last-child,
.experience-copy > p,
.final-cta > div > p:last-child {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.centered-intro {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.compact-intro {
  max-width: 680px;
}

.glass-surface {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  backdrop-filter: blur(26px) saturate(155%);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(var(--accent-rgb), 0.28);
  color: #fff;
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(var(--accent-rgb), 0.38);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 9px 26px rgba(49, 37, 70, 0.06);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(var(--accent-rgb), 0.44);
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7041bc;
  font-size: 0.94rem;
  font-weight: 680;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Floating Liquid Glass navigation */
.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  right: 0;
  left: 0;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  width: min(calc(100% - 40px), 1280px);
  min-height: 70px;
  margin-inline: auto;
  padding: 9px 12px 9px 18px;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.16)),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    0 18px 48px rgba(49, 37, 70, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(var(--accent-rgb), 0.12);
  -webkit-backdrop-filter: blur(34px) saturate(185%) contrast(1.04);
  backdrop-filter: blur(34px) saturate(185%) contrast(1.04);
  pointer-events: auto;
}

.nav-shell::before {
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 13% -80%, rgba(255, 255, 255, 0.9), transparent 48%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 38%, rgba(var(--accent-rgb), 0.08));
  content: "";
  pointer-events: none;
}

.nav-shell > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 730;
  letter-spacing: -0.025em;
}

.brand img {
  width: 34px;
  height: 34px;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.8vw, 29px);
  font-size: 0.82rem;
  font-weight: 560;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 48px;
  padding: 11px 18px;
  white-space: nowrap;
}

.mobile-menu {
  display: none;
  position: relative;
  margin-left: auto;
}

.mobile-menu summary {
  display: grid;
  width: 54px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.13);
  color: #7041bc;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 58px;
  right: 0;
  display: grid;
  width: min(320px, calc(100vw - 38px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  backdrop-filter: blur(26px) saturate(160%);
}

.mobile-menu nav a {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 610;
}

.mobile-menu nav a:hover {
  background: rgba(var(--accent-rgb), 0.11);
}

.mobile-menu nav .mobile-whatsapp {
  margin-top: 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-align: center;
}

/* Homepage hero */
.home-hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding: 158px 0 104px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 50px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.16), transparent 68%);
}

.hero-orb-two {
  bottom: -250px;
  left: 8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(68px, 8vw, 120px);
  align-items: center;
}

.portrait-column {
  position: relative;
  max-width: 520px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 42px;
  background: var(--background);
  box-shadow:
    0 36px 90px rgba(49, 37, 70, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-caption {
  position: absolute;
  right: -30px;
  bottom: 28px;
  display: flex;
  min-width: 260px;
  padding: 16px 20px;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
}

.portrait-caption div {
  display: grid;
}

.portrait-caption strong {
  font-size: 0.86rem;
}

.portrait-caption span:last-child {
  color: var(--muted);
  font-size: 0.75rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 3px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
  background: var(--accent);
  box-sizing: content-box;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 6.8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero-lead {
  max-width: 690px;
  margin: 34px 0 0;
  color: #4f4855;
  font-size: clamp(1.15rem, 1.8vw, 1.48rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 560;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row svg {
  color: #7b4ac7;
}

/* Ecosystem bento */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 340px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: 38px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.service-card:hover {
  box-shadow: 0 25px 60px rgba(49, 37, 70, 0.11);
  transform: translateY(-5px);
}

.service-card-1,
.service-card-4 {
  grid-column: span 7;
}

.service-card-2,
.service-card-3 {
  grid-column: span 5;
}

.service-card-1 {
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.12), transparent 58%),
    #fff;
}

.service-card-4 {
  background:
    linear-gradient(145deg, rgba(243, 248, 252, 0.4), rgba(var(--accent-rgb), 0.09)),
    #fff;
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: rgba(var(--accent-rgb), 0.14);
  color: #7646c3;
}

.service-card h3 {
  margin: auto 0 0;
  padding-top: 60px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 670;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.service-card p {
  max-width: 570px;
  margin: 16px 0 26px;
  color: var(--muted);
  line-height: 1.7;
}

/* Experience */
.experience-section {
  background: rgba(255, 255, 255, 0.5);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(70px, 9vw, 130px);
  align-items: center;
}

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

.proof-card {
  display: flex;
  min-height: 220px;
  padding: 30px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.26);
  border-radius: 32px;
  background: rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 14px 38px rgba(49, 37, 70, 0.065);
  text-align: center;
}

.proof-card-accent {
  background: rgba(var(--accent-rgb), 0.2);
  color: var(--text);
}

.proof-card strong {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1;
}

.proof-card span {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.proof-card-accent span {
  color: var(--muted);
}

/* Method */
.method-section {
  padding-bottom: 70px;
}

.method-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.method-grid article {
  min-height: 265px;
  padding: 34px 42px 28px 0;
  border-right: 1px solid var(--line);
}

.method-grid article + article {
  padding-left: 42px;
}

.method-grid article:last-child {
  border-right: 0;
}

.method-grid article > span {
  color: #8856d8;
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.method-grid h3 {
  margin: 62px 0 12px;
  font-size: 1.55rem;
  font-weight: 660;
  letter-spacing: -0.035em;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Reviews */
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

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

.review-card {
  display: flex;
  min-height: 320px;
  padding: 34px;
  flex-direction: column;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.18), rgba(255, 255, 255, 0.96) 68%);
  box-shadow: 0 18px 46px rgba(49, 37, 70, 0.11);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.review-card:hover {
  border-color: rgba(var(--accent-rgb), 0.58);
  box-shadow: 0 26px 60px rgba(var(--accent-rgb), 0.2);
  transform: translateY(-4px);
}

.review-card strong {
  margin-top: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 680;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.review-card > strong + span {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.review-card .text-link {
  margin-top: auto;
  padding-top: 26px;
}

/* Final CTA */
.final-cta-section {
  padding-top: 60px;
}

.final-cta {
  display: flex;
  min-height: 380px;
  padding: clamp(42px, 7vw, 88px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 90% 0%, rgba(var(--accent-rgb), 0.28), transparent 35%),
    rgba(255, 255, 255, 0.7);
}

.final-cta > div {
  max-width: 780px;
}

.final-cta .button {
  flex: 0 0 auto;
  margin-bottom: 6px;
}

/* Internal page hero */
.inner-hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 166px 0 104px;
}

.inner-hero-glow {
  position: absolute;
  top: -160px;
  right: -140px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2), transparent 67%);
  pointer-events: none;
}

.inner-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  gap: clamp(58px, 8vw, 112px);
  align-items: center;
}

.inner-hero-copy h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3.8rem, 6.6vw, 6.9rem);
  font-weight: 700;
  letter-spacing: -0.073em;
  line-height: 0.92;
}

.inner-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 31px 0 0;
  color: #4f4855;
  font-size: clamp(1.12rem, 1.75vw, 1.42rem);
  line-height: 1.65;
}

.inner-hero-copy .button {
  margin-top: 36px;
}

.inner-hero-card {
  min-height: 520px;
  overflow: hidden;
  padding: 12px;
  border-radius: 48px;
}

.mini-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-panel,
.hospitality-panel,
.support-panel,
.transparency-panel {
  height: 496px;
  border-radius: 38px;
}

.partner-panel {
  display: flex;
  padding: 42px;
  flex-direction: column;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.22), transparent 33%),
    var(--accent);
  color: #fff;
}

.partner-panel .mini-label {
  color: #fff;
}

.partner-panel img {
  width: 210px;
  height: auto;
  margin-top: 28px;
}

.partner-panel h2 {
  margin: auto 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 680;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.partner-panel p {
  max-width: 420px;
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Shared information cards */
.three-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  display: flex;
  min-height: 360px;
  padding: 36px;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.number-chip {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(var(--accent-rgb), 0.14);
  color: #7444c1;
  font-size: 0.76rem;
  font-weight: 730;
}

.info-card h3 {
  margin: auto 0 14px;
  padding-top: 58px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 660;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.scope-note {
  display: grid;
  max-width: 940px;
  margin: 32px auto 0;
  padding: 26px 30px;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.19);
  border-radius: 26px;
  background: rgba(var(--accent-rgb), 0.08);
}

.scope-note strong {
  font-size: 1rem;
  line-height: 1.4;
}

.scope-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Commerce plans */
.plans-section {
  background: rgba(255, 255, 255, 0.48);
}

.plans-section > .container > .section-intro {
  margin-bottom: 58px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  min-height: 720px;
  padding: 34px 30px 28px;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.plan-commerce {
  border-color: rgba(var(--accent-rgb), 0.46);
  box-shadow: 0 22px 60px rgba(var(--accent-rgb), 0.15);
}

.plan-heading {
  display: flex;
  min-height: 64px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.plan-heading div {
  display: grid;
}

.plan-heading h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1;
}

.plan-heading div > span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.84rem;
}

.plan-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.15);
  color: #6f3eba;
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  margin: 30px 0 26px;
  align-items: baseline;
  gap: 6px;
}

.plan-price strong {
  font-size: clamp(2.65rem, 4vw, 4rem);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 0.88rem;
}

.plan-features {
  display: grid;
  margin: 0;
  padding: 25px 0 0;
  gap: 17px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #514a58;
  font-size: 0.88rem;
  line-height: 1.55;
}

.check-chip {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}

.plan-bottom {
  margin-top: auto;
  padding-top: 34px;
}

.plan-actions {
  display: grid;
  gap: 9px;
}

.plan-actions .button {
  width: 100%;
}

.plan-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

.subscription-disclaimer {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
  text-align: center;
}

.subscription-disclaimer a {
  color: #6f3eba;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contract-box {
  display: grid;
  margin-top: 28px;
  padding: clamp(36px, 5vw, 62px);
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 90px);
  border: 1px solid var(--line-soft);
  border-radius: 38px;
  background: var(--text);
  box-shadow: var(--shadow-card);
  color: #fff;
}

.contract-box .mini-label {
  color: var(--accent);
}

.contract-box h3 {
  margin: 22px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 670;
  letter-spacing: -0.058em;
  line-height: 1;
}

.contract-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}

.contract-copy .text-link {
  margin-top: 10px;
  color: #fff;
}

.commerce-contract-box {
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.commerce-contract-box > div:first-child,
.commerce-contract-box .contract-copy {
  display: grid;
  justify-items: center;
}

.commerce-contract-box h2 {
  max-width: 980px;
}

.commerce-contract-box .contract-copy {
  max-width: 900px;
}

.commerce-contract-box .contract-copy p {
  max-width: 860px;
}

.commerce-contract-box .button {
  margin-top: 12px;
}

/* Hospitality */
.hospitality-panel {
  padding: 44px;
  background:
    radial-gradient(circle at 82% 12%, rgba(var(--accent-rgb), 0.24), transparent 36%),
    #fff;
}

.hospitality-panel .mini-label {
  margin: 0;
  color: #7545c1;
}

.hospitality-metric {
  display: grid;
  margin-top: 100px;
}

.hospitality-metric strong {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 690;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hospitality-metric span {
  margin-top: 12px;
  color: var(--muted);
}

.hospitality-points {
  display: flex;
  margin-top: 54px;
  flex-wrap: wrap;
  gap: 10px;
}

.hospitality-points span {
  display: inline-flex;
  padding: 9px 12px;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.11);
  color: #63359f;
  font-size: 0.76rem;
  font-weight: 630;
}

.hospitality-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: end;
}

.large-body {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.75;
}

.process-strip {
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.process-strip article {
  min-height: 270px;
  padding: 30px 30px 30px 0;
  border-right: 1px solid var(--line);
}

.process-strip article + article {
  padding-left: 30px;
}

.process-strip article:last-child {
  border-right: 0;
}

.process-strip article > span {
  color: #7a49c7;
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.process-strip article > div {
  margin-top: 72px;
}

.process-strip h3 {
  margin: 0 0 11px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.process-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.62;
}

.hospitality-services-section {
  background: rgba(255, 255, 255, 0.5);
}

.affiliate-notice {
  display: grid;
  margin-top: 28px;
  padding: clamp(34px, 5vw, 56px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 90px);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 34px;
  background: rgba(var(--accent-rgb), 0.08);
}

.affiliate-notice h3 {
  margin: 16px 0 0;
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.affiliate-notice > div:last-child > p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

/* Relations */
.document-visual {
  position: relative;
  height: 496px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 25% 20%, rgba(var(--accent-rgb), 0.2), transparent 44%),
    #fff;
}

.document-sheet {
  position: absolute;
  top: 72px;
  right: 16%;
  width: 64%;
  height: 354px;
  padding: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(49, 37, 70, 0.15);
  transform: rotate(2deg);
}

.document-sheet-back {
  top: 92px;
  right: 23%;
  background: rgba(var(--accent-rgb), 0.2);
  transform: rotate(-7deg);
}

.document-sheet > span,
.document-sheet > strong,
.document-sheet > i {
  display: block;
  border-radius: 999px;
  background: #eceaf0;
}

.document-sheet > span {
  width: 38%;
  height: 9px;
  background: var(--accent);
}

.document-sheet > strong {
  width: 80%;
  height: 20px;
  margin-top: 27px;
  background: var(--text);
}

.document-sheet > i {
  width: 100%;
  height: 8px;
  margin-top: 22px;
}

.document-sheet > i:nth-of-type(2) {
  width: 88%;
}

.document-sheet > i:nth-of-type(3) {
  width: 67%;
}

.document-sheet > div {
  display: grid;
  width: 56px;
  height: 56px;
  margin-top: 38px;
  place-items: center;
  border-radius: 18px;
  background: var(--accent);
  color: #fff;
}

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

.relation-card {
  min-height: 410px;
  padding: 40px;
  border: 1px solid var(--line-soft);
  border-radius: 36px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.relation-card > span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.15);
  color: #6e3db7;
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.09em;
}

.relation-card h3 {
  margin: 108px 0 16px;
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  font-weight: 660;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.relation-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.relation-method-section {
  background: rgba(255, 255, 255, 0.52);
}

.stacked-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.stacked-steps li {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.stacked-steps li > span {
  color: #7b4ac7;
  font-size: 0.75rem;
  font-weight: 730;
}

.stacked-steps div {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 24px;
}

.stacked-steps strong {
  font-size: 1.05rem;
}

.stacked-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.scope-section {
  padding-bottom: 50px;
}

.scope-card {
  display: grid;
  padding: clamp(42px, 7vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: end;
  border-radius: 42px;
  background: var(--text);
  color: #fff;
}

.scope-card h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 670;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.scope-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* IT support */
.support-panel {
  padding: 38px;
  background:
    radial-gradient(circle at 88% 8%, rgba(var(--accent-rgb), 0.23), transparent 38%),
    #fff;
}

.support-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-status > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.13);
}

.support-status p {
  margin: 0;
  color: #7041b8;
  font-size: 0.76rem;
  font-weight: 710;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-area {
  display: flex;
  margin-top: 56px;
  padding: 25px 0;
  align-items: center;
  gap: 19px;
  border-bottom: 1px solid var(--line);
}

.support-area svg {
  color: #7041b8;
}

.support-area div {
  display: grid;
}

.support-area strong {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.support-area span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.support-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-service-card {
  min-height: 340px;
  padding: 36px;
  border: 1px solid var(--line-soft);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.support-service-card > span {
  color: #7b4bc6;
  font-size: 0.75rem;
  font-weight: 730;
  letter-spacing: 0.12em;
}

.support-service-card h3 {
  margin: 84px 0 16px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 660;
  letter-spacing: -0.048em;
  line-height: 1.08;
}

.support-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.66;
}

.support-principles-section {
  background: rgba(255, 255, 255, 0.52);
}

.support-principles,
.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.principles-list {
  border-top: 1px solid var(--line);
}

.principles-list > div {
  display: flex;
  min-height: 74px;
  padding: 20px 0;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 590;
}

.principles-list svg {
  flex: 0 0 auto;
  color: #7141bb;
}

/* About */
.about-portrait {
  height: 496px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--background);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(65px, 10vw, 140px);
}

.story-copy p {
  margin: 0 0 23px;
  color: #504a56;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.credentials-section {
  background: rgba(255, 255, 255, 0.52);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.credentials-grid article {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.credentials-grid article > span {
  color: #7848c4;
  font-size: 0.75rem;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credentials-grid h3 {
  margin: 98px 0 13px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.credentials-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Affiliate transparency */
.transparency-panel {
  display: flex;
  padding: 46px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 82% 12%, rgba(var(--accent-rgb), 0.26), transparent 40%),
    #fff;
}

.transparency-panel > svg {
  color: #7141ba;
}

.transparency-panel strong {
  margin-top: 30px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: -0.058em;
  line-height: 1;
}

.transparency-panel p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.affiliate-explainer {
  display: grid;
  gap: 18px;
}

.affiliate-explainer article {
  display: grid;
  padding: 42px 0;
  grid-template-columns: 70px minmax(240px, 0.6fr) minmax(0, 1.4fr);
  gap: 38px;
  align-items: start;
  border-top: 1px solid var(--line);
}

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

.affiliate-explainer h2 {
  margin: 4px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.affiliate-explainer p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.76;
}

.affiliate-programs-section {
  background: rgba(255, 255, 255, 0.52);
}

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

.affiliate-programs > div {
  min-height: 360px;
  padding: 44px;
  border: 1px solid var(--line-soft);
  border-radius: 36px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.affiliate-programs h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.affiliate-programs > div > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
}

.affiliate-programs .text-link {
  margin-top: 18px;
}

/* Legal and policy pages */
.legal-hero {
  padding: 180px 0 84px;
}

.legal-heading {
  max-width: 920px;
}

.legal-heading h1 {
  margin: 0;
  font-size: clamp(3.7rem, 7vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.legal-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.72;
}

.legal-heading > span {
  display: block;
  margin-top: 24px;
  color: #78717e;
  font-size: 0.77rem;
}

.legal-layout {
  display: grid;
  max-width: 920px;
  padding: 32px 0 50px;
}

.legal-layout > section {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.legal-layout > section:last-of-type {
  border-bottom: 1px solid var(--line);
}

.legal-layout h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 660;
  letter-spacing: -0.04em;
}

.legal-layout p {
  margin: 0 0 16px;
  color: #5c5661;
  line-height: 1.78;
}

.legal-layout section > a,
.legal-note a {
  color: #6f3eba;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.4);
  text-underline-offset: 4px;
}

.legal-note {
  margin-top: 46px;
  padding: 34px;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 30px;
  background: rgba(var(--accent-rgb), 0.08);
}

.legal-note strong {
  font-size: 1.15rem;
}

.legal-note p {
  margin-top: 12px;
}

.not-found {
  min-height: 720px;
  padding: 210px 0 120px;
  text-align: center;
}

.not-found .container {
  max-width: 820px;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.not-found p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.not-found .hero-actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  margin-top: 120px;
  padding: 65px 0 28px;
  background: #AD7CFB;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(420px, 1.5fr) auto;
  gap: 46px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  padding: 8px;
  border-radius: 15px;
  background: #fff;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-size: 0.98rem;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  font-size: 0.82rem;
  font-weight: 610;
}

.footer-links a,
.footer-legal a {
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-legal a:hover {
  text-decoration-line: underline;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: transparent;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-links a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links a[aria-label="Instagram"] .social-dot {
  fill: currentColor;
  stroke: none;
}

.footer-legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
}

.footer-legal p {
  margin: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 520;
  line-height: 1.8;
}

@media (max-width: 1180px) {
  .brand span {
    display: none;
  }

  .desktop-nav {
    gap: 17px;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .hero-layout {
    gap: 58px;
  }

  .portrait-caption {
    right: -12px;
  }

  .credentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .brand span,
  .mobile-menu {
    display: inline-flex;
  }

  .nav-shell {
    padding-right: 11px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 0;
  }

  .inner-hero-layout {
    grid-template-columns: 1fr;
  }

  .inner-hero-copy {
    max-width: 850px;
  }

  .inner-hero-card {
    width: min(100%, 650px);
  }

  .portrait-column {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .hero-copy {
    max-width: 820px;
    text-align: center;
  }

  .hero-copy .eyebrow {
    text-align: center;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .experience-layout,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 0;
  }

  .plan-bottom {
    margin-top: 34px;
  }

  .hospitality-intro,
  .support-principles,
  .values-layout,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-strip article:nth-child(2) {
    border-right: 0;
  }

  .process-strip article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .relations-grid {
    grid-template-columns: 1fr;
  }

  .relation-card {
    min-height: 330px;
  }

  .relation-card h3 {
    margin-top: 70px;
  }

  .scope-card,
  .contract-box,
  .affiliate-notice {
    grid-template-columns: 1fr;
  }

  .affiliate-explainer article {
    grid-template-columns: 60px minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 28px;
  }

  .experience-copy,
  .reviews-layout > .section-intro {
    max-width: 760px;
  }

  .proof-grid {
    max-width: 760px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .site-header {
    top: 12px;
  }

  .nav-shell {
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 7px 8px 7px 14px;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .brand span {
    font-size: 0.84rem;
  }

  .mobile-menu summary {
    width: 52px;
    height: 44px;
  }

  .home-hero {
    min-height: 0;
    padding: 118px 0 72px;
  }

  .portrait-frame {
    border-radius: 30px;
  }

  .portrait-caption {
    right: 12px;
    bottom: 12px;
    min-width: 0;
    padding: 12px 15px;
  }

  .portrait-caption strong {
    font-size: 0.76rem;
  }

  .portrait-caption span:last-child {
    font-size: 0.67rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 14vw, 5rem);
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .inner-hero {
    padding: 124px 0 72px;
  }

  .inner-hero-layout {
    gap: 52px;
  }

  .inner-hero-copy h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .inner-hero-copy > p:not(.eyebrow) {
    font-size: 1.06rem;
  }

  .inner-hero-copy .button {
    width: 100%;
  }

  .inner-hero-card {
    min-height: 0;
    padding: 8px;
    border-radius: 34px;
  }

  .partner-panel,
  .hospitality-panel,
  .support-panel,
  .transparency-panel,
  .document-visual,
  .about-portrait {
    height: 420px;
    border-radius: 27px;
  }

  .partner-panel,
  .hospitality-panel,
  .support-panel,
  .transparency-panel {
    padding: 30px;
  }

  .partner-panel h2 {
    font-size: 2.45rem;
  }

  .hospitality-metric {
    margin-top: 75px;
  }

  .hospitality-points {
    margin-top: 42px;
  }

  .document-sheet {
    top: 58px;
    right: 11%;
    width: 73%;
    height: 300px;
    padding: 32px;
  }

  .document-sheet-back {
    top: 76px;
    right: 20%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    justify-content: start;
    text-align: left;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .three-card-grid,
  .support-services-grid,
  .credentials-grid,
  .affiliate-programs {
    grid-template-columns: 1fr;
  }

  .info-card,
  .support-service-card,
  .credentials-grid article {
    min-height: 300px;
    padding: 30px;
    border-radius: 28px;
  }

  .scope-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plan-card {
    padding: 30px 24px 24px;
    border-radius: 28px;
  }

  .plan-heading {
    min-height: 0;
  }

  .plan-price {
    margin-top: 32px;
  }

  .contract-box,
  .affiliate-notice,
  .scope-card {
    padding: 32px 26px;
    border-radius: 30px;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-strip article,
  .process-strip article + article {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-strip article:first-child {
    border-top: 0;
  }

  .process-strip article > div {
    margin-top: 34px;
  }

  .relation-card {
    min-height: 310px;
    padding: 30px;
    border-radius: 28px;
  }

  .stacked-steps li {
    grid-template-columns: 45px 1fr;
  }

  .stacked-steps div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .affiliate-explainer article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .affiliate-programs > div {
    min-height: 0;
    padding: 32px 28px;
    border-radius: 30px;
  }

  .legal-hero {
    padding: 138px 0 54px;
  }

  .legal-heading h1 {
    font-size: clamp(3.15rem, 15vw, 5rem);
  }

  .legal-layout {
    padding-top: 12px;
  }

  .legal-layout > section {
    padding: 30px 0;
  }

  .not-found {
    min-height: 650px;
    padding: 160px 0 90px;
  }

  .service-card-1,
  .service-card-2,
  .service-card-3,
  .service-card-4 {
    grid-column: auto;
  }

  .service-card {
    min-height: 310px;
    border-radius: 30px;
  }

  .proof-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 190px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article,
  .method-grid article + article {
    min-height: 0;
    padding: 30px 0 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-grid article:last-child {
    border-bottom: 0;
  }

  .method-grid h3 {
    margin-top: 34px;
  }

  .review-card {
    min-height: 280px;
  }

  .final-cta {
    min-height: 0;
    padding: 38px 26px;
    border-radius: 34px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    margin-top: 88px;
    padding-top: 52px;
  }

  .footer-main {
    gap: 36px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-legal {
    margin-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* 2026 visual direction: cinematic scenes, paced sections and scroll-aware navigation */
.site-header {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
  will-change: transform;
}

.site-header.site-header-hidden {
  opacity: 0;
  transform: translate3d(0, calc(-100% - 34px), 0);
}

.desktop-nav,
.mobile-menu nav {
  letter-spacing: 0.045em;
}

.service-experience-section {
  padding-top: 136px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 13%),
    radial-gradient(circle at 50% 25%, rgba(var(--accent-rgb), 0.075), transparent 36%);
}

.service-scenes {
  display: grid;
  gap: 92px;
}

.service-scene-block {
  display: grid;
  gap: 26px;
}

.service-scene-heading {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-align: center;
}

.service-scene {
  position: relative;
  display: flex;
  min-height: 610px;
  overflow: hidden;
  padding: 42px;
  align-items: center;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 52px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 30px 90px rgba(49, 37, 70, 0.13);
  isolation: isolate;
}

.service-scene-commerce {
  background-image: url("../commerce-background.webp");
}

.service-scene-hospitality {
  background-image: url("../hospitality-background-sumup.webp");
}

.service-scene-support {
  background-image: url("../assistenza-background.webp");
}

.service-scene-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(243, 248, 252, 0.02) 20%, rgba(243, 248, 252, 0.5) 72%, rgba(243, 248, 252, 0.76)),
    linear-gradient(180deg, transparent 55%, rgba(25, 21, 31, 0.08));
}

.service-scene-copy {
  width: min(100%, 530px);
  padding: 44px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.68);
}

.service-scene-copy h3 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.3rem);
  font-weight: 690;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.service-scene-copy p {
  margin: 25px 0 30px;
  color: #4f4956;
  font-size: 1.04rem;
  line-height: 1.7;
}

.experience-section,
.method-section,
.reviews-section {
  background: transparent;
}

.experience-shell,
.method-shell {
  border: 1px solid rgba(25, 21, 31, 0.07);
  border-radius: 50px;
  background:
    radial-gradient(circle at 88% 10%, rgba(var(--accent-rgb), 0.14), transparent 30%),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  padding: 68px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.experience-shell .experience-copy {
  display: grid;
  max-width: 980px;
  justify-items: center;
}

.experience-shell .experience-copy p {
  max-width: 820px;
}

.experience-shell .proof-grid {
  width: 100%;
  max-width: 980px;
}

.method-shell {
  padding: 64px;
}

.method-shell .method-grid {
  margin-top: 58px;
}

.inner-hero-photo {
  overflow: hidden;
  padding: 0;
}

.hero-photo-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 520px;
  padding: 28px;
  align-items: flex-end;
  justify-content: flex-end;
  border-radius: inherit;
  background-position: center;
  background-size: cover;
}

.hero-photo-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 30%, rgba(25, 21, 31, 0.18));
  content: "";
}

.hero-photo-hospitality {
  background-image: url("../hospitality-background-sumup.webp");
}

.hero-photo-support {
  background-image: url("../assistenza-background.webp");
}

.hero-photo-note {
  position: relative;
  z-index: 1;
  width: min(100%, 410px);
  padding: 28px;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-photo-note h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero-photo-note p {
  margin: 14px 0 0;
  color: #4f4956;
  line-height: 1.55;
}

.commerce-benefits-shell,
.hospitality-support-shell,
.relation-method-shell,
.story-layout {
  border: 1px solid var(--line-soft);
  border-radius: 50px;
  background:
    radial-gradient(circle at 88% 10%, rgba(var(--accent-rgb), 0.13), transparent 28%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.commerce-benefits-shell {
  padding: 70px;
}

.commerce-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.commerce-feature-grid article {
  display: flex;
  min-height: 560px;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 45px rgba(49, 37, 70, 0.055);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.commerce-feature-grid article:hover {
  border-color: rgba(var(--accent-rgb), 0.34);
  box-shadow: 0 24px 58px rgba(var(--accent-rgb), 0.14);
  transform: translateY(-5px);
}

.commerce-feature-image {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  background: rgba(var(--accent-rgb), 0.12);
}

.commerce-feature-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(25, 21, 31, 0.08));
  content: "";
  pointer-events: none;
}

.commerce-feature-image img {
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.commerce-feature-grid article:hover .commerce-feature-image img {
  transform: scale(1.035);
}

.commerce-feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: -34px;
  padding: 52px 32px 34px;
  flex: 1;
  flex-direction: column;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  background:
    radial-gradient(circle at 14% 0, rgba(var(--accent-rgb), 0.24), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(246, 239, 255, 0.76));
  box-shadow:
    0 -16px 38px rgba(var(--accent-rgb), 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  backdrop-filter: blur(22px) saturate(155%);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.commerce-feature-grid article:hover .commerce-feature-copy {
  border-color: rgba(var(--accent-rgb), 0.38);
  background:
    radial-gradient(circle at 14% 0, rgba(var(--accent-rgb), 0.31), transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(243, 233, 255, 0.8));
  box-shadow:
    0 -18px 44px rgba(var(--accent-rgb), 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.commerce-feature-grid h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.commerce-feature-grid p {
  margin: 22px 0 0;
  color: var(--muted);
}

.commerce-benefits-shell .scope-note {
  margin-top: 22px;
}

.plan-features li {
  position: relative;
  padding-left: 31px;
}

.plan-features li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.contract-box h2,
.affiliate-notice h2,
.sumup-referral-notice h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1;
}

.sumup-overview-section {
  background:
    radial-gradient(circle at 12% 5%, rgba(var(--accent-rgb), 0.12), transparent 26%),
    rgba(255, 255, 255, 0.56);
}

.sumup-overview-shell {
  display: grid;
  gap: 40px;
}

.sumup-overview-shell .centered-intro {
  margin-bottom: 0;
}

.sumup-overview-panel {
  padding: clamp(42px, 6vw, 74px) clamp(24px, 7vw, 88px);
  border: 1px solid rgba(var(--accent-rgb), 0.27);
  border-radius: 44px;
  background:
    radial-gradient(circle at 14% 0, rgba(var(--accent-rgb), 0.28), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(243, 233, 255, 0.76));
  box-shadow:
    0 26px 64px rgba(var(--accent-rgb), 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  text-align: center;
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  backdrop-filter: blur(24px) saturate(155%);
}

.sumup-overview-panel p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.75;
}

.hospitality-support-shell {
  display: flex;
  gap: 48px;
  padding: 70px;
  flex-direction: column;
  align-items: stretch;
}

.hospitality-support-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hospitality-support-list article {
  padding: 25px 28px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0, rgba(var(--accent-rgb), 0.19), transparent 48%),
    rgba(255, 255, 255, 0.84);
  text-align: center;
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.hospitality-support-list h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.hospitality-support-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.affiliate-section {
  padding-top: 24px;
}

.support-services-section,
.relations-topics-section,
.about-story-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.46), transparent);
}

.support-service-card h3 {
  margin-top: 50px;
}

.principles-list > div {
  position: relative;
  padding: 22px 24px 22px 29px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.principles-list > div::before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 11px;
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.relation-card {
  min-height: 410px;
  padding: 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(var(--accent-rgb), 0.15), transparent 33%),
    #fff;
}

.relation-card h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
}

.relation-card p {
  margin-top: auto;
  padding-top: 48px;
}

.relation-method-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 70px;
  padding: 70px;
  align-items: center;
}

.scope-card {
  background:
    radial-gradient(circle at 10% 0, rgba(var(--accent-rgb), 0.18), transparent 34%),
    #fff;
}

.story-layout {
  padding: 70px;
}

.affiliate-explainer article {
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  padding: 48px 0;
}

.affiliate-programs > div,
.transparency-panel {
  background:
    radial-gradient(circle at 100% 0, rgba(var(--accent-rgb), 0.14), transparent 35%),
    rgba(255, 255, 255, 0.92);
}

.footer-main {
  grid-template-columns: 1fr auto;
}

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

@media (max-width: 1100px) {
  .experience-shell,
  .hospitality-support-shell,
  .relation-method-shell {
    grid-template-columns: 1fr;
  }

  .commerce-feature-grid {
    grid-template-columns: 1fr;
  }

  .commerce-feature-grid article {
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .service-experience-section {
    padding-top: 92px;
  }

  .service-scenes {
    gap: 58px;
  }

  .service-scene-block {
    gap: 20px;
  }

  .service-scene-heading {
    font-size: clamp(2.4rem, 12vw, 3.9rem);
  }

  .service-scene {
    min-height: 570px;
    padding: 14px;
    align-items: flex-end;
    border-radius: 34px;
    background-position: 42% center;
  }

  .service-scene-shade {
    background: linear-gradient(180deg, transparent 8%, rgba(243, 248, 252, 0.18) 38%, rgba(243, 248, 252, 0.84) 100%);
  }

  .service-scene-copy {
    padding: 28px;
    border-radius: 27px;
  }

  .service-scene-copy h3 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .experience-shell,
  .method-shell,
  .commerce-benefits-shell,
  .hospitality-support-shell,
  .relation-method-shell,
  .story-layout {
    padding: 32px 24px;
    border-radius: 32px;
  }

  .experience-shell {
    gap: 46px;
  }

  .hero-photo-card {
    min-height: 430px;
    padding: 14px;
    background-position: 42% center;
  }

  .hero-photo-note {
    padding: 23px;
    border-radius: 23px;
  }

  .sumup-overview-panel {
    padding: 34px 22px;
    border-radius: 32px;
  }

  .affiliate-explainer article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-links {
    align-items: center;
    justify-content: center;
  }
}

/* About: book and discography */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-book-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 52%, rgba(var(--accent-rgb), 0.14), transparent 28%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.44), transparent);
}

.about-book-shell {
  display: grid;
  padding: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(58px, 8vw, 112px);
  align-items: center;
  border-radius: 52px;
  background:
    radial-gradient(circle at 4% 8%, rgba(var(--accent-rgb), 0.2), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.5));
  box-shadow:
    0 30px 90px rgba(49, 37, 70, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.about-book-cover {
  width: min(100%, 390px);
  margin-inline: auto;
  filter: drop-shadow(0 30px 34px rgba(24, 19, 32, 0.24));
  transform: rotate(-1.4deg);
}

.about-book-cover img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 26px;
}

.about-book-copy {
  max-width: 650px;
}

.about-book-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.about-book-subtitle {
  margin: 24px 0 0;
  color: #7443c0;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-book-copy > p:not(.eyebrow):not(.about-book-subtitle) {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.78;
}

.about-book-copy .button {
  margin-top: 32px;
}

.about-music-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(var(--accent-rgb), 0.18), transparent 25%),
    radial-gradient(circle at 10% 90%, rgba(var(--accent-rgb), 0.11), transparent 28%);
}

.about-music-heading {
  max-width: 940px;
}

.about-music-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 25px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.about-music-cta {
  margin-top: 28px;
}

.music-carousel {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 12% 0, rgba(var(--accent-rgb), 0.22), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42));
  box-shadow:
    0 32px 88px rgba(49, 37, 70, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.music-carousel-toolbar {
  display: flex;
  padding: 2px 2px 22px;
  align-items: center;
  justify-content: space-between;
}

.music-carousel-toolbar > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 740;
  letter-spacing: 0.12em;
}

.music-carousel-toolbar > p span:first-child {
  color: #7443c0;
}

.music-carousel-controls {
  display: flex;
  gap: 10px;
}

.music-carousel-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 12px 28px rgba(49, 37, 70, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--text);
  cursor: pointer;
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  backdrop-filter: blur(18px) saturate(155%);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.music-carousel-controls button:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(var(--accent-rgb), 0.16);
  color: #6f3fbb;
  transform: translateY(-2px);
}

.music-carousel-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.music-carousel-track {
  display: flex;
  gap: 22px;
  padding: 4px 3px 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 3px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.music-carousel-track::-webkit-scrollbar {
  display: none;
}

.music-release-card {
  position: relative;
  flex: 0 0 clamp(300px, 29vw, 370px);
  padding: 12px 12px 14px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 0, rgba(var(--accent-rgb), 0.18), transparent 44%),
    rgba(255, 255, 255, 0.5);
  box-shadow:
    0 20px 46px rgba(32, 24, 44, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.music-release-card:hover {
  border-color: rgba(var(--accent-rgb), 0.46);
  box-shadow:
    0 28px 62px rgba(32, 24, 44, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-5px);
}

.music-release-cover {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 25px;
  background: #151218;
}

.music-release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-release-copy {
  position: relative;
  z-index: 1;
  min-height: 154px;
  margin: -48px 9px 0;
  padding: 21px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 25px;
  background:
    radial-gradient(circle at 12% 0, rgba(var(--accent-rgb), 0.2), transparent 50%),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 16px 34px rgba(32, 24, 44, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(25px) saturate(165%);
  backdrop-filter: blur(25px) saturate(165%);
}

.music-release-copy p {
  margin: 0 0 7px;
  color: #7341bf;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.music-release-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.music-release-copy span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 620;
}

.about-doom-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(var(--accent-rgb), 0.3), transparent 30%),
    radial-gradient(circle at 90% 92%, rgba(var(--accent-rgb), 0.18), transparent 28%),
    #17131d;
}

.about-doom-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 32%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 79px,
      rgba(255, 255, 255, 0.018) 80px
    );
  content: "";
  pointer-events: none;
}

.about-doom-section .container {
  position: relative;
  z-index: 1;
}

.about-doom-heading {
  max-width: 900px;
}

.about-doom-heading .eyebrow {
  color: #c9a7ff;
}

.about-doom-heading h2 {
  color: #fff;
}

.about-doom-heading > p:last-child {
  max-width: 700px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.66);
}

.doom-maps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.doom-map-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 0, rgba(var(--accent-rgb), 0.22), transparent 42%),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.doom-map-card:hover {
  border-color: rgba(var(--accent-rgb), 0.54);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.4),
    0 0 54px rgba(var(--accent-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
}

.doom-map-image {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 31px;
  background: #0b090e;
}

.doom-map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.doom-map-card:hover .doom-map-image img {
  transform: scale(1.025);
}

.doom-map-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 224px;
  margin: -88px 18px 18px;
  padding: 29px;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0, rgba(var(--accent-rgb), 0.28), transparent 50%),
    rgba(20, 16, 26, 0.72);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff;
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
}

.doom-map-copy > p {
  margin: 0 0 8px;
  color: #c9a7ff;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doom-map-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.doom-map-copy .button {
  margin-top: auto;
}

@media (max-width: 980px) {
  .about-book-shell {
    grid-template-columns: minmax(250px, 0.84fr) minmax(0, 1.16fr);
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .about-book-shell {
    padding: 25px 22px 34px;
    grid-template-columns: 1fr;
    gap: 44px;
    border-radius: 36px;
  }

  .about-book-cover {
    width: min(84%, 350px);
  }

  .about-book-copy {
    text-align: center;
  }

  .about-book-copy h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .about-book-copy .button {
    width: 100%;
  }

  .about-music-cta {
    width: 100%;
  }

  .music-carousel {
    padding: 18px 14px;
    border-radius: 34px;
  }

  .music-carousel-toolbar {
    padding: 0 2px 16px;
  }

  .music-carousel-controls button {
    width: 44px;
    height: 44px;
  }

  .music-carousel-track {
    gap: 15px;
    scroll-padding-inline: 2px;
  }

  .music-release-card {
    flex-basis: min(82vw, 340px);
    border-radius: 29px;
  }

  .music-release-copy {
    min-height: 148px;
    margin-inline: 5px;
  }

  .doom-maps-grid {
    grid-template-columns: 1fr;
  }

  .doom-map-card {
    padding: 9px;
    border-radius: 32px;
  }

  .doom-map-image {
    border-radius: 25px;
  }

  .doom-map-copy {
    min-height: 220px;
    margin: -64px 8px 8px;
    padding: 25px 22px;
    border-radius: 25px;
  }

  .doom-map-copy .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .music-release-card,
  .music-carousel-controls button,
  .doom-map-card,
  .doom-map-image img {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header.site-header-hidden {
    opacity: 1;
    transform: none;
  }
}

/* Client carousel and direct-action service buttons */
.service-scene-copy .button {
  border-color: transparent;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(var(--accent-rgb), 0.28);
  color: #fff;
}

.service-scene-copy .button:hover {
  border-color: transparent;
  background: var(--accent);
  box-shadow: 0 20px 42px rgba(var(--accent-rgb), 0.42);
  color: #fff;
  transform: translateY(-3px) scale(1.025);
}

.clients-section {
  overflow: hidden;
  padding: 116px 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(var(--accent-rgb), 0.12), transparent 24%),
    rgba(255, 255, 255, 0.62);
}

.clients-heading {
  margin-bottom: 48px;
  text-align: center;
}

.clients-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.clients-marquee {
  overflow: hidden;
  padding: 18px 0 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  animation: clients-scroll 38s linear infinite;
}

.clients-marquee:hover .clients-track,
.clients-marquee:focus-within .clients-track {
  animation-play-state: paused;
}

.clients-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.client-logo {
  display: grid;
  width: 286px;
  height: 154px;
  flex: 0 0 286px;
  padding: 28px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(49, 37, 70, 0.065);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.client-logo:hover,
.client-logo:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.7);
  background: #fff;
  box-shadow: 0 22px 52px rgba(var(--accent-rgb), 0.2);
  transform: translateY(-7px);
}

.client-logo:hover img,
.client-logo:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.footer-legal .footer-ai-disclosure {
  margin-bottom: 15px;
  color: #fff;
  font-size: 0.78rem;
}

.home-final-cta {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.home-final-cta > div {
  display: grid;
  max-width: 820px;
  justify-items: center;
}

.home-final-cta .button {
  margin-bottom: 0;
}

/* Commerce: centered Shopify hero, plan introduction and final choice */
.commerce-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: 154px 0 96px;
  place-items: center;
  background-image: url("../commerce-hero-background.webp");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.commerce-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 248, 252, 0.2), rgba(243, 248, 252, 0.34)),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.12), rgba(25, 21, 31, 0.08));
  content: "";
  pointer-events: none;
}

.commerce-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(42px, 5vw, 68px) clamp(24px, 3vw, 42px);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 48px;
  background:
    radial-gradient(circle at 18% 0, rgba(var(--accent-rgb), 0.14), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(243, 248, 252, 0.66));
  box-shadow:
    0 34px 90px rgba(25, 21, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  text-align: center;
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  backdrop-filter: blur(26px) saturate(155%);
}

.commerce-hero-content h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3rem, 4.3vw, 4.45rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
  white-space: nowrap;
}

.commerce-partner-pill {
  display: inline-flex;
  margin-top: 34px;
  padding: 23px 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(135deg, #7c4fc7 0%, var(--accent) 68%, #986be2 100%);
  box-shadow:
    0 20px 46px rgba(var(--accent-rgb), 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.commerce-partner-pill img {
  width: clamp(285px, 27vw, 360px);
  height: auto;
  filter: drop-shadow(0 3px 7px rgba(25, 21, 31, 0.18));
}

.commerce-hero-content > p {
  max-width: 980px;
  margin: 30px 0 0;
  color: #4f4855;
  font-size: clamp(1.12rem, 1.75vw, 1.42rem);
  line-height: 1.65;
}

.commerce-benefits-section {
  padding: 58px 0 62px;
}

.commerce-benefits-shell {
  padding: 54px;
}

.commerce-benefits-shell .centered-intro {
  margin-bottom: 42px;
}

.plans-section {
  padding-top: 70px;
}

.plans-intro {
  max-width: 900px;
}

.commerce-final-cta {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.commerce-final-cta > div {
  display: grid;
  max-width: 880px;
  justify-items: center;
}

.commerce-final-cta .button {
  margin-bottom: 0;
}

/* Ristoranti e bar: photo hero, SumUp referral and centered glass sections */
.hospitality-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: 154px 0 96px;
  place-items: center;
  background-image: url("../hospitality-background-sumup.webp");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.support-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: 154px 0 96px;
  place-items: center;
  background-image: url("../assistenza-background.webp");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.about-hero {
  position: relative;
  display: grid;
  place-items: center;
  background: #171a1d;
  isolation: isolate;
}

.about-hero-background {
  z-index: 0;
  object-fit: cover;
  object-position: 50% top;
  transform: scale(1.3);
  transform-origin: 50% top;
}

.inner-hero.about-hero::before {
  z-index: 1;
}

.inner-hero.about-hero .about-hero-content {
  z-index: 2;
}

.hospitality-hero::before,
.support-hero::before,
.about-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 248, 252, 0.13), rgba(243, 248, 252, 0.28)),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), rgba(25, 21, 31, 0.17));
  content: "";
  pointer-events: none;
}

.hospitality-hero-content,
.support-hero-content,
.about-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(42px, 5vw, 68px) clamp(24px, 3vw, 42px);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 48px;
  background:
    radial-gradient(circle at 18% 0, rgba(var(--accent-rgb), 0.16), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(243, 248, 252, 0.66));
  box-shadow:
    0 34px 90px rgba(25, 21, 31, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  text-align: center;
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  backdrop-filter: blur(26px) saturate(155%);
}

.hospitality-hero-content h1,
.support-hero-content h1,
.about-hero-content h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3rem, 4.3vw, 4.45rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hospitality-hero-content > p,
.support-hero-content > p,
.about-hero-content > p {
  max-width: 920px;
  margin: 30px 0 0;
  color: #4f4855;
  font-size: clamp(1.12rem, 1.75vw, 1.42rem);
  line-height: 1.65;
}

.sumup-logo-pill {
  display: inline-flex;
  margin-top: 34px;
  padding: 17px 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0, rgba(var(--accent-rgb), 0.19), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 238, 255, 0.9));
  box-shadow:
    0 20px 46px rgba(var(--accent-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.sumup-logo-pill img {
  width: clamp(180px, 18vw, 260px);
  height: auto;
  filter: brightness(0) drop-shadow(0 3px 7px rgba(25, 21, 31, 0.13));
}

.support-location-pill {
  display: inline-flex;
  margin-top: 34px;
  padding: 16px 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 999px;
  background:
    radial-gradient(circle at 15% 0, rgba(var(--accent-rgb), 0.21), transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 238, 255, 0.86));
  box-shadow:
    0 20px 46px rgba(var(--accent-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  color: #4f4855;
  font-size: 0.9rem;
  font-weight: 680;
}

.support-location-pill span {
  padding: 0 16px;
  white-space: nowrap;
}

.support-location-pill span + span {
  border-left: 1px solid rgba(var(--accent-rgb), 0.3);
}

/* Identical geometry for the four principal header-page heroes */
.commerce-hero,
.hospitality-hero,
.support-hero,
.about-hero {
  height: 720px;
  min-height: 720px;
  padding: 120px 0 50px;
}

.commerce-hero-content,
.hospitality-hero-content,
.support-hero-content,
.about-hero-content {
  height: 520px;
  justify-content: center;
}

.support-services-section {
  background:
    radial-gradient(circle at 12% 5%, rgba(var(--accent-rgb), 0.11), transparent 27%),
    rgba(255, 255, 255, 0.48);
}

.support-services-shell,
.support-principles-shell {
  padding: 70px;
  border: 1px solid var(--line-soft);
  border-radius: 50px;
  background:
    radial-gradient(circle at 88% 10%, rgba(var(--accent-rgb), 0.14), transparent 30%),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
}

.support-services-shell .centered-intro,
.support-principles-shell .centered-intro {
  margin-bottom: 42px;
}

.support-services-shell .centered-intro {
  max-width: 1050px;
}

.support-services-shell .support-services-title {
  font-size: clamp(2.2rem, 4.35vw, 4.35rem);
}

.support-services-title span {
  display: block;
  white-space: nowrap;
}

.support-service-card {
  display: flex;
  min-height: 510px;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
  border-color: rgba(var(--accent-rgb), 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 44px rgba(var(--accent-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.support-service-card:hover {
  border-color: rgba(var(--accent-rgb), 0.43);
  box-shadow: 0 25px 58px rgba(var(--accent-rgb), 0.18);
  transform: translateY(-5px);
}

.support-service-image {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background-color: rgba(var(--accent-rgb), 0.12);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 200% auto;
  transition: background-size 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.support-service-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(25, 21, 31, 0.11));
  content: "";
  pointer-events: none;
}

.support-service-image-left {
  background-position: left center;
}

.support-service-image-right {
  background-position: right center;
}

.support-service-card:hover .support-service-image {
  background-size: 207% auto;
}

.support-service-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 250px;
  margin-top: -34px;
  padding: 52px 30px 32px;
  flex: 1;
  flex-direction: column;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  background:
    radial-gradient(circle at 14% 0, rgba(var(--accent-rgb), 0.24), transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(246, 239, 255, 0.74));
  box-shadow:
    0 -16px 38px rgba(var(--accent-rgb), 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  backdrop-filter: blur(22px) saturate(155%);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.support-service-card:hover .support-service-copy {
  border-color: rgba(var(--accent-rgb), 0.38);
  background:
    radial-gradient(circle at 14% 0, rgba(var(--accent-rgb), 0.31), transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(243, 233, 255, 0.8));
  box-shadow:
    0 -18px 44px rgba(var(--accent-rgb), 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.support-service-copy h3 {
  margin: 0;
}

.support-service-copy p {
  margin-top: 20px;
}

.support-principles-section {
  background: transparent;
}

.support-principles-shell {
  display: flex;
  gap: 0;
  flex-direction: column;
  align-items: stretch;
}

.support-principles-shell .principles-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
}

.support-principles-shell .principles-list > div {
  min-height: 110px;
  padding: 26px 28px 26px 34px;
  justify-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0, rgba(var(--accent-rgb), 0.19), transparent 48%),
    rgba(255, 255, 255, 0.84);
  text-align: center;
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.support-principles-shell .principles-list > div::before {
  top: 20px;
  bottom: 20px;
}

.support-essential-section {
  padding-top: 42px;
  background:
    radial-gradient(circle at 50% 14%, rgba(var(--accent-rgb), 0.14), transparent 34%),
    rgba(255, 255, 255, 0.32);
}

.support-essential-shell {
  padding: 70px;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 50px;
  background:
    radial-gradient(circle at 84% 5%, rgba(var(--accent-rgb), 0.2), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(246, 239, 255, 0.66));
  box-shadow:
    0 28px 80px rgba(var(--accent-rgb), 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  backdrop-filter: blur(24px) saturate(155%);
}

.support-essential-shell .centered-intro {
  margin-bottom: 42px;
}

.support-essential-card {
  width: min(100%, 620px);
  min-height: 0;
  margin-inline: auto;
  border-color: rgba(var(--accent-rgb), 0.36);
  background:
    radial-gradient(circle at 14% 0, rgba(var(--accent-rgb), 0.2), transparent 43%),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 24px 62px rgba(var(--accent-rgb), 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
}

.support-essential-card .plan-heading {
  min-height: 0;
}

.support-essential-card .plan-bottom {
  margin-top: 36px;
  padding-top: 0;
}

.support-essential-disclaimer {
  margin-top: 24px;
}

.support-essential-disclaimer a {
  color: #6f3eba;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-final-cta {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.support-final-cta > div {
  display: grid;
  max-width: 880px;
  justify-items: center;
}

.support-final-cta .button {
  margin-bottom: 0;
}

.hospitality-support-shell .centered-intro {
  margin-bottom: 0;
}

.sumup-referral-section {
  padding-top: 24px;
}

.sumup-referral-notice {
  display: flex;
  padding: clamp(48px, 6vw, 78px) clamp(24px, 6vw, 72px);
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 50px;
  background:
    radial-gradient(circle at 14% 0, rgba(var(--accent-rgb), 0.26), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(243, 233, 255, 0.78));
  box-shadow:
    0 28px 72px rgba(var(--accent-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  text-align: center;
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  backdrop-filter: blur(24px) saturate(155%);
}

.sumup-referral-notice h2 {
  max-width: 900px;
  margin-top: 0;
}

.sumup-referral-notice > p {
  max-width: 850px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.sumup-referral-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: center;
  gap: 12px;
}

.sumup-referral-actions .button {
  margin: 0;
}

.sumup-referral-notice small {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(79, 72, 85, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.home-service-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-service-links .button {
  margin: 0;
}

@media (max-width: 1100px) {
  .commerce-hero,
  .hospitality-hero,
  .support-hero,
  .about-hero {
    height: 800px;
    min-height: 800px;
    padding: 120px 0 50px;
  }

  .commerce-hero-content,
  .hospitality-hero-content,
  .support-hero-content,
  .about-hero-content {
    height: 600px;
  }

  .support-principles-shell .principles-list {
    grid-template-columns: 1fr;
  }

  .commerce-hero-content h1 {
    max-width: 980px;
    white-space: normal;
  }

  .hospitality-support-list {
    grid-template-columns: 1fr;
  }
}

@keyframes clients-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .clients-section {
    padding: 88px 0;
  }

  .clients-heading {
    margin-bottom: 32px;
  }

  .clients-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .client-logo {
    width: 238px;
    height: 134px;
    flex-basis: 238px;
    padding: 23px;
    border-radius: 26px;
  }

  .commerce-hero {
    min-height: 760px;
    padding: 126px 0 66px;
    background-position: 52% center;
  }

  .commerce-hero-content {
    width: min(calc(100% - 32px), var(--container));
    padding: 36px 20px;
    border-radius: 34px;
  }

  .commerce-hero-content h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
    white-space: normal;
  }

  .commerce-partner-pill {
    width: min(100%, 310px);
    margin-top: 28px;
    padding: 15px 24px;
  }

  .commerce-partner-pill img {
    width: min(100%, 260px);
  }

  .commerce-hero-content > p {
    font-size: 1.06rem;
  }

  .hospitality-hero {
    min-height: 760px;
    padding: 126px 0 66px;
    background-position: 44% center;
  }

  .hospitality-hero-content {
    width: min(calc(100% - 32px), var(--container));
    padding: 36px 20px;
    border-radius: 34px;
  }

  .hospitality-hero-content h1 {
    font-size: clamp(2.65rem, 12vw, 4.5rem);
  }

  .hospitality-hero-content > p {
    font-size: 1.06rem;
  }

  .support-hero {
    min-height: 760px;
    padding: 126px 0 66px;
    background-position: center;
  }

  .support-hero-content {
    width: min(calc(100% - 32px), var(--container));
    padding: 36px 20px;
    border-radius: 34px;
  }

  .support-hero-content h1 {
    font-size: clamp(2.65rem, 12vw, 4.5rem);
  }

  .support-hero-content > p {
    font-size: 1.06rem;
  }

  .about-hero-background {
    object-position: 21% top;
  }

  .about-hero-content {
    width: min(calc(100% - 32px), var(--container));
    padding: 36px 20px;
    border-radius: 34px;
  }

  .about-hero-content h1 {
    font-size: clamp(2.65rem, 12vw, 4.5rem);
  }

  .about-hero-content > p {
    font-size: 1.06rem;
  }

  .sumup-logo-pill {
    width: min(100%, 290px);
    margin-top: 28px;
    padding: 14px 24px;
  }

  .sumup-logo-pill img {
    width: min(100%, 225px);
  }

  .commerce-hero,
  .hospitality-hero,
  .support-hero,
  .about-hero {
    height: 820px;
    min-height: 820px;
    padding: 126px 0 50px;
  }

  .commerce-hero-content,
  .hospitality-hero-content,
  .support-hero-content,
  .about-hero-content {
    height: 620px;
  }

  .support-location-pill {
    display: grid;
    width: min(100%, 310px);
    margin-top: 28px;
    padding: 7px 20px;
  }

  .support-location-pill span {
    padding: 9px 4px;
    white-space: normal;
  }

  .support-location-pill span + span {
    border-top: 1px solid rgba(var(--accent-rgb), 0.28);
    border-left: 0;
  }

  .support-services-shell,
  .support-principles-shell,
  .support-essential-shell {
    padding: 32px 24px;
    border-radius: 32px;
  }

  .support-services-title span {
    white-space: normal;
  }

  .support-service-card {
    min-height: 0;
  }

  .support-service-image {
    min-height: 235px;
  }

  .support-service-copy {
    min-height: 220px;
    padding: 48px 24px 28px;
  }

  .sumup-referral-notice {
    padding: 42px 22px;
    border-radius: 34px;
  }

  .sumup-referral-actions,
  .sumup-referral-actions .button {
    width: 100%;
  }

  .sumup-referral-actions {
    display: grid;
  }

  .commerce-benefits-section {
    padding: 44px 0 48px;
  }

  .commerce-benefits-shell {
    padding: 30px 20px;
  }

  .commerce-benefits-shell .centered-intro {
    margin-bottom: 34px;
  }

  .plans-section {
    padding-top: 60px;
  }

  .commerce-hero-content > .button,
  .home-service-links,
  .home-service-links .button {
    width: 100%;
  }

  .home-service-links {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .clients-track {
    animation: none;
  }

  .clients-group[aria-hidden="true"] {
    display: none;
  }
}

/* Homepage hero credentials: one liquid-glass pill, three distinct items */
.trust-pillbox {
  width: fit-content;
  max-width: 100%;
  flex-wrap: nowrap;
  gap: 0;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 0, rgba(var(--accent-rgb), 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46));
  box-shadow:
    0 18px 42px rgba(49, 37, 70, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--text);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
}

.trust-pillbox span {
  padding: 0 16px;
  justify-content: center;
  white-space: nowrap;
}

.trust-pillbox span:first-child {
  padding-left: 0;
}

.trust-pillbox span:last-child {
  padding-right: 0;
}

.trust-pillbox span + span {
  border-left: 1px solid rgba(var(--accent-rgb), 0.28);
}

@media (max-width: 760px) {
  .trust-pillbox {
    display: grid;
    width: 100%;
    padding: 7px 18px;
    justify-content: stretch;
    border-radius: 30px;
    text-align: center;
  }

  .trust-pillbox span,
  .trust-pillbox span:first-child,
  .trust-pillbox span:last-child {
    padding: 11px 4px;
    white-space: normal;
  }

  .trust-pillbox span + span {
    border-top: 1px solid rgba(var(--accent-rgb), 0.24);
    border-left: 0;
  }
}

/* Fluid transition from the homepage hero into the first service */
.service-experience-section {
  position: relative;
  z-index: 1;
  padding-top: 78px;
  isolation: isolate;
}

.home-services-wave {
  position: absolute;
  top: -190px;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 300px;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.home-services-wave svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 30px rgba(var(--accent-rgb), 0.08));
}

.service-scenes {
  position: relative;
  z-index: 1;
}

.service-scene-heading-glass {
  width: fit-content;
  max-width: calc(100vw - 40px);
  margin-inline: auto;
  padding: 22px 44px 25px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0, rgba(var(--accent-rgb), 0.22), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46));
  box-shadow:
    0 24px 58px rgba(49, 37, 70, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(28px) saturate(175%);
  backdrop-filter: blur(28px) saturate(175%);
}

@media (max-width: 760px) {
  .service-experience-section {
    padding-top: 58px;
  }

  .home-services-wave {
    top: -145px;
    height: 230px;
  }

  .service-scene-heading-glass {
    max-width: calc(100vw - 28px);
    padding: 17px 25px 20px;
    border-radius: 38px;
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }
}

/* About page: the final Doom section meets the footer without an empty band */
.about-page + .site-footer {
  margin-top: 0;
}

/* Ethical code: a text-only, deliberately paced manifesto */
.ethics-page {
  background:
    radial-gradient(circle at 50% 9%, rgba(var(--accent-rgb), 0.1), transparent 27%),
    #f6f4f8;
}

.ethics-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 205px 0 125px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--accent-rgb), 0.4), transparent 39%),
    linear-gradient(180deg, #17131d 0%, #21192a 100%);
}

.ethics-hero::after {
  position: absolute;
  right: 10%;
  bottom: 0;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
}

.ethics-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1130px;
  text-align: center;
}

.ethics-hero-copy .eyebrow {
  margin-bottom: 30px;
  color: #d8c2ff;
}

.ethics-hero-copy h1 {
  margin: 0;
  font-size: clamp(3.8rem, 8.1vw, 7.8rem);
  font-weight: 680;
  letter-spacing: -0.075em;
  line-height: 0.91;
  text-wrap: balance;
}

.ethics-hero-copy > p:last-child {
  max-width: 720px;
  margin: 38px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.08rem, 1.65vw, 1.38rem);
  line-height: 1.75;
  text-wrap: balance;
}

.ethics-manifesto-section {
  padding: 120px 0 0;
}

.ethics-manifesto {
  max-width: 940px;
}

.ethics-preamble {
  padding: 0 0 88px;
  border-bottom: 1px solid rgba(25, 21, 31, 0.16);
}

.ethics-preamble p {
  margin: 0;
  color: #302a35;
  font-size: clamp(1.24rem, 2vw, 1.56rem);
  font-weight: 480;
  letter-spacing: -0.022em;
  line-height: 1.85;
}

.ethics-preamble p + p {
  margin-top: 34px;
}

.ethics-principles {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ethics-principle {
  display: grid;
  padding: 82px 0;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 34px;
  border-bottom: 1px solid rgba(25, 21, 31, 0.13);
}

.ethics-number {
  padding-top: 6px;
  color: rgba(var(--accent-rgb), 0.72);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.18em;
}

.ethics-principle h2 {
  margin: 0 0 31px;
  color: #201a25;
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
  font-weight: 670;
  letter-spacing: -0.06em;
  line-height: 1;
  text-wrap: balance;
}

.ethics-principle p {
  margin: 0;
  color: #55505a;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.85;
}

.ethics-principle p + p {
  margin-top: 21px;
}

.ethics-closing {
  margin-top: 112px;
  padding: 88px 76px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.38);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.38);
  text-align: center;
}

.ethics-closing .eyebrow {
  margin-bottom: 24px;
}

.ethics-closing h2 {
  margin: 0;
  color: #201a25;
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  font-weight: 680;
  letter-spacing: -0.072em;
  line-height: 0.93;
  text-wrap: balance;
}

.ethics-closing > p:not(.eyebrow, .ethics-signature) {
  max-width: 740px;
  margin: 35px auto 0;
  color: #55505a;
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.85;
}

.ethics-signature {
  margin: 52px 0 0;
  color: #281f30;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ethics-quotation {
  max-width: 680px;
  margin: 48px auto 0;
  padding: 45px 20px 0;
  border-top: 1px solid rgba(var(--accent-rgb), 0.48);
}

.ethics-quotation p {
  margin: 0;
  color: #332a3b;
  font-size: clamp(1.35rem, 2.25vw, 1.82rem);
  font-style: italic;
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.55;
  text-wrap: balance;
}

.ethics-quotation cite {
  display: block;
  margin-top: 21px;
  color: #756e7b;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 730;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ethics-page + .site-footer {
  margin-top: 120px;
}

@media (max-width: 760px) {
  .ethics-hero {
    min-height: 650px;
    padding: 175px 0 95px;
  }

  .ethics-hero-copy h1 {
    font-size: clamp(3.25rem, 15vw, 5.1rem);
  }

  .ethics-manifesto-section {
    padding-top: 82px;
  }

  .ethics-preamble {
    padding-bottom: 64px;
  }

  .ethics-principle {
    padding: 62px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ethics-number {
    padding-top: 0;
  }

  .ethics-principle h2 {
    margin-bottom: 25px;
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .ethics-closing {
    margin-top: 78px;
    padding: 68px 0;
  }

  .ethics-closing h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .ethics-quotation {
    margin-top: 42px;
    padding: 38px 0 0;
  }

  .ethics-page + .site-footer {
    margin-top: 88px;
  }
}
