:root {
  --page-max: 1100px;
  --outer: #fcfdfd;
  --bg: #fff;
  --ink: #080e1c;
  --muted: #687484;
  --faint: #95a0ad;
  --line: #e8eef1;
  --soft: #f7faf9;
  --mint: #4036eb;
  --mint-dark: #4036eb;
  --mint-soft: #eeedff;
  --dark: #081113;
  --float-shadow: 0 26px 80px rgba(16, 34, 44, .10);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fbfdfd 0%, #fff 220px, #fff 100%);
  color: var(--ink);
  font-family: "Manrope", "Aptos", "Helvetica Neue", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

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

.page-shell {
  width: min(var(--page-max), calc(100vw - 40px));
  margin: 0 auto 64px;
  overflow: visible;
  background: white;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 96px;
  padding: 30px 76px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  overflow: visible;
}

.brand strong {
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mascot {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  transform-origin: 50% 82%;
  transition: transform .18s ease;
}

.brand:hover .brand-mascot {
  animation: mascot-run .34s steps(2, end) infinite;
}

@keyframes mascot-run {
  0% {
    transform: translateY(0) rotate(-7deg) skewX(3deg) scaleX(1.02);
  }

  25% {
    transform: translateY(-3px) rotate(4deg) skewX(-4deg) scaleX(.98);
  }

  50% {
    transform: translateY(0) rotate(7deg) skewX(-3deg) scaleX(1.02);
  }

  75% {
    transform: translateY(-3px) rotate(-4deg) skewX(4deg) scaleX(.98);
  }

  100% {
    transform: translateY(0) rotate(-7deg) skewX(3deg) scaleX(1.02);
  }
}

.nav-links {
  display: flex;
  gap: 30px;
  color: #273142;
  font-size: 13px;
  font-weight: 650;
}

.nav-links a {
  transition: color .18s ease;
}

.nav-links a:hover {
  color: var(--mint);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  padding: 15px 24px;
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 14px 34px rgba(8, 14, 28, .13);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  background: #111827;
  box-shadow: 0 18px 40px rgba(8, 14, 28, .16);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 40px;
  background: var(--mint);
  padding: 11px 18px;
  font-size: 13px;
  box-shadow: 0 14px 34px rgba(64, 54, 235, .2);
}

.button-small:hover {
  background: #3027ca;
  box-shadow: 0 18px 40px rgba(64, 54, 235, .24);
}

.hero { padding: 74px 76px 70px; }

.hero-copy {
  display: flex;
  max-width: 820px;
  margin: 0 auto 64px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy h1 {
  margin: 0 0 24px;
  max-width: 780px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.impact-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--mint);
  color: white;
}

.impact-inner {
  display: flex;
  max-width: 920px;
  margin: 0 auto;
  padding: 58px 76px 54px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 38px;
  text-align: center;
}

.impact-inner h2 {
  width: 100%;
  max-width: 720px;
  margin: 0 0 8px;
  color: white;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.25;
}

.impact-inner p {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  white-space: nowrap;
}

.impact-inner strong {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.impact-inner span {
  font-size: 14px;
  font-weight: 700;
}

.logo-row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 44px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  margin-top: 18px;
  padding-top: 28px;
}

.logo-row img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 164px;
  object-fit: contain;
}

.logo-row .wookies-logo {
  height: 34px;
}

.logo-row .ronnau-logo {
  height: 76px;
  max-width: 220px;
}

.logo-row .bom-logo {
  height: 32px;
}

.logo-row .berga-logo {
  height: 40px;
  max-width: 180px;
}

.logo-row .piccola-logo {
  height: 76px;
  max-width: 92px;
  filter: grayscale(1) invert(1) contrast(1.12);
  mix-blend-mode: plus-lighter;
}

.hero-copy-side {
  max-width: 620px;
}

.location {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy-side h2 {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

.hero-copy-side p:not(.location) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #7f8997;
  font-size: 12px;
  line-height: 1.25;
}

.proof-strip span {
  min-height: 34px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
}

.proof-strip span:first-child { border-left: 0; padding-left: 0; }

.section {
  padding: 94px 76px;
}

.attention-section {
  display: grid;
  gap: 44px;
  border-top: 1px solid rgba(232, 238, 241, .72);
  text-align: center;
}

.section-label {
  margin: 0 0 18px;
  color: var(--faint);
  font-size: 12px;
}

.section h2,
.cta-section h2 {
  margin: 0 0 18px;
  font-size: 41px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.section p,
.cta-section p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.attention-copy {
  max-width: 740px;
  margin: 0 auto;
}

.attention-copy h2 {
  max-width: 620px;
  margin-right: auto;
  margin-bottom: 22px;
  margin-left: auto;
}

.attention-copy p {
  max-width: 640px;
  margin: 0 auto 14px;
}

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

.attention-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfdfd;
  padding: 26px 22px;
  box-shadow: 0 14px 36px rgba(16, 34, 44, .045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.attention-grid article:hover {
  border-color: rgba(64, 54, 235, .28);
  background: #fff;
  box-shadow: 0 22px 54px rgba(64, 54, 235, .12);
  transform: translateY(-5px);
}

.attention-grid strong,
.attention-grid span {
  display: block;
}

.attention-grid strong {
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 0;
}

.attention-grid span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.metric-proof-section {
  border-top: 1px solid rgba(232, 238, 241, .72);
  padding-top: 82px;
}

.metric-proof-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.metric-proof-head p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

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

.proof-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(221, 230, 235, .86);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fbfdfd 100%);
  padding: 18px;
  box-shadow: 0 20px 54px rgba(16, 34, 44, .055);
}

.feature-card {
  grid-column: span 1;
}

.metric-visual {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px);
  background: #080d14;
  isolation: isolate;
}

.metric-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3.34 / 1;
  object-fit: cover;
}

