:root {
  /* Light base + your pastel palette */
  --bg: #fbf8f7; /* warm off-white */
  --ink: #0f1d2d; /* deep navy text */
  --muted: rgba(15, 29, 45, 0.68);
  --line: rgba(15, 29, 45, 0.1);

  --surface: rgba(255, 255, 255, 0.72);
  --surface2: rgba(255, 255, 255, 0.88);

  --cyan: #81d0f3;
  --pink: #eeb5b9;
  --lilac: #8c93ad;
  --sand: #cd9c79;

  --radius: 22px;
  --radius2: 28px;
  --max: 1160px;

  --shadow: 0 14px 40px rgba(15, 29, 45, 0.12);
}

body {
  margin: 0;
  font-family:
    "Space Grotesk",
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  color: var(--ink);
  line-height: 1.45;

  /* airy, light, with subtle pastels */
  background:
    radial-gradient(
      900px 520px at 12% 10%,
      rgba(129, 208, 243, 0.28),
      transparent 60%
    ),
    radial-gradient(
      760px 520px at 80% 16%,
      rgba(238, 181, 185, 0.26),
      transparent 62%
    ),
    radial-gradient(
      900px 700px at 50% 92%,
      rgba(142, 147, 173, 0.18),
      transparent 60%
    ),
    var(--bg);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  background: var(--ink);
  color: #111;
  border-radius: 12px;
  z-index: 9999;
}
.skip:focus {
  left: 12px;
}

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

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 247, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__mark {
  /* width: 12px; */
  height: 16px;
  /* border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 0 6px rgba(129, 208, 243, 0.08); */
}
.logo__text {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  font-weight: 500;
  opacity: 0.9;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover {
  background: rgba(15, 29, 45, 0.04);
  opacity: 1;
}

/* Mobile nav */
.navbtn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(247, 245, 246, 0.04);
  cursor: pointer;
}
.navbtn__line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 6px auto;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 29, 45, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(15, 29, 45, 0.1);
  font-weight: 650;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.55);
}

.btn--sm {
  padding: 10px 14px;
  border-radius: 14px;
  border-color: var(--cyan);
}

/* Typography helpers */
.muted {
  color: var(--muted);
}
.tiny {
  font-size: 13px;
}
.big {
  font-size: clamp(18px, 2.2vw, 24px);
}

.accent {
  color: var(--cyan);
}
.accent2 {
  color: var(--pink);
}
.accent3 {
  color: var(--lilac);
}

/* HERO */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 92px) 0 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}
.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(238, 181, 185, 0.12);
}
.hero__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.8px;
}
.hero__title .accent {
  display: block;
  margin-top: 10px;
}
.hero__lead {
  margin: 0 0 22px;
  max-width: 62ch;
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(15, 29, 45, 0.78);
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 13px;
}
.chip--pink {
  border-color: rgba(238, 181, 185, 0.55);
  background: rgba(238, 181, 185, 0.22);
}

.hero__panel {
  display: grid;
  gap: 14px;
  position: relative;
}
.panel__card {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(247, 245, 246, 0.08),
    rgba(247, 245, 246, 0.04)
  );
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}
.panel__card--alt {
  border-color: rgba(129, 208, 243, 0.18);
  background: linear-gradient(
    180deg,
    rgba(129, 208, 243, 0.12),
    rgba(247, 245, 246, 0.04)
  );
}
.panel__kicker {
  color: rgba(15, 29, 45, 0.7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.panel__quote {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 4px;
}
.panel__small {
  font-size: 13px;
}
.mini {
  margin: 10px 0 0;
  padding-left: 16px;
  color: rgba(247, 245, 246, 0.82);
}
.mini li {
  margin: 6px 0;
}

.hero__bg {
  position: absolute;
  inset: -200px -200px auto -200px;
  height: 520px;
  background:
    radial-gradient(
      380px 280px at 20% 30%,
      rgba(129, 208, 243, 0.55),
      transparent 60%
    ),
    radial-gradient(
      420px 300px at 70% 20%,
      rgba(238, 181, 185, 0.38),
      transparent 62%
    ),
    radial-gradient(
      520px 380px at 55% 60%,
      rgba(142, 147, 173, 0.28),
      transparent 65%
    );
  filter: blur(24px);
  opacity: 0.75;
  pointer-events: none;
  animation: floaty 10s ease-in-out infinite alternate;
}
@keyframes floaty {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(20px, 18px, 0) scale(1.02);
  }
}
.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.25) 0 1px,
      transparent 1px 6px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.18) 0 1px,
      transparent 1px 7px
    );
  mix-blend-mode: overlay;
}

