/**
 * Scalajan Custom Theme Style Foundation
 *
 * Contains fonts, polygon-cut UI elements, layout wrappers, and accessibility queries.
 */

/* --- `@font-face` Font Registration --- */
@font-face {
  font-family: 'Golek Duit';
  src: url('../fonts/GOLEK-DUIT.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MADE Okine Sans';
  src: url('../fonts/MADEOkineSansPERSONALUSE-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MADE Okine Sans';
  src: url('../fonts/MADEOkineSansPERSONALUSE-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MADE Okine Sans';
  src: url('../fonts/MADEOkineSansPERSONALUSE-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MADE Okine Sans';
  src: url('../fonts/MADEOkineSansPERSONALUSE-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MADE Okine Sans';
  src: url('../fonts/MADEOkineSansPERSONALUSE-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- Anchor scrolling: offset for the fixed header + smooth scroll (desktop + mobile) --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
#problem,
#solution,
#tools,
#playbooks,
#contact {
  scroll-margin-top: 110px;
}

/* --- Reusable Components --- */

/* 1. Custom Polygon Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% 70%, calc(100% - 14px) 100%, 0 100%);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn-accent {
  background-color: var(--lime);
  color: var(--ink);
}
.btn-orange {
  background-color: var(--orange);
  color: var(--white);
}

/* 2. Tilted Badges / Tags */
.tag-tilted {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
}
.tag-orange {
  background-color: var(--orange);
  color: var(--white);
  transform: rotate(3deg);
}
.tag-lime {
  background-color: var(--lime);
  color: var(--ink);
  transform: rotate(-4deg);
}

/* 3. Section Header Wrapper */
.section-header {
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-header__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 15px;
}
.section-header__title {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 20px;
}
.section-header__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted);
  max-width: 600px;
  margin: 0;
}

/* --- Ticker Marquee Keyframe Animations --- */
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 25s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes tickerScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.ticker-track--reverse {
  animation-name: tickerScrollReverse;
}

/* --- Accessibility (a11y) Reduced Motion Support --- */
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
  .hero-bg-star {
    animation: none !important;
  }
  .hero-mascot {
    animation: none !important;
  }
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, height 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.site-header--hidden {
  transform: translateY(-100%);
}
.site-header--scrolled {
  background-color: rgba(0, 22, 33, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  height: 90px;
}
.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline: clamp(20px, 4vw, 60px);
  margin-inline: auto;
}
.site-header__logo {
  display: block;
}
.site-header__logo img, .site-header__logo svg {
  display: block;
  width: 112px;
  height: auto;
}
.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(15px, 2.5vw, 30px);
}
.site-header__menu li {
  flex-shrink: 0;
}
.site-header__menu a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--off-white);
  white-space: nowrap; /* keep "THE PLAYBOOK" on one line */
  transition: color 0.15s ease;
}
.site-header__menu a:hover {
  color: var(--lime);
}
.site-header__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-square {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--lime);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 11px, 100% 100%, 0 100%);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-square:hover {
  transform: scale(1.08) rotate(12deg);
}
.social-square img, .social-square svg {
  width: 22px;
  height: 22px;
  display: block;
}
.social-square--telegram {
  background-color: transparent !important;
  clip-path: none !important;
}
.social-square--telegram img, .social-square--telegram svg {
  width: 100% !important;
  height: 100% !important;
}
/* Mail square: only shown in the mobile navbar (right slot) */
.social-square--mail {
  display: none;
}

/* Hamburger Burger Toggle Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle__box {
  display: inline-block;
  width: 24px;
  height: 18px;
  position: relative;
}
.menu-toggle__inner,
.menu-toggle__inner::before,
.menu-toggle__inner::after {
  width: 24px;
  height: 2px;
  background-color: var(--off-white);
  position: absolute;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.menu-toggle__inner {
  top: 50%;
  transform: translateY(-50%);
}
.menu-toggle__inner::before {
  content: "";
  top: -8px;
}
.menu-toggle__inner::after {
  content: "";
  bottom: -8px;
}
.menu-toggle--active .menu-toggle__inner {
  background-color: transparent;
}
.menu-toggle--active .menu-toggle__inner::before {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle--active .menu-toggle__inner::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Styles */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .site-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 22, 33, 0.98);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
  }
  .site-header__nav--open {
    opacity: 1;
    visibility: visible;
  }
  .site-header__menu {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .site-header__menu a {
    font-size: 24px;
    letter-spacing: 2px;
  }
}

/* --- Background Visual Elements --- */
.site {
  position: relative;
  width: 100%;
}
.bg-glow-2359 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -499px;
  width: 1626px;
  height: 1907px;
  pointer-events: none;
  z-index: -1;
}
.bg-glow-2359-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Hero Section & Mascot Layout --- */
.hero-section {
  position: relative;
  width: 100%;
  overflow: visible;
  z-index: 20; /* Keep hero on top of problem section */
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 930px;
}
.hero-title {
  font-family: 'Golek Duit', var(--font-display);
  font-size: 200px;
  font-weight: 400;
  line-height: 75%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--lime); /* #CCFF02 */
  margin: 0;
  pointer-events: none;
  text-align: center;
}
.hero-title--top {
  position: absolute;
  top: 181px;
  left: 60px;
  width: 962px;
  height: 138px;
  z-index: 1; /* Behind mascot */
}
.hero-title--bottom {
  position: absolute;
  top: 749px;
  left: 577px;
  width: 803px;
  height: 138px;
  z-index: 1; /* Behind mascot */
}
.hero-desc {
  position: absolute;
  top: 629px;
  left: 50px;
  width: 397px;
  height: auto;
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400; /* Visual match for thin Figma style on dark backgrounds */
  font-size: 20px;
  line-height: 160%;
  color: var(--off-white);
  margin: 0;
  z-index: 4; /* Sits in front of visual backgrounds */
}
.hero-mascot {
  position: absolute;
  top: 249.97px;
  left: 500px;
  width: 383.32px;
  height: 567.82px;
  pointer-events: none;
  z-index: 2; /* Sandwiched between titles */
}
.hero-mascot-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 799px;
  left: 50px;
  width: 184px;
  height: 64px;
  background-color: var(--lime);
  color: var(--ink);
  font-family: 'Golek Duit', var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 75%;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 19.3px, 100% 100%, 0 100%);
  transition: transform 0.15s ease, filter 0.15s ease;
  z-index: 5;
}
.hero-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange); /* #FF4103 */
  border: 3px solid var(--ink); /* #001621 */
  color: var(--ink); /* #001621 */
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 20px;
  box-sizing: border-box;
  white-space: nowrap;
  height: 39px;
}
.hero-badges-container {
  position: absolute;
  top: 300px;
  left: 957px;
  width: 383px;
  height: 81px;
  z-index: 9; /* Container z-index, badges overlap within it */
}
.hero-badge--1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 303px;
  transform: rotate(-4.36deg);
  z-index: 2; /* Overlaps Box 2 locally */
}
.hero-badge--2 {
  position: absolute;
  top: 42px;
  left: 114px;
  width: 269px;
  transform: rotate(5.3deg);
  z-index: 1; /* Positioned below Box 1 locally */
}

.marquee-3 {
  position: absolute;
  top: 2711px;
  left: -3%;
  width: 106%;
  z-index: 3;
}

/* Hero Marquee Ticker styling */
.hero-marquee {
  position: relative;
  width: 106%;
  left: -3%;
  height: 74px;
  background-color: var(--orange); /* #FF4103 */
  display: flex;
  align-items: center;
  overflow: hidden;
  transform: rotate(-2deg);
  z-index: 15;
  box-shadow: 0 5.4px 40.7px rgba(0, 0, 0, 0.15);
  margin-top: 117px; /* 160px distance between bottom of INTO POWER (887px) and marquee (1047px) */
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px; /* Seamless loop gap */
}
.ticker-item-text {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item-dot {
  width: 10px;
  height: 10px;
  background-color: var(--ink); /* #001621 */
  flex-shrink: 0;
}

/* Marquee 2 — Frame 76: lime bg, no rotation, reversed direction */
.marquee-2 {
  position: relative;
  width: 100%;
  height: 74px;
  background-color: var(--lime);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 10;
}
.ticker-group--lime .ticker-item-text {
  color: var(--ink);
}
.ticker-group--lime .ticker-item-dot {
  background-color: var(--ink);
}

/* Problem Section block */
.problem-section {
  position: relative;
  background-color: var(--ink); /* Solid bg hides hero star glows */
  height: 918px;
  margin-top: -25px; /* Pull up to overlap marquee */
  width: 100%;
}
.problem-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
}
.problem-media-container {
  position: absolute;
  top: 123px;
  left: 0;
  width: 889px;
  height: 757px;
  z-index: 8; /* Below solution background (z-index 10) so the bleed tucks behind it */
}
.problem-media-svg {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  max-width: none;
  display: block;
}
.problem-badge-floating {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.problem-badge-floating img {
  width: 100%;
  height: 100%;
  display: block;
}
.problem-badge-floating--views {
  left: 4.16%;
  top: 25.89%;
  width: 24.80%;
  height: 21.93%;
}
.problem-badge-floating--engagement {
  left: 70.30%;
  top: 45.05%;
  width: 30.74%;
  height: 19.09%;
}
.problem-badge-floating--attention {
  left: 36.22%;
  top: 69.09%;
  width: 29.85%;
  height: 22.10%;
}
.problem-content {
  position: absolute;
  left: 748px;
  top: 195px;
  width: 632px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}
.problem-title {
  font-family: 'Golek Duit', var(--font-display);
  font-size: 140px;
  font-weight: 400;
  line-height: 75%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 0;
  pointer-events: none;
}
.problem-headline {
  font-family: 'Golek Duit', var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 31px;
  margin-left: 200px;
  text-align: left;
}
.problem-bullets {
  list-style: none;
  padding: 0;
  margin: 61px 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.problem-bullet-item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.problem-bullet-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.problem-bullet-box svg {
  width: 100%;
  height: 100%;
  display: block;
}
.problem-bullet-text {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  color: var(--off-white);
}
.problem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 59px;
  margin-left: 200px;
  width: 184px;
  height: 64px;
  background-color: var(--lime);
  color: var(--ink);
  font-family: 'Golek Duit', var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 75%;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 19.3px, 100% 100%, 0 100%);
  transition: transform 0.15s ease, filter 0.15s ease;
  z-index: 5;
}
.problem-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Solution Section */
.solution-section {
  position: relative;
  width: 100%;
  height: 1300px;
  margin-top: -51px; /* Overlap to touch problem media card bottom */
  background-color: transparent; /* Slanted background is drawn by SVG */
}
.solution-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; /* Sits behind solution content but overlaps previous section content */
  pointer-events: none;
}
.solution-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* Mobile orange bg shape — hidden on desktop */
.solution-bg-mobile {
  display: none;
}
.solution-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  z-index: 15; /* Sits in front of solution bg */
}
.solution-container {
  padding-top: 160px; /* Distance from top of section to heading */
  padding-inline: 60px;
}

/* Solution Section - Header Block */
.solution-header-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-bottom: 60px; /* room for absolutely-positioned badges below title */
}
.solution-title {
  font-family: 'Golek Duit', var(--font-display);
  font-size: 140px;
  font-weight: 400;
  line-height: 75%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink); /* #001621 on orange background */
  margin: 0;
  pointer-events: none;
}

/* Solution Badges (Frame 57 & 58 — lime green with navy border/text) */
/* Group 627144: container x:526 y:2081, 323x94px, center at x:687 (32px left of page center 720) */
.solution-badges-container {
  position: absolute;
  width: 323px;
  height: 94px;
  top: 62px; /* 2081 - 2019 = 62px from title top */
  left: 50%;
  transform: translateX(calc(-50% - 32px));
  z-index: 3;
}
.solution-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lime);
  background-clip: padding-box;
  border: 3px solid var(--ink);
  color: var(--ink);
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 20px;
  box-sizing: border-box;
  white-space: nowrap;
  position: absolute;
}
/* Frame 58: 254×39px, rotate 4.36°. Visual bbox at container (0,0) → pre-rotation top offset by (58.2-39)/2=9.6px */
.solution-badge--1 {
  top: 10px;
  left: 1px;
  width: 254px;
  height: 39px;
  transform: rotate(-4.36deg);
  z-index: 2;
}
/* Frame 57: 180×39px, rotate -5.3°. Visual bbox at container (140,38) → pre-rotation top offset by (55.4-39)/2=8.2px */
.solution-badge--2 {
  top: 46px;
  left: 141px;
  width: 180px;
  height: 39px;
  transform: rotate(5.3deg);
  z-index: 1;
}

/* Solution Description text */
.solution-desc {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: var(--ink);
  text-align: center;
  max-width: 659px;
  margin: 48px auto 0;
}

/* Solution Cards Container */
.solution-cards-container {
  margin-top: 53px; /* Gap from desc to first card row */
  display: flex;
  flex-direction: column;
  gap: 79px; /* Vertical gap between row 1 and row 2 */
}

/* Card Rows */
.solution-cards-row {
  display: flex;
  justify-content: center;
}
.solution-cards-row--1 {
  gap: 56px; /* Horizontal gap between 3 cards */
}
.solution-cards-row--2 {
  gap: 41px; /* Horizontal gap between 2 cards */
}

/* Individual Card */
.solution-card {
  position: relative;
  width: 402px;
  height: 222px;
  flex-shrink: 0;
}

/* Card SVG background shape */
.solution-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.solution-card__bg svg,
.solution-card__bg .solution-card-bg-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Card Icon Float Box */
.solution-card__icon-box {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 96px;
  z-index: 3;
}
.solution-card__icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.solution-card__icon-bg svg,
.solution-card__icon-bg .solution-icon-bg-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.solution-card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 4;
}
.solution-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Card Title Text */
.solution-card__content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  padding: 0 0 50px;
  box-sizing: border-box;
  z-index: 2;
  text-align: center;
}
.solution-card__title {
  font-family: 'Golek Duit', var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
  text-transform: none;
  color: var(--ink); /* #001621 */
  margin: 0;
}

/* ---- How It Works Section ---- */
.how-it-works-section {
  position: relative;
  overflow: visible;
}
.hiw-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Vector 2793 background glow (same shape as 2359, lime, opacity 0.1) */
/* Figma: top:2739 left:-513 on 1440px canvas. Section start y≈3163. Relative: top:-424, left:-513 */
.hiw-bg-glow {
  position: absolute;
  top: -424px;
  left: -513px;
  width: 1626px;
  height: 1907px;
  pointer-events: none;
  z-index: 0;
}
.hiw-bg-glow svg,
.hiw-bg-glow .hiw-bg-glow-img {
  width: 100%;
  height: 100%;
  display: block;
}

/* how-it-works.svg visual frame */
/* Figma: top:3306 left:-26 on 1440px canvas. Relative to section start: top:143, left:-26 */
.hiw-visual {
  position: absolute;
  top: 143px;
  left: -26px;
  width: 631px;
  height: 738px;
  z-index: 1;
  pointer-events: none;
}
.hiw-visual svg,
.hiw-visual .hiw-visual-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Right-column content block — flows beside the absolute visual */
/* Mirrors Figma: content starts at x:724 in 1440px canvas */
.hiw-content {
  position: relative;
  z-index: 2;
  margin-left: 724px;        /* align with Figma left:724 */
  width: 656px;
  padding-top: 189px;        /* match Figma title top:189 relative to section */
  padding-bottom: 0;
}