.link-visual img {
  aspect-ratio: 4.63 / 1;
}

.profile-visual img {
  aspect-ratio: 2.28 / 1;
}

.metric-ring,
.metric-arrow {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.metric-ring {
  left: var(--mark-x);
  top: var(--mark-y);
  width: 88px;
  height: 64px;
  border: 3px solid var(--mint);
  border-radius: 999px;
  box-shadow:
    0 0 0 2px rgba(7, 13, 20, .72),
    0 0 26px rgba(64, 54, 235, .3);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.metric-arrow {
  left: var(--arrow-x);
  top: var(--arrow-y);
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(64, 54, 235, .26);
  transform: rotate(var(--arrow-rotate));
  transform-origin: left center;
}

.metric-arrow::after {
  position: absolute;
  right: -2px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 3px solid var(--mint);
  border-right: 3px solid var(--mint);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.proof-copy {
  max-width: 430px;
}

.metric-value {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 850;
}

.proof-copy h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: 0;
}

.proof-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.62;
}

.paid-section {
  display: grid;
  width: 100vw;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  gap: 54px;
  margin-left: calc(50% - 50vw);
  padding-right: max(76px, calc((100vw - var(--page-max)) / 2 + 76px));
  padding-left: max(76px, calc((100vw - var(--page-max)) / 2 + 76px));
  align-items: start;
  border-top: 1px solid rgba(232, 238, 241, .72);
  background: var(--mint);
  color: white;
}

.paid-summary {
  position: sticky;
  top: 28px;
}

.paid-summary h2 {
  max-width: 500px;
}

.paid-summary p {
  color: rgba(255, 255, 255, .82);
  max-width: 460px;
  margin: 0 0 14px;
}

.paid-summary strong {
  color: white;
  font-weight: 850;
}

.paid-kicker {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.paid-grid-kicker {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.paid-total {
  display: inline-grid;
  min-width: 210px;
  margin-top: 28px;
  border: 1px solid rgba(221, 230, 235, .86);
  border-radius: var(--radius);
  background: white;
  padding: 20px 22px;
  box-shadow: 0 16px 42px rgba(16, 34, 44, .055);
}

.paid-total strong {
  font-size: 40px;
  line-height: 1;
}

.paid-total span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

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

.paid-grid article {
  min-height: 152px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
  padding: 24px 22px;
  box-shadow: 0 14px 36px rgba(8, 14, 28, .08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.paid-grid article:hover {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 22px 54px rgba(8, 14, 28, .16);
  transform: translateY(-5px);
}

.paid-grid strong,
.paid-grid span,
.paid-grid small {
  display: block;
}

.paid-grid strong {
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: 0;
}

.paid-grid span {
  margin-top: 14px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.paid-grid span b {
  color: white;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.paid-grid small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.portfolio-section {
  border-top: 1px solid rgba(232, 238, 241, .72);
  text-align: center;
}

.portfolio-head {
  max-width: 720px;
  margin: 0 auto 26px;
}

.portfolio-head h2 {
  margin-bottom: 20px;
}

.portfolio-head p:not(.section-label) {
  margin: 0 0 8px;
}

.portfolio-head p strong {
  color: var(--ink);
  font-weight: 850;
}

.portfolio-tags {
  display: flex;
  max-width: 780px;
  margin: 0 auto 34px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.portfolio-tags span {
  border: 1px solid rgba(64, 54, 235, .18);
  border-radius: 999px;
  background: #f7f7ff;
  padding: 9px 14px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
}

.portfolio-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 14px;
  margin: 0 auto 42px;
}

.mosaic-item {
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: end;
  border: 1px solid rgba(221, 230, 235, .86);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(64, 54, 235, .12), rgba(64, 54, 235, 0)),
    #fbfdfd;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(16, 34, 44, .045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.mosaic-item::before {
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(64, 54, 235, .22);
  border-radius: 12px;
  content: "";
}

.mosaic-item:hover {
  border-color: rgba(64, 54, 235, .28);
  box-shadow: 0 22px 54px rgba(64, 54, 235, .12);
  transform: translateY(-5px);
}

.mosaic-item span {
  position: relative;
  z-index: 1;
  color: #1f2937;
  font-size: 14px;
  font-weight: 850;
}

.mosaic-item.tall {
  grid-row: span 2;
}

.mosaic-item.wide {
  grid-column: span 2;
}

.cta-section {
  display: grid;
  gap: 34px;
  align-items: start;
  border-top: 1px solid rgba(232, 238, 241, .72);
  background: #fbfdfd;
  padding: 78px 76px 104px;
}

.cta-section > div {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-section .button {
  min-width: 230px;
  justify-self: start;
}

.qualification-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  gap: 14px;
  border: 1px solid rgba(221, 230, 235, .86);
  border-radius: 18px;
  background: white;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(16, 34, 44, .06);
}

.qualification-form label,
.qualification-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
}

.qualification-form label span,
.qualification-form legend {
  color: #273142;
  font-size: 13px;
  font-weight: 800;
}

.qualification-form small {
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
}

.qualification-form input[type="text"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfd;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.qualification-form input[type="text"]:focus {
  border-color: rgba(64, 54, 235, .48);
  background: white;
  box-shadow: 0 0 0 4px rgba(64, 54, 235, .1);
}

.qualification-form fieldset {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.qualification-form fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.qualification-form input[type="radio"] {
  accent-color: var(--mint);
}

.qualification-form .button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 6px;
  border: 0;
  background: var(--mint);
  cursor: pointer;
}

.qualification-form .button:hover {
  background: #3027ca;
}

.whatsapp-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border-radius: var(--radius);
  background: #25d366;
  padding: 13px 20px;
  color: white;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-secondary:hover {
  background: #1fbd59;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .28);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100vw - 24px, var(--page-max));
    margin: 12px auto;
  }

  .nav,
  .hero,
  .section,
  .cta-section {
    padding-right: 34px;
    padding-left: 34px;
  }

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

  .nav-links {
    display: none;
  }

  .hero-copy,
  .paid-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

  .cta-section {
    gap: 34px;
  }

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

  .proof-metric-grid,
  .paid-grid,
  .portfolio-mosaic {
    grid-template-columns: 1fr;
  }

  .portfolio-mosaic {
    grid-auto-rows: 132px;
  }

  .mosaic-item.tall,
  .mosaic-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .paid-summary {
    position: static;
  }

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

  .proof-strip span {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 12px 0;
  }

  .proof-strip span:first-child {
    border-top: 0;
  }
}

@media (max-width: 620px) {
  body {
    padding-top: 76px;
  }

  .page-shell {
    width: 100%;
    margin: 0;
  }

  .nav,
  .hero,
  .section,
  .cta-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 76px;
    border-top: 4px solid var(--mint);
    border-bottom: 1px solid rgba(232, 238, 241, .9);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
  }

  .nav .button {
    display: inline-flex;
    min-height: 38px;
    padding: 10px 13px;
    font-size: 12px;
  }

  .qualification-form {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 28px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .impact-inner {
    padding: 38px 20px;
    gap: 24px;
  }

  .impact-inner h2 {
    font-size: 21px;
  }

  .impact-inner p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    white-space: normal;
  }

  .impact-inner strong {
    font-size: 36px;
  }

  .logo-row {
    gap: 22px;
  }

  .logo-row img {
    max-width: 126px;
    height: 34px;
  }

  .logo-row .wookies-logo {
    height: 28px;
  }

  .logo-row .ronnau-logo {
    height: 58px;
    max-width: 170px;
  }

  .logo-row .bom-logo {
    height: 34px;
  }

  .logo-row .berga-logo {
    height: 32px;
    max-width: 142px;
  }

  .logo-row .bom-logo {
    height: 27px;
  }

  .logo-row .piccola-logo {
    height: 64px;
    max-width: 78px;
  }

  .hero-copy-side {
    border-left: 0;
    padding-left: 0;
  }

  .metric-proof-section {
    padding-top: 64px;
  }

  .proof-card {
    padding: 14px;
  }

  .metric-ring {
    width: 70px;
    height: 52px;
  }

  .metric-arrow {
    width: 62px;
  }

  .paid-grid article {
    min-height: 0;
  }
}

/* V4 composed blocks: V2 hero, V2 video metrics, stories strip, simple footer. */
.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
  align-items: center;
  gap: 40px 56px;
  padding-top: 74px;
}

.hero-copy {
  display: flex;
  max-width: 690px;
  margin: 0;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-copy h1 {
  margin: 0 0 16px;
  max-width: none;
  font-size: 49px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 590px;
  margin: 0;
  color: #4d5968;
  font-size: 16px;
  line-height: 1.62;
}

.hero-map-figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(216, 227, 232, .9);
  border-radius: 26px;
  background: #eef7ea;
  box-shadow: 0 28px 72px rgba(27, 50, 68, .13);
}

.hero-map-figure picture,
.hero-map-figure img {
  display: block;
  width: 100%;
}

.hero-map-figure img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.proof-strip {
  grid-column: 1 / -1;
}

.proof-strip span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.proof-icon-img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
}

.metric-proof-white {
  background: #fff;
}

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

.reel-proof-card {
  display: grid;
  min-height: 615px;
  align-content: start;
  gap: 22px;
  border: 1px solid rgba(221, 230, 235, .86);
  border-radius: 22px;
  background: #fff;
  padding: 24px;
  box-shadow: none;
}

.reel-proof-media {
  display: grid;
  position: relative;
  min-height: 350px;
  place-items: center;
  overflow: visible;
}

.reel-proof-media video {
  display: block;
  width: min(92%, 255px);
  max-height: 460px;
  border-radius: 18px;
  background: #05070a;
  box-shadow: none;
  cursor: pointer;
}

.metric-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 40px rgba(5, 10, 16, .22);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.metric-video-play::before {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--ink);
  margin-left: 4px;
  content: "";
}

.reel-proof-media.is-playing .metric-video-play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.88);
}