/* Sections */
.section {
  padding: clamp(50px, 7vw, 86px) 0;
}
.section--tight {
  padding: clamp(44px, 6vw, 70px) 0;
}
.section--alt {
  background: linear-gradient(
    180deg,
    rgba(247, 245, 246, 0.03),
    rgba(247, 245, 246, 0.02)
  );
  border-block: 1px solid var(--line);
}
.section__head {
  margin-bottom: 22px;
}
.section__head h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.4px;
}
.section__head p {
  margin: 0;
  max-width: 70ch;
}

/* Layout grids */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cards4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Cards */
.card {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card--soft {
  background: linear-gradient(
    135deg,
    rgba(238, 181, 185, 0.22),
    rgba(129, 208, 243, 0.18)
  );
  border-color: rgba(15, 29, 45, 0.1);
}

.card p {
  margin-top: 0;
}
.center {
  text-align: center;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

/* Cases */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(247, 245, 246, 0.06),
    rgba(247, 245, 246, 0.03)
  );
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.case::before {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(129, 208, 243, 0.35),
    transparent 60%
  );
  filter: blur(18px);
  opacity: 0.7;
}
.case__top {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.pill {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(247, 245, 246, 0.04);
}
.pill--cyan {
  border-color: rgba(129, 208, 243, 0.35);
  background: rgba(129, 208, 243, 0.1);
}
.pill--pink {
  border-color: rgba(238, 181, 185, 0.35);
  background: rgba(238, 181, 185, 0.1);
}
.pill--sand {
  border-color: rgba(205, 156, 121, 0.35);
  background: rgba(205, 156, 121, 0.1);
}

/* Lists */
.checks {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.checks li {
  padding-left: 28px;
  position: relative;
  margin: 10px 0;
  color: rgba(15, 29, 45, 0.86);
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(129, 208, 243, 0.35);
  background: rgba(129, 208, 243, 0.1);
  color: var(--cyan);
  font-weight: 800;
}

.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
}
.bullets li {
  margin: 10px 0;
  color: rgba(15, 29, 45, 0.86);
}

.tags {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(15, 29, 45, 0.86);
}
.tags li {
  margin: 9px 0;
}

/* Steps */
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}
.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(247, 245, 246, 0.04);
}
.step__num {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: rgba(129, 208, 243, 0.95);
}
.step h3 {
  margin: 0 0 6px;
}
.step p {
  margin: 0;
}

/* Team */
.person__role {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 29, 45, 0.7);
}
.person h3 {
  margin: 8px 0 8px;
}

/* Person card: photo placeholder + read-more */
.person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.person__photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(129,208,243,0.12), rgba(238,181,185,0.12));
  border: 1px dashed rgba(15,29,45,0.06);
  flex-shrink: 0;
}
/* .person__more {
  margin-top: 8px;
  padding: 6px 8px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
} */

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal[aria-hidden="false"] {
  display: flex;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,29,45,0.36);
}
.modal__panel {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: calc(100% - 48px);
  background: var(--surface2);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(15,29,45,0.18);
}
.modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.modal__content h3 {
  margin: 0 0 10px;
}
.modal__content p {
  margin: 0 0 10px;
}

.details {
  margin-top: 16px;
  padding: 0;
  overflow: hidden;
}
.details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.details summary::-webkit-details-marker {
  display: none;
}
.details__body {
  padding: 16px 18px 18px;
}
.details[open] {
  background: linear-gradient(
    135deg,
    rgba(142, 147, 173, 0.12),
    rgba(247, 245, 246, 0.04)
  );
}

/* Contact form */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label span {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(15, 29, 45, 0.72);
}
input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 12px 12px;
  outline: none;
  font: inherit;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(129, 208, 243, 0.55);
  box-shadow: 0 0 0 4px rgba(129, 208, 243, 0.1);
}
.full {
  grid-column: 1 / -1;
}

.form__row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Links */
.link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: rgba(129, 208, 243, 0.95);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.links {
  margin: 10px 0 0;
  padding-left: 18px;
}
.links li {
  margin: 10px 0;
}
.social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Footer */
.footer {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}

.hero__visual {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 320px auto;
  gap: 14px;
  align-items: start;
}

.viz--portrait {
  grid-column: 1 / -1;
  grid-row: 1;
}
.viz--portrait img {
  object-position: 50% 25%;
}

.viz--stripes {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 1 / 1;
  justify-self: start;
}
.viz--stripes img {
  object-position: 50% 50%;
}

