:root {
  --ink: #0d141a;
  --ink-soft: #56585e;
  --paper: #ffffff;
  --cloud: rgba(255, 255, 255, 0.82);
  --sky: #b8c0cc;
  --leaf: #85ff1c;
  --gold: #2d986b;
  --orange: #85ff1c;
  --pink: #8f11a8;
  --blue: #2d986b;
  --shadow: 0 28px 80px rgba(6, 21, 39, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 98px;
}

[hidden] {
  display: none !important;
}

[data-view] {
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
  will-change: opacity, transform, filter;
}

[data-view].view-entering {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(5px);
}

[data-view].view-leaving {
  opacity: 0;
  transform: translateY(-12px);
  filter: blur(5px);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-view] {
    transition: none;
  }
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 9% 4%, rgba(133, 255, 28, 0.32), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(45, 152, 107, 0.24), transparent 21rem),
    linear-gradient(135deg, #ffffff 0%, #f2f3f6 48%, #def4f0 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(13, 20, 26, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 20, 26, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body.social-mode {
  display: grid;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -8%, rgba(133, 255, 28, 0.36), transparent 22rem),
    radial-gradient(circle at 90% 18%, rgba(45, 152, 107, 0.22), transparent 20rem),
    linear-gradient(135deg, #ffffff 0%, #eef7f4 55%, #dff8d5 100%);
}

body.social-mode > [data-component="header"],
body.social-mode > main,
body.social-mode > [data-component="footer"] {
  display: none;
}

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

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