.reel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 72px;
  gap: 10px;
  margin: 0;
}

.reel-metrics div {
  display: grid;
  min-width: 0;
  align-content: start;
  justify-items: center;
  gap: 6px;
  border-radius: 12px;
  padding: 8px 3px;
}

.reel-metrics .is-focus {
  color: #4036eb;
}

.reel-metrics dt,
.reel-metrics dd {
  margin: 0;
}

.reel-metrics dt {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: currentColor;
  font-size: 10px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.reel-metrics dd {
  color: currentColor;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.ig-icon {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: currentColor;
}

.icon-like {
  -webkit-mask: url("assets/icons/heart-fill.svg") center / contain no-repeat;
  mask: url("assets/icons/heart-fill.svg") center / contain no-repeat;
}

.icon-comment {
  -webkit-mask: url("assets/icons/chat-fill.svg") center / contain no-repeat;
  mask: url("assets/icons/chat-fill.svg") center / contain no-repeat;
}

.icon-send {
  -webkit-mask: url("assets/icons/send-fill.svg") center / contain no-repeat;
  mask: url("assets/icons/send-fill.svg") center / contain no-repeat;
}

.icon-repost {
  -webkit-mask: url("assets/icons/arrow-repeat.svg") center / contain no-repeat;
  mask: url("assets/icons/arrow-repeat.svg") center / contain no-repeat;
}

.icon-save {
  -webkit-mask: url("assets/icons/bookmark-fill.svg") center / contain no-repeat;
  mask: url("assets/icons/bookmark-fill.svg") center / contain no-repeat;
}

.stories-showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.stories-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0 20px;
}

.stories-marquee::before,
.stories-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(120px, 16vw);
  pointer-events: none;
  content: "";
}

