/*
Theme Name: Possible Platform
Theme URI: https://possible.ddev.site/
Author: Webmate
Description: A dark, purple-gradient partnership platform theme inspired by the supplied landing page.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: possible-platform
*/

:root {
  --background: #0b0910;
  --background-soft: #120d1c;
  --surface: rgba(28, 20, 43, 0.64);
  --surface-strong: #1b1428;
  --line: rgba(187, 145, 255, 0.16);
  --line-strong: rgba(187, 145, 255, 0.3);
  --text: #ffffff;
  --muted: #aaa3b7;
  --purple: #b584f5;
  --purple-strong: #8655f5;
  --container: 1180px;
  --shadow: 0 24px 80px rgba(43, 18, 86, 0.24);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 19%, rgba(87, 50, 140, 0.34) 0, rgba(39, 23, 61, 0.2) 24%, transparent 51%),
    var(--background);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: #111;
  background: #fff;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.site-shell::before {
  position: absolute;
  z-index: -1;
  top: 78px;
  left: 50%;
  width: min(940px, 96vw);
  height: 580px;
  border: 1px solid rgba(173, 123, 250, 0.08);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
  filter: blur(0.1px);
}

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

.site-header {
  position: relative;
  z-index: 30;
  width: 100%;
  padding: 22px 0;
}

.admin-bar .site-header {
  top: 0;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.site-branding {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  min-width: 0;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.custom-logo-link {
  display: inline-flex;
}

.custom-logo {
  width: auto;
  max-height: 32px;
}

.site-branding__logo {
  display: block;
  width: auto;
  height: 80px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(215, 188, 255, 0.42);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(187, 132, 245, 0.3), rgba(93, 54, 201, 0.12));
  box-shadow: inset 0 0 18px rgba(209, 170, 255, 0.12), 0 8px 24px rgba(83, 35, 147, 0.28);
}

.brand-mark svg {
  width: 15px;
  height: 15px;
}

.primary-navigation ul,
.mobile-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.primary-navigation a {
  display: block;
  padding: 8px 0;
  color: #c2bdca;
  font-size: 16px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation .current-menu-item > a {
  color: #fff;
}

.primary-navigation .menu-item-has-children {
  position: relative;
}

.primary-navigation .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.primary-navigation .menu-item-has-children > a::after {
  width: 4px;
  height: 4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-1px) rotate(45deg);
}

.primary-navigation .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  visibility: hidden;
  width: max-content;
  min-width: 210px;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  opacity: 0;
  background: rgba(14, 13, 28, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, 8px);
  transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.primary-navigation .sub-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 13px;
  content: "";
}

.primary-navigation .menu-item-has-children:hover > .sub-menu,
.primary-navigation .menu-item-has-children:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.primary-navigation .sub-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #aaa4b6;
  font-size: 14px;
  font-weight: 600;
}

.primary-navigation .sub-menu a:hover,
.primary-navigation .sub-menu a:focus-visible {
  color: #fff;
  background: rgba(139, 92, 246, 0.13);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
}

.saved-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(157, 97, 231, 0.32);
  border-radius: 999px;
  color: #ded8e7;
  background: rgba(62, 33, 95, 0.28);
  font-size: 15px;
  font-weight: 650;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.saved-link:hover {
  border-color: rgba(181, 132, 245, 0.55);
  background: rgba(76, 41, 116, 0.46);
  transform: translateY(-1px);
}

.saved-link svg {
  width: 15px;
  height: 15px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #ddd6e7;
  background: rgba(26, 18, 38, 0.6);
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-drawer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  padding: 22px 20px 36px;
  opacity: 0;
  background: rgba(11, 9, 16, 0.98);
  transform: translateX(100%);
  transition: visibility 300ms ease, opacity 300ms ease, transform 300ms ease;
}

.mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-close {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  color: #ddd6e7;
  background: transparent;
  cursor: pointer;
}

.menu-close svg {
  width: 19px;
  height: 19px;
}