.hiw-title {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 140px;
  line-height: 75%;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 0 0 48px 0;
  white-space: nowrap;
}

/* Steps list */
.hiw-steps {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 74px;                 /* Figma: text x:898 − badge right ~824 = 74px */
  padding-bottom: 48px;
}
.hiw-step--last {
  padding-bottom: 0;
}
.hiw-step:not(.hiw-step--last) {
  /* Figma: dashed 8,8 gap, opacity 0.6 — CSS border-style:dashed can't do custom dash length */
  background-image: repeating-linear-gradient(
    to right,
    rgba(250, 250, 250, 0.6) 0px,
    rgba(250, 250, 250, 0.6) 8px,
    transparent 8px,
    transparent 16px
  );
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 16px 1px;
}
.hiw-step + .hiw-step {
  padding-top: 48px;
}

.hiw-step__badge {
  flex-shrink: 0;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--ink);
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 3px solid var(--ink);
  padding: 14px 20px;
  box-sizing: border-box;
}

.hiw-step__title {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  color: var(--lime);
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.hiw-step__desc {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: var(--off-white);
  margin: 0;
}

/* ==========================================================================
   Infrastructure Section
   ========================================================================== */

.infrastructure-section {
  position: relative;
  width: 100%;
  height: 2755px;
  overflow: visible;
  z-index: 5;
  margin-top: -40px;
}

.infra-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.infra-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.infra-title {
  position: absolute;
  top: 196px;
  left: 0;
  width: 1053px;
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 140px;
  line-height: 75%;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  z-index: 2;
}

.infra-content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1320px;
  height: 100%;
  overflow: visible;
  z-index: 2;
}

.infra-svg {
  position: absolute;
  overflow: visible;
}

.infra-mockup {
  width: 100%;
  height: 100%;
}
.infra-svg-img {
  width: 100%;
  height: 100%;
  display: block;
}

.infra-svg--1 { top: 469px;  left: 0;     width: 862.5px; height: 484px; }
.infra-svg--2 { top: 469px;  left: 810px; width: 510px;   height: 484px; }
.infra-svg--3 { top: 985px;  left: 0;     width: 510px;   height: 484px; }
.infra-svg--4 { top: 985px;  left: 458px; width: 862.5px; height: 484px; }
.infra-svg--5 { top: 1501px; left: 0;     width: 1320px;  height: 484px; }
.infra-svg--6 { top: 2017px; left: 0;     width: 862.5px; height: 484px; }
.infra-svg--7 { top: 2017px; left: 810px; width: 510px;   height: 484px; }

/* --- Infra decorative icons --- */
.infra-icon {
  position: absolute;
  display: block;
  z-index: 3;
}

.infra-icon--1 { top: 224px; left:  55px; width: 675px;  height: 260px; }
.infra-icon--2 { top: 125px; left:  55px; width: 418px;  height:  98px; }
.infra-icon--3 { top:  60px; left:  55px; width: 390px;  height: 189px; }
.infra-icon--4 { top: 225px; left: 118px; width: 715px;  height: 260px; }
.infra-icon--5 { top:  80px; left:  60px; width: 1189px; height: 346px; }
.infra-icon--6 { top: 211px; left:  60px; width: 675px;  height: 273px; }
.infra-icon--7 { top:  65px; left:  60px; width: 436px;  height: 196px; }

/* --- Infra card overlays --- */
.infra-overlay {
  position: absolute;
  inset: 0;
  overflow: visible;
  z-index: 5;
}

.infra-badge {
  position: absolute;
  background-color: var(--orange);
  color: var(--ink);
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: 3px solid var(--ink);
  box-sizing: border-box;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  z-index: 10;
}

.infra-card-title {
  position: absolute;
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  color: var(--lime);
  text-transform: uppercase;
  margin: 0;
}

.infra-card-desc {
  position: absolute;
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: var(--off-white);
  margin: 0;
  text-wrap: pretty;
}

/* infra-1: SVG origin (60,4720) */
/* infra-1: SVG origin (60,4720) — Figma angle -4.09° → CSS +4.09° */
.infra-badge--1       { left: 498px; top: 15px;  width: 324px; height: 39px; transform: rotate(4.09deg); }
.infra-card-title--1  { left: 60px;  top: 60px;  }
.infra-card-desc--1   { left: 60px;  top: 125px; width: 480px; }

/* infra-2: SVG origin (870,4720) — Figma angle 1.69° → CSS -1.69° */
.infra-badge--2       { left: 224px; top: 38px;  width: 308px; height: 39px; transform: rotate(-1.69deg); }
.infra-card-title--2  { left: 60px;  top: 281px; }
.infra-card-desc--2   { left: 60px;  top: 346px; width: 380px; }

/* infra-3: SVG origin (60,5236) — Figma angle 8.99° → CSS -8.99° */
.infra-badge--3       { left: -19px; top: -8px;  width: 298px; height: 39px; transform: rotate(-8.99deg); }
.infra-card-title--3  { left: 60px;  top: 281px; }
.infra-card-desc--3   { left: 60px;  top: 346px; width: 380px; }

/* infra-4: SVG origin (518,5236) — Figma angle -6.14° → CSS +6.14° */
.infra-badge--4       { left: 586px; top: 0;     width: 308px; height: 39px; transform: rotate(6.14deg); }
.infra-card-title--4  { left: 138px; top: 60px;  }
.infra-card-desc--4   { left: 138px; top: 125px; width: 500px; }

/* infra-5: SVG origin (60,5752) — Figma angle -6.14° → CSS +6.14° */
.infra-badge--5       { left: 1055px; top: 21px; width: 301px; height: 39px; transform: rotate(6.14deg); }
.infra-card-title--5  { left: 60px;   top: 60px; }
.infra-card-desc--5   { left: 60px;   top: 125px; width: 480px; }

/* infra-6: SVG origin (60,6268) — Figma angle -4.09° → CSS +4.09° */
.infra-badge--6       { left: 489px; top: 17px;  width: 328px; height: 39px; transform: rotate(4.09deg); }
.infra-card-title--6  { left: 60px;  top: 60px;  }
.infra-card-desc--6   { left: 60px;  top: 125px; width: 480px; }

/* infra-7: SVG origin (870,6268) — Figma angle 1.69° → CSS -1.69° */
.infra-badge--7       { left: 226px; top: 32px;  width: 300px; height: 39px; transform: rotate(-1.69deg); }
.infra-card-title--7  { left: 60px;  top: 313px; }
.infra-card-desc--7   { left: 60px;  top: 378px; width: 380px; }

/* ==========================================================================
   Map / Scaling Globally Section
   ========================================================================== */

.map-section {
  position: relative;
  width: 100%;
  height: 1280px;
  overflow: visible;
}

.map-content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 100%;
}

.map-title {
  position: absolute;
  top: 199px;
  left: 276px;
  width: 888px;
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 140px;
  line-height: 75%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ccff02;
  margin: 0;
}

.map-desc {
  position: absolute;
  top: 337px;
  left: 521px;
  width: 398px;
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  color: var(--off-white);
  margin: 0;
}

.map-visual {
  position: absolute;
  top: 447px;
  left: 60px;
  width: 1320px;
  height: 790px;
}

.map-visual-img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================================================
   Map Tooltips
   ========================================================================== */

.map-tt__img {
  display: block;
  width: 100%;
  height: auto;
}

.map-tt {
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  transform-origin: top left;
  transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.map-tt:hover,
.map-tt.map-tt--active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.map-country-trigger {
  cursor: pointer;
  pointer-events: auto;
}

.map-country-trigger circle {
  transition: fill 0.2s ease, transform 0.2s ease;
  transform-origin: center;
  transform-box: fill-box;
}

.map-country-trigger:hover circle {
  fill: #d8ff33; /* slightly brighter/greener yellow on hover */
  transform: scale(1.25);
}

/* Each commentbox positioned individually — confirm via devtools */
.map-tt--greenland { position: absolute; z-index: 5; top: 95px; left: 499px; }
.map-tt--france    { position: absolute; z-index: 5; top: 298px; left: 630px; }
.map-tt--saudi     { position: absolute; z-index: 5; top: 400px; left: 806px; }
.map-tt--usa       { position: absolute; z-index: 5; top: 275px; left: 228px; }
.map-tt--brasil    { position: absolute; z-index: 5; top: 565px; left: 435px; }
.map-tt--russia    { position: absolute; z-index: 5; top: 165px; left: 995px; }

/* ==========================================================================
   Playbooks Section
   ========================================================================== */

.playbooks-section {
  position: relative;
  width: 100%;
  height: 847px;
  overflow: visible;
  margin-top: 80px; /* Vertical gap between map visual and playbooks section */
}

.playbooks-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.playbooks-bg svg,
.playbooks-bg .playbooks-bg-img {
  width: 100%;
  height: 100%;
  display: block;
}

.playbooks-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 100%;
  z-index: 2;
}

.playbooks-header {
  position: relative;
  width: 100%;
  height: 193px;
}

.playbooks-title {
  position: absolute;
  top: 96px;
  left: 58px;
  width: 265px;
  height: 33px;
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.playbooks-view-all {
  position: absolute;
  top: 80px;
  left: 1255px;
  width: 129px;
  height: 64px;
  background-color: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Golek Duit', var(--font-display);
  font-size: 24px;
  font-weight: 400;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 19.3px, 100% 100%, 0 100%);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.playbooks-view-all:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.playbooks-view-all__text {
  text-transform: none; /* preserve mixed case "View aLL" */
  line-height: 75%;
}

.playbooks-grid {
  position: absolute;
  top: 193px;
  left: 60px;
  width: 1320px;
  display: flex;
  gap: 17px;
  justify-content: flex-start;
}

/* --- Card: Playbook --- */
.card-playbook {
  position: relative;
  width: 429px;
  height: 558px;
  flex-shrink: 0;
}

.card-playbook__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-playbook__bg svg,
.card-playbook__bg .card-playbook-bg-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card-playbook__inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.card-playbook__thumb {
  width: 388px;
  height: 267px;
  margin: 0 auto;
  position: relative;
}

.card-playbook__thumb-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card-playbook__img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.card-playbook:hover .card-playbook__img {
  filter: grayscale(0%);
}

.card-playbook__title {
  margin: 24px 0 0 0;
  font-family: 'Golek Duit', var(--font-display);
  font-size: 32px;
  line-height: 100%;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
  padding-right: 10px;
}

.card-playbook__title a {
  color: var(--ink);
  text-decoration: none;
}

.card-playbook__title a:hover {
  color: var(--orange);
}

.card-playbook__meta {
  position: absolute;
  bottom: 130px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.card-playbook__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-playbook__meta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.card-playbook__meta-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card-playbook__meta-text {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-transform: uppercase;
}

.card-playbook__cta {
  position: absolute;
  bottom: 50px;
  left: 20px;
  width: 389px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.card-playbook__cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-playbook__cta-bg svg,
.card-playbook__cta-bg .card-playbook-cta-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card-playbook__cta-text {
  position: relative;
  z-index: 2;
  font-family: 'Golek Duit', var(--font-display);
  font-size: 24px;
  line-height: 75%;
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
  transition: transform 0.2s ease;
}


/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
  position: relative;
  width: 100%;
  height: 950px;
  overflow: visible;
  margin-top: 143px; /* Gap between the Playbooks section background and Contact frame */
}

.contact-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 100%;
  overflow: visible;
}

.contact-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 723px;
  height: 756px;
  z-index: 1;
}