.section-pad {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(13, 20, 26, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 126px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(133, 255, 28, 0.28);
  transform: translateY(-1px);
}

.site-nav .nav-pill {
  color: white;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Arial Black", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 6.2vw, 5.65rem);
}

h2 {
  max-width: 860px;
  font-size: clamp(2rem, 4.2vw, 3.85rem);
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

p {
  color: var(--ink-soft);
  line-height: 1.68;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(6, 21, 39, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(133, 255, 28, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 8px 0 var(--ink);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 0 4px 0 var(--ink);
  transform: translateY(4px);
}

.button.primary {
  color: var(--ink);
  background: var(--leaf);
}

.social-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.social-shell {
  position: relative;
  width: min(100%, 460px);
  overflow: hidden;
  border: 2px solid rgba(6, 21, 39, 0.92);
  border-radius: 32px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(222, 244, 240, 0.84)),
    var(--cloud);
  box-shadow: 14px 14px 0 var(--ink), 0 28px 80px rgba(6, 21, 39, 0.18);
}

.social-shell::before {
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(90deg, var(--leaf), rgba(45, 152, 107, 0.92));
  content: "";
}

.social-hero {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 14px 10px 18px;
  text-align: center;
}

.social-logo {
  width: min(76%, 260px);
  filter: drop-shadow(0 12px 18px rgba(13, 20, 26, 0.18));
}

.social-avatar {
  width: 112px;
  height: 112px;
  overflow: hidden;
  border: 2px solid rgba(6, 21, 39, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 26%, rgba(183, 255, 48, 0.96), rgba(86, 190, 30, 0.96) 58%, rgba(31, 70, 38, 0.98)),
    var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.social-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.social-hero .eyebrow {
  margin: 4px 0 0;
}

.social-hero h1 {
  font-size: clamp(2.2rem, 10vw, 3.7rem);
  line-height: 0.95;
}

.social-hero p:not(.eyebrow) {
  max-width: 330px;
  margin: 0;
}

.social-links {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 14px 16px;
  border: 2px solid rgba(6, 21, 39, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 6px 6px 0 var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.social-links a:hover {
  background: rgba(133, 255, 28, 0.34);
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(3px, 3px);
}

.social-links span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links strong {
  color: var(--ink);
  font-size: clamp(1rem, 4vw, 1.22rem);
  text-align: right;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.72);
}

.hero,
.page-hero,
.contact-page {
  display: grid;
  align-items: center;
  gap: 48px;
}

.hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  padding-top: 86px;
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  padding-top: 84px;
}

.hero-text,
.page-copy p,
.contact-copy p,
.section-heading p,
.feature-copy p,
.about-copy p,
.cta-panel p {
  max-width: 720px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stage {
  position: relative;
  min-height: 570px;
}

.screen-card,
.portrait-card,
.brand-card {
  overflow: hidden;
  border: 12px solid var(--ink);
  border-radius: var(--radius-xl);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.screen-card {
  position: absolute;
  inset: 54px 0 auto auto;
  width: min(92%, 520px);
  transform: rotate(2deg);
}

.screen-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.portrait-card img,
.brand-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.brand-card img {
  height: 360px;
}

.floating-character {
  position: absolute;
  width: 245px;
  filter: drop-shadow(0 26px 24px rgba(6, 21, 39, 0.3));
  animation: float 5.5s ease-in-out infinite;
}

.floating-character.one {
  left: -18px;
  bottom: 10px;
}

.floating-character.two {
  right: -4px;
  bottom: 0;
  width: 170px;
  animation-delay: -1.8s;
}

.live-badge {
  position: absolute;
  top: 18px;
  right: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 8px 0 var(--ink);
  font-weight: 900;
}

.live-badge span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(143, 17, 168, 0.18);
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  color: white;
  background: var(--ink);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 18px 0;
  animation: scroll 24s linear infinite;
}

.ticker span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.35rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.stat-grid,
.service-grid,
.testimonial-grid,
.process-grid,
.split-cta,
.media-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-grid,
.split-cta {
  grid-template-columns: repeat(2, 1fr);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat-card,
.service-card,
.testimonial-card,
.process-card,
.cta-panel,
.quote-stack,
.contact-shell,
.social-link {
  border: 2px solid rgba(6, 21, 39, 0.9);
  border-radius: var(--radius-lg);
  background: var(--cloud);
  box-shadow: 10px 10px 0 var(--ink);
  backdrop-filter: blur(12px);
}

.stat-card,
.service-card,
.process-card,
.cta-panel {
  padding: 26px;
}

.stat-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.stat-card span,
.service-card span,
.process-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.service-card:nth-child(2),
.process-card:nth-child(2) {
  background: rgba(184, 192, 204, 0.72);
}

.service-card:nth-child(3),
.process-card:nth-child(3) {
  background: rgba(45, 152, 107, 0.18);
}

.service-card:nth-child(4) {
  background: rgba(133, 255, 28, 0.26);
}

.partnership-services {
  padding-bottom: 42px;
}

.partnership-services .section-heading {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.partnership-services .section-heading p:last-child {
  max-width: 720px;
  margin: 0;
  font-size: 1.05rem;
}

.partnership-services .service-grid {
  gap: 16px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(6, 21, 39, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(222, 244, 240, 0.54)),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 70px rgba(13, 20, 26, 0.08);
}

.partnership-services .service-card {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  border-color: rgba(6, 21, 39, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    var(--cloud);
  box-shadow: 0 16px 34px rgba(13, 20, 26, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.partnership-services .service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--leaf), rgba(45, 152, 107, 0.88));
  content: "";
}

.partnership-services .service-card::after {
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(133, 255, 28, 0.14);
  content: "";
}

.partnership-services .service-card:hover {
  box-shadow: 0 22px 48px rgba(13, 20, 26, 0.18);
  transform: translateY(-6px);
}

.partnership-services .service-card span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(45, 152, 107, 0.26);
  border-radius: 50%;
  background: rgba(133, 255, 28, 0.18);
  color: var(--blue);
  font-size: 0.82rem;
}

.partnership-services .service-card h3,
.partnership-services .service-card p {
  position: relative;
  z-index: 1;
}

.partnership-services .service-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.partnership-services .service-card:nth-child(2),
.partnership-services .service-card:nth-child(3),
.partnership-services .service-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(222, 244, 240, 0.72)),
    var(--cloud);
}

.partnership-process {
  padding-top: 36px;
}

.process-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 30px;
}

.process-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.partnership-process .process-grid {
  position: relative;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(6, 21, 39, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(13, 20, 26, 0.96), rgba(21, 45, 34, 0.94)),
    var(--ink);
  box-shadow: 0 26px 70px rgba(13, 20, 26, 0.2);
}

.partnership-process .process-grid::before {
  position: absolute;
  top: 50%;
  right: 60px;
  left: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--leaf), rgba(133, 255, 28, 0.1));
  content: "";
  opacity: 0.42;
}

.partnership-process .process-card {
  position: relative;
  min-height: 190px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.partnership-process .process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(133, 255, 28, 0.42);
  border-radius: 50%;
  color: var(--ink);
  background: var(--leaf);
}

.partnership-process .process-card p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-band {
  color: white;
  background: linear-gradient(135deg, rgba(13, 20, 26, 0.98), rgba(29, 30, 32, 0.97));
  overflow: hidden;
}

.feature-grid,
.about-block {
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
}

.feature-band .eyebrow {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.gallery,
.media-grid {
  display: grid;
  gap: 16px;
}

.gallery {
  grid-template-columns: 1fr 0.76fr;
  grid-template-rows: 220px 220px;
}

.media-showcase,
.media-grid {
  position: relative;
}

.media-showcase::before,
.media-grid::before {
  position: absolute;
  inset: -18px;
  z-index: 0;
  border: 1px solid rgba(133, 255, 28, 0.28);
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 18%, rgba(133, 255, 28, 0.16), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  content: "";
}

.media-card {
  position: relative;
  z-index: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(13, 20, 26, 0.72), rgba(29, 30, 32, 0.92)),
    var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.media-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 38%, rgba(13, 20, 26, 0.72)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 40%);
  content: "";
  pointer-events: none;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.media-card:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.04);
}