.stories-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.stories-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.story-marquee-track {
  display: flex;
  width: max-content;
  gap: 6px;
  padding-left: 6px;
  animation: story-marquee 62s linear infinite;
  will-change: transform;
}

.stories-marquee:hover .story-marquee-track {
  animation-play-state: paused;
}

.is-lightbox-open .story-marquee-track {
  animation-play-state: paused;
}

.story-card {
  position: relative;
  display: block;
  width: clamp(156px, 13vw, 204px);
  aspect-ratio: 9 / 16;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(221, 230, 235, .86);
  border-radius: 18px;
  background: #f7faf9;
  box-shadow: 0 18px 48px rgba(16, 34, 44, .08);
  margin: 0;
}

.story-video-card,
.story-image-card {
  cursor: pointer;
  padding: 0;
  color: inherit;
  font: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}

.story-video-card:hover,
.story-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(16, 34, 44, .14);
}

.story-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  background: rgba(8, 14, 28, .72);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.story-play-badge::before {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid white;
  content: "";
}

.story-card-skeleton {
  background: linear-gradient(110deg, #edf2f4 8%, #f8fbfb 18%, #edf2f4 33%);
  background-size: 200% 100%;
  animation: story-loading 1.2s linear infinite;
}

@keyframes story-marquee {
  to { transform: translateX(calc(-50% - 3px)); }
}

@keyframes story-loading {
  to { background-position-x: -200%; }
}

.portfolio-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(2, 6, 12, .88);
}