.contact-frame img,
.contact-frame-img {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-form-container {
  position: absolute;
  top: 17.5px; /* vertical offset in Figma */
  left: 739px; /* starting position in Figma with 16px gap */
  width: 644px;
  height: 739px;
  z-index: 2;
}

.contact-form-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-form-bg svg,
.contact-form-bg-img {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-form-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-form {
  position: relative;
  width: 100%;
  height: 100%;
}

.contact-form__title {
  position: absolute;
  top: 80.5px;
  left: 99px;
  width: 446px;
  height: 66px;
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 96px;
  line-height: 75%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  display: flex;
  align-items: center;
}

.contact-form__group {
  position: absolute;
  left: 48px;
  width: 548px;
  display: flex;
  flex-direction: column;
}

.contact-form__group--name {
  top: 204.5px;
  height: 43px;
}

.contact-form__group--email {
  top: 297.5px;
  height: 43px;
}

.contact-form__group--phone {
  top: 388.5px;
  height: 43px;
}

.contact-form__group--message {
  top: 479.5px;
  height: 97px;
}

.contact-form__label {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-form__input {
  background: transparent;
  border: none;
  background-image: repeating-linear-gradient(
    to right,
    rgba(0, 22, 33, 0.6) 0px,
    rgba(0, 22, 33, 0.6) 8px,
    transparent 8px,
    transparent 16px
  );
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 16px 1px;
  border-radius: 0;
  outline: none;
  width: 100%;
  height: 24px;
  padding: 0;
  margin: 0;
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  box-sizing: border-box;
}

.contact-form__textarea {
  background: transparent;
  border: none;
  background-image: repeating-linear-gradient(
    to right,
    rgba(0, 22, 33, 0.6) 0px,
    rgba(0, 22, 33, 0.6) 8px,
    transparent 8px,
    transparent 16px
  );
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 16px 1px;
  border-radius: 0;
  outline: none;
  width: 100%;
  height: 70px;
  padding: 0;
  margin: 0;
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  resize: none;
  box-sizing: border-box;
}

.contact-form__submit {
  position: absolute;
  top: 624.5px;
  left: 233px;
  width: 178px;
  height: 64px;
  background-color: var(--orange);
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 19.3px, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.contact-form__submit:hover .contact-form__submit-text {
  color: var(--lime) !important;
}

.contact-form__submit-text {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 75%;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.15s ease;
}

/* ==========================================================================
   Footer Section */
.site-footer {
  background-color: var(--ink);
  padding: 100px 60px 47px 60px;
  position: relative;
  z-index: 15;
  box-sizing: border-box;
}

.site-footer__container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: 537px max-content 314px 161.6px;
  justify-content: space-between;
  margin-bottom: 80px;
}

/* Left Column: CTA */
.footer-cta {
  width: 537px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-cta__title {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 100px;
  line-height: 75%;
  color: var(--lime);
  text-transform: uppercase;
  margin: 0 0 48px 0;
  letter-spacing: -0.01em;
}

.footer-cta__subtitle {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: var(--off-white);
  margin: 0 0 48px 0;
}

.footer-cta__btn {
  width: 184px;
  height: 64px;
  background-color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 19.3px, 100% 100%, 0 100%);
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.footer-cta__btn:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.05) !important;
}

.footer-cta__btn-text {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 75%;
  text-transform: uppercase;
  color: var(--ink);
}

/* Center-Left Column: Navigation */
.footer-nav {
  width: 104px;
}

.footer-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-nav__menu a {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 24px;
  color: var(--off-white);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap; /* keep "THE PLAYBOOK" on one line */
  transition: color 0.3s ease;
}

.footer-nav__menu a:hover {
  color: var(--lime);
}

/* Center-Right Column: Contact */
.footer-contact {
  width: 314px;
  display: flex;
  flex-direction: column;
}

.footer-contact__title {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 24px;
  color: var(--off-white);
  text-transform: uppercase;
  margin: 0 0 50px 0;
}

.footer-contact__item {
  margin-bottom: 40px;
}

.footer-contact__item:last-child {
  margin-bottom: 0;
}

.footer-contact__link {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--off-white);
}

.footer-contact__icon-wrapper {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.footer-contact__icon-wrapper svg {
  width: 28px;
  height: auto;
  display: block;
}

.footer-contact__text {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  transition: color 0.3s ease;
}

.footer-contact__link:hover .footer-contact__text {
  color: var(--lime);
}

/* Right Column: Brand and Socials */
.footer-brand {
  width: 161.6px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-brand__logo {
  margin-bottom: 128px;
}

.footer-brand__logo-svg {
  width: 161.6px;
  height: auto;
  display: block;
}

.footer-brand__socials {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

/* Bottom Footer */
.footer-bottom {
  background-image: repeating-linear-gradient(
    to right,
    rgba(250, 250, 250, 0.6) 0px,
    rgba(250, 250, 250, 0.6) 8px,
    transparent 8px,
    transparent 16px
  );
  background-repeat: repeat-x;
  background-position: top;
  background-size: 16px 1px;
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom__copyright {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.footer-bottom__links {
  display: flex;
  gap: 42px;
}

.footer-bottom__link {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom__link:hover {
  color: var(--lime);
}

/* ==========================================================================
   Playbook Page — Hero Section
   ========================================================================== */

.pb-hero {
  position: relative;
  width: 100%;
  height: 803px;
  overflow: hidden;
}

.pb-hero__canvas {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 100%;
}

.pb-hero__bg {
  position: absolute;
  top: 27px;
  left: 800px;
  width: 748px;
  height: 748px;
  transform: rotate(17.2deg);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.pb-hero__bg img,
.pb-hero__bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pb-hero__badge {
  position: absolute;
  top: 250px;
  left: 620px;
  width: 198px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  box-sizing: border-box;
  background-color: var(--orange);
  border: 3px solid var(--ink);
  transform: rotate(-4.36deg);
  white-space: nowrap;
  z-index: 3;
}

.pb-hero__badge-square {
  width: 6px;
  height: 6px;
  background-color: var(--ink);
  flex-shrink: 0;
}

.pb-hero__badge-text {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.pb-hero__title {
  position: absolute;
  top: 278px;
  left: 370px;
  width: 701px;
  height: 96px;
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 140px;
  line-height: 0.75;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0;
  z-index: 2;
}

.pb-hero__desc {
  position: absolute;
  top: 422px;
  left: 398px;
  width: 644px;
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  color: var(--off-white);
  margin: 0;
  z-index: 2;
}

/* Stat Numbers */
.pb-hero__stat-num {
  position: absolute;
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 96px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--lime);
  z-index: 2;
}
.pb-hero__stat-num--1 { top: 540px; left: 349px; width: 134px; }
.pb-hero__stat-num--2 { top: 540px; left: 633px; width: 174px; }
.pb-hero__stat-num--3 { top: 540px; left: 957px; width: 85px;  }

/* Stat Labels */
.pb-hero__stat-label {
  position: absolute;
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--off-white);
  z-index: 2;
}
.pb-hero__stat-label--1 { top: 630px; left: 317px; width: 197px; }
.pb-hero__stat-label--2 { top: 630px; left: 665px; width: 109px; }
.pb-hero__stat-label--3 { top: 630px; left: 901px; width: 198px; }

/* ==========================================================================
   Playbook Page — All Playbooks Section
   ========================================================================== */

.pb-all {
  position: relative;
  width: 100%;
  padding-bottom: 140px;
}

.pb-all__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.pb-all__bg svg,
.pb-all__bg .pb-all__bg-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pb-all__canvas {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  padding: 0 60px;
  padding-top: 155px;
  z-index: 2;
  box-sizing: border-box;
}

.pb-all__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  margin-bottom: 0;
}

.pb-all__title {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--off-white);
  margin: 0;
  width: 258px;
  height: 33px;
  display: flex;
  align-items: center;
}

.pb-all__sort-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pb-all__sort-label {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--off-white);
}

.pb-all__sort-btn {
  width: 154px;
  height: 64px;
  background-color: var(--lime);
  color: var(--ink);
  border: 0;
  font-family: 'Golek Duit', var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 22px, 100% 100%, 0 100%);
  transition: filter 0.15s ease;
}

.pb-all__sort-btn:hover {
  filter: brightness(0.92);
}

.pb-all__sort-arrow {
  font-size: 12px;
  line-height: 1;
}

.pb-all__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
  margin-top: 64px;
}

.pb-all__grid .card-playbook {
  flex-shrink: 0;
}

.pb-all__load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.pb-all__load-more {
  width: 220px;
  height: 64px;
  background-color: var(--lime);
  color: var(--ink);
  font-family: 'Golek Duit', var(--font-display);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 24px, 100% 100%, 0 100%);
  transition: background-color 0.15s ease, color 0.15s ease;
  border: 0;
}

.pb-all__load-more:hover {
  filter: brightness(0.92);
}

.pb-all__load-more:disabled {
  opacity: 0.5;
  cursor: default;
}

/* ==========================================================================
   Article Detail Page — Hero
   ========================================================================== */

.article-hero {
  position: relative;
  width: 100%;
}

.article-hero__canvas {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  padding: 150px 60px 0;
  box-sizing: border-box;
}

.article-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  height: 42px;
  padding: 0 26px;
  background-color: var(--orange);
  border: 3px solid var(--ink);
  box-sizing: border-box;
}

.article-hero__badge-text {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.article-hero__badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--ink);
  flex-shrink: 0;
}

.article-hero__title {
  margin: 24px 0 0;
  max-width: 1100px;
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 140px;
  line-height: 0.75;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  color: var(--lime);
  padding-top: 0.18em; /* compensates 75% line-height clipping cap height */
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 48px;
}

.article-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-hero__meta-icon {
  width: 24px;
  height: 24px;
}

.article-hero__meta-text {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1;
}

.article-hero__image {
  margin: 64px 0 0;
  width: 1320px;
  aspect-ratio: 1320 / 557;
  clip-path: polygon(0 4.79%, 7.69% 0, 100% 4.79%, 100% 92.92%, 92.61% 100%, 0 94.87%);
}

.article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Article Detail Page — Layout (Sidebar + Content)
   ========================================================================== */

.article-layout {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  padding: 0 60px;
  box-sizing: border-box;
  margin-top: 90px;
  display: flex;
  gap: 90px;
  align-items: flex-start;
}

.article-sidebar {
  width: 330px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}

.article-author {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.article-author__avatar {
  width: 81px;
  height: 90px;
  flex-shrink: 0;
}

.article-author__avatar svg {
  display: block;
  width: 100%;
  height: 100%;
}

.article-author__info {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.article-author__name {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--lime);
}

.article-author__role {
  margin-top: 18px;
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1;
}

.article-share {
  margin-top: 56px;
}

.article-share__title {
  margin: 0 0 36px;
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--lime);
}

.article-share__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.article-share__list li {
  padding-bottom: 30px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(250, 250, 250, 0.4) 0px,
    rgba(250, 250, 250, 0.4) 8px,
    transparent 8px,
    transparent 16px
  );
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 16px 1px;
}

.article-share__list li + li {
  padding-top: 32px;
}

.article-share__link {
  display: inline-block;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.article-share__link:hover {
  opacity: 0.75;
  transform: translateX(4px);
}

.article-share__img {
  height: 32px;
  width: auto;
  display: block;
}
.article-share__img--telegram {
  aspect-ratio: 149/32 !important;
  width: auto !important;
}

/* ==========================================================================
   Article Detail Page — Content Typography (editor-safe global rules)
   ========================================================================== */

.article-content {
  flex: 1;
  max-width: 900px;
  min-width: 0;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content h1 {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--lime);
  margin: 70px 0 40px;
}

.article-content h2 {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--lime);
  margin: 70px 0 40px;
}

.article-content h3 {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 56px 0 28px;
}

.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 40px 0 24px;
}

.article-content p {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: var(--off-white);
  margin: 0 0 32px;
}

.article-content a {
  color: var(--lime);
  text-decoration: underline;
}

.article-content a:hover {
  color: var(--orange);
}

.article-content ul,
.article-content ol {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: var(--off-white);
  margin: 0 0 32px;
  padding-left: 26px;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content li::marker {
  color: var(--lime);
}

.article-content blockquote {
  margin: 40px 0;
  padding-left: 26px;
  border-left: 3px solid var(--lime);
  font-style: italic;
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px 0;
}

.article-content strong,
.article-content b {
  font-weight: 700;
}

.article-content hr {
  border: 0;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(250, 250, 250, 0.4) 0px,
    rgba(250, 250, 250, 0.4) 8px,
    transparent 8px,
    transparent 16px
  );
  margin: 48px 0;
}

.article-content figure {
  margin: 40px 0;
}