.media-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  background: rgba(13, 20, 26, 0.62);
  font-size: 0.88rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.media-card figcaption::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(133, 255, 28, 0.16);
  content: "";
  flex: 0 0 auto;
}

.media-card-wide {
  grid-row: span 2;
}

.media-card-wide img {
  object-position: center;
}

.media-card-character {
  background: linear-gradient(135deg, rgba(133, 255, 28, 0.22), rgba(13, 20, 26, 0.96));
}

.media-card-character img {
  padding: 22px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.28));
}

.rigopes-character-card {
  background:
    radial-gradient(circle at 50% 24%, rgba(183, 255, 48, 0.95), rgba(86, 190, 30, 0.95) 58%, rgba(31, 70, 38, 0.98)),
    var(--ink);
}

.rigopes-character-card img {
  padding: 0;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(1.06) contrast(1.03);
}

.rigopes-character-card::after {
  background:
    linear-gradient(180deg, transparent 34%, rgba(13, 20, 26, 0.74)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 38%);
}

.rigopes-character-card:hover img {
  filter: saturate(1.12) contrast(1.04);
}

.about-block {
  grid-template-columns: 1fr 0.75fr;
}

.quote-stack {
  display: grid;
  gap: 14px;
  padding: 34px;
  background: rgba(133, 255, 28, 0.72);
}

.quote-stack strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.testimonial-card {
  margin: 0;
  padding: 28px;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 900;
}

.testimonial-card span {
  color: var(--blue);
}

.media-grid {
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 260px;
}

.media-grid .media-card-wide {
  grid-row: span 2;
}

.expressions-gallery {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(13, 20, 26, 0.72), rgba(29, 30, 32, 0.92)),
    var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  padding: 24px 24px 56px;
}

.expressions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
}

.expressions-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
  transition: transform 400ms ease, filter 400ms ease;
}

.expressions-grid img:hover {
  transform: scale(1.12) translateY(-6px);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.36));
}

.expressions-gallery figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  background: rgba(13, 20, 26, 0.62);
  font-size: 0.88rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.expressions-gallery figcaption::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(133, 255, 28, 0.16);
  content: "";
  flex: 0 0 auto;
}

/* ── Viewstats-style charts ── */

.viewstats-showcase {
  display: grid;
  gap: 28px;
}

.viewstats-showcase .section-heading {
  display: grid;
  justify-items: center;
  margin: 0 auto 12px;
  text-align: center;
}