.portfolio-lightbox[hidden] {
  display: none;
}

.portfolio-lightbox video {
  width: min(88vw, 390px);
  max-height: 84vh;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .38);
}

.portfolio-lightbox img {
  width: min(88vw, 390px);
  max-height: 84vh;
  border-radius: 18px;
  object-fit: contain;
  background: #000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .38);
}

.portfolio-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: white;
  padding: 10px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.is-lightbox-open {
  overflow: hidden;
}

.footer {
  display: flex;
  width: min(var(--page-max), calc(100vw - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-top: 1px solid rgba(232, 238, 241, .9);
  padding: 34px 0 52px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

@media (prefers-reduced-motion: reduce) {
  .story-marquee-track {
    animation: story-marquee 62s linear infinite;
  }

  .stories-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .reels-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-map-figure {
    width: min(100%, 720px);
  }

  .reel-proof-card {
    grid-template-columns: minmax(180px, 260px) 1fr;
    gap: 18px 20px;
    min-height: 0;
  }

  .reel-proof-media {
    min-height: 390px;
    grid-row: span 2;
  }

  .reel-proof-media video {
    width: min(82%, 236px);
  }

  .reel-metrics {
    align-self: end;
  }
}

@media (max-width: 620px) {
  .cta-section {
    padding-bottom: 52px;
  }

  .hero-map-figure {
    border-radius: 20px;
  }

  .reel-proof-card {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .reel-proof-media {
    min-height: 370px;
    grid-row: auto;
  }

  .reel-proof-media video {
    width: min(86%, 236px);
  }

  .reel-metrics {
    min-height: 52px;
    gap: 2px;
  }

  .reel-metrics div {
    gap: 3px;
    padding: 5px 0;
  }

  .reel-metrics dt {
    gap: 4px;
    font-size: 8px;
  }

  .reel-metrics dd {
    font-size: 14px;
  }

  .story-card {
    width: clamp(142px, 42vw, 166px);
  }

  .stories-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .stories-marquee::before,
  .stories-marquee::after {
    display: none;
  }

  .stories-marquee::-webkit-scrollbar {
    display: none;
  }

  .story-marquee-track {
    animation: story-marquee 62s linear infinite;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 20px;
    padding-bottom: 28px;
    padding-left: 20px;
  }
}