.article-content figcaption {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

/* Single article page: extra breathing room before reused playbooks section */
.single .playbooks-section {
  margin-top: 135px;
}

/* ==========================================================================
   Fluid responsive scaling under 1440px desktop width */
@media (max-width: 1440px) {
  .hero-inner {
    height: 64.58vw; /* Proportional to 930px height */
  }
  .hero-title {
    font-size: 13.89vw; /* Proportional to 200px */
  }
  .hero-title--top {
    top: 12.57vw;
    left: 4.17vw;
    width: 66.8vw;
    height: 9.58vw;
  }
  .hero-title--bottom {
    top: 52.01vw;
    left: 40.07vw;
    width: 55.76vw;
    height: 9.58vw;
  }
  .hero-desc {
    top: 43.68vw;
    left: 3.47vw;
    width: 27.57vw;
    height: auto;
    font-size: 1.39vw;
  }
  .hero-mascot {
    top: 17.36vw;
    left: 34.72vw;
    width: 26.62vw;
    height: 39.43vw;
  }
  .hero-btn {
    top: 55.49vw;
    left: 3.47vw;
    width: 12.78vw;
    height: 4.44vw;
    font-size: 1.67vw;
    clip-path: polygon(0 0, calc(100% - 0.49vw) 0, 100% 1.34vw, 100% 100%, 0 100%);
  }
  .hero-badge {
    border-width: 0.21vw;
    font-size: 1.11vw;
    padding: 0 1.39vw;
    height: 2.71vw;
  }
  .hero-badges-container {
    top: 19.86vw;
    left: 66.46vw;
    width: 26.60vw;
    height: 5.63vw;
  }
  .hero-badge--1 {
    top: 0;
    left: 0;
    width: 21.04vw;
  }
  .hero-badge--2 {
    top: 2.92vw;
    left: 7.92vw;
    width: 18.68vw;
  }
  .hero-marquee {
    width: 108%;
    left: -4%;
    height: 5.14vw;
    box-shadow: 0 0.38vw 2.83vw rgba(0, 0, 0, 0.15);
    margin-top: 8.13vw; /* 117px / 1440 * 100 */
  }
  .ticker-group {
    gap: 3.06vw;
    padding-right: 3.06vw;
  }
  .ticker-item-text {
    font-size: 1.39vw;
  }
  .ticker-item-dot {
    width: 0.69vw;
    height: 0.69vw;
  }
  .problem-section {
    height: 63.75vw;
  }
  .problem-media-container {
    top: 8.54vw;
    left: 0;
    width: 61.74vw;
    height: 52.57vw;
  }
  .problem-content {
    left: 51.94vw;
    top: 13.54vw;
    width: 43.89vw;
  }
  .problem-title {
    font-size: 9.72vw;
  }
  .problem-headline {
    font-size: 3.33vw;
    margin-top: 2.15vw;
    margin-left: 13.89vw;
  }
  .problem-bullets {
    margin: 4.24vw 0 0 13.89vw;
    gap: 1.74vw;
  }
  .problem-bullet-item {
    gap: 1.25vw;
  }
  .problem-bullet-box {
    width: 3.33vw;
    height: 3.33vw;
  }
  .problem-bullet-box svg {
    width: 100%;
    height: 100%;
  }
  .problem-bullet-text {
    font-size: 1.39vw;
  }
  .problem-btn {
    margin-top: 4.10vw;
    margin-left: 13.89vw;
    width: 12.78vw;
    height: 4.44vw;
    font-size: 1.67vw;
    clip-path: polygon(0 0, calc(100% - 0.49vw) 0, 100% 1.34vw, 100% 100%, 0 100%);
  }
  .solution-section {
    height: 90.28vw;
    margin-top: -3.54vw;
  }
  .solution-container {
    padding-top: 11.11vw; /* 160px / 1440 */
    padding-inline: 4.17vw;
  }
  .solution-title {
    font-size: 9.72vw; /* 140px / 1440 */
  }
  .solution-badges-container {
    width: 22.43vw; /* 323px / 1440 */
    height: 6.53vw; /* 94px / 1440 */
    top: 4.31vw; /* 62px / 1440 */
    transform: translateX(calc(-50% - 2.22vw));
  }
  .solution-badge {
    font-size: 1.11vw;
    padding: 0.97vw 1.39vw;
    border-width: 0.21vw;
  }
  .solution-badge--1 {
    width: 17.64vw; /* 254px / 1440 */
    height: 2.71vw; /* 39px / 1440 */
    top: 0.69vw; /* 10px / 1440 */
    left: 0.07vw;
  }
  .solution-badge--2 {
    top: 3.19vw; /* 46px / 1440 */
    left: 9.79vw; /* 141px / 1440 */
    width: 12.50vw; /* 180px / 1440 */
    height: 2.71vw; /* 39px / 1440 */
  }
  .solution-desc {
    font-size: 1.39vw;
    max-width: 45.76vw;
    margin-top: 3.33vw; /* 48px / 1440 */
  }
  .solution-cards-container {
    margin-top: 3.68vw;
    gap: 5.49vw; /* 79px / 1440 */
  }
  .solution-cards-row--1 {
    gap: 3.89vw; /* 56px / 1440 */
  }
  .solution-cards-row--2 {
    gap: 2.85vw; /* 41px / 1440 */
  }
  .solution-card {
    width: 27.92vw; /* 402px / 1440 */
    height: 15.42vw; /* 222px / 1440 */
  }
  .solution-card__icon-box {
    top: -3.13vw; /* -45px / 1440 */
    width: 6.67vw;
    height: 6.67vw;
  }
  .solution-card__icon {
    width: 4.17vw;
    height: 4.17vw;
  }
  .solution-card__content {
    padding: 0 1.39vw 2.08vw;
  }
  .solution-card__title {
    font-size: 2.78vw; /* 40px / 1440 */
  }

  /* Playbooks Section scaling */
  .playbooks-section {
    height: 58.82vw;
    margin-top: 5.56vw;
  }
  .playbooks-inner {
    width: 100vw;
  }
  .playbooks-header {
    height: 13.40vw;
  }
  .playbooks-title {
    top: 6.67vw;
    left: 4.03vw;
    width: 18.40vw;
    height: 2.29vw;
    font-size: 3.33vw;
  }
  .playbooks-view-all {
    top: 5.56vw;
    left: 87.15vw;
    width: 8.96vw;
    height: 4.44vw;
    font-size: 1.67vw;
  }
  .playbooks-grid {
    top: 13.40vw;
    left: 4.17vw;
    width: 91.67vw;
    gap: 1.18vw;
  }
  .card-playbook {
    width: 29.79vw;
    height: 38.75vw;
  }
  .card-playbook__inner {
    padding: 1.39vw;
  }
  .card-playbook__thumb {
    width: 26.94vw;
    height: 18.54vw;
  }
  .card-playbook__title {
    margin-top: 1.67vw;
    font-size: 2.22vw;
  }
  .card-playbook__meta {
    position: absolute;
    bottom: 9.03vw;
    left: 1.39vw;
    margin-top: 0;
    gap: 2.22vw;
  }
  .card-playbook__meta-item {
    gap: 0.56vw;
  }
  .card-playbook__meta-icon {
    width: 1.67vw;
    height: 1.67vw;
  }
  .card-playbook__meta-text {
    font-size: 0.97vw;
  }
  .card-playbook__cta {
    bottom: 3.47vw;
    left: 1.39vw;
    width: 27.01vw;
    height: 4.44vw;
  }
  .card-playbook__cta-text {
    font-size: 1.67vw;
  }

  /* Contact Section scaling */
  .contact-section {
    height: 65.97vw;
    margin-top: 9.93vw;
  }
  .contact-container {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .contact-frame {
    left: 0;
    width: 50.21vw;
    height: 52.50vw;
  }
  .contact-form-container {
    top: 1.22vw;
    left: 51.32vw;
    width: 44.72vw;
    height: 51.32vw;
  }
  .contact-form__title {
    top: 5.59vw;
    left: 6.88vw;
    width: 30.97vw;
    height: 4.58vw;
    font-size: 6.67vw;
  }
  .contact-form__group {
    left: 3.33vw;
    width: 38.06vw;
  }
  .contact-form__group--name {
    top: 14.20vw;
    height: 2.99vw;
  }
  .contact-form__group--email {
    top: 20.66vw;
    height: 2.99vw;
  }
  .contact-form__group--phone {
    top: 26.98vw;
    height: 2.99vw;
  }
  .contact-form__group--message {
    top: 33.30vw;
    height: 6.74vw;
  }
  .contact-form__label {
    font-size: 1.11vw;
    margin-bottom: 0.28vw;
  }
  .contact-form__input {
    background-image: repeating-linear-gradient(
      to right,
      rgba(0, 22, 33, 0.6) 0px,
      rgba(0, 22, 33, 0.6) 0.56vw,
      transparent 0.56vw,
      transparent 1.11vw
    );
    background-size: 1.11vw 1px;
    height: 1.67vw;
    font-size: 1.11vw;
  }
  .contact-form__textarea {
    background-image: repeating-linear-gradient(
      to right,
      rgba(0, 22, 33, 0.6) 0px,
      rgba(0, 22, 33, 0.6) 0.56vw,
      transparent 0.56vw,
      transparent 1.11vw
    );
    background-size: 1.11vw 1px;
    height: 4.86vw;
    font-size: 1.11vw;
  }
  .contact-form__submit {
    top: 43.37vw;
    left: 16.18vw;
    width: 12.36vw;
    height: 4.44vw;
    clip-path: polygon(0 0, calc(100% - 0.49vw) 0, 100% 1.34vw, 100% 100%, 0 100%);
  }
  .contact-form__submit-text {
    font-size: 1.67vw;
  }

  /* Playbook Page Hero scaling */
  .pb-hero {
    height: 55.76vw; /* 803px / 1440 */
  }
  .pb-hero__bg {
    top: 1.91vw;
    left: 46.18vw;
    width: 51.94vw;
    height: 51.94vw;
  }
  .pb-hero__badge {
    top: 17.36vw;
    left: 43.06vw;
    width: 13.75vw;
    height: 2.71vw;
    gap: 0.69vw;
    padding: 0.97vw 1.39vw;
    border-width: 0.21vw;
  }
  .pb-hero__badge-square {
    width: 0.42vw;
    height: 0.42vw;
  }
  .pb-hero__badge-text {
    font-size: 1.11vw;
  }
  .pb-hero__title {
    top: 19.31vw;
    left: 25.69vw;
    width: 48.68vw;
    font-size: 9.72vw;
    letter-spacing: -0.10vw;
  }
  .pb-hero__desc {
    top: 29.31vw;
    left: 27.64vw;
    width: 44.72vw;
    font-size: 1.39vw;
  }
  .pb-hero__stat-num    { font-size: 6.67vw; }
  .pb-hero__stat-num--1 { top: 37.50vw; left: 24.24vw; width: 9.31vw; }
  .pb-hero__stat-num--2 { top: 37.50vw; left: 43.96vw; width: 12.08vw; }
  .pb-hero__stat-num--3 { top: 37.50vw; left: 66.46vw; width: 5.90vw; }
  .pb-hero__stat-label    { font-size: 3.33vw; }
  .pb-hero__stat-label--1 { top: 43.75vw; left: 22.01vw; width: 13.68vw; }
  .pb-hero__stat-label--2 { top: 43.75vw; left: 46.18vw; width: 7.57vw; }
  .pb-hero__stat-label--3 { top: 43.75vw; left: 62.57vw; width: 13.75vw; }

  /* Playbook Page All-Playbooks scaling */
  .pb-all__canvas {
    width: 100vw;
    padding: 0 4.17vw;
  }
  .pb-all__header {
    height: 4.44vw;
  }
  .pb-all__title {
    font-size: 3.33vw;
    width: 17.92vw;
  }
  .pb-all__sort-label {
    font-size: 1.39vw;
  }
  .pb-all__sort-btn {
    width: 10.69vw;
    height: 4.44vw;
    font-size: 1.25vw;
  }
  .pb-all__grid {
    gap: 2.22vw 1.18vw;
    margin-top: 4.44vw;
  }
  .pb-all__load-more-wrap {
    margin-top: 5.00vw;
  }
  .pb-all__load-more {
    width: 15.28vw;
    height: 4.44vw;
    font-size: 1.67vw;
  }

  /* Article Detail Page scaling */
  .article-hero__canvas {
    width: 100vw;
    padding: 14.38vw 4.17vw 0;
  }
  .article-hero__badge {
    height: 2.92vw;
    padding: 0 1.81vw;
    gap: 1.25vw;
    border-width: 0.21vw;
  }
  .article-hero__badge-text {
    font-size: 1.39vw;
  }
  .article-hero__badge-dot {
    width: 0.42vw;
    height: 0.42vw;
  }
  .article-hero__title {
    margin-top: 1.67vw;
    max-width: 76.39vw;
    font-size: 9.72vw;
    letter-spacing: -0.10vw;
  }
  .article-hero__meta {
    gap: 2.50vw;
    margin-top: 3.33vw;
  }
  .article-hero__meta-item {
    gap: 0.56vw;
  }
  .article-hero__meta-icon {
    width: 1.67vw;
    height: 1.67vw;
  }
  .article-hero__meta-text {
    font-size: 1.39vw;
  }
  .article-hero__image {
    margin-top: 4.44vw;
    width: 91.67vw;
  }
  .article-layout {
    width: 100vw;
    padding: 0 4.17vw;
    margin-top: 6.25vw;
    gap: 6.25vw;
  }
  .article-sidebar {
    width: 22.92vw;
  }
  .article-author {
    gap: 0.97vw;
  }
  .article-author__avatar {
    width: 5.63vw;
    height: 6.25vw;
  }
  .article-author__info {
    padding-top: 0.69vw;
  }
  .article-author__name {
    font-size: 2.22vw;
  }
  .article-author__role {
    margin-top: 1.25vw;
    font-size: 1.39vw;
  }
  .article-share {
    margin-top: 3.89vw;
  }
  .article-share__title {
    margin-bottom: 2.50vw;
    font-size: 2.22vw;
  }
  .article-share__list li {
    padding-bottom: 2.08vw;
  }
  .article-share__list li + li {
    padding-top: 2.22vw;
  }
  .article-share__img {
    height: 2.22vw;
  }
  .article-content {
    max-width: 62.50vw;
  }
  .article-content h1 {
    font-size: 4.44vw;
    margin: 4.86vw 0 2.78vw;
  }
  .article-content h2 {
    font-size: 3.33vw;
    margin: 4.86vw 0 2.78vw;
  }
  .article-content h3 {
    font-size: 2.22vw;
    margin: 3.89vw 0 1.94vw;
  }
  .article-content h4,
  .article-content h5,
  .article-content h6 {
    font-size: 1.67vw;
    margin: 2.78vw 0 1.67vw;
  }
  .article-content p,
  .article-content ul,
  .article-content ol {
    font-size: 1.39vw;
    margin-bottom: 2.22vw;
  }
  .single .playbooks-section {
    margin-top: 9.38vw;
  }

  /* How It Works Section scaling */
  .hiw-bg-glow {
    top: -29.44vw;
    left: -35.63vw;
    width: 112.92vw;
    height: 132.43vw;
  }
  .hiw-visual {
    top: 9.93vw;
    left: -1.81vw;
    width: 43.82vw;
    height: 51.25vw;
  }
  .hiw-content {
    margin-left: 50.28vw;
    width: 45.56vw;
    padding-top: 13.13vw;
  }
  .hiw-title {
    font-size: 9.72vw;
    margin-bottom: 3.33vw;
    letter-spacing: -0.1vw;
  }
  .hiw-step {
    gap: 5.14vw;
    padding-bottom: 3.33vw;
  }
  .hiw-step:not(.hiw-step--last) {
    background-size: 1.11vw 1px;
  }
  .hiw-step + .hiw-step {
    padding-top: 3.33vw;
  }
  .hiw-step__badge {
    height: 2.85vw;
    font-size: 1.25vw;
    padding: 0.97vw 1.39vw;
    border-width: 0.21vw;
  }
  .hiw-step__title {
    font-size: 3.33vw;
    margin-bottom: 1.11vw;
  }
  .hiw-step__desc {
    font-size: 1.39vw;
  }

  /* Infrastructure Section scaling */
  .infrastructure-section {
    height: 191.32vw;
    margin-top: -2.78vw;
  }
  .infra-title {
    top: 13.61vw;
    width: 73.13vw;
    font-size: 9.72vw;
    letter-spacing: -0.1vw;
  }
  .infra-content {
    width: 91.67vw;
  }
  .infra-svg--1 { top: 32.57vw;  left: 0;       width: 59.90vw; height: 33.61vw; }
  .infra-svg--2 { top: 32.57vw;  left: 56.25vw; width: 35.42vw; height: 33.61vw; }
  .infra-svg--3 { top: 68.40vw;  left: 0;       width: 35.42vw; height: 33.61vw; }
  .infra-svg--4 { top: 68.40vw;  left: 31.81vw; width: 59.90vw; height: 33.61vw; }
  .infra-svg--5 { top: 104.24vw; left: 0;       width: 91.67vw; height: 33.61vw; }
  .infra-svg--6 { top: 140.07vw; left: 0;       width: 59.90vw; height: 33.61vw; }
  .infra-svg--7 { top: 140.07vw; left: 56.25vw; width: 35.42vw; height: 33.61vw; }

  .infra-icon--1 { top: 15.56vw; left: 3.82vw;  width: 46.88vw; height: 18.06vw; }
  .infra-icon--2 { top: 8.68vw;  left: 3.82vw;  width: 29.03vw; height: 6.81vw; }
  .infra-icon--3 { top: 4.17vw;  left: 3.82vw;  width: 27.08vw; height: 13.13vw; }
  .infra-icon--4 { top: 15.63vw; left: 8.19vw;  width: 49.65vw; height: 18.06vw; }
  .infra-icon--5 { top: 5.56vw;  left: 4.17vw;  width: 82.57vw; height: 24.03vw; }
  .infra-icon--6 { top: 14.65vw; left: 4.17vw;  width: 46.88vw; height: 18.96vw; }
  .infra-icon--7 { top: 4.51vw;  left: 4.17vw;  width: 30.28vw; height: 13.61vw; }

  .infra-badge {
    font-size: 1.11vw;
    padding: 0.97vw 1.39vw;
    border-width: 0.21vw;
  }
  .infra-badge--1 { left: 34.58vw; top: 1.04vw; width: 22.50vw; height: 2.71vw; }
  .infra-badge--2 { left: 15.56vw; top: 2.64vw; width: 21.39vw; height: 2.71vw; }
  .infra-badge--3 { left: -1.32vw; top: -0.56vw; width: 20.69vw; height: 2.71vw; }
  .infra-badge--4 { left: 40.69vw; top: 0vw;    width: 21.39vw; height: 2.71vw; }
  .infra-badge--5 { left: 73.26vw; top: 1.46vw; width: 20.90vw; height: 2.71vw; }
  .infra-badge--6 { left: 33.96vw; top: 1.18vw; width: 22.78vw; height: 2.71vw; }
  .infra-badge--7 { left: 15.69vw; top: 2.22vw; width: 20.83vw; height: 2.71vw; }

  .infra-card-title {
    font-size: 3.33vw;
  }
  .infra-card-title--1 { left: 4.17vw; top: 4.17vw; }
  .infra-card-title--2 { left: 4.17vw; top: 19.51vw; }
  .infra-card-title--3 { left: 4.17vw; top: 19.51vw; }
  .infra-card-title--4 { left: 9.58vw; top: 4.17vw; }
  .infra-card-title--5 { left: 4.17vw; top: 4.17vw; }
  .infra-card-title--6 { left: 4.17vw; top: 4.17vw; }
  .infra-card-title--7 { left: 4.17vw; top: 21.74vw; }

  .infra-card-desc {
    font-size: 1.39vw;
  }
  .infra-card-desc--1 { left: 4.17vw; top: 8.68vw;  width: 33.33vw; }
  .infra-card-desc--2 { left: 4.17vw; top: 24.03vw; width: 26.39vw; }
  .infra-card-desc--3 { left: 4.17vw; top: 24.03vw; width: 26.39vw; }
  .infra-card-desc--4 { left: 9.58vw; top: 8.68vw;  width: 34.72vw; }
  .infra-card-desc--5 { left: 4.17vw; top: 8.68vw;  width: 33.33vw; }
  .infra-card-desc--6 { left: 4.17vw; top: 8.68vw;  width: 33.33vw; }
  .infra-card-desc--7 { left: 4.17vw; top: 26.25vw; width: 26.39vw; }

  /* Map Section scaling */
  .map-section {
    height: 88.89vw;
  }
  .map-content {
    width: 100vw;
  }
  .map-title {
    top: 13.82vw;
    left: 19.17vw;
    width: 61.67vw;
    font-size: 9.72vw;
  }
  .map-desc {
    top: 23.40vw;
    left: 36.18vw;
    width: 27.64vw;
    font-size: 1.39vw;
  }
  .map-visual {
    top: 31.04vw;
    left: 4.17vw;
    width: 91.67vw;
    height: 54.86vw;
  }
  .map-tt--greenland { top: 6.60vw; left: 34.65vw; width: 24.24vw; }
  .map-tt--france    { top: 20.69vw; left: 43.75vw; width: 22.71vw; }
  .map-tt--saudi     { top: 27.78vw; left: 55.97vw; width: 27.01vw; }
  .map-tt--usa       { top: 19.10vw; left: 15.83vw; width: 22.71vw; }
  .map-tt--brasil    { top: 39.24vw; left: 30.21vw; width: 22.71vw; }
  .map-tt--russia    { top: 11.46vw; left: 69.10vw; width: 23.33vw; }

  /* Footer Section responsive scaling */
  .site-footer {
    padding: 6.94vw 4.17vw 3.26vw 4.17vw;
  }
  .footer-main {
    grid-template-columns: 37.29vw max-content 21.81vw 11.22vw;
    margin-bottom: 4.86vw;
  }
  .footer-cta {
    width: 37.29vw;
  }
  .footer-cta__title {
    font-size: 6.94vw;
    margin-bottom: 3.33vw;
  }
  .footer-cta__subtitle {
    font-size: 1.39vw;
    margin-bottom: 3.33vw;
  }
  .footer-cta__btn {
    width: 12.78vw;
    height: 4.44vw;
    clip-path: polygon(0 0, calc(100% - 0.49vw) 0, 100% 1.34vw, 100% 100%, 0 100%);
  }
  .footer-cta__btn-text {
    font-size: 1.67vw;
  }
  .footer-nav {
    width: 7.22vw;
  }
  .footer-nav__menu {
    gap: 4.17vw;
  }
  .footer-nav__menu a {
    font-size: 2.22vw;
    line-height: 1.67vw;
  }
  .footer-contact {
    width: 21.81vw;
  }
  .footer-contact__title {
    font-size: 2.22vw;
    line-height: 1.67vw;
    margin-bottom: 3.47vw;
  }
  .footer-contact__item {
    margin-bottom: 2.78vw;
  }
  .footer-contact__link {
    gap: 1.25vw;
  }
  .footer-contact__icon-wrapper {
    width: 1.94vw;
    height: 1.94vw;
  }
  .footer-contact__text {
    font-size: 1.67vw;
  }
  .footer-brand {
    width: 11.22vw;
  }
  .footer-brand__logo {
    margin-bottom: 8.89vw;
  }
  .footer-brand__logo-svg {
    width: 11.22vw;
  }
  .footer-brand__socials {
    gap: 0.83vw;
  }
  .footer-bottom {
    background-image: repeating-linear-gradient(
      to right,
      rgba(250, 250, 250, 0.6) 0px,
      rgba(250, 250, 250, 0.6) 0.56vw,
      transparent 0.56vw,
      transparent 1.11vw
    );
    background-size: 1.11vw 1px;
    padding-top: 3.33vw;
  }
  .footer-bottom__copyright {
    font-size: 1.11vw;
  }
  .footer-bottom__links {
    gap: 2.92vw;
  }
  .footer-bottom__link {
    font-size: 1.11vw;
  }
}


/* Mobile and Tablet stack rules */
@media (max-width: 768px) {
  .desktop-only-br {
    display: none !important;
  }

  /* Hero mobile = absolute canvas matching Figma 360x800 frame exactly.
     container-type lets all elements scale together via cqw units. */
  .hero-inner {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    height: auto;
    aspect-ratio: 360 / 800;
    container-type: inline-size;
    padding: 0;
  }
  .hero-title {
    position: absolute;
    margin: 0;
    font-size: 20cqw; /* 72px @360 */
    line-height: 75%;
    letter-spacing: -0.01em;
    text-align: left;
  }
  /* Figma paint order: titles (z1) < mascot (z2) < badges (z3) */
  /* Figma: TURN TRAFFIC x18 y110 w324 — wraps to 2 lines */
  .hero-title--top {
    left: 5%;
    top: 13.75%;
    width: 90%;
    height: auto;
    z-index: 1;
  }
  /* Figma: INTO POWER x150 y441 w192 — indented, 2 lines */
  .hero-title--bottom {
    left: 41.67%;
    top: 55.13%;
    width: 53.33%;
    height: auto;
    z-index: 1;
  }
  /* Figma: mascot (the star) Group x87 y192 w186 h276 — IN FRONT of titles */
  .hero-mascot {
    display: block;
    position: absolute;
    left: 24.17%;
    top: 24%;
    width: 51.67%;
    height: auto;
    aspect-ratio: 186 / 276;
    z-index: 2;
    margin: 0;
  }
  .hero-mascot-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  /* Figma: badges overlap the mascot region between the titles */
  .hero-badges-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
  }
  .hero-badge {
    font-size: 3.33cqw; /* 12px @360 */
    line-height: 130%;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-sizing: border-box;
  }
  /* Figma: Frame43 x55 y206 w226 rot -4.4deg */
  .hero-badge--1 {
    position: absolute;
    left: 15.28%;
    top: 25.75%;
    width: auto;
    height: auto;
    padding: 2.2cqw 3.9cqw;
    border-width: 2px;
    transform: rotate(-4.4deg);
    transform-origin: center;
  }
  /* Figma: Frame56 x140 y236 w202 rot +5.3deg */
  .hero-badge--2 {
    position: absolute;
    left: 38.89%;
    top: 29.5%;
    width: auto;
    height: auto;
    padding: 2.2cqw 3.9cqw;
    border-width: 2px;
    transform: rotate(5.3deg);
    transform-origin: center;
  }
  /* Figma: desc x18 y581 w324 16px lh160% */
  .hero-desc {
    position: absolute;
    left: 5%;
    top: 72.63%;
    width: 90%;
    height: auto;
    font-size: 4.44cqw; /* 16px @360 */
    line-height: 160%;
    text-align: left;
    margin: 0;
  }
  /* Figma: button x18 y718 w145 — start scaling 20px */
  .hero-btn {
    position: absolute;
    left: 5%;
    top: 89.75%;
    width: 40.28%;
    height: 6.25%;
    min-height: 44px;
    font-size: 5.56cqw; /* 20px @360 */
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 15px, 100% 100%, 0 100%);
    margin: 0;
  }
  .hero-marquee {
    width: 110%;
    left: -5%;
    height: 60px;
    margin-top: 60px;
  }
  .ticker-group {
    gap: 24px;
    padding-right: 24px;
  }
  .ticker-item-text {
    font-size: 16px;
  }
  .ticker-item-dot {
    width: 8px;
    height: 8px;
  }
  /* Problem section: content first, image at bottom bleeding behind solution */
  .problem-section {
    height: auto;
    padding-top: 155px !important;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    overflow: visible; /* allow image to bleed below, behind the solution svg */
    z-index: 1;        /* below solution-bg (z-index 10) so image tucks behind it */
  }
  .problem-inner {
    order: 1;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 51px !important;
  }
  /* Image sits at bottom; small negative margin tucks just its bottom edge behind solution */
  .problem-media-container {
    order: 2;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: 0 !important;
    padding-bottom: 110% !important; /* 11 / 10 = 110% aspect ratio */
    margin: 0 0 -19px 0 !important;
  }
  .problem-media-svg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  .problem-badge-floating--views {
    left: 5.22% !important;
    top: -0.8% !important;
    width: 46.22% !important;
    height: 27.34% !important;
  }
  .problem-badge-floating--engagement {
    left: 36.67% !important;
    top: 35.84% !important;
    width: 58.25% !important;
    height: 22.92% !important;
  }
  .problem-badge-floating--attention {
    left: 5.28% !important;
    top: 66.66% !important;
    width: 55.94% !important;
    height: 27.72% !important;
  }
  .problem-content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding-inline: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* Figma: THE PROBLEM 64px CENTER */
  .problem-title {
    font-size: clamp(54px, 17.8vw, 72px);
    line-height: 75%;
    letter-spacing: -0.01em;
    text-align: center;
  }
  /* Figma: No System. No Revenue 36px CENTER #ccff02 */
  .problem-headline {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 100%;
    margin-top: 22px !important;
    margin-left: 0;
    text-align: center;
  }
  /* Figma: bullets left-aligned, box 36px, text 16px x=86 */
  .problem-bullets {
    margin: 52px 0 0 0 !important;
    gap: 20px;
    width: 100%;
    max-width: 340px;
  }
  .problem-bullet-item {
    gap: 16px;
    align-items: center;
  }
  .problem-bullet-box {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .problem-bullet-box svg {
    width: 100%;
    height: 100%;
  }
  .problem-bullet-text {
    font-size: 16px;
    line-height: 160%;
  }
  .problem-btn {
    display: inline-flex;
    margin-top: 36px;
    margin-left: 0;
    width: 142px;
    height: 50px;
    font-family: 'Golek Duit', var(--font-display);
    font-weight: 400;
    font-size: 20px;
    line-height: 0.75;
    letter-spacing: 0;
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 15px, 100% 100%, 0 100%);
    padding-top: 0.18em;
  }
  .solution-section {
    height: auto;
    padding-top: 60px;
    padding-bottom: 110px;
    margin-top: -10px; /* small overlap; problem image bleeds behind via its negative margin */
    position: relative;
    z-index: 2; /* above problem-section so its bg-svg covers the bleeding image */
  }
  /* Mobile orange bg: reproduce solution_bg.svg's exact slanted-top shape as a
     clip-path on a solid fill. Top slant stays fixed; body extends to full section
     height (a stretched <img> can't extend only the bottom — it distorts the slant). */
  .solution-bg-desktop,
  .solution-bg-mobile {
    display: none;
  }
  .solution-bg {
    background-color: #FF4103; /* matches solution_bg.svg path fill */
    /* svg path points (viewBox 360 wide): (0,3) (322.125,0) (360,18.58) → body to bottom */
    clip-path: polygon(0 3px, 89.48% 0, 100% 18.58px, 100% 100%, 0 100%);
  }
  .solution-container {
    padding-top: 40px;
    padding-inline: 20px;
  }
  /* Figma: THE SCALAJAN SOLUTION 64px CENTER #001621 */
  .solution-title {
    font-size: clamp(54px, 17.8vw, 72px);
    line-height: 75%;
    letter-spacing: -0.01em;
    text-align: center;
  }
  /* Figma: lime badges rotated, between title and desc */
  .solution-badges-container {
    position: relative;
    width: 100%;
    height: 70px !important;
    margin-top: -30px !important;
    margin-bottom: 0;
    display: block;
  }
  .solution-badge {
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 7px 14px;
    font-size: 12px;
    border-width: 2px !important;
  }
  .solution-badge--1 {
    left: 40px !important;
    top: 0 !important;
    transform: rotate(-4.36deg);
    transform-origin: center;
    position: absolute;
  }
  .solution-badge--2 {
    left: 46% !important;
    top: 28px !important;
    transform: rotate(5.3deg);
    transform-origin: center;
    position: absolute;
  }
  /* Figma: desc 16px lh160% CENTER #001621 */
  .solution-desc {
    font-size: 16px;
    line-height: 160%;
    max-width: 324px !important;
    margin-top: 31px !important;
    margin-inline: auto !important;
    text-align: center;
  }
  .solution-cards-container {
    margin-top: 20px !important;
    gap: 70px !important;
  }
  .solution-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 70px !important;
  }
  .solution-cards-row--1,
  .solution-cards-row--2 {
    gap: 70px !important;
  }
  .solution-card {
    width: 306px !important;
    height: 169px !important;
  }
  .solution-card__bg svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }
  .solution-card__icon-box {
    top: -28px !important;
    width: 72px;
    height: 72px;
  }
  .solution-card__icon {
    width: 40px;
    height: 40px;
  }
  .solution-card__content {
    position: absolute !important;
    top: 44px !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 280px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  /* Figma: feature titles 36px GOLEK DUIT CENTER #001621 */
  .solution-card__title {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 100%;
    text-align: center;
    width: 100% !important;
  }

  /* Playbooks Section mobile stack */
  .playbooks-section {
    height: auto;
    padding-top: 60px !important;
    padding-bottom: 90px !important;
    margin-top: 40px;
  }
  .playbooks-bg svg,
  .playbooks-bg img {
    display: none !important;
  }
  .playbooks-bg {
    background-color: var(--orange) !important;
    clip-path: polygon(0 1px, 89.48% 0, 100% 14.5px, 100% 100%, 0 100%) !important;
  }
  .playbooks-inner {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 20px;
    box-sizing: border-box;
  }
  .playbooks-header {
    display: contents !important;
  }
  /* Figma: "the Playbooks" 36px LEFT #fafafa */
  .playbooks-title {
    position: static;
    width: auto;
    height: auto;
    font-size: clamp(30px, 10vw, 40px);
    line-height: 100%;
    text-align: left;
    align-self: flex-start !important;
    margin-bottom: 40px !important;
    order: 1 !important;
  }
  .playbooks-view-all {
    position: static;
    width: 150px;
    height: 50px;
    font-size: 20px;
    margin-top: 50px !important;
    margin-bottom: 0 !important;
    order: 3 !important;
  }
  .playbooks-grid {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    order: 2 !important;
  }
  .card-playbook {
    width: min(429px, 90vw);
    height: auto;
    aspect-ratio: 429 / 558;
  }
  .card-playbook__inner {
    padding: 5vw;
  }
  .card-playbook__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 388 / 267;
  }
  /* Figma: card title 28px GOLEK DUIT LEFT #001621 */
  .card-playbook__title {
    margin-top: 16px;
    font-size: clamp(24px, 7.8vw, 32px);
    line-height: 100%;
  }
  /* Figma: date/read meta 14px */
  .card-playbook__meta {
    position: absolute !important;
    bottom: 23.3% !important;
    left: 4.66% !important;
    margin: 0 !important;
    gap: 24px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  .card-playbook__meta-icon {
    width: 20px;
    height: 20px;
  }
  .card-playbook__meta-text {
    font-size: 14px;
  }
  .card-playbook__cta {
    position: absolute !important;
    bottom: 8.96% !important;
    left: 4.66% !important;
    right: 4.66% !important;
    width: auto !important;
    height: 11.47% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .card-playbook__cta-text {
    font-size: 18px;
  }

  /* Contact Section mobile stack */
  .contact-section {
    height: auto;
    padding-bottom: 60px;
    margin-top: 60px;
  }
  .contact-container {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 20px;
    box-sizing: border-box;
  }
  .contact-frame {
    position: relative;
    top: auto;
    left: auto;
    width: min(723px, 90vw);
    height: auto;
    aspect-ratio: 723 / 756;
    z-index: 1;
    margin-bottom: 16px;
    margin-left: -35px !important;
  }
  .contact-form-container {
    position: relative;
    top: auto;
    left: auto;
    width: min(644px, 90vw);
    height: auto;
    aspect-ratio: 644 / 739;
    z-index: 2;
  }
  .contact-form__title {
    top: 10.89%;
    left: 0 !important;
    width: 100% !important;
    height: 8.93%;
    font-size: clamp(28px, 9vw, 48px);
    justify-content: center !important;
  }
  .contact-form__group {
    left: 7.45%;
    width: 85.09%;
  }
  .contact-form__group--name {
    top: 27.67%;
    height: 5.82%;
  }
  .contact-form__group--email {
    top: 40.26%;
    height: 5.82%;
  }
  .contact-form__group--phone {
    top: 52.57%;
    height: 5.82%;
  }
  .contact-form__group--message {
    top: 64.89%;
    height: 13.13%;
  }
  .contact-form__label {
    font-size: clamp(10px, 2.5vw, 13px);
    margin-bottom: 2px;
  }
  .contact-form__input {
    background-image: repeating-linear-gradient(
      to right,
      rgba(0, 22, 33, 0.6) 0px,
      rgba(0, 22, 33, 0.6) 8px,
      transparent 8px,
      transparent 16px
    );
    background-size: 16px 1px;
    height: 20px;
    font-size: clamp(12px, 3vw, 16px);
  }
  .contact-form__textarea {
    background-image: repeating-linear-gradient(
      to right,
      rgba(0, 22, 33, 0.6) 0px,
      rgba(0, 22, 33, 0.6) 8px,
      transparent 8px,
      transparent 16px
    );
    background-size: 16px 1px;
    height: 55px;
    font-size: clamp(12px, 3vw, 16px);
  }
  .contact-form__submit {
    top: 83% !important;
    left: 20% !important;
    width: 60% !important;
    height: 52px !important;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 12px, 100% 100%, 0 100%) !important;
  }
  .contact-form__submit-text {
    font-size: clamp(16px, 4.5vw, 20px) !important;
  }

  /* How It Works Section mobile stack */
  .how-it-works-section {
    padding-block: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hiw-bg-glow {
    display: block !important;
    position: absolute !important;
    top: -330px !important;
    left: calc(50% - 552px) !important;
    width: 944px !important;
    height: 1108px !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }
  .hiw-visual {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: min(360px, 96vw) !important;
    height: auto !important;
    aspect-ratio: 631 / 738 !important;
    margin: 0 auto 32px auto !important;
    margin-left: 20px !important;
    z-index: 1 !important;
  }
  .hiw-content {
    position: relative;
    margin-left: 0;
    width: 100%;
    padding-inline: 20px;
    box-sizing: border-box;
    padding-top: 0;
  }
  /* Figma: font-size 64px at 360px = 17.8vw */
  .hiw-title {
    font-size: clamp(64px, 17.8vw, 80px);
    line-height: 75%;
    letter-spacing: -0.01em;
    text-align: left;
    white-space: normal;
    margin-bottom: 32px;
  }
  /* Figma: badge left column (~76px), body starts x=131 — keep two-column row */
  .hiw-step {
    gap: 20px;
    padding-bottom: 32px;
    align-items: flex-start;
  }
  .hiw-step + .hiw-step {
    padding-top: 32px;
  }
  .hiw-step:not(.hiw-step--last) {
    background-size: 12px 1px;
  }
  /* Figma: STEP badge 14px MADE Okine 700 */
  .hiw-step__badge {
    flex-shrink: 0;
    height: auto;
    font-size: 14px;
    padding: 8px 12px;
    border-width: 2px;
  }
  /* Figma: step title 36px GOLEK DUIT #ccff02 */
  .hiw-step__title {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 100%;
    margin-bottom: 12px;
  }
  /* Figma: step desc 16px lh160% #fafafa */
  .hiw-step__desc {
    font-size: 16px;
    line-height: 160%;
  }

  /* Infrastructure Section mobile stack */
  .infrastructure-section {
    height: auto;
    padding-top: 60px !important;
    padding-bottom: 0 !important;
    margin-top: 0;
    position: relative;
    z-index: 5;
  }
  
  .infra-bg {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 30px !important;
    width: 100% !important;
    height: auto !important;
    z-index: 0 !important;
    pointer-events: none;
    background-color: var(--lime) !important;
    clip-path: polygon(0 5.92vw, calc(100% - 8.576vw) 0, 100% 5.92vw, 100% 100%, 0 100%) !important;
  }
  
  .infra-bg svg {
    display: none !important;
  }
  
  .infra-title {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    font-size: clamp(48px, 15vw, 64px) !important;
    line-height: 75% !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
    margin-bottom: 80px !important;
    padding-inline: 18px !important;
    box-sizing: border-box !important;
    z-index: 2 !important;
  }
  .desktop-only {
    display: none !important;
  }
  .infra-w-the {
    display: block !important;
  }
  .infra-w-infrastruct {
    display: block !important;
  }
  .infra-w-ure {
    display: inline !important;
  }
  .infra-w-behind {
    display: inline !important;
  }
  .infra-w-the-revenue {
    display: block !important;
  }
  
  .infra-content {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    padding-inline: 18px !important;
    box-sizing: border-box !important;
    z-index: 2 !important;
  }
  
  /* Each card = dark rounded box, flex layout to prevent overlap */
  .infra-svg {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 288px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    background-color: transparent !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
  }
  
  .infra-svg::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background-color: #001621 !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }
  
  .infra-mockup,
  .infra-icon {
    display: none !important;
  }

  .infra-mobile-svg {
    display: block !important;
    position: relative !important;
    max-width: none !important;
    height: auto !important;
    margin-top: auto !important;
    margin-inline: auto !important;
    margin-bottom: 0 !important;
    z-index: 1 !important;
  }

  .infra-overlay {
    position: relative !important;
    inset: auto !important;
    padding: 0 !important;
    margin: 0 0 20px 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-self: flex-start !important;
    align-items: flex-start !important;
    gap: 12px !important;
    z-index: 2 !important;
    pointer-events: auto !important;
  }

  /* Figma: badge — orange, dark text, 12px bold, sharp corners, 2px border */
  .infra-badge {
    position: absolute !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    padding: 7px 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    background-color: var(--orange) !important;
    border: 2px solid var(--ink) !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    letter-spacing: 0.05em !important;
    z-index: 10 !important;
  }

  .infra-card-title {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    font-family: 'Golek Duit', var(--font-display) !important;
    font-weight: 400 !important;
    font-size: clamp(26px, 8vw, 32px) !important;
    line-height: 100% !important;
    margin: 0 !important;
    color: var(--lime) !important;
    text-transform: uppercase !important;
  }
  .infra-card-title--2 {
    font-size: clamp(32px, 10vw, 40px) !important;
  }

  .infra-card-desc {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    font-family: 'MADE Okine Sans', var(--font-body) !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 150% !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 224px !important;
    color: var(--off-white) !important;
    text-wrap: pretty !important;
  }
  .infra-card-desc--3 {
    max-width: 232px !important;
  }

  /* Card-specific overrides matching Figma mobile shapes and orders */
  
  /* Card 1 (CRM) - Text at top, illustration at bottom */
  .infra-svg--1 {
    width: 288px !important;
    height: 676px !important;
    margin-top: 0 !important;
    padding: 56px 24px 0 24px !important;
  }
  .infra-svg--1::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 45.3px), 57.2px calc(100% - 45.3px), 0 100%) !important;
  }
  .infra-svg--1 .infra-badge--1 { top: -50px !important; right: -50px !important; position: absolute !important; }
  .infra-svg--1 .infra-overlay { order: 1 !important; }
  .infra-svg--1 .infra-mobile-svg--1 { order: 2 !important; width: 288px !important; height: 442px !important; margin-inline: -24px !important; margin-top: auto !important; margin-bottom: 0 !important; display: block !important; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 45.3px), 57.2px calc(100% - 45.3px), 0 100%) !important; }

  /* Card 2 (ScalAlert) - Illustration at top, text at bottom */
  .infra-svg--2 {
    width: 288px !important;
    height: 406px !important;
    margin-top: -31.2px !important;
    padding: 0 24px 24px 24px !important;
  }
  .infra-svg--2::before {
    clip-path: polygon(63.7px 0, 100% 0, 100% 100%, 0 100%, 0 52.2px) !important;
  }
  .infra-svg--2 .infra-badge--2 { top: -185px !important; right: -50px !important; position: absolute !important; }
  .infra-svg--2 .infra-mobile-svg--2 { order: 1 !important; width: 232px !important; height: 68px !important; margin-left: auto !important; margin-right: 0 !important; margin-top: 96px !important; margin-bottom: 48px !important; display: block !important; }
  .infra-svg--2 .infra-overlay { order: 2 !important; margin: 0 0 24px 8px !important; }

  /* Card 3 (ScalAlgo) - Illustration at top, text at bottom */
  .infra-svg--3 {
    width: 288px !important;
    height: 366px !important;
    margin-top: 14px !important;
    padding: 0 24px 24px 24px !important;
  }
  .infra-svg--3::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52.2px), calc(100% - 63.7px) 100%, 0 100%) !important;
  }
  .infra-svg--3 .infra-badge--3 { top: -190px !important; left: -46px !important; position: absolute !important; }
  .infra-svg--3 .infra-mobile-svg--3 { order: 1 !important; width: 224px !important; height: 132px !important; margin-inline: auto !important; margin-top: 42px !important; margin-bottom: 22px !important; display: block !important; }
  .infra-svg--3 .infra-overlay { order: 2 !important; margin: 0 0 24px 8px !important; }

  /* Card 4 (ScalApproved) - Text at top, illustration at bottom */
  .infra-svg--4 {
    width: 288px !important;
    height: 595px !important;
    margin-top: -31px !important;
    padding: 101px 24px 0 24px !important;
  }
  .infra-svg--4::before {
    clip-path: polygon(0 45.3px, calc(100% - 57.2px) 45.3px, 100% 0, 100% 100%, 0 100%) !important;
  }
  .infra-svg--4 .infra-badge--4 { top: -50px !important; right: -55px !important; position: absolute !important; }
  .infra-svg--4 .infra-overlay { order: 1 !important; }
  .infra-svg--4 .infra-mobile-svg--4 { order: 2 !important; width: 248px !important; height: 316px !important; margin-inline: -4px !important; margin-top: auto !important; margin-bottom: 0 !important; display: block !important; }

  /* Card 5 (ScalSupply) - Text at top, illustration at bottom */
  .infra-svg--5 {
    width: 288px !important;
    height: 784px !important;
    margin-top: 14px !important;
    padding: 56px 24px 0 24px !important;
  }
  .infra-svg--5::before {
    clip-path: polygon(0 0, calc(100% - 63.7px) 0, 100% 52.2px, 100% 100%, 0 100%) !important;
  }
  .infra-svg--5 .infra-badge--5 { top: -35px !important; right: -50px !important; position: absolute !important; }
  .infra-svg--5 .infra-overlay { order: 1 !important; }
  .infra-svg--5 .infra-mobile-svg--5 { order: 2 !important; width: 240px !important; height: 540px !important; margin-inline: 0 !important; margin-top: 0 !important; margin-bottom: 0 !important; display: block !important; }

  /* Card 6 (ScalAcademy) - Text at top, illustration at bottom */
  .infra-svg--6 {
    width: 288px !important;
    height: 607px !important;
    margin-top: 14px !important;
    padding: 56px 24px 0 24px !important;
  }
  .infra-svg--6::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 45.3px), 57.2px calc(100% - 45.3px), 0 100%) !important;
  }
  .infra-svg--6 .infra-badge--6 { top: -55px !important; right: -50px !important; position: absolute !important; }
  .infra-svg--6 .infra-overlay { order: 1 !important; }
  .infra-svg--6 .infra-mobile-svg--6 { order: 2 !important; width: 288px !important; height: 409px !important; margin-inline: -24px !important; margin-top: auto !important; margin-bottom: 0 !important; display: block !important; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 45.3px), 57.2px calc(100% - 45.3px), 0 100%) !important; }

  /* Card 7 (ScalPartner) - Illustration at top, text at bottom */
  .infra-svg--7 {
    width: 288px !important;
    height: 426px !important;
    margin-top: -31.2px !important;
    padding: 0 24px 24px 24px !important;
  }
  .infra-svg--7::before {
    clip-path: polygon(63.7px 0, 100% 0, 100% 100%, 0 100%, 0 52.2px) !important;
  }
  .infra-svg--7 .infra-badge--7 { top: -250px !important; right: -50px !important; position: absolute !important; }
  .infra-svg--7 .infra-mobile-svg--7 { order: 1 !important; width: 249px !important; height: 152px !important; margin-left: 8px !important; margin-right: -17px !important; margin-top: 100px !important; margin-bottom: 30px !important; display: block !important; }
  .infra-svg--7 .infra-overlay { order: 2 !important; margin: 0 0 24px 8px !important; }

  /* Map Section mobile stack */
  .map-section {
    height: auto;
    padding-top: 48px !important;
    padding-bottom: 60px !important;
  }
  .map-content {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 20px;
    box-sizing: border-box;
  }
  /* Figma: Scaling Globally 64px CENTER #ccff02 */
  .map-title {
    position: static;
    width: 100%;
    font-size: clamp(54px, 17.8vw, 72px);
    line-height: 75%;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 24px;
  }
  /* Figma: desc 16px lh160% CENTER */
  .map-desc {
    position: static;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    margin-bottom: 40px;
  }
  .map-visual {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1320 / 790;
  }
  /* Mobile tooltip positions — pointer tip aligned to country center (tip is at SVG y=0) */
  .map-tt--greenland { top: 15.27% !important; left: 17.14% !important; width: 60% !important; }
  .map-tt--france    { top: 38.76% !important; left: 19.28% !important; width: 60% !important; }
  .map-tt--saudi     { top: 51.09% !important; left: 23.26% !important; width: 60% !important; }
  .map-tt--usa       { top: 36.06% !important; left: 16.23% !important; width: 60% !important; }
  .map-tt--brasil    { top: 72.27% !important; left: 18.96% !important; width: 60% !important; }
  .map-tt--russia    { top: 24.17% !important; left: 25.30% !important; width: 60% !important; }

  /* ===== Footer — matches Figma Group 627214 (consistent on all pages) =====
     Flatten the .footer-cta and .footer-brand wrappers with display:contents so
     their leaf elements join the .footer-main flow and can be re-ordered into the
     design layout. Desktop is untouched (this only applies < 768px). */
  .site-footer {
    padding: 60px 18px 40px 18px;
  }
  .footer-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    position: relative;
    gap: 0;
    margin-bottom: 40px;
  }
  .footer-cta,
  .footer-brand {
    display: contents;
  }
  /* "Ready to Scale?" top-left + logo top-right */
  .footer-cta__title {
    order: 1;
    font-size: clamp(48px, 15.6vw, 56px);
    line-height: 75%;
    letter-spacing: -0.01em;
    text-align: left;
    margin: 0 0 16px 0;
    max-width: 70%;
  }
  .footer-brand__logo {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
  .footer-brand__logo-svg {
    width: 90px;
  }
  /* Subtitle */
  .footer-cta__subtitle {
    order: 2;
    font-size: 16px;
    line-height: 160%;
    text-align: left;
    margin: 0 0 32px 0;
    max-width: 210px;
  }
  /* Nav menu (kept per request) — vertical list */
  .footer-nav {
    order: 3;
    width: 100%;
    margin-bottom: 32px;
  }
  .footer-nav__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px !important;
  }
  .footer-nav__menu a {
    font-size: 24px;
    line-height: 100%;
    text-align: left;
  }
  /* Contact — no heading in the design, just email + telegram */
  .footer-contact {
    order: 4;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 28px;
  }
  .footer-contact__title {
    display: none;
  }
  .footer-contact__item {
    margin-bottom: 16px;
  }
  .footer-contact__item:last-child {
    margin-bottom: 0;
  }
  .footer-contact__link {
    gap: 16px;
  }
  .footer-contact__icon-wrapper {
    width: 20px;
    height: 20px;
  }
  .footer-contact__text {
    font-size: 20px;
  }
  /* Start Scaling button (left) + social squares (right) on one row */
  .footer-cta__btn {
    order: 5;
    width: 145px;
    height: 50px;
    align-self: flex-start;
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 15px, 100% 100%, 0 100%);
  }
  .footer-cta__btn-text {
    font-size: 20px;
  }
  .footer-brand__socials {
    order: 6;
    align-self: flex-end;
    margin-top: -50px; /* pull up beside the 50px-tall button */
    gap: 10px;
  }
  .footer-brand__socials .social-square {
    width: 36px;
    height: 36px;
  }
  .footer-brand__socials .social-square img,
  .footer-brand__socials .social-square svg {
    width: 18px;
    height: 18px;
  }
  /* Bottom — Privacy / Terms / Legal stacked, then copyright, all centred */
  .footer-bottom {
    background-image: repeating-linear-gradient(
      to right,
      rgba(250, 250, 250, 0.6) 0px,
      rgba(250, 250, 250, 0.6) 8px,
      transparent 8px,
      transparent 16px
    );
    background-repeat: repeat-x;
    background-position: top;
    background-size: 16px 1px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding-top: 30px;
  }
  .footer-bottom__links {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer-bottom__copyright {
    order: 2;
    font-size: 12px;
  }
  .footer-bottom__link {
    font-size: 12px;
  }

  /* Playbook Page mobile stack */
  /* Figma: badge at y184, title at y221 (navbar y18-74 overlaps the top). */
  .pb-hero {
    height: auto;
    padding-top: 184px;
    padding-bottom: 60px;
    overflow: hidden; /* clip the rotated book background */
  }
  .pb-hero__canvas {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 18px;
    box-sizing: border-box;
  }
  /* Book = faint rotated background behind the content (reuse desktop bg treatment).
     z-index:-1 keeps it behind the static flow content without re-positioning it. */
  .pb-hero__bg {
    display: block;
    position: absolute;
    top: 50%;
    left: 65%;
    width: min(360px, 95vw);
    height: auto;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%) rotate(17.2deg);
    opacity: 0.2;
    z-index: -1;
  }
  /* All hero content back to static flow (ignores the desktop absolute top/left) */
  .pb-hero__badge,
  .pb-hero__title,
  .pb-hero__desc,
  .pb-hero__stat-num,
  .pb-hero__stat-label {
    position: static;
  }
  /* Badge: orange pill + dark square, slight tilt (reuse desktop badge, scaled) */
  .pb-hero__badge {
    width: auto;
    height: auto;
    padding: 8px 14px;
    border-width: 2px;
    margin-bottom: 0;
    gap: 10px; /* 10px between the square and the text */
    /* keeps desktop transform: rotate(-4.36deg) */
  }
  .pb-hero__badge-text {
    font-size: 12px;
  }
  /* Figma: small dark square (6.4px) left of the badge text */
  .pb-hero__badge-square {
    width: 6px;
    height: 6px;
    background-color: var(--ink);
    flex-shrink: 0;
    align-self: center;
  }
  /* Title: centred, scales with viewport, capped so it never overruns the canvas */
  .pb-hero__title {
    width: 100%;
    height: auto;
    font-size: clamp(56px, 17.8vw, 72px);
    text-align: center;
    line-height: 75%;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
  }
  .pb-hero__desc {
    width: 100%;
    max-width: 340px;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    margin-bottom: 36px;
  }
  /* 3 stat blocks stacked & centred — num ~56px / label ~30px, paired via order */
  .pb-hero__stat-num,
  .pb-hero__stat-label {
    width: auto;
    height: auto;
    text-align: center;
  }
  .pb-hero__stat-num   { font-size: clamp(48px, 15vw, 64px); line-height: 100%; }
  /* Figma: stat labels in white (not lime) */
  .pb-hero__stat-label { font-size: clamp(26px, 8vw, 36px); line-height: 100%; margin-bottom: 26px; color: var(--off-white); }
  .pb-hero__stat-num--1   { order: 1; }
  .pb-hero__stat-label--1 { order: 2; }
  .pb-hero__stat-num--2   { order: 3; }
  .pb-hero__stat-label--2 { order: 4; }
  .pb-hero__stat-num--3   { order: 5; }
  .pb-hero__stat-label--3 { order: 6; margin-bottom: 0; }

  /* All-playbooks: reset desktop 1440 canvas + 155px hero-overlap padding */
  .pb-all {
    padding-bottom: 60px;
  }
  /* Orange bg: stretched svg distorts the slanted top — reproduce the slant as a
     clip-path on a solid fill so the body extends and the top stays crisp.
     svg path (1440 wide): (0,10.65) (1288.5,0) (1440,49) → scaled ÷4 to 360. */
  .pb-all__bg svg,
  .pb-all__bg .pb-all__bg-svg {
    display: none;
  }
  .pb-all__bg {
    background-color: #FF4103;
    clip-path: polygon(0 2.66px, 89.48% 0, 100% 12.27px, 100% 100%, 0 100%);
  }
  .pb-all__canvas {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    padding: 60px 18px 0;
    box-sizing: border-box;
  }
  .pb-all__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    gap: 16px;
    margin-bottom: 24px;
  }
  /* "ALL PLAYBOOKS" — remove fixed desktop width/height so it can't overrun */
  .pb-all__title {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 100%;
    text-align: left;
    width: auto;
    height: auto;
    flex: 1 1 auto;
    min-width: 0;
  }
  /* Sort = compact lime angular icon button (sorting_button.svg shape) */
  .pb-all__sort-group {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
  }
  .pb-all__sort-label {
    display: none;
  }
  .pb-all__sort-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    gap: 0;
    font-size: 0; /* hide "NEWEST" text node */
    clip-path: polygon(0 0, 89% 0, 100% 30%, 94.5% 100%, 0 100%);
  }
  .pb-all__sort-arrow {
    font-size: 13px;
  }
  .pb-all__grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 28px;
  }
  /* Equal space above/below the button: below = margin-bottom 56 + pb-all
     padding-bottom 60 = 116, so match the top margin to 116. */
  .pb-all__load-more-wrap {
    margin-top: 116px;
    margin-bottom: 56px;
  }
  .pb-all__load-more {
    width: 180px;
    height: 56px;
    font-size: 20px;
  }

  /* Article Detail Page mobile stack */
  .article-hero__canvas {
    width: 100%;
    left: auto;
    transform: none;
    padding: 130px 20px 0;
  }
  .article-hero__badge {
    height: 36px;
    padding: 0 16px;
    gap: 12px;
    border-width: 2px;
  }
  .article-hero__badge-text {
    font-size: 14px;
  }
  .article-hero__badge-dot {
    width: 5px;
    height: 5px;
  }
  /* Figma: article title 64px LEFT #ccff02 */
  .article-hero__title {
    margin-top: 16px;
    max-width: 100%;
    font-size: clamp(54px, 17.8vw, 72px);
    line-height: 75%;
    letter-spacing: -0.01em;
  }
  .article-hero__meta {
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 28px;
  }
  .article-hero__meta-icon {
    width: 20px;
    height: 20px;
  }
  .article-hero__meta-text {
    font-size: 14px;
  }
  .article-hero__image {
    margin-top: 32px;
    width: 100%;
  }
  /* Figma: content first, author + share below it */
  .article-layout {
    width: 100%;
    left: auto;
    transform: none;
    padding: 0 18px;
    margin-top: 40px;
    flex-direction: column;
    gap: 48px;
  }
  .article-content {
    order: 1;
  }
  .article-sidebar {
    order: 2;
    position: static;
    width: 100% !important;
    max-width: none !important;
  }
  .article-author {
    gap: 14px !important;
  }
  .article-author__avatar {
    width: 81px !important;
    height: 90px !important;
  }
  .article-author__info {
    padding-top: 10px !important;
  }
  .article-author__name {
    font-size: 32px !important;
  }
  .article-author__role {
    font-size: 20px !important;
    margin-top: 18px !important;
  }
  .article-share {
    margin-top: 56px !important;
  }
  .article-share__title {
    font-size: 32px !important;
    margin-bottom: 36px !important;
  }
  .article-share__list li {
    padding-bottom: 30px !important;
  }
  .article-share__list li + li {
    padding-top: 32px !important;
  }
  .article-share__img {
    height: 32px !important;
  }
  .article-content {
    max-width: 100%;
  }
  .article-content h1 {
    font-size: clamp(32px, 9vw, 48px);
    margin: 48px 0 24px;
  }
  /* Figma: H2 section heads 36px #ccff02 */
  .article-content h2 {
    font-size: clamp(30px, 10vw, 40px);
    line-height: 100%;
    margin: 44px 0 20px;
  }
  /* Figma: H3 sub-heads 24px #fafafa */
  .article-content h3 {
    font-size: clamp(22px, 6.7vw, 26px);
    line-height: 100%;
    margin: 32px 0 16px;
  }
  .article-content h4,
  .article-content h5,
  .article-content h6 {
    font-size: clamp(18px, 5vw, 22px);
    margin: 28px 0 16px;
  }
  .article-content p,
  .article-content ul,
  .article-content ol {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .single .playbooks-section {
    margin-top: 60px;
  }
}