.vizstack {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.viz--bubbles {
  width: clamp(160px, 18vw, 240px);
  height: clamp(72px, 7vw, 96px);
  align-self: flex-end;
  border-radius: 999px;
}
.viz--bubbles img {
  height: 100%;
  object-position: 50% 50%;
}

.viz--motto {
  flex: 1;
  min-height: 220px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
}
.viz--motto::after {
  display: none;
}

.viz {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.viz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.05);
}

/* Subtle campaign gloss + vignette */
.viz::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 90% at 30% 15%,
      rgba(255, 255, 255, 0.35),
      transparent 55%
    ),
    radial-gradient(
      120% 90% at 70% 80%,
      rgba(129, 208, 243, 0.18),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(15, 29, 45, 0.06),
      transparent 50%,
      rgba(15, 29, 45, 0.1)
    );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.cards-team {
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .viz--portrait {
    grid-column: 1;
  }
  .viz--stripes {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }
  .vizstack {
    grid-column: 1;
    grid-row: auto;
  }
  .viz--bubbles {
    width: 100%;
    height: 92px;
    align-self: stretch;
  }
  .cases {
    grid-template-columns: 1fr;
  }
  .cards3 {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .navbtn {
    display: block;
  }
  .nav {
    position: fixed;
    inset: 64px 12px auto 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(251, 248, 247, 0.96);
    backdrop-filter: blur(14px);
    color: var(--ink);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: var(--shadow);
  }
  .nav a {
    padding: 12px 12px;
  }
  .nav.is-open {
    display: flex;
  }
}
/* ===== Shared: creator-apply + contact-block form blocks ===== */
:is(.creator-apply, .contact-block) {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.84),
    rgba(255, 255, 255, 0.7)
  );
  box-shadow: 0 18px 48px rgba(15, 29, 45, 0.12);
  padding: clamp(24px, 4vw, 40px);
}

.creator-apply__intro,
.creator-apply__form,
.contact-block__intro,
.contact-block__form {
  position: relative;
  z-index: 1;
}

.creator-apply__intro,
.contact-block__intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.creator-apply__form,
.contact-block__form {
  border-top: 1px solid rgba(15, 29, 45, 0.08);
  padding-top: 22px;
}

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

.creator-apply__tags,
.contact-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

:is(.creator-apply, .contact-block) select,
:is(.creator-apply, .contact-block) input,
:is(.creator-apply, .contact-block) textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  font: inherit;
}

:is(.creator-apply, .contact-block) select:focus,
:is(.creator-apply, .contact-block) input:focus,
:is(.creator-apply, .contact-block) textarea:focus {
  border-color: rgba(129, 208, 243, 0.55);
  box-shadow: 0 0 0 4px rgba(129, 208, 243, 0.1);
}

.creator-apply__footer,
.contact-block__footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 29, 45, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Tag checkboxes */
.tag-check {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.tag-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tag-check span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  color: rgba(15, 29, 45, 0.82);
  transition: all 0.2s ease;
  cursor: pointer;
}
.tag-check input:checked + span {
  border-color: rgba(129, 208, 243, 0.5);
  background: rgba(129, 208, 243, 0.16);
  box-shadow: 0 8px 18px rgba(129, 208, 243, 0.16);
}

@media (max-width: 860px) {
  :is(.creator-apply, .contact-block) {
    border-radius: 24px;
    padding: 22px;
  }
  .creator-apply__grid,
  .contact-block__grid {
    grid-template-columns: 1fr;
  }
  .creator-apply__footer,
  .contact-block__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ===== Creator apply section ===== */
.creator-apply__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  pointer-events: none;
  opacity: 0.5;
}
.creator-apply__glow--cyan {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -40px;
  background: rgba(129, 208, 243, 0.32);
}
.creator-apply__glow--pink {
  width: 240px;
  height: 240px;
  bottom: -100px;
  left: -40px;
  background: rgba(238, 181, 185, 0.28);
}
.creator-apply__intro h1,
.creator-apply__intro h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.6px;
}
.creator-apply__lead {
  max-width: 62ch;
  font-size: 16px;
}
.creator-apply__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* ===== Contact block with form ===== */
.contact-block__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  pointer-events: none;
  opacity: 0.45;
}
.contact-block__glow--cyan {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -40px;
  background: rgba(129, 208, 243, 0.28);
}
.contact-block__glow--pink {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: -30px;
  background: rgba(238, 181, 185, 0.24);
}
.contact-block__intro h1,
.contact-block__intro h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}
.contact-block__lead {
  max-width: 58ch;
  font-size: 16px;
}
.contact-block__grid .full {
  grid-column: 1 / -1;
}