.viewstats-showcase .section-heading h2,
.viewstats-showcase .section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.viewstats-charts {
  display: grid;
  gap: 28px;
  width: min(100%, 900px);
  margin: 0 auto;
}

.vs-chart-card {
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(18, 20, 20, 0.98), rgba(12, 14, 14, 0.98)),
    var(--ink);
  box-shadow: 0 22px 58px rgba(13, 20, 26, 0.2);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.vs-chart-card:hover {
  box-shadow: 0 28px 70px rgba(13, 20, 26, 0.3);
  transform: translateY(-4px);
}

.vs-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px 0;
}

.vs-chart-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vs-chart-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.08);
  font-size: 1.3rem;
}

.vs-chart-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.vs-chart-total {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vs-chart-total strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
}

.vs-chart-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(133, 255, 28, 0.15);
  color: var(--leaf);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.vs-chart-wrap {
  position: relative;
  padding: 10px 0 0;
}

.vs-chart-wrap svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 860 / 340;
  overflow: visible;
}

.vs-grid line {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
  stroke-dasharray: 6 4;
}

.vs-grid text {
  fill: rgba(255, 255, 255, 0.60);
  font-size: 13px;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
}

.vs-x-labels text {
  fill: rgba(255, 255, 255, 0.50);
  font-size: 13px;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  text-anchor: middle;
}

.vs-area {
  opacity: 1;
}

.vs-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vs-dot {
  filter: drop-shadow(0 0 8px rgba(133, 255, 28, 0.5));
}

.vs-dot-pulse {
  opacity: 0.5;
  animation: vsPulse 2s ease-in-out infinite;
}

@keyframes vsPulse {
  0%, 100% {
    r: 6;
    opacity: 0.5;
  }
  50% {
    r: 14;
    opacity: 0;
  }
}

/* ── Latest video ── */

.latest-video-section .section-heading {
  display: grid;
  justify-items: center;
  margin: 0 auto 12px;
  text-align: center;
}

.latest-video-section .section-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

.latest-video-container {
  width: min(100%, 900px);
  margin: 0 auto;
}

.latest-video-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(18, 20, 20, 0.98), rgba(12, 14, 14, 0.98)),
    var(--ink);
  box-shadow: 0 22px 58px rgba(13, 20, 26, 0.2);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.latest-video-card:hover {
  box-shadow: 0 28px 70px rgba(13, 20, 26, 0.3);
  transform: translateY(-4px);
}

.latest-video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px 0 0 22px;
}

.latest-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.latest-video-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 28px 32px;
}

.latest-video-info h3 {
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-video-date {
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.88rem;
  font-weight: 600;
}

.latest-video-info .button {
  width: fit-content;
  margin-top: 4px;
  border-color: var(--leaf);
  box-shadow: 0 6px 0 var(--leaf);
}

.latest-video-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(90deg, rgba(18, 20, 20, 0.98), rgba(12, 14, 14, 0.98)),
    var(--ink);
  font-weight: 700;
}

.latest-video-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--leaf);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.latest-video-error {
  padding: 48px 24px;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(90deg, rgba(18, 20, 20, 0.98), rgba(12, 14, 14, 0.98)),
    var(--ink);
  font-weight: 700;
  text-align: center;
}

.numbers-showcase {
  display: grid;
  gap: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.numbers-showcase .section-heading {
  display: grid;
  justify-items: center;
  margin: 0 auto 34px;
  text-align: center;
}

.numbers-showcase .section-heading h2,
.numbers-showcase .section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.channel-charts {
  display: grid;
  gap: 34px;
  width: min(100%, 820px);
  margin: 0 auto;
}

.metric-chart {
  display: grid;
  gap: 12px;
  margin: 0;
}

.metric-chart h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Bricolage Grotesque", "Arial Black", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
}

.metric-chart svg {
  width: 100%;
  overflow: visible;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(18, 20, 20, 0.98), rgba(12, 14, 14, 0.98)),
    var(--ink);
  box-shadow: 0 22px 58px rgba(13, 20, 26, 0.2);
}