/* ==========================================================================
   Global Animation System
   Placed last so these rules win the cascade over per-component hovers.
   ========================================================================== */

/* --- 1. Unified button interaction: lift on hover, press on click --- */
.btn,
.hero-btn,
.problem-btn,
.playbooks-view-all,
.card-playbook__cta,
.contact-form__submit,
.footer-cta__btn,
.pb-all__sort-btn,
.pb-all__load-more {
  transition: transform 0.15s ease, filter 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.btn:hover,
.hero-btn:hover,
.problem-btn:hover,
.playbooks-view-all:hover,
.card-playbook__cta:hover,
.contact-form__submit:hover,
.footer-cta__btn:hover,
.pb-all__sort-btn:hover,
.pb-all__load-more:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.05) !important;
}

/* Text color hover overrides (lime buttons get orange text to match hero, red button gets lime text) */
.hero-btn:hover,
.problem-btn:hover,
.playbooks-view-all:hover,
.pb-all__sort-btn:hover,
.pb-all__load-more:hover {
  color: var(--orange) !important;
}
.footer-cta__btn:hover .footer-cta__btn-text,
.card-playbook__cta:hover .card-playbook__cta-text {
  color: var(--orange) !important;
}
.contact-form__submit:hover .contact-form__submit-text {
  color: var(--lime) !important;
}