/* CTA block (replaces inline forms on the homepage) */
.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 48px 52px;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.cta-block--center {
  flex-direction: column;
  align-items: flex-start;
}
.cta-block__copy {
  max-width: 560px;
}
.cta-block__copy h2 {
  margin: 6px 0 10px;
}
.cta-block__copy .muted {
  margin: 0;
}
.cta-block__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
@media (max-width: 640px) {
  .cta-block {
    padding: 32px 24px;
  }
}

.mega-footer {
  position: relative;
  width: 100%;
  padding: 0;
}

.mega-footer__inner {
  width: 100%;
  padding: 32px 48px 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(238, 181, 185, 0.22), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(129, 208, 243, 0.18), transparent 36%),
    var(--bg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
}

.mega-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  gap: 36px;
  align-items: start;
}

.mega-footer__hero {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.mega-footer__hero-copy {
  max-width: 420px;
}

.mega-footer__eyebrow,
.mega-footer__label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.mega-footer__title {
  margin: 0;
  /* max-width: 11ch; */
  font-size: clamp(30px, 3.2vw, 34px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.mega-footer__project {
  flex: 0 0 auto;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  background: #a660bc;
  box-shadow: 0 14px 30px rgba(166, 96, 188, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mega-footer__project:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(166, 96, 188, 0.38);
}

.mega-footer__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 4px;
}

.mega-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-footer__links li + li {
  margin-top: 10px;
}

.mega-footer__links a,
.mega-footer__social a,
.mega-footer__email,
.mega-footer__legal a,
.mega-footer__bottom span {
  color: var(--ink);
  text-decoration: none;
}

.mega-footer__links a,
.mega-footer__social a,
.mega-footer__email {
  font-size: 15px;
}

.mega-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mega-footer__label--spaced {
  margin-top: 20px;
}

.mega-footer__email {
  display: inline-block;
  font-weight: 700;
}

.mega-footer__middle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 26px;
}

.mega-footer__logo {
  gap: 10px;
}

.mega-footer__logo .logo__text {
  color: var(--ink);
  font-size: 18px;
}

.mega-footer__logo .logo__mark {
  width: 34px;
  height: 34px;
}

.mega-footer__bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.mega-footer__bottom span,
.mega-footer__legal a {
  font-size: 14px;
}

.mega-footer__legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .mega-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .mega-footer__inner {
    padding: 26px 22px 20px;
  }

  .mega-footer__hero {
    flex-direction: column;
    gap: 16px;
  }

  .mega-footer__title {
    font-size: clamp(28px, 8vw, 40px);
    max-width: 12ch;
  }

  .mega-footer__project {
    width: 96px;
    height: 96px;
    font-size: 10px;
  }

  .mega-footer__side {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .mega-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Worked with / logo marquee ===== */
.brands-strip {
  padding-top: 28px;
  padding-bottom: 12px;
}

.brands-strip__head {
  margin-bottom: 16px;
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.62));
  box-shadow: 0 14px 36px rgba(15, 29, 45, 0.08);
}

.brands-marquee::before,
.brands-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 72px;
  height: 100%;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(250, 247, 242, 1), rgba(250, 247, 242, 0));
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(250, 247, 242, 1), rgba(250, 247, 242, 0));
}

.brands-marquee__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding: 18px;
  animation: brands-marquee-scroll 32s linear infinite;
}

.brands-marquee:hover .brands-marquee__track {
  animation-play-state: paused;
}

.brand-logo {
  flex: 0 0 auto;
  min-width: 168px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 29, 45, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.brand-logo img {
  max-width: 132px;
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.92;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.brand-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-1px);
}