.mobile-navigation {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mobile-navigation li + li {
  margin-top: 6px;
}

.mobile-navigation a {
  display: block;
  padding: 12px 20px;
  color: #e9e4ef;
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.mobile-navigation a:hover,
.mobile-navigation a:focus-visible {
  color: var(--purple);
}

.mobile-navigation > ul {
  display: grid;
  width: min(100%, 620px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.mobile-navigation > ul > li + li {
  margin-top: 0;
}

.mobile-navigation > ul > li > a {
  padding: 0 0 13px;
  border-bottom: 1px solid var(--line);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.mobile-navigation .sub-menu {
  margin-top: 12px;
}

.mobile-navigation .sub-menu li + li {
  margin-top: 2px;
}

.mobile-navigation .sub-menu a {
  padding: 5px 0;
  color: #9891a5;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(740px, calc(100vh - 82px));
  align-items: center;
  padding: 96px 0 112px;
  text-align: center;
}

.hero::after {
  position: absolute;
  bottom: 44px;
  left: 50%;
  width: 1px;
  height: 40px;
  content: "";
  background: linear-gradient(to bottom, rgba(181, 132, 245, 0), rgba(181, 132, 245, 0.6), rgba(181, 132, 245, 0));
}

.hero__inner {
  display: flex;
  max-width: 930px;
  align-items: center;
  flex-direction: column;
}

.eyebrow {
  margin: 0 0 24px;
  color: #bb88fb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.21em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__title {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.13;
  text-wrap: balance;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(90deg, #c493ff 4%, #a87afa 46%, #7860f2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__description {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: linear-gradient(100deg, #a858e3, #7646ef);
  box-shadow: 0 16px 42px rgba(94, 45, 180, 0.3), inset 0 1px rgba(255, 255, 255, 0.18);
}

.button--primary:hover {
  opacity: 0.92;
}

.button--ghost {
  border-color: var(--line-strong);
  color: #ddd7e6;
  background: rgba(29, 20, 42, 0.46);
}

.button--ghost:hover {
  border-color: rgba(187, 132, 245, 0.5);
  background: rgba(45, 30, 65, 0.64);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 42px;
  color: #777080;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.trust-row span::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: #7b4eb7;
  box-shadow: 0 0 9px rgba(181, 132, 245, 0.72);
}

.section {
  position: relative;
  padding: 112px 0;
}

.section--bordered {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.section-heading {
  display: flex;
  max-width: 720px;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 48px;
}

.section-heading--center {
  align-items: center;
  margin-inline: auto;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 15px;
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.2;
  text-wrap: balance;
}

.section-description {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

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

.service-card,
.post-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(29, 21, 43, 0.76), rgba(17, 13, 25, 0.72));
  box-shadow: var(--shadow);
}

.service-card::after {
  position: absolute;
  right: -75px;
  bottom: -95px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  content: "";
  background: rgba(111, 59, 193, 0.14);
  filter: blur(15px);
}

.service-card--link {
  display: flex;
  min-height: 330px;
  justify-content: space-between;
  flex-direction: column;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.service-card--link:nth-child(2) {
  background: linear-gradient(145deg, rgba(35, 28, 72, 0.82), rgba(17, 13, 25, 0.72));
}

.service-card--link:nth-child(3) {
  background: linear-gradient(145deg, rgba(20, 38, 56, 0.76), rgba(17, 13, 25, 0.72));
}

.service-card--link:nth-child(4) {
  background: linear-gradient(145deg, rgba(53, 25, 65, 0.76), rgba(17, 13, 25, 0.72));
}

.service-card--link:hover {
  border-color: rgba(181, 132, 245, 0.5);
  background: linear-gradient(145deg, rgba(49, 34, 72, 0.9), rgba(20, 15, 30, 0.8));
  transform: translateY(-4px);
}

.service-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8e879a;
  font-size: 15px;
}

.service-card__number {
  color: #ba86fa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card__en {
  margin: 0 0 10px !important;
  color: #7f778b !important;
  font-size: 10px !important;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 45px;
  border: 1px solid rgba(195, 151, 255, 0.24);
  border-radius: 13px;
  place-items: center;
  color: #c69aff;
  background: rgba(114, 63, 182, 0.14);
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
}

.service-card h3,
.post-card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.service-card p,
.post-card__excerpt {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.network-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 50%, rgba(128, 74, 208, 0.19), transparent 37%),
    rgba(19, 14, 28, 0.72);
}

.network-panel__copy {
  padding: 68px;
}

.network-panel__copy .section-heading {
  margin-bottom: 0;
}

.network-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #d0b0fa;
  font-size: 13px;
  font-weight: 720;
}

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

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

.creator-orbit {
  position: relative;
  min-height: 470px;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(139, 92, 246, 0.2), transparent 18%),
    repeating-radial-gradient(circle at center, transparent 0 72px, rgba(181, 132, 245, 0.11) 73px 74px);
}

.creator-orbit__core,
.creator-dot {
  position: absolute;
  display: grid;
  border: 1px solid rgba(205, 173, 255, 0.35);
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #8b5cf6, #5140bb);
  box-shadow: 0 12px 36px rgba(85, 45, 160, 0.36);
  font-weight: 800;
}

.creator-orbit__core {
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  font-size: 32px;
  transform: translate(-50%, -50%);
}

.creator-dot {
  width: 52px;
  height: 52px;
  color: #dcd1eb;
  background: #21192f;
  font-size: 13px;
}

.creator-dot--one {
  top: 16%;
  left: 24%;
}

.creator-dot--two {
  top: 26%;
  right: 16%;
}

.creator-dot--three {
  bottom: 20%;
  left: 17%;
}

.creator-dot--four {
  right: 24%;
  bottom: 13%;
}

.stat {
  display: flex;
  min-height: 180px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 36px;
}

.stat:nth-child(odd) {
  border-right: 1px solid var(--line);
}

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

.stat strong {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.05em;
}

.stat span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.process-list {
  display: grid;
  max-width: 960px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.process-step__number {
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.project-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 300px;
  justify-content: flex-end;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 76% 18%, rgba(85, 230, 255, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(20, 36, 51, 0.86), rgba(15, 13, 24, 0.9));
  transition: border-color 220ms ease, transform 220ms ease;
}

.project-card::before {
  position: absolute;
  top: -45px;
  right: -25px;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(112, 231, 255, 0.14);
  border-radius: 38% 62% 68% 32% / 42% 36% 64% 58%;
  content: "";
  transform: rotate(24deg);
}

.project-card:nth-child(2) {
  background:
    radial-gradient(circle at 75% 18%, rgba(139, 92, 246, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(39, 26, 64, 0.88), rgba(15, 13, 24, 0.9));
}

.project-card:nth-child(3) {
  background:
    radial-gradient(circle at 75% 18%, rgba(230, 94, 194, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(53, 25, 58, 0.88), rgba(15, 13, 24, 0.9));
}

.project-card--wide {
  min-height: 390px;
  grid-column: 1 / -1;
}

.project-card:hover {
  border-color: rgba(181, 132, 245, 0.5);
  transform: translateY(-4px);
}

.project-card__tag {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #9d94a9;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.14em;
}

.project-card strong {
  position: relative;
  z-index: 1;
  max-width: 630px;
  font-size: clamp(24px, 3.5vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.project-card:not(.project-card--wide) strong {
  font-size: clamp(21px, 2.7vw, 30px);
}

.project-card__arrow {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: #bca4df;
  font-size: 19px;
}

.post-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.post-card__meta {
  margin-bottom: auto;
  color: var(--purple);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card h2 {
  margin-top: 38px;
}

.post-card h2 a:hover {
  color: #c499ff;
}

.empty-insights {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: rgba(25, 18, 36, 0.55);
}

.contact-panel {
  overflow: hidden;
  padding: 76px 40px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 115%, rgba(139, 71, 242, 0.38), transparent 45%),
    linear-gradient(145deg, rgba(36, 24, 53, 0.92), rgba(16, 12, 23, 0.92));
  box-shadow: var(--shadow);
}

.contact-panel .section-heading {
  margin-bottom: 30px;
}

.site-footer {
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: #777180;
  font-size: 12px;
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) repeat(4, minmax(100px, 1fr));
  gap: 34px;
  padding-bottom: 66px;
}

.footer-directory__brand p {
  max-width: 250px;
  margin: 16px 0 0;
  color: #777180;
  line-height: 1.7;
}

.footer-directory__brand > a {
  display: inline-flex;
}

.site-footer__logo {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}

.footer-directory__title {
  display: block;
  margin-bottom: 17px;
  color: #d8d2df;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-directory ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-directory li + li {
  margin-top: 9px;
}

.footer-directory li a {
  color: #746e7c;
  font-size: 11px;
  transition: color 160ms ease;
}

.footer-directory li a:hover {
  color: #c1b9cb;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.site-footer__brand {
  color: #aaa3b5;
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  visibility: hidden;
  opacity: 0;
  background: transparent;
  transform: translateY(14px);
  pointer-events: none;
  transition: visibility 220ms ease, opacity 220ms ease, border-color 180ms ease, color 180ms ease, transform 220ms ease;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top span {
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1;
}

.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
  border-color: #b584f5;
  color: #fff;
  transform: translateY(-3px);
}

.back-to-top:focus-visible {
  outline: 2px solid #55e6ff;
  outline-offset: 4px;
}

.content-main {
  min-height: 70vh;
  padding: 82px 0 120px;
}

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

.inner-page-hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 36%, rgba(133, 85, 245, 0.23), transparent 32%),
    linear-gradient(180deg, rgba(24, 15, 38, 0.12), rgba(9, 7, 13, 0.34));
}

.inner-page-hero::before {
  position: absolute;
  top: 8%;
  right: -10%;
  width: min(680px, 65vw);
  height: min(680px, 65vw);
  border: 1px solid rgba(187, 145, 255, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(181, 132, 245, 0.025), 0 0 0 140px rgba(181, 132, 245, 0.015);
}

.inner-page-hero .site-container {
  position: relative;
  z-index: 1;
}

.inner-page-hero--with-form {
  min-height: 100vh;
  min-height: 100svh;
  padding: 64px 0;
}

.inner-page-hero--with-form .site-container {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  gap: clamp(44px, 5vw, 96px);
}

.inner-page-hero--with-form .inner-page-hero__description {
  max-width: 620px;
  margin-top: 48px;
}

.inner-page-hero__eyebrow {
  margin: 0 0 24px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: creator-copy-in 700ms 100ms ease both;
}

.inner-page-hero__title {
  position: relative;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 9vw, 136px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.inner-page-hero__typing {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0.08em 0.05em 0.1em;
  margin: -0.08em -0.05em -0.1em;
  animation: creator-title-wipe 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
  clip-path: inset(0 100% 0 0);
}

.inner-page-hero__description {
  max-width: 900px;
  margin: 68px 0 0;
  color: #d8d1df;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.55;
  text-wrap: balance;
  animation: creator-copy-in 720ms 820ms ease both;
}

.inner-page-content {
  padding-bottom: 120px;
}

.content-header {
  max-width: 800px;
  margin-bottom: 50px;
}

.content-header--page {
  max-width: 980px;
  margin-bottom: 70px;
  padding-top: 24px;
}

.content-title {
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.content-meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.entry-content {
  max-width: 780px;
  color: #cbc5d2;
  font-size: 17px;
  line-height: 1.9;
}

.entry-content--page {
  max-width: none;
}

.page-lead {
  max-width: 920px;
  margin: 0 0 88px;
  color: #e9e5ef;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.42;
  text-wrap: balance;
}

.page-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.page-section__header {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 42px;
  margin-bottom: 42px;
}

.page-section__label {
  margin: 0;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-section__title {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.consulting-contact__form-card {
  width: min(100%, 760px);
  padding: clamp(24px, 4vw, 42px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: #0d0d0d;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

.consulting-contact__form {
  display: grid;
  gap: 24px;
}

.consulting-contact__field label {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.consulting-contact__required {
  color: #ef5a68;
}

.consulting-contact__field input,
.consulting-contact__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #2a2630;
  border-radius: 9px;
  outline: 0;
  color: #fff;
  background: #141414;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.consulting-contact__field textarea {
  min-height: 132px;
  line-height: 1.65;
  resize: vertical;
}

.consulting-contact__field input::placeholder,
.consulting-contact__field textarea::placeholder {
  color: #68616f;
}

.consulting-contact__field input:focus,
.consulting-contact__field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple);
}

.consulting-contact__submit-wrap {
  padding-top: 8px;
}

.consulting-contact__submit {
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(100deg, #b57aff, #9b51e0);
  cursor: pointer;
  font-size: 15px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, background 300ms ease;
}

.consulting-contact__submit:hover,
.consulting-contact__submit:focus-visible {
  background: linear-gradient(100deg, #9b51e0, #b57aff);
  box-shadow: 0 12px 34px rgba(155, 81, 224, 0.28);
  transform: translateY(-1px);
}

.consulting-contact__submit:focus-visible {
  outline: 2px solid #d8b7ff;
  outline-offset: 3px;
}

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

.platform-feature-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(29, 21, 43, 0.74), rgba(16, 13, 24, 0.72));
}

.platform-feature-card strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.platform-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.platform-feature-card__number {
  display: block;
  margin-bottom: 45px;
  color: #a97be8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.platform-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 76px;
  padding: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(31, 22, 46, 0.65);
}

.platform-cta strong {
  display: block;
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.35;
}

.platform-cta a {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 46px;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(100deg, #a858e3, #7646ef);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

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

.platform-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.platform-list span {
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.platform-list strong {
  color: #fff;
  font-size: 17px;
}

/* Temha-inspired home structure: mosaic, ribbons, bento grid, board and gallery. */
.future-home {
  overflow: clip;
}

.mosaic-hero {
  padding: 34px 18px 112px;
}

.mosaic-grid {
  display: grid;
  width: min(100%, 1580px);
  min-height: 990px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 110px) 150px repeat(2, 170px) repeat(2, 110px);
  gap: 10px;
  margin: 0 auto;
}

.mosaic-tile,
.mosaic-copy {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(22, 16, 33, 0.74);
}

.mosaic-tile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.mosaic-tile {
  animation: mosaic-card-bright-in var(--mosaic-card-duration, 1.7s) ease-in-out var(--mosaic-card-delay, 0s) both;
}

.mosaic-tile--01 { --mosaic-card-delay: 0.05s; --mosaic-card-duration: 1.75s; }
.mosaic-tile--02 { --mosaic-card-delay: 0.64s; --mosaic-card-duration: 1.55s; }
.mosaic-tile--03 { --mosaic-card-delay: 0.23s; --mosaic-card-duration: 1.9s; }
.mosaic-tile--04 { --mosaic-card-delay: 0.9s; --mosaic-card-duration: 1.5s; }
.mosaic-tile--05 { --mosaic-card-delay: 0.41s; --mosaic-card-duration: 1.7s; }
.mosaic-tile--07 { --mosaic-card-delay: 1.12s; --mosaic-card-duration: 1.6s; }
.mosaic-tile--08 { --mosaic-card-delay: 0.74s; --mosaic-card-duration: 1.95s; }
.mosaic-tile--09 { --mosaic-card-delay: 1.38s; --mosaic-card-duration: 1.65s; }
.mosaic-tile--10 { --mosaic-card-delay: 0.17s; --mosaic-card-duration: 2.05s; }
.mosaic-tile--11 { --mosaic-card-delay: 0.97s; --mosaic-card-duration: 1.8s; }
.mosaic-tile--12 { --mosaic-card-delay: 0.52s; --mosaic-card-duration: 2s; }

.mosaic-tile span {
  position: relative;
  z-index: 2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mosaic-tile strong {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 760;
  letter-spacing: -0.07em;
}

.mosaic-tile i {
  position: absolute;
  width: 95px;
  height: 95px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.mosaic-tile--01 { grid-column: 1 / 4; grid-row: 1 / 3; background: linear-gradient(145deg, rgba(72, 45, 116, 0.58), rgba(25, 19, 38, 0.82)), url("assets/images/home-mosaic/portrait-01.webp") center 34% / cover no-repeat; }
.mosaic-tile--01 i { right: -26px; bottom: -42px; box-shadow: 0 0 0 20px rgba(164, 101, 255, 0.08); }
.mosaic-tile--02 { grid-column: 4 / 7; grid-row: 1 / 3; background: linear-gradient(145deg, rgba(23, 30, 66, 0.54), rgba(16, 19, 33, 0.84)), url("assets/images/home-mosaic/portrait-02.webp") center 32% / cover no-repeat; }
.mosaic-tile--03 { grid-column: 7 / 10; grid-row: 1 / 3; background: linear-gradient(145deg, rgba(20, 48, 59, 0.52), rgba(16, 24, 32, 0.84)), url("assets/images/home-mosaic/portrait-03.webp") center 30% / cover no-repeat; }
.mosaic-tile--03 i { right: 24%; bottom: -38px; border-radius: 34% 66% 55% 45%; transform: rotate(30deg); }
.mosaic-tile--04 { grid-column: 10 / 13; grid-row: 1 / 3; align-items: center; justify-content: center; color: #d4bcff; background: linear-gradient(rgba(18, 16, 27, 0.58), rgba(18, 16, 27, 0.84)), url("assets/images/home-mosaic/portrait-04.webp") center 32% / cover no-repeat; }
.mosaic-tile--05 { grid-column: 1 / 4; grid-row: 3 / 5; background: linear-gradient(145deg, rgba(75, 32, 61, 0.54), rgba(27, 16, 28, 0.84)), url("assets/images/home-mosaic/portrait-05.webp") center 28% / cover no-repeat; }
.mosaic-tile--05 i { right: 25px; bottom: -50px; transform: rotate(45deg); }
.mosaic-tile--07 { grid-column: 10 / 12; grid-row: 3 / 5; background: linear-gradient(145deg, rgba(20, 45, 70, 0.5), rgba(16, 21, 30, 0.82)), url("assets/images/home-mosaic/portrait-07.webp") center 26% / cover no-repeat; }
.mosaic-tile--07 i { right: -20px; bottom: -20px; border-radius: 28px; transform: rotate(20deg); }
.mosaic-tile--08 { grid-column: 12 / 13; grid-row: 3 / 6; background: linear-gradient(145deg, rgba(18, 51, 53, 0.5), rgba(16, 26, 27, 0.82)), url("assets/images/home-mosaic/portrait-08.webp") center 30% / cover no-repeat; }
.mosaic-tile--08 i { right: -14px; bottom: -14px; box-shadow: 0 0 45px rgba(85, 230, 255, 0.2); }
.mosaic-tile--09 { grid-column: 1 / 4; grid-row: 5 / 8; background: linear-gradient(145deg, rgba(59, 33, 69, 0.5), rgba(23, 16, 29, 0.82)), url("assets/images/home-mosaic/portrait-09.webp") center 30% / cover no-repeat; }
.mosaic-tile--10 { grid-column: 10 / 13; grid-row: 5 / 8; color: #eadcff; background: linear-gradient(rgba(23, 17, 33, 0.56), rgba(23, 17, 33, 0.84)), url("assets/images/home-mosaic/portrait-10.webp") center 34% / cover no-repeat; }
.mosaic-tile--11 { grid-column: 4 / 7; grid-row: 6 / 8; background: linear-gradient(110deg, rgba(20, 32, 51, 0.48), rgba(38, 24, 65, 0.8)), url("assets/images/home-mosaic/portrait-11.webp") center 34% / cover no-repeat; }
.mosaic-tile--11 i { right: 18%; bottom: -53px; width: 150px; height: 150px; }
.mosaic-tile--12 { grid-column: 7 / 10; grid-row: 6 / 8; background: linear-gradient(110deg, rgba(59, 31, 78, 0.5), rgba(25, 20, 39, 0.82)), url("assets/images/home-mosaic/portrait-12.webp") center 30% / cover no-repeat; }
.mosaic-tile--12 i { right: 10%; bottom: -35px; width: 140px; height: 80px; border-radius: 50%; }

.mosaic-copy {
  z-index: 3;
  display: flex;
  width: calc(100% - 80px);
  grid-column: 4 / 10;
  grid-row: 3 / 6;
  align-items: center;
  justify-content: center;
  justify-self: center;
  flex-direction: column;
  padding: 55px;
  border: 0;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

.mosaic-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 74px);
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.mosaic-copy__typing,
.mosaic-copy__wipe {
  display: inline-block;
}

.mosaic-copy__typing {
  position: relative;
  padding: 0.08em 0.05em 0.1em;
  margin: -0.08em -0.05em -0.1em;
  clip-path: inset(0 0 100% 0);
  animation: mosaic-title-wipe-down 900ms cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}

.mosaic-copy__typing::after {
  display: none;
}

.mosaic-copy__wipe {
  color: transparent;
  background: linear-gradient(90deg, #c49aff, #845cf0, #64dff8);
  background-clip: text;
  clip-path: inset(0 100% 0 0);
  filter: brightness(2) blur(7px);
  animation: mosaic-wipe-in 1.05s cubic-bezier(0.65, 0, 0.2, 1) 1.75s forwards;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mosaic-copy .eyebrow,
.mosaic-copy > p:not(.eyebrow),
.mosaic-copy__actions {
  opacity: 0;
  filter: brightness(0.35) blur(5px);
  animation: mosaic-copy-bright-in 0.7s ease-out 2.8s forwards;
}

.mosaic-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.mosaic-copy__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.mosaic-copy__actions a,
.closing-cta a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(100deg, #a858e3, #714aed);
  font-size: 13px;
  font-weight: 720;
}

.mosaic-copy__actions .is-ghost,
.closing-cta .is-ghost {
  border-color: var(--line-strong);
  color: #c8c2d1;
  background: rgba(30, 23, 43, 0.64);
}

@keyframes mosaic-card-bright-in {
  0% {
    opacity: 0;
    filter: brightness(0.18) saturate(0.7) blur(10px);
    transform: scale(0.99);
  }
  35% {
    opacity: 0.38;
    filter: brightness(0.45) saturate(0.82) blur(6px);
  }
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1) blur(0);
    transform: scale(1);
  }
}

@keyframes mosaic-type-in {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes mosaic-title-wipe-down {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes mosaic-type-cursor {
  0% { left: 0; opacity: 1; }
  85% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes mosaic-wipe-in {
  0% {
    clip-path: inset(0 100% 0 0);
    filter: brightness(2) blur(7px);
  }
  65% {
    filter: brightness(1.65) blur(2px);
  }
  100% {
    clip-path: inset(0 0 0 0);
    filter: brightness(1) blur(0);
  }
}

@keyframes mosaic-copy-bright-in {
  0% {
    opacity: 0;
    filter: brightness(0.35) blur(5px);
  }
  70% {
    opacity: 1;
    filter: brightness(1.7) blur(0);
  }
  100% {
    opacity: 1;
    filter: brightness(1) blur(0);
  }
}

.word-loop {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0910;
}

.word-loop div {
  display: flex;
  width: max-content;
  gap: 44px;
  animation: possible-word-loop 10s linear infinite;
  will-change: transform;
}

.word-loop span {
  color: #b08adb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.word-loop span::after {
  margin-left: 44px;
  color: #55e6ff;
  content: "✦";
}

@keyframes possible-word-loop {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

.bento-business {
  position: relative;
  overflow: clip;
  padding: 145px 0;
  background: #0b0910;
  isolation: isolate;
}

.bento-business > .site-container {
  position: relative;
  z-index: 1;
  width: calc(100% - clamp(40px, 7vw, 136px));
  max-width: none;
}

.bento-business__outline-layer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: clamp(36px, 6vh, 72px);
  pointer-events: none;
  isolation: isolate;
}

.bento-business__outline-layer::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: clamp(-70px, -3vw, -24px);
  width: clamp(300px, 42vw, 680px);
  height: clamp(180px, 25vw, 400px);
  border-radius: 50%;
  opacity: 0.72;
  background: radial-gradient(ellipse at center, rgba(139, 77, 241, 0.3) 0%, rgba(112, 59, 201, 0.14) 38%, rgba(91, 48, 166, 0.04) 64%, transparent 76%);
  content: "";
  transform: translateY(-50%);
  filter: blur(22px);
}

.bento-business__outline-logo {
  position: relative;
  display: block;
  width: clamp(260px, 34vw, 560px);
  height: auto;
  margin-left: auto;
  opacity: 0.88;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 14px rgba(155, 95, 255, 0.22)) drop-shadow(0 0 34px rgba(111, 58, 206, 0.16));
}

.bento-business__heading {
  margin-bottom: 68px;
  text-align: center;
}

.bento-business__typing,
.bento-business__wipe {
  display: inline-block;
}

.bento-business__typing {
  position: relative;
  clip-path: none;
}

.bento-business__typing::after {
  position: absolute;
  top: 0.08em;
  bottom: 0.08em;
  left: 0;
  width: 2px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.65);
  content: "";
}

.bento-business__wipe {
  color: #a97cec;
  clip-path: none;
  filter: none;
}

.bento-business__heading .eyebrow {
  opacity: 1;
  filter: none;
}

.bento-business__heading h2,
.creator-board__heading h2,
.project-gallery__heading h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.bento-business__heading h2 .bento-business__wipe,
.closing-cta h2 span {
  color: #a97cec;
}

.business-scroll {
  position: relative;
  min-height: min(720px, 80vh);
}

.business-scroll__sticky {
  display: flex;
  width: 100%;
  min-height: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.business-scroll__links {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 24px;
}

.business-scroll__link {
  color: #fff;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1;
  text-align: center;
  transition: color 180ms ease;
}

.business-scroll__link:hover,
.business-scroll__link:focus-visible {
  color: #b584f5;
}

.business-scroll__link:focus-visible {
  outline: 2px solid #55e6ff;
  outline-offset: 10px;
}

.business-scroll.is-ready {
  min-height: 0;
}

.business-scroll.is-ready .business-scroll__sticky {
  position: sticky;
  top: 0;
  display: block;
  overflow: hidden;
  height: 100vh;
  min-height: 0;
}

.business-scroll.is-ready .bento-business__heading {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  left: 0;
  margin-bottom: 0;
  transform: translateY(-50%);
  pointer-events: none;
  will-change: opacity;
}

.business-scroll.is-ready .bento-business__heading .eyebrow,
.business-scroll.is-ready .bento-business__typing,
.business-scroll.is-ready .bento-business__wipe {
  will-change: transform, filter, letter-spacing;
}

.business-scroll.is-ready .business-scroll__links {
  position: relative;
  display: block;
  height: 100%;
}

.business-scroll.is-ready .bento-business__outline-layer {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: clamp(24px, 5vh, 56px);
  left: 0;
  width: 100%;
  margin-top: 0;
  opacity: 0;
  will-change: opacity;
}

.business-scroll.is-ready .business-scroll__link {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: max-content;
  max-width: calc(100vw - 40px);
  margin: 0;
  white-space: nowrap;
  will-change: transform, opacity;
}

.business-scroll.is-ready .business-scroll__link:focus-visible {
  opacity: 1 !important;
}

.creator-board {
  padding: 145px 0;
  color: #111018;
  background: #efedf2;
}

.creator-board__heading {
  position: relative;
  margin-bottom: 62px;
}

.creator-board__heading .eyebrow {
  color: #7655a5;
}

.creator-board__heading a {
  position: absolute;
  right: 0;
  bottom: 4px;
  padding-bottom: 5px;
  border-bottom: 1px solid #51485b;
  font-size: 12px;
  font-weight: 720;
}

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

.creator-note {
  display: flex;
  min-height: 330px;
  justify-content: space-between;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(17, 16, 24, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(30, 23, 36, 0.05);
}

.creator-note__avatar {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #8856dd, #362454);
  font-weight: 800;
}

.creator-note:nth-child(2n) .creator-note__avatar { background: linear-gradient(145deg, #31688d, #172b3a); }
.creator-note:nth-child(3n) .creator-note__avatar { background: linear-gradient(145deg, #a44580, #421d38); }

.creator-note__avatar i {
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.creator-note > p {
  margin: 46px 0 28px;
  font-size: 17px;
  font-weight: 640;
  letter-spacing: -0.025em;
  line-height: 1.6;
}

.creator-note footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 16, 24, 0.09);
}

.creator-note footer strong {
  font-size: 11px;
}

.creator-note footer span {
  color: #8a8390;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.giant-wordmark {
  display: flex;
  min-height: 78vh;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.12), transparent 38%),
    #0b0910;
}

.giant-wordmark div {
  display: flex;
  flex-direction: column;
}

.giant-wordmark span {
  color: transparent;
  font-size: clamp(76px, 15vw, 230px);
  font-weight: 820;
  letter-spacing: -0.09em;
  line-height: 0.77;
  -webkit-text-stroke: 1px rgba(205, 174, 245, 0.42);
}

.giant-wordmark span:nth-child(2) {
  padding-left: 0.35em;
}

.project-gallery {
  position: relative;
  overflow: clip;
  color: #fff;
  background:
    radial-gradient(circle at 82% 48%, rgba(122, 75, 196, 0.18), transparent 36%),
    #0b0910;
}

.project-gallery__sticky {
  padding: 110px 0 120px;
}

.project-gallery.is-ready .project-gallery__sticky {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 100vh;
  min-height: 680px;
  align-items: center;
  padding: 48px 0;
}

.site-container--gallery-width {
  width: calc(100% - clamp(40px, 7vw, 136px));
  max-width: none;
}

.project-gallery__layout {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: minmax(320px, 30vw) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 96px);
}

.project-gallery__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.project-gallery__heading .eyebrow { color: #7655a5; }

.project-gallery__heading h2 {
  max-width: 560px;
  font-size: clamp(46px, 4.5vw, 72px);
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.project-gallery__heading > p:last-child {
  max-width: 440px;
  margin-top: 24px;
  color: #aaa3b7;
  font-size: 15px;
  line-height: 1.8;
}

.project-gallery__pagination {
  display: flex;
  width: 116px;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: #77717f;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.project-gallery__pagination span:first-child {
  color: #fff;
}

.project-gallery__pagination i {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.24);
}

.project-gallery__viewport {
  overflow-x: auto;
  min-width: 0;
  width: 100%;
  scrollbar-width: none;
}

.project-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.project-gallery.is-ready .project-gallery__viewport {
  overflow: hidden;
}

.project-gallery__track {
  display: flex;
  width: max-content;
  gap: 18px;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.project-gallery__track.is-resetting {
  transition: none;
}

.creator-profile-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: clamp(320px, 28vw, 460px);
  height: clamp(430px, 62vh, 600px);
  flex: 0 0 clamp(320px, 28vw, 460px);
  border-radius: 4px;
  color: #fff;
  background: #201a29;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  transform: translateZ(0);
}

.creator-profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.creator-profile-card:hover img,
.creator-profile-card:focus-visible img {
  transform: scale(1.035);
}

.creator-profile-card:focus-visible {
  outline: 3px solid #7655a5;
  outline-offset: 4px;
}

.creator-profile-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 16, 0.12) 30%, rgba(12, 8, 16, 0.86) 100%);
}

.creator-profile-card__category {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.creator-profile-card__copy {
  position: absolute;
  right: 58px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.creator-profile-card__copy strong {
  font-size: 32px;
  letter-spacing: -0.05em;
}

.creator-profile-card__copy > span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: -0.045em;
  line-height: 1.55;
}

.creator-profile-card i {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  font-style: normal;
}

.project-gallery__footer {
  margin-top: 30px;
}

.project-gallery__more {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.project-gallery__more:hover,
.project-gallery__more:focus-visible {
  border-color: #fff;
  color: #0b0910;
  background: #fff;
}

.closing-cta {
  padding: 165px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 58% 52% at 50% 50%, rgba(139, 92, 246, 0.3) 0%, rgba(91, 53, 164, 0.16) 38%, transparent 72%),
    linear-gradient(to bottom, #0b0910 0%, #100b18 50%, #0b0910 100%),
    #0b0910;
}

.closing-cta h2 {
  margin-inline: auto;
}

.closing-cta > div > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.closing-cta > div > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
  color: #fff;
  line-height: 1.3;
}

.entry-content a {
  color: #c496ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  margin: 32px 0;
  padding: 2px 0 2px 24px;
  border-left: 2px solid var(--purple);
  color: #e1dce8;
}

.pagination {
  margin-top: 42px;
  color: var(--muted);
}

.pagination .nav-links {
  display: flex;
  gap: 8px;
}

.pagination a,
.pagination .current {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
}

.pagination .current {
  color: #fff;
  background: var(--purple-strong);
}

/* Creators directory: oversized introduction, category tabs and card rails. */
.creator-directory {
  overflow: clip;
}

.creator-directory-hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 36%, rgba(133, 85, 245, 0.23), transparent 32%),
    linear-gradient(180deg, rgba(24, 15, 38, 0.12), rgba(9, 7, 13, 0.34));
}

.creator-directory-hero::before {
  position: absolute;
  top: 8%;
  right: -10%;
  width: min(680px, 65vw);
  height: min(680px, 65vw);
  border: 1px solid rgba(187, 145, 255, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(181, 132, 245, 0.025), 0 0 0 140px rgba(181, 132, 245, 0.015);
}

.creator-directory-hero .site-container {
  position: relative;
  z-index: 1;
}

.creator-directory-hero__eyebrow {
  margin: 0 0 24px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: creator-copy-in 700ms 100ms ease both;
}

.creator-directory-hero__title {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #fff;
  font-size: clamp(70px, 12.4vw, 184px);
  font-weight: 820;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-indent: 0;
}

.creator-directory-hero__typing {
  display: block;
  padding: 0.08em 0.05em 0.1em;
  margin: -0.08em -0.05em -0.1em;
  animation: creator-title-wipe 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
}

.creator-directory-hero__description {
  max-width: 690px;
  margin: 68px 0 0;
  color: #d8d1df;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.55;
  text-wrap: balance;
  animation: creator-copy-in 720ms 820ms ease both;
}

@keyframes creator-title-wipe {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes creator-copy-in {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.creator-directory-browser {
  --creator-card-gap: 21px;
  --creator-card-width: 357px;
  padding: 56px 0 88px;
}

.creator-directory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.creator-directory-tabs {
  display: flex;
  min-width: 0;
  max-width: 100%;
  flex: 1 1 auto;
  gap: 14px;
  padding: 8px 0 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.creator-directory-search {
  position: relative;
  display: flex;
  width: clamp(250px, 23vw, 360px);
  min-height: 64px;
  flex: 0 0 auto;
  align-items: center;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #827a8c;
  background: rgba(18, 13, 27, 0.62);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.creator-directory-search:focus-within {
  border-color: rgba(199, 155, 255, 0.72);
  color: #c79bff;
  background: rgba(31, 21, 46, 0.78);
}

.creator-directory-search svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-left: 22px;
}

.creator-directory-search input {
  width: 100%;
  min-width: 0;
  height: 62px;
  padding: 0 22px 0 12px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 14px;
}

.creator-directory-search input::placeholder {
  color: #756e7d;
}

.creator-directory-tabs::-webkit-scrollbar,
.creator-directory-track::-webkit-scrollbar {
  display: none;
}

.creator-directory-tab {
  display: inline-flex;
  min-height: 64px;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  padding: 15px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #938c9e;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 780;
  letter-spacing: 0.04em;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.creator-directory-tab:hover,
.creator-directory-tab:focus-visible {
  border-color: rgba(181, 132, 245, 0.55);
  color: #eee9f5;
}

.creator-directory-tab:focus-visible {
  outline: 2px solid rgba(196, 150, 255, 0.75);
  outline-offset: 3px;
}

.creator-directory-tab.is-active {
  border-color: var(--purple);
  color: #0e0a14;
  background: linear-gradient(100deg, #c79afb, #9a6af4);
  box-shadow: 0 8px 26px rgba(113, 66, 203, 0.24);
}

.creator-directory-tab small {
  color: #68616f;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.creator-directory-tab.is-active small {
  color: rgba(14, 10, 20, 0.62);
}

.creator-directory-groups {
  margin-top: 38px;
}

.creator-directory-group {
  padding: 48px 0 36px;
  border-top: 1px solid rgba(187, 145, 255, 0.1);
  scroll-margin-top: 28px;
}

.creator-directory-group[data-ai-id="creators-directory-youtube-group"] {
  padding-top: 40px;
  border-top: 0;
}

.creator-directory-group[hidden] {
  display: none;
}

.creator-directory-group__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.creator-directory-group__heading > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.creator-directory-group__heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.045em;
}

.creator-directory-group__heading > div:first-child > span {
  color: #706979;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.creator-directory-track {
  display: flex;
  gap: var(--creator-card-gap);
  padding-top: 12px;
  padding-right: clamp(20px, 3.5vw, 68px);
  padding-bottom: 18px;
  padding-left: clamp(20px, 3.5vw, 68px);
  overflow-x: auto;
  scroll-padding-inline: clamp(20px, 3.5vw, 68px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.creator-directory-card {
  position: relative;
  width: var(--creator-card-width);
  aspect-ratio: 2 / 3;
  flex: 0 0 var(--creator-card-width);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: #16111e;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  scroll-snap-align: start;
  transition: border-color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.creator-directory-card:hover,
.creator-directory-card:focus-within {
  z-index: 2;
  border-color: rgba(190, 143, 255, 0.75);
  box-shadow: 0 24px 70px rgba(47, 23, 84, 0.42);
  transform: translateY(-5px);
}

.creator-directory-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.25, 1), filter 260ms ease;
}

.creator-directory-card:hover > img,
.creator-directory-card:focus-within > img {
  transform: scale(1.045);
}

.creator-directory-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  color: rgba(205, 165, 255, 0.18);
  background: linear-gradient(145deg, #2f2043, #110d18 65%);
  font-size: 150px;
  font-weight: 820;
  place-items: center;
  text-transform: uppercase;
}

.creator-directory-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 4, 7, 0.04) 20%, rgba(5, 4, 7, 0.2) 46%, rgba(5, 4, 7, 0.96) 100%);
}

.creator-directory-card__copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.creator-directory-card__copy h4 {
  display: -webkit-box;
  margin: 0 0 4px;
  overflow: hidden;
  color: #fff;
  font-size: 34px;
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.08;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.creator-directory-card__subscribers {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.creator-directory-card__subscribers strong {
  color: #c79bff;
  font-size: 34px;
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.08;
  font-variant-numeric: tabular-nums;
}

.creator-directory-card__tags {
  display: flex;
  max-height: 0;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 260ms ease, margin 260ms ease, opacity 260ms ease;
}

.creator-directory-card:hover .creator-directory-card__tags,
.creator-directory-card:focus-within .creator-directory-card__tags {
  max-height: 42px;
  margin-top: 10px;
  opacity: 1;
}

.creator-directory-card__tags span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.creator-directory-card__tags .creator-directory-card__platform {
  border-color: rgba(199, 155, 255, 0.58);
  color: #c79bff;
}

.creator-directory-support {
  padding: 100px 0 120px;
  border-top: 1px solid var(--line);
  background: rgba(18, 13, 28, 0.45);
}

.creator-directory-support .platform-cta {
  margin-top: 0;
}

@media (max-width: 960px) {
  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .primary-navigation,
  .site-header__actions .saved-link {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero {
    min-height: 690px;
    padding-top: 70px;
  }

  .network-panel {
    grid-template-columns: 1fr;
  }

  .network-panel__stats {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .creator-orbit {
    min-height: 390px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-directory__brand {
    grid-column: 1 / -1;
  }

  .mosaic-grid {
    min-height: 920px;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(2, 100px) 130px repeat(2, 150px) repeat(2, 100px);
  }

  .mosaic-tile--01 { grid-column: 1 / 3; grid-row: 1 / 3; }
  .mosaic-tile--02 { grid-column: 3 / 5; grid-row: 1 / 3; }
  .mosaic-tile--03 { grid-column: 5 / 7; grid-row: 1 / 3; }
  .mosaic-tile--04 { grid-column: 7 / 9; grid-row: 1 / 3; }
  .mosaic-tile--05 { display: flex; grid-column: 1 / 3; grid-row: 3 / 5; }
  .mosaic-copy { width: calc(100% - 32px); grid-column: 3 / 7; grid-row: 3 / 6; }
  .mosaic-tile--07 { display: flex; grid-column: 7 / 8; grid-row: 3 / 6; }
  .mosaic-tile--08 { grid-column: 8 / 9; grid-row: 3 / 5; }
  .mosaic-tile--09 { display: flex; grid-column: 1 / 3; grid-row: 5 / 8; }
  .mosaic-tile--10 { grid-column: 7 / 9; grid-row: 5 / 8; }
  .mosaic-tile--11 { grid-column: 3 / 5; grid-row: 6 / 8; }
  .mosaic-tile--12 { grid-column: 5 / 7; grid-row: 6 / 8; }

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

  .inner-page-hero--with-form .site-container {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .inner-page-hero--with-form .consulting-contact__form-card {
    margin-inline: auto;
  }

}

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

  .site-header {
    padding: 16px 0;
  }

  .brand-name {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 650px;
    padding: 56px 0 90px;
  }

  .hero__title {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.16;
  }

  .hero__description {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero__description br {
    display: none;
  }

  .trust-row {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .section {
    padding: 84px 0;
  }

  .service-grid,
  .post-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-grid--four,
  .project-grid,
  .platform-feature-grid,
  .page-section__header {
    grid-template-columns: 1fr;
  }

  .project-card--wide {
    min-height: 330px;
    grid-column: auto;
  }

  .mobile-drawer {
    overflow-y: auto;
  }

  .mobile-navigation {
    align-items: flex-start;
    padding: 70px 0 30px;
  }

  .mobile-navigation > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .service-card__icon {
    margin-bottom: 34px;
  }

  .network-panel__copy {
    padding: 42px 26px;
  }

  .stat {
    min-height: 150px;
    padding: 24px;
  }

  .process-list {
    gap: 30px;
  }

  .contact-panel {
    padding: 60px 22px;
  }

  .page-lead {
    margin-bottom: 64px;
  }

  .page-section {
    padding: 58px 0;
  }

  .consulting-contact__form-card {
    padding: 26px 20px;
  }

  .page-section__header {
    gap: 15px;
  }

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

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

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .footer-directory__brand {
    grid-column: 1 / -1;
  }

  .content-main {
    padding-top: 58px;
  }

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

  .inner-page-hero {
    padding: 88px 0 80px;
  }

  .inner-page-hero--with-form {
    min-height: 100vh;
    min-height: 100svh;
    padding: 64px 0 72px;
  }

  .inner-page-hero__title {
    font-size: clamp(50px, 15vw, 92px);
    line-height: 0.94;
  }

  .inner-page-hero__description {
    max-width: 560px;
    margin-top: 48px;
    font-size: 18px;
  }

  .creator-directory-hero {
    padding: 88px 0 80px;
  }

  .creator-directory-hero__title {
    font-size: clamp(58px, 18vw, 118px);
    line-height: 0.82;
  }

  .creator-directory-hero__description {
    max-width: 560px;
    margin-top: 48px;
    font-size: 18px;
  }

  .creator-directory-browser {
    --creator-card-gap: 16px;
    --creator-card-width: min(330px, 82vw);
    padding: 41px 0 64px;
  }

  .creator-directory-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .creator-directory-tabs {
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
  }

  .creator-directory-search {
    width: 100%;
    min-height: 54px;
    margin-left: 0;
  }

  .creator-directory-search input {
    height: 52px;
  }

  .creator-directory-tab {
    min-height: 54px;
    padding: 12px 22px;
    font-size: 14px;
  }

  .creator-directory-groups {
    margin-top: 26px;
  }

  .creator-directory-group {
    padding-top: 38px;
  }

  .creator-directory-track {
    padding-right: 16px;
    padding-left: 16px;
    scroll-padding-inline: 16px;
  }

  .creator-directory-card {
    width: var(--creator-card-width);
    flex-basis: var(--creator-card-width);
  }

  .creator-directory-card__copy {
    padding: 23px;
  }

  .creator-directory-card__copy h4 {
    font-size: 28px;
  }

  .creator-directory-card__subscribers strong {
    font-size: 28px;
  }

  .creator-directory-support {
    padding: 76px 0 92px;
  }

  .mosaic-hero {
    padding: 18px 10px 82px;
  }

  .mosaic-grid {
    min-height: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 90px) auto repeat(4, 90px);
    gap: 7px;
  }

  .mosaic-tile--05,
  .mosaic-tile--04,
  .mosaic-tile--09,
  .mosaic-tile--10 {
    display: none;
  }

  .mosaic-tile--01 { grid-column: 1 / 3; grid-row: 1 / 3; }
  .mosaic-tile--02 { grid-column: 3; grid-row: 1 / 3; }
  .mosaic-tile--03 { display: flex; grid-column: 4; grid-row: 1 / 3; }
  .mosaic-copy { width: calc(100% - 20px); grid-column: 1 / 5; grid-row: 3; min-height: 500px; padding: 44px 22px; }
  .mosaic-tile--07 { display: flex; grid-column: 1 / 3; grid-row: 4 / 6; }
  .mosaic-tile--08 { display: flex; grid-column: 3 / 5; grid-row: 4 / 6; }
  .mosaic-tile--11 { display: flex; grid-column: 1 / 3; grid-row: 6 / 8; }
  .mosaic-tile--12 { display: flex; grid-column: 3 / 5; grid-row: 6 / 8; }

  .mosaic-copy h1 {
    font-size: clamp(39px, 11vw, 54px);
  }

  .bento-business,
  .creator-board {
    padding: 95px 0;
  }

  .creator-board__grid {
    grid-template-columns: 1fr;
  }

  .creator-board__heading a {
    position: static;
    display: inline-block;
    margin-top: 24px;
  }

  .creator-note {
    min-height: 280px;
  }

  .giant-wordmark {
    min-height: 56vh;
    padding: 80px 10px;
  }

  .project-gallery__sticky {
    padding: 84px 0;
  }

  .project-gallery.is-ready .project-gallery__sticky {
    min-height: 620px;
    padding: 28px 0;
  }

  .project-gallery__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .project-gallery__content {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr auto;
    column-gap: 16px;
  }

  .project-gallery__heading {
    grid-column: 1 / -1;
  }

  .project-gallery__heading h2 {
    font-size: clamp(34px, 9.5vw, 48px);
  }

  .project-gallery__heading > p:last-child {
    display: none;
  }

  .project-gallery__pagination,
  .project-gallery__footer {
    margin-top: 20px;
  }

  .project-gallery__track {
    gap: 10px;
  }

  .creator-profile-card {
    width: min(320px, 78vw);
    height: clamp(300px, 42vh, 380px);
    flex-basis: min(320px, 78vw);
    border-radius: 4px;
  }

  .creator-profile-card__copy strong {
    font-size: 27px;
  }

  .project-gallery__more {
    min-height: 46px;
    gap: 18px;
    padding-inline: 18px;
  }

  .closing-cta {
    padding: 110px 0;
  }
}

@media (max-width: 430px) {
  .project-gallery__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-gallery__footer {
    margin-top: 14px;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .network-panel__stats {
    grid-template-columns: 1fr;
  }

  .mobile-navigation > ul {
    grid-template-columns: 1fr;
  }

  .service-card--link {
    min-height: 290px;
  }

  .creator-orbit {
    min-height: 330px;
  }

  .creator-orbit__core {
    width: 68px;
    height: 68px;
  }

  .mosaic-copy__actions,
  .mosaic-copy__actions a,
  .closing-cta > div > div,
  .closing-cta a {
    width: 100%;
  }

  .bento-business__heading h2,
  .creator-board__heading h2,
  .project-gallery__heading h2,
  .closing-cta h2 {
    font-size: 42px;
  }

  .business-scroll__link {
    max-width: calc(100vw - 32px);
    font-size: clamp(27px, 8vw, 34px);
  }

  .creator-directory-hero {
    padding-top: 72px;
  }

  .inner-page-hero {
    padding-top: 72px;
  }

  .inner-page-hero__eyebrow {
    margin-bottom: 18px;
  }

  .inner-page-hero__title {
    font-size: clamp(44px, 13.8vw, 68px);
  }

  .inner-page-hero__description {
    margin-top: 40px;
    font-size: 17px;
    line-height: 1.65;
  }

  .creator-directory-hero__eyebrow {
    margin-bottom: 18px;
  }

  .creator-directory-hero__title {
    font-size: clamp(48px, 17.2vw, 74px);
  }

  .creator-directory-hero__description {
    margin-top: 40px;
    font-size: 17px;
    line-height: 1.65;
  }

  .creator-directory-group__heading h3 {
    font-size: 25px;
  }

  .stat:nth-child(odd) {
    border-right: 0;
  }

  .stat:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }
}

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

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

  .mosaic-tile,
  .mosaic-copy__typing,
  .mosaic-copy__wipe,
  .mosaic-copy .eyebrow,
  .mosaic-copy > p:not(.eyebrow),
  .mosaic-copy__actions,
  .bento-business__typing,
  .bento-business__wipe,
  .bento-business__heading .eyebrow {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
    animation: none !important;
  }

  .creator-directory-hero__eyebrow,
  .creator-directory-hero__title,
  .creator-directory-hero__description,
  .inner-page-hero__eyebrow,
  .inner-page-hero__title,
  .inner-page-hero__description {
    animation: none !important;
  }

  .creator-directory-hero__typing,
  .inner-page-hero__typing {
    animation: none !important;
    clip-path: none;
  }

  .business-scroll.is-ready {
    height: auto !important;
    min-height: min(720px, 80vh);
  }

  .business-scroll.is-ready .business-scroll__sticky {
    position: static;
    overflow: visible;
    height: auto;
    min-height: inherit;
  }

  .business-scroll.is-ready .business-scroll__links {
    position: static;
    display: grid;
    height: auto;
  }

  .business-scroll.is-ready .business-scroll__link {
    position: static;
    width: auto;
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }

  .mosaic-copy__typing::after,
  .bento-business__typing::after {
    display: none;
  }
}