.btn:active,
.hero-btn:active,
.problem-btn:active,
.playbooks-view-all:active,
.card-playbook__cta:active,
.contact-form__submit:active,
.footer-cta__btn:active,
.pb-all__sort-btn:active,
.pb-all__load-more:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}

/* --- 1. CSS-only Entrance Animations for Hero Section --- */
@keyframes heroRise {
  from {
    opacity: 0;
    translate: 0 24px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes heroPop {
  from {
    opacity: 0;
    scale: 0;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

.hero-title--top {
  opacity: 0;
  animation: heroRise 0.6s ease-out forwards;
  animation-delay: 0.1s;
}
.hero-mascot {
  opacity: 0;
  animation: heroRise 0.6s ease-out forwards;
  animation-delay: 0.25s;
}
.hero-desc {
  opacity: 0;
  animation: heroRise 0.6s ease-out forwards;
  animation-delay: 0.4s;
}
.hero-btn {
  opacity: 0;
  animation: heroRise 0.6s ease-out forwards;
  animation-delay: 0.55s;
}
.hero-title--bottom {
  opacity: 0;
  animation: heroRise 0.6s ease-out forwards;
  animation-delay: 0.7s;
}
.hero-badge--1 {
  opacity: 0;
  animation: heroPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.85s;
}
.hero-badge--2 {
  opacity: 0;
  animation: heroPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.95s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title--top,
  .hero-mascot,
  .hero-desc,
  .hero-btn,
  .hero-title--bottom,
  .hero-badge--1,
  .hero-badge--2 {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* --- 2. Badge pop-in: scale from zero with overshoot, settles into its
       existing rotation (uses the standalone `scale` property so it
       composes with `transform: rotate(...)` instead of overwriting it) --- */
.anim-pop {
  opacity: 0;
  scale: 0;
  transition:
    opacity 0.3s ease-out,
    scale 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--anim-delay, 0s);
}

.anim-pop.anim-in {
  opacity: 1;
  scale: 1;
}

/* --- 3. Scroll reveal: fade up as elements enter the viewport
       (`translate` property composes with existing transforms) --- */
.anim-rise {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity 0.6s ease-out,
    translate 0.6s ease-out;
  transition-delay: var(--anim-delay, 0s);
}

.anim-rise.anim-in {
  opacity: 1;
  translate: 0 0;
}

/* --- 4. Card hover lift (subtle, pairs with the thumb color reveal).
       Hover uses `transform`, entrance reveal uses `translate` — the two
       compose without fighting. The combined transition keeps the staggered
       entrance delay off the hover response. --- */
.card-playbook {
  transition:
    opacity 0.6s ease-out,
    translate 0.6s ease-out,
    transform 0.25s ease-out;
  transition-delay: var(--anim-delay, 0s), var(--anim-delay, 0s), 0s;
}

.card-playbook:hover {
  transform: translateY(-6px);
}

/* --- Accessibility: kill entrance animations for reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .anim-pop,
  .anim-rise {
    transition: none;
    opacity: 1;
    scale: none;
    translate: none;
  }
  .card-playbook {
    transition: none;
  }
  .btn,
  .hero-btn,
  .problem-btn,
  .playbooks-view-all,
  .card-playbook__cta,
  .contact-form__submit,
  .footer-cta__btn,
  .pb-all__sort-btn,
  .pb-all__load-more {
    transition: none;
  }
}

/* ===== MOBILE RESPONSIVE ===== */

.infra-mobile-svg {
  display: none;
}

@media (max-width: 900px) {
  /* Infrastructure mobile overrides replaced by Block 1 */
  body {
    overflow-x: hidden;
  }

  /* ===== Figma mobile navbar: hamburger (left) | logo (center) | mail (right) ===== */
  .site-header {
    width: 100%;
    left: auto;
    transform: none;
    height: 74px;
  }
  .site-header__container {
    padding-inline: 18px;
    justify-content: space-between;
    align-items: center;
  }
  /* Hamburger = complete Figma svg (lime box + dark lines baked in) */
  .menu-toggle {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    clip-path: none;
  }
  .menu-toggle__svg {
    width: 32px;
    height: 32px;
    display: block;
  }

  /* Logo centered */
  .site-header__logo {
    order: 2;
  }
  .site-header__logo img,
  .site-header__logo svg {
    width: 104px;
  }

  /* Right slot: only the mail square (lime box, Figma Rectangle 2664) */
  .site-header__socials {
    order: 3;
    gap: 0;
  }
  /* hide telegram/instagram only in the HEADER (footer keeps them) */
  .site-header__socials .social-square--telegram,
  .site-header__socials .social-square--instagram {
    display: none;
  }
  .social-square--mail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--lime);
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 10px, 100% 100%, 0 100%);
  }
  .social-square--mail img,
  .social-square--mail svg {
    width: 20px;
    height: 20px;
    filter: brightness(0); /* mail icon black initially (svg fill is orange) */
  }

  .how-it-works-section .hiw-inner,
  .how-it-works-section > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Fix: prevent html from causing horizontal scroll on mobile */
  html {
    overflow-x: hidden;
  }

  /* Figma: Vector 2359 — lime star burst behind hero. xy=-243,-195 wh=847x994.
     The svg ALREADY has opacity="0.1" baked in — do NOT add opacity here (would compound to ~1%).
     Overflow clipped by body/html overflow-x:hidden. */
  .bg-glow-2359 {
    display: block;
    left: -67.5vw;   /* -243px @360 */
    top: -54.17vw;   /* -195px @360 */
    transform: none;
    width: 235.28vw; /* 847px @360 */
    height: auto;
    z-index: 0;
  }

  /* Fix: hide desktop infra chart icons — they are embedded in the mobile card SVGs */
  .infra-icon {
    display: none;
  }

  /* Fix: marquee-3 is position:absolute top:2711px on desktop — reset to flow */
  .marquee-3 {
    position: relative !important;
    top: auto !important;
    left: -5% !important;
    width: 110% !important;
    margin-top: 85px !important;
    margin-bottom: 24px !important;
    z-index: 10 !important;
  }

  /* Fix: map tooltips should stay hidden initially on mobile and show on toggle */
  .map-tt {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
    transform-origin: top left;
    transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .map-tt.map-tt--active {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: scale(1) !important;
  }
}

@media (max-width: 480px) {
  /* Main mobile rules already use clamp(min, vw, max) so they scale down
     gracefully. Only keep small-screen safety adjustments here. */
  .infra-content {
    padding-inline: 16px;
  }
  .card-playbook {
    width: min(340px, 92vw);
  }
  .contact-frame {
    width: min(381px, 103vw) !important;
    height: auto !important;
    aspect-ratio: 723 / 756 !important;
    margin-left: calc(-41px * (min(340px, 92vw) / 340)) !important;
  }
  .contact-form-container {
    width: min(340px, 92vw) !important;
    height: auto !important;
    aspect-ratio: 280 / 386 !important;
  }
}

/* ==========================================================================
   Legal Pages (Privacy, Terms, Legal)
   ========================================================================== */
.legal-page {
  background-color: var(--navy, #001621);
  color: var(--off-white, #fafafa);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-block: 100px;
}

.legal-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 24px;
  box-sizing: border-box;
}

.legal-title {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 8vw, 56px);
  color: var(--lime, #ccff02);
  margin: 0 0 40px;
  text-transform: uppercase;
  line-height: 1.1;
}

.legal-content {
  font-family: 'MADE Okine Sans', var(--font-body);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
  color: var(--off-white, #fafafa);
}

.legal-content p {
  margin-bottom: 24px;
}

.legal-content h2,
.legal-content h3 {
  font-family: 'Golek Duit', var(--font-display);
  font-weight: 400;
  color: var(--lime, #ccff02);
  margin-top: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.legal-content h2 {
  font-size: clamp(24px, 5vw, 32px);
}

.legal-content h3 {
  font-size: clamp(20px, 4vw, 24px);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-content a {
  color: var(--orange, #ff4103);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.legal-content a:hover {
  color: var(--lime, #ccff02);
}


/* Reversible mobile commentboxes helper classes */
.mobile-only {
  display: none !important;
}

/* ==========================================================================
   TEST: Scaled Up Mobile Cards & Commentboxes (Reversible - delete/comment this block to revert)
   ========================================================================== */
@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }
  .desktop-only {
    display: none !important;
  }

  /* Mobile Commentboxes Map Tooltip Positions — pointer tip aligned to country center */
  /* Formula: top = country_center_y%, left = country_center_x% - (tip_x_in_svg% * 60%) */
  /* transform-origin matches pointer tip x-position within each SVG for pop animation */
  .map-tt--greenland {
    top: 15.27% !important;
    left: 17.14% !important;
    width: 60% !important;
    transform-origin: 34.4% 0% !important;
  }
  .map-tt--france {
    top: 38.76% !important;
    left: 19.28% !important;
    width: 60% !important;
    transform-origin: 47.0% 0% !important;
  }
  .map-tt--saudi {
    top: 51.09% !important;
    left: 23.26% !important;
    width: 60% !important;
    transform-origin: 63.8% 0% !important;
  }
  .map-tt--usa {
    top: 36.06% !important;
    left: 16.23% !important;
    width: 60% !important;
    transform-origin: 7.1% 0% !important;
  }
  .map-tt--brasil {
    top: 72.27% !important;
    left: 18.96% !important;
    width: 60% !important;
    transform-origin: 22.5% 0% !important;
  }
  .map-tt--russia {
    top: 24.17% !important;
    left: 25.30% !important;
    width: 60% !important;
    transform-origin: 81.5% 0% !important;
  }

  /* Infrastructure Cards Scaling — proportional to screen with 36px per side */
  .infra-content {
    padding-inline: 36px !important;
  }

  .infra-svg {
    --cw: clamp(288px, calc(100vw - 72px), 420px);
    width: var(--cw) !important;
  }

  .infra-badge {
    padding: calc(var(--cw) * 0.0243) calc(var(--cw) * 0.0486) !important;
    font-size: calc(var(--cw) * 0.0416) !important;
    border-width: calc(var(--cw) * 0.0069) !important;
  }

  .infra-overlay {
    gap: calc(var(--cw) * 0.0416) !important;
  }

  .infra-card-title {
    font-size: calc(var(--cw) * 0.104) !important;
  }

  .infra-card-title--2 {
    font-size: calc(var(--cw) * 0.125) !important;
  }

  .infra-card-desc {
    font-size: calc(var(--cw) * 0.0521) !important;
    max-width: calc(var(--cw) * 0.7777) !important;
  }

  .infra-card-desc--3 {
    max-width: calc(var(--cw) * 0.8055) !important;
  }

  /* Card 1 (CRM) */
  .infra-svg--1 {
    width: var(--cw) !important;
    height: calc(var(--cw) * 2.34722) !important;
    margin-top: 0 !important;
    padding: calc(var(--cw) * 0.19444) calc(var(--cw) * 0.08333) 0 calc(var(--cw) * 0.08333) !important;
  }
  .infra-svg--1::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - calc(var(--cw) * 0.15729)), calc(var(--cw) * 0.19861) calc(100% - calc(var(--cw) * 0.15729)), 0 100%) !important;
  }
  .infra-svg--1 .infra-badge--1 {
    top: calc(var(--cw) * -0.17361) !important;
    right: calc(var(--cw) * -0.17361) !important;
  }
  .infra-svg--1 .infra-overlay {
    order: 1 !important;
  }
  .infra-svg--1 .infra-mobile-svg--1 {
    order: 2 !important;
    width: var(--cw) !important;
    height: calc(var(--cw) * 1.53472) !important;
    margin-inline: calc(var(--cw) * -0.08333) !important;
    margin-top: auto !important;
    margin-bottom: 0 !important;
    display: block !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - calc(var(--cw) * 0.15729)), calc(var(--cw) * 0.19861) calc(100% - calc(var(--cw) * 0.15729)), 0 100%) !important;
  }

  /* Card 2 (ScalAlert) */
  .infra-svg--2 {
    width: var(--cw) !important;
    height: calc(var(--cw) * 1.40972) !important;
    margin-top: calc(var(--cw) * -0.10833) !important;
    padding: 0 calc(var(--cw) * 0.08333) calc(var(--cw) * 0.08333) calc(var(--cw) * 0.08333) !important;
  }
  .infra-svg--2::before {
    clip-path: polygon(calc(var(--cw) * 0.22118) 0, 100% 0, 100% 100%, 0 100%, 0 calc(var(--cw) * 0.18125)) !important;
  }
  .infra-svg--2 .infra-badge--2 {
    top: calc(var(--cw) * -0.64236) !important;
    right: calc(var(--cw) * -0.17361) !important;
  }
  .infra-svg--2 .infra-mobile-svg--2 {
    order: 1 !important;
    width: calc(var(--cw) * 0.80556) !important;
    height: calc(var(--cw) * 0.23611) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    margin-top: calc(var(--cw) * 0.33333) !important;
    margin-bottom: calc(var(--cw) * 0.16667) !important;
    display: block !important;
  }
  .infra-svg--2 .infra-overlay {
    order: 2 !important;
    margin: 0 0 calc(var(--cw) * 0.08333) calc(var(--cw) * 0.02778) !important;
  }

  /* Card 3 (ScalAlgo) */
  .infra-svg--3 {
    width: var(--cw) !important;
    height: calc(var(--cw) * 1.27083) !important;
    margin-top: calc(var(--cw) * 0.04861) !important;
    padding: 0 calc(var(--cw) * 0.08333) calc(var(--cw) * 0.08333) calc(var(--cw) * 0.08333) !important;
  }
  .infra-svg--3::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - calc(var(--cw) * 0.18125)), calc(100% - calc(var(--cw) * 0.22118)) 100%, 0 100%) !important;
  }
  .infra-svg--3 .infra-badge--3 {
    top: calc(var(--cw) * -0.65972) !important;
    left: calc(var(--cw) * -0.15972) !important;
  }
  .infra-svg--3 .infra-mobile-svg--3 {
    order: 1 !important;
    width: calc(var(--cw) * 0.77778) !important;
    height: calc(var(--cw) * 0.45833) !important;
    margin-inline: auto !important;
    margin-top: calc(var(--cw) * 0.14583) !important;
    margin-bottom: calc(var(--cw) * 0.07639) !important;
    display: block !important;
  }
  .infra-svg--3 .infra-overlay {
    order: 2 !important;
    margin: 0 0 calc(var(--cw) * 0.08333) calc(var(--cw) * 0.02778) !important;
  }

  /* Card 4 (ScalApproved) */
  .infra-svg--4 {
    width: var(--cw) !important;
    height: calc(var(--cw) * 2.06597) !important;
    margin-top: calc(var(--cw) * -0.10764) !important;
    padding: calc(var(--cw) * 0.35069) calc(var(--cw) * 0.08333) 0 calc(var(--cw) * 0.08333) !important;
  }
  .infra-svg--4::before {
    clip-path: polygon(0 calc(var(--cw) * 0.15729), calc(100% - calc(var(--cw) * 0.19861)) calc(var(--cw) * 0.15729), 100% 0, 100% 100%, 0 100%) !important;
  }
  .infra-svg--4 .infra-badge--4 {
    top: calc(var(--cw) * -0.17361) !important;
    right: calc(var(--cw) * -0.19097) !important;
  }
  .infra-svg--4 .infra-overlay {
    order: 1 !important;
  }
  .infra-svg--4 .infra-mobile-svg--4 {
    order: 2 !important;
    width: calc(var(--cw) * 0.86111) !important;
    height: calc(var(--cw) * 1.09722) !important;
    margin-inline: calc(var(--cw) * -0.01389) !important;
    margin-top: auto !important;
    margin-bottom: 0 !important;
    display: block !important;
  }

  /* Card 5 (ScalSupply) */
  .infra-svg--5 {
    width: var(--cw) !important;
    height: calc(var(--cw) * 2.72222) !important;
    margin-top: calc(var(--cw) * 0.04861) !important;
    padding: calc(var(--cw) * 0.19444) calc(var(--cw) * 0.08333) 0 calc(var(--cw) * 0.08333) !important;
  }
  .infra-svg--5::before {
    clip-path: polygon(0 0, calc(100% - calc(var(--cw) * 0.22118)) 0, 100% calc(var(--cw) * 0.18125), 100% 100%, 0 100%) !important;
  }
  .infra-svg--5 .infra-badge--5 {
    top: calc(var(--cw) * -0.12153) !important;
    right: calc(var(--cw) * -0.17361) !important;
  }
  .infra-svg--5 .infra-overlay {
    order: 1 !important;
  }
  .infra-svg--5 .infra-mobile-svg--5 {
    order: 2 !important;
    width: calc(var(--cw) * 0.83333) !important;
    height: calc(var(--cw) * 1.875) !important;
    margin-inline: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: block !important;
  }

  /* Card 6 (ScalAcademy) */
  .infra-svg--6 {
    width: var(--cw) !important;
    height: calc(var(--cw) * 2.10764) !important;
    margin-top: calc(var(--cw) * 0.04861) !important;
    padding: calc(var(--cw) * 0.19444) calc(var(--cw) * 0.08333) 0 calc(var(--cw) * 0.08333) !important;
  }
  .infra-svg--6::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - calc(var(--cw) * 0.15729)), calc(var(--cw) * 0.19861) calc(100% - calc(var(--cw) * 0.15729)), 0 100%) !important;
  }
  .infra-svg--6 .infra-badge--6 {
    top: calc(var(--cw) * -0.19097) !important;
    right: calc(var(--cw) * -0.17361) !important;
  }
  .infra-svg--6 .infra-overlay {
    order: 1 !important;
  }
  .infra-svg--6 .infra-mobile-svg--6 {
    order: 2 !important;
    width: var(--cw) !important;
    height: calc(var(--cw) * 1.42014) !important;
    margin-inline: calc(var(--cw) * -0.08333) !important;
    margin-top: auto !important;
    margin-bottom: -1px !important;
    display: block !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - calc(var(--cw) * 0.15729)), calc(var(--cw) * 0.19861) calc(100% - calc(var(--cw) * 0.15729)), 0 100%) !important;
  }

  /* Card 7 (ScalPartner) */
  .infra-svg--7 {
    width: var(--cw) !important;
    height: calc(var(--cw) * 1.47917) !important;
    margin-top: calc(var(--cw) * -0.10833) !important;
    padding: 0 calc(var(--cw) * 0.08333) calc(var(--cw) * 0.08333) calc(var(--cw) * 0.08333) !important;
  }
  .infra-svg--7::before {
    clip-path: polygon(calc(var(--cw) * 0.22118) 0, 100% 0, 100% 100%, 0 100%, 0 calc(var(--cw) * 0.18125)) !important;
  }
  .infra-svg--7 .infra-badge--7 {
    top: calc(var(--cw) * -0.86806) !important;
    right: calc(var(--cw) * -0.17361) !important;
  }
  .infra-svg--7 .infra-mobile-svg--7 {
    order: 1 !important;
    width: calc(var(--cw) * 0.86458) !important;
    height: calc(var(--cw) * 0.52778) !important;
    margin-left: calc(var(--cw) * 0.02778) !important;
    margin-right: calc(var(--cw) * -0.05903) !important;
    margin-top: calc(var(--cw) * 0.34722) !important;
    margin-bottom: calc(var(--cw) * 0.10417) !important;
    display: block !important;
  }
  .infra-svg--7 .infra-overlay {
    order: 2 !important;
    margin: 0 0 calc(var(--cw) * 0.08333) calc(var(--cw) * 0.02778) !important;
  }
}