@keyframes brands-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 860px) {
  .brands-marquee {
    border-radius: 20px;
  }

  .brands-marquee__track {
    gap: 14px;
    padding: 14px;
    animation-duration: 24s;
  }

  .brand-logo {
    min-width: 140px;
    height: 64px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .brand-logo img {
    max-width: 108px;
    max-height: 24px;
  }

  .brands-marquee::before,
  .brands-marquee::after {
    width: 40px;
  }
}

/* ===== Blog ===== */

/* Blog list grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.blog-card__cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.blog-card:hover .blog-card__cover img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card__meta {
  margin: 0;
}

.blog-card__title {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.blog-card__title a {
  color: inherit;
}

.blog-card__title a:hover {
  color: var(--cyan);
}

.blog-card__excerpt {
  margin: 0;
  font-size: 15px;
  flex: 1;
}

/* Blog post page */
.post__wrap {
  max-width: 760px;
}

.post__header {
  margin-bottom: 32px;
}

.post__back {
  display: inline-block;
  margin-bottom: 20px;
}

.post__excerpt {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 62ch;
  margin-top: 8px;
}

.post__cover {
  margin-top: 24px;
  border-radius: var(--radius2);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

.post__content {
  line-height: 1.75;
  font-size: 17px;
}

.post__content h2 {
  margin: 36px 0 12px;
  font-size: clamp(22px, 2.5vw, 28px);
  letter-spacing: -0.3px;
}

.post__content h3 {
  margin: 28px 0 10px;
  font-size: clamp(18px, 2vw, 22px);
}

.post__content p {
  margin: 0 0 18px;
}

.post__content ul,
.post__content ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.post__content li {
  margin: 8px 0;
}

/* ===== Case Studies ===== */

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

.cs-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15, 29, 45, 0.16);
}

.cs-card__hero {
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cs-card__hero--cyan {
  background: linear-gradient(135deg, rgba(129, 208, 243, 0.35) 0%, rgba(238, 181, 185, 0.18) 100%);
}
.cs-card__hero--pink {
  background: linear-gradient(135deg, rgba(238, 181, 185, 0.38) 0%, rgba(129, 208, 243, 0.18) 100%);
}
.cs-card__hero--sand {
  background: linear-gradient(135deg, rgba(205, 156, 121, 0.3) 0%, rgba(142, 147, 173, 0.22) 100%);
}

.cs-card__brand {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
  padding: 0 20px;
  line-height: 1.1;
}

.cs-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cs-card__summary {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  flex: 1;
  line-height: 1.55;
}

.cs-card__footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cs-card__arrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

/* Individual case page */

.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 10px;
  margin-left: -10px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.cs-back:hover {
  background: rgba(15, 29, 45, 0.05);
  color: var(--ink);
}

.cs-hero {
  padding: clamp(44px, 6vw, 72px) 0 0;
  border-bottom: 1px solid var(--line);
}

.cs-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cs-hero__title {
  margin: 0 0 16px;
  font-size: clamp(42px, 6.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.cs-hero__lead {
  max-width: 64ch;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.55;
}

.cs-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.cs-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.cs-stat {
  padding: 26px 22px;
  background: var(--bg);
}

.cs-stat__num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.cs-stat__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cs-body {
  padding: clamp(44px, 6vw, 72px) 0;
}

.cs-section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.cs-ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.cs-ps-card {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
}

.cs-ps-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.cs-ps-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.cs-ps-card p:last-child {
  margin-bottom: 0;
}

.cs-highlights-grid {
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.cs-highlight {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.cs-highlight__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding-top: 2px;
}

.cs-highlight__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.cs-highlight__text p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.cs-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cs-result-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 18px;
  box-shadow: 0 8px 22px rgba(15, 29, 45, 0.07);
}

.cs-result-card__num {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  display: block;
}

.cs-result-card__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.cs-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.cs-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 14px;
  font-weight: 600;
}

.cs-author__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .cs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cs-stats {
    grid-template-columns: 1fr 1fr;
  }
  .cs-results-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cs-ps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }
  .cs-results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.post__content blockquote {
  margin: 28px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--cyan);
  background: rgba(129, 208, 243, 0.08);
  border-radius: 0 12px 12px 0;
}

.post__content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 20px 0;
}

.post__content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.post__content hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}

.post__content code {
  font-family: ui-monospace, monospace;
  background: rgba(15, 29, 45, 0.06);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.88em;
}

@media (max-width: 860px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Prose (policy pages) ─────────────────────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 80px;
  line-height: 1.75;
  color: var(--muted);
}

.prose h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin: 12px 0 8px;
  line-height: 1.15;
}

.prose h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 10px;
}

.prose p,
.prose ul,
.prose li {
  font-size: 1rem;
  margin-bottom: 14px;
}

.prose ul {
  padding-left: 1.4em;
  list-style: disc;
}

.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── Thank-you page ───────────────────────────── */
.hero-ty {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-ty__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 80px 24px;
}

.hero-ty__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}

.hero-ty__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}

.hero-ty__sub {
  font-size: 1.1rem;
  max-width: 420px;
  margin: 0 0 8px;
}

/* ── Cookie banner ────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 640px;
  background: var(--surface2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.cookie-banner__text a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Cookie preferences floating button ──────────── */
.cookie-prefs-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

.cookie-prefs-btn:hover {
  color: var(--ink);
  transform: scale(1.1);
}