.chart-grid line {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
}

.chart-labels text {
  fill: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  font-weight: 700;
}

.chart-x-labels text {
  text-anchor: start;
}

.chart-line {
  fill: none;
  stroke: var(--leaf);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 7px rgba(133, 255, 28, 0.28));
}

.social-panel,
.mini-socials {
  display: grid;
  gap: 14px;
}

.social-link {
  display: grid;
  gap: 4px;
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-link:hover {
  box-shadow: 6px 6px 0 var(--ink);
  transform: translate(4px, 4px);
}

.social-link span {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.social-link strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2rem;
}

.contact-page {
  grid-template-columns: 0.92fr 1.08fr;
  padding-top: 84px;
}

.email-link {
  display: inline-flex;
  margin: 8px 0 24px;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-shell {
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(222, 244, 240, 0.9)),
    url("assets/banner-rigopes.png") center/cover;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  outline: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 5px rgba(133, 255, 28, 0.22);
  transform: translateY(-1px);
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 44px 20px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
  text-align: center;
}

.site-footer img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.site-footer p,
.site-footer span {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  font-weight: 800;
}

.footer-links a {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1040px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(340px, calc(100vw - 32px));
    padding: 14px;
    border: 2px solid var(--ink);
    border-radius: 24px;
    background: white;
    box-shadow: 10px 10px 0 var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero,
  .page-hero,
  .contact-page,
  .feature-grid,
  .about-block {
    grid-template-columns: 1fr;
  }

  .screen-card {
    inset-inline: 0;
    margin: 0 auto;
  }

  .hero-stage {
    min-height: 520px;
  }

  .stat-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partnership-services .service-grid,
  .partnership-process .process-grid {
    grid-template-columns: 1fr;
  }

  .partnership-process .process-grid::before {
    top: 44px;
    bottom: 44px;
    left: 49px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--leaf), rgba(133, 255, 28, 0.1));
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 1160px);
  }

  .brand img {
    width: 108px;
  }

  .section-pad {
    width: min(100% - 24px, 1160px);
    padding: 64px 0;
  }

  .hero,
  .page-hero,
  .contact-page {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
    line-height: 1.05;
  }

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

  .hero-stage {
    min-height: 420px;
  }

  .screen-card img {
    height: 320px;
  }

  .floating-character {
    width: 170px;
  }

  .floating-character.two {
    width: 118px;
  }

  .live-badge {
    right: 16px;
    font-size: 0.9rem;
  }

  .stat-grid,
  .service-grid,
  .testimonial-grid,
  .process-grid,
  .split-cta,
  .gallery,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .gallery,
  .media-grid {
    grid-template-rows: auto;
    grid-auto-rows: auto;
  }

  .media-card,
  .media-card-wide,
  .media-grid .media-card-wide {
    grid-row: auto;
    height: 260px;
  }

  .media-card-wide {
    height: 300px;
  }

  .partnership-services .service-grid,
  .partnership-process .process-grid {
    padding: 10px;
    border-radius: 22px;
  }

  .partnership-services .service-card,
  .partnership-process .process-card {
    min-height: auto;
    padding: 22px;
  }

  .partnership-process .process-grid::before {
    display: none;
  }

  .expressions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .channel-charts {
    gap: 26px;
  }

  .metric-chart h3 {
    font-size: clamp(1.15rem, 6vw, 1.55rem);
  }

  .chart-labels text {
    font-size: 16px;
  }

  .chart-line {
    stroke-width: 3;
  }

  .portrait-card img {
    height: 420px;
  }

  .vs-chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 18px 0;
  }

  .vs-chart-card h3 {
    font-size: 0.95rem;
  }

  .vs-grid text,
  .vs-x-labels text {
    font-size: 10px;
  }

  .vs-chart-badge {
    font-size: 0.6rem;
  }

  .latest-video-card {
    grid-template-columns: 1fr;
  }

  .latest-video-player {
    border-radius: 22px 22px 0 0;
  }

  .latest-video-info {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
