/* ============================================
   PULSO — Landing Page Styles
   ============================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'PP Monument Extended';
  src: url('../fonts/PPMonumentExtended-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Monument Extended';
  src: url('../fonts/PPMonumentExtended-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Monument Extended';
  src: url('../fonts/PPMonumentExtended-Black.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Monument Extended';
  src: url('../fonts/PPMonumentExtended-Black.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Monument Extended';
  src: url('../fonts/PPMonumentExtended-Black.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Variables --- */
:root {
  --green: #39FF14;
  --dark: #030303;
  --dark-alt: #0a0a0a;
  --dark-card: #1a1a1a;
  --white: #ffffff;
  --gray: #999999;
  --gray-light: #cccccc;
  --font-main: 'PP Monument Extended', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'PP Monument Extended', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --section-padding: 120px 0;
  --side-padding: 80px;
}

/* --- Base --- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover { opacity: 0.8; }

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

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.section-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}
.section-label--green {
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label__line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--green);
}

.highlight { color: var(--green); }

/* Display font for all headings */
h1, h2, h3, h4, h5,
.hero__title,
.proposal__title,
.stats__title,
.threeforms__title,
.pulsejourney__title,
.discover__main-title,
.press__title,
.about__title,
.contact__title,
.proposal__topics-title,
.pulsejourney__label-title {
  font-family: var(--font-display);
}
.site-header__logo,
.site-footer__logo {
  font-family: var(--font-display);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--green);
  background: var(--green);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn:hover {
  background: transparent;
  color: var(--green);
  opacity: 1;
}
.btn--outline {
  background: transparent;
  color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--dark);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--white);
}
.btn--dark:hover {
  background: var(--white);
  color: var(--dark);
  opacity: 1;
}
.btn .arrow {
  transition: transform 0.3s;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
}
.site-header__logo {
  display: block;
}
.site-header__logo:hover {
  opacity: 1;
}
.site-header__logo-img {
  width: clamp(170px, 18vw, 260px);
  height: auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 100px 0;
  overflow: hidden;
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center center / cover no-repeat;
  z-index: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(3,3,3,0.1) 0%,
    rgba(3,3,3,0.4) 50%,
    rgba(3,3,3,0.95) 100%
  );
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(220px, 1fr);
  column-gap: 64px;
  align-items: end;
}
.hero__title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-top: 2em;
  grid-column: 1 / -1;
}
.hero__text {
  max-width: 600px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 40px;
}
.hero__copy {
  align-self: end;
}
.hero__cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  align-self: center;
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__scroll .section-label--green {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero__scroll-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--green);
}
.hero__scroll-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================
   PROPOSAL (La propuesta)
   ============================================ */
.proposal {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
}
.proposal__bg {
  position: absolute;
  inset: 0;
  background: url('../img/proposal-bg.jpg') center center / cover no-repeat;
  z-index: 0;
}
.proposal__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.7);
}
.proposal .container {
  position: relative;
  z-index: 1;
}
.proposal__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.proposal__title {
  max-width: 560px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0;
}
.proposal__header-right {
  padding-top: 40px;
}
.proposal__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-light);
}

/* Topics inside proposal */
.proposal__topics-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 1.2;
}
.proposal__topics-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
}
.proposal__topic-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(57, 255, 20, 0.2);
  padding: 20px 24px;
  transition: all 0.3s;
}
.proposal__topic-item:hover {
  border-color: var(--green);
  background: rgba(0, 0, 0, 0.7);
}
.proposal__topic-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  min-width: 48px;
}
.proposal__topic-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green);
}

/* ============================================
   STATS (Algunos datos clave)
   ============================================ */
.stats {
  padding: var(--section-padding);
  background: var(--white);
  color: var(--dark);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/datos-clave-bg.jpg') center center / cover no-repeat;
  opacity: 0.75;
}
.stats .container {
  position: relative;
  z-index: 1;
}
.stats__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 60px;
  color: var(--dark);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stats__number {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--green);
  margin-bottom: 16px;
}
.stats__number .unit {
  font-size: 0.7em;
}
.stats__label {
  font-size: 14px;
  text-align: center;
  color: var(--gray);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}
.stats__context {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.stats__context-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--dark);
}
.stats__context-img {
  width: 100%;
  height: auto;
}

/* ============================================
   THREE FORMS
   ============================================ */
.threeforms {
  padding: var(--section-padding);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.threeforms::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/threeforms-bg.jpg') center center / cover no-repeat;
  opacity: 0.2;
}
.threeforms .container {
  position: relative;
  z-index: 1;
}
.threeforms__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.threeforms__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.threeforms__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-light);
}
.threeforms__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.threeforms__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

/* ============================================
   PULSE JOURNEY (7 Ritmos)
   ============================================ */
.pulsejourney {
  padding: 80px 0 40px;
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.pulsejourney__bg {
  position: absolute;
  inset: 0;
  background: url('../img/discover-bg.jpg') center center / cover no-repeat;
  opacity: 0.25;
  filter: grayscale(100%);
}
.pulsejourney__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--dark) 0%,
    rgba(3,3,3,0.3) 15%,
    rgba(3,3,3,0.3) 85%,
    var(--dark) 100%
  );
}
.pulsejourney__content {
  position: relative;
  z-index: 1;
}
.pulsejourney__title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0;
  max-width: 520px;
  position: absolute;
  top: 80px;
  left: var(--side-padding);
  z-index: 2;
}

/* Chart */
.pulsejourney__chart {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pulsejourney__graph {
  position: relative;
  width: 100%;
  min-width: 960px;
}
.pulsejourney__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Labels */
.pj-label {
  position: absolute;
  text-align: center;
  transform: translate(-50%, -100%);
  pointer-events: none;
  padding-bottom: 20px;
}
.pj-label__num {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}
.pj-label__title {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 3px;
  color: var(--white);
}
.pj-label__desc {
  display: block;
  font-size: 10px;
  color: var(--gray);
  font-style: italic;
  line-height: 1.3;
}

/* Position labels above their dots — viewBox 1200x550 */
/* All use transform: translate(-50%, -100%) so we position at the dot center */
.pj-label--r1 { left: 12.5%; top: 82.7%; }
.pj-label--r2 { left: 27.1%; top: 64.5%; }
.pj-label--r3 { left: 41.7%; top: 52.7%; }
.pj-label--r4 { left: 47.5%; top: 40%; }
.pj-label--r5 { left: 51.5%; top: 10%; }
.pj-label--r6 { left: 73.3%; top: 73.6%; }
.pj-label--r7 { left: 88.3%; top: 85.8%; }

/* Peak label (Ritmo 5) — bigger, green */
.pj-label--r5 .pj-label__title {
  font-size: 28px;
  color: var(--green);
  line-height: 1.05;
}
.pj-label--r5 .pj-label__num {
  color: var(--green);
  opacity: 0.8;
}

/* ============================================
   DISCOVER (Descubre más + Brand Vision)
   ============================================ */
.discover {
  padding: var(--section-padding);
  background: var(--dark);
  position: relative;
}
.discover__bg {
  position: absolute;
  inset: 0;
  background: url('../img/discover-bg.jpg') center center / cover no-repeat;
  opacity: 0.90;
  filter: brightness(190%);
}
.discover__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(3,3,3,0.6) 30%, rgba(3,3,3,0.6) 70%, var(--dark) 100%);
}
.discover__main-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.discover__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.discover__info-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.discover__info-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 32px;
}

/* Brand Vision */
.brand-vision__title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.brand-vision__subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}
.brand-vision__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #1d1d1d;
}
.brand-vision__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 84px;
  padding: 20px 24px;
  background: #0c0c0c;
  border: 0;
  border-bottom: 1px solid #1d1d1d;
  color: var(--white);
  transition: background 0.25s ease;
  cursor: pointer;
}
.brand-vision__item:hover {
  opacity: 1;
  background: #111;
}
.brand-vision__item.active {
  border-left: 2px solid var(--green);
}
.brand-vision__item-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-vision__item-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #333;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-vision__item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.brand-vision__item-name {
  font-size: 14px;
  font-weight: 600;
}
.brand-vision__item-desc {
  font-size: 12px;
  color: var(--gray);
}
.brand-vision__item-time {
  font-size: 12px;
  color: var(--gray);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.brand-vision__item--article {
  align-items: center;
}
.brand-vision__item--article strong,
.brand-vision__item--article small,
.brand-vision__item--article em {
  display: block;
}
.brand-vision__item--article strong {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}
.brand-vision__item--article small {
  font-size: 12px;
  color: var(--gray);
}
.brand-vision__item--article em {
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  color: #555;
}
.brand-vision__item--article .brand-vision__item-desc {
  max-width: 680px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--gray-light);
}

/* ============================================
   PHOTO STRIP
   ============================================ */
.photostrip {
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}
.photostrip__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.photostrip__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photostrip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.photostrip__item:hover img {
  transform: scale(1.05);
}
.photostrip__item--labeled .photostrip__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  z-index: 1;
}

/* ============================================
   PRESS (Sala de prensa)
   ============================================ */
.press {
  padding: var(--section-padding);
  background: var(--dark);
}
.press__title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.press__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.press__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-light);
}
.press__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.press__buttons a[href="/banco-de-imagenes"],
.press__buttons a[href*="banco-de-imagenes"],
a.is-visually-disabled,
.is-visually-disabled {
  display: none !important;
}

/* ============================================
   ABOUT (Quiénes somos)
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/bruto/quien_esta_detras.png') center center / cover no-repeat;
  opacity: 0.82;
}
.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,3,3,0.35) 0%, rgba(3,3,3,0.12) 42%, rgba(3,3,3,0.82) 100%);
}
.about .container {
  position: relative;
  z-index: 2;
}
.about__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.about__card {
  min-width: 0;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(3, 3, 3, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid transparent;
  padding: 36px 32px;
  transition: border-color 0.3s;
  backdrop-filter: blur(2px);
}
.about__card:hover {
  border-top-color: var(--green);
}
.about__card-logo {
  min-height: 44px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  min-width: 0;
}
.about__card-logo img {
  width: auto;
  max-width: min(100%, 220px);
  max-height: 54px;
  object-fit: contain;
}
.about__card-logo span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about__card-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.about__card-name {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 4px;
}
.about__card-position {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
}
.about__card-email {
  font-size: 13px;
  color: var(--gray);
}

/* ============================================
   CONTACT (Formulario de descarga)
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--dark);
  border-top: 1px solid #222;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/contact-bg.jpg') center center / cover no-repeat;
  opacity: 0.15;
}
.contact .container {
  position: relative;
  z-index: 1;
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 32px;
}
.contact__partners {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-light);
}
.contact__partners strong {
  color: var(--green);
  font-weight: 600;
}

/* --- Contact Form --- */
.contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__field--full {
  grid-column: 1 / -1;
}
.contact-form__field input {
  background: rgba(190, 190, 190, 0.86);
  border: 1px solid rgba(3, 3, 3, 0.35);
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--dark);
  transition: border-color 0.3s;
  outline: none;
}
.contact-form__field input::placeholder {
  color: #5f5f5f;
  font-size: 13px;
}
.contact-form__field input:focus {
  border-color: var(--green);
}
.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-form__check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--green);
}
.contact-form__check label {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}
.contact-form__check a {
  color: var(--white);
  text-decoration: underline;
}
.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.contact-form__msg {
  display: none;
  font-size: 14px;
  padding: 12px 0;
}
.contact-form__msg--error { color: #ff4444; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 38px 0;
  background: var(--green);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--dark);
  text-transform: uppercase;
}
.site-footer__logo:hover {
  opacity: 1;
  color: var(--dark);
}
.site-footer__copy {
  font-size: 13px;
  color: var(--dark);
}
.site-footer__logo-img {
  width: clamp(120px, 12vw, 180px);
  height: auto;
  filter: brightness(0) invert(1);
}
.site-footer__copy a {
  color: var(--dark);
  font-weight: 700;
  margin-left: 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  min-height: 100vh;
  padding: 160px 0 100px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.legal-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/discover-bg.jpg') center center / cover no-repeat;
  opacity: 0.12;
  filter: grayscale(100%);
}
.legal-page .container {
  position: relative;
  z-index: 1;
}
.legal-page__back {
  display: inline-block;
  margin-bottom: 48px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.legal-page__title {
  max-width: 900px;
  margin-bottom: 56px;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.legal-content {
  max-width: 920px;
  color: var(--gray-light);
}
.legal-content h2 {
  margin: 44px 0 16px;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.8;
}
.legal-content p + p {
  margin-top: 12px;
}
.legal-content ul {
  margin: 12px 0 0 20px;
}
.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content__updated {
  margin-top: 48px;
  color: var(--white);
  font-weight: 700;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  display: none;
  position: fixed;
  inset: auto 0 0;
  z-index: 2000;
  padding: 24px;
  background: linear-gradient(180deg, rgba(3,3,3,0), rgba(3,3,3,0.86) 28%, rgba(3,3,3,0.96));
}
.cookie-banner.is-visible {
  display: block;
}
.cookie-banner__panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 24px;
  background: var(--dark-card);
  border: 1px solid rgba(57, 255, 20, 0.35);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.cookie-banner__intro {
  max-width: 980px;
}
.cookie-banner__eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}
.cookie-banner__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-light);
}
.cookie-banner__text--small {
  margin-top: 8px;
  font-size: 13px;
}
.cookie-banner__text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__config {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.cookie-banner__config[hidden] {
  display: none;
}
.cookie-banner__config-title {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #333;
}
.cookie-option strong,
.cookie-option small {
  display: block;
}
.cookie-option strong {
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
}
.cookie-option small {
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray);
}
.cookie-option input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--green);
}
.cookie-option--locked {
  border-color: rgba(57, 255, 20, 0.35);
}
.cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.cookie-banner__btn {
  min-height: 46px;
}

/* ============================================
   MEDIA / SPECIFIC PAGES
   ============================================ */
.media-page {
  min-height: 100vh;
  background: var(--dark);
  color: var(--white);
}
.media-topbar {
  height: 96px;
  border-bottom: 1px solid #111;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--side-padding);
}
.media-topbar a {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}
.media-hero {
  padding: 72px 0 92px;
}
.media-hero__title {
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}
.media-hero__text {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}
.media-cta {
  background: var(--green);
  padding: 28px 0;
}
.media-cta .container {
  display: flex;
  justify-content: flex-end;
}

/* Image bank */
.image-bank {
  padding-bottom: 88px;
}
.image-bank__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}
.image-bank__grid figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0c0c0c;
}
.image-bank__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transition: transform 0.45s ease;
}
.image-bank__grid figure:hover img {
  transform: scale(1.04);
}

/* Press listing */
.press-listing {
  padding: 0 2px 88px;
}
.press-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}
.press-card {
  min-height: 318px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 22px;
  background: #0c0c0c;
  border: 1px solid #1d1d1d;
}
a.press-card {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
a.press-card:hover {
  border-color: var(--green);
  background: #111;
}
.press-card__number {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #333;
}
.press-card__brand {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 34px;
}
.press-card__brand img {
  width: min(72%, 220px);
  max-height: 86px;
  object-fit: contain;
}
.press-card__category {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--green);
}
.press-card h2 {
  min-height: 54px;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 900;
  line-height: 1.18;
  color: var(--white);
  text-transform: uppercase;
}

/* Brand vision detail */
.brand-video {
  padding: 36px 0 84px;
}
.brand-video__crumb {
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.brand-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090909;
}
.brand-video__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.brand-video__play,
.more-video__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--green);
  background: rgba(57, 255, 20, 0.04);
}
.brand-video__play {
  width: 72px;
  height: 72px;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.brand-video__play span,
.more-video__play::before,
.brand-video__time span {
  width: 0;
  height: 0;
  display: block;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--green);
}
.brand-video__details {
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  gap: 40px;
  align-items: start;
  padding-top: 42px;
}
.brand-video__details h1 {
  margin-bottom: 24px;
  font-size: clamp(38px, 6.4vw, 78px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}
.brand-video__details p:not(.section-label) {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-light);
}
.brand-video__time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  margin-top: 32px;
  padding: 18px 22px;
  border: 1px solid #222;
  font-size: 12px;
  font-weight: 900;
  color: var(--gray);
}
.brand-video__time span {
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 9px;
}
.more-videos {
  padding: 64px 0 88px;
  border-top: 1px solid #111;
}
.more-videos__list {
  border-top: 1px solid #1d1d1d;
}
.more-video {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 84px;
  padding: 20px 24px;
  background: #0c0c0c;
  border-bottom: 1px solid #1d1d1d;
  color: var(--white);
}
.more-video.is-active {
  border-left: 2px solid var(--green);
}
.more-video:hover {
  opacity: 1;
  background: #111;
}
.more-video__play {
  width: 40px;
  height: 40px;
}
.more-video__play::before {
  content: '';
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 9px;
}
.more-video strong,
.more-video small,
.more-video em {
  display: block;
}
.more-video strong {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}
.more-video small {
  font-size: 12px;
  color: var(--gray);
}
.more-video em {
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  color: #555;
}

/* ============================================
   STICKY DOWNLOAD BAR
   ============================================ */
.sticky-download {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--green);
  padding: 18px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.sticky-download .container {
  max-width: none;
  display: flex;
  justify-content: flex-end;
  padding-right: 32px;
}
.sticky-download.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

/* Hidden iframe */
#download-frame { display: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --side-padding: 40px;
    --section-padding: 80px 0;
  }

  .proposal__header,
  .threeforms__layout,
  .discover__grid,
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero .container {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero__text {
    margin-bottom: 36px;
  }
  .hero__cta {
    justify-content: flex-start;
    align-self: start;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

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

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

  .pulsejourney__title {
    position: static;
    margin-bottom: 24px;
  }
  .pj-label__title {
    font-size: 14px;
  }
  .pj-label--r5 .pj-label__title {
    font-size: 20px;
  }

  .press-listing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .image-bank__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 768px) {
  :root {
    --side-padding: 24px;
    --section-padding: 64px 0;
  }

  .hero {
    min-height: 90vh;
    padding-bottom: 60px;
  }
  .hero__title {
    font-size: clamp(36px, 10vw, 64px);
  }
  .hero__text {
    color: var(--white);
  }
  .hero__cta {
    justify-content: center;
    align-self: stretch;
    margin-top: 28px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats__number {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    min-width: 3.2ch;
    margin-right: auto;
    margin-left: auto;
    font-variant-numeric: tabular-nums;
    text-align: center;
  }
  .stats__number--plain::before {
    content: '+';
    visibility: hidden;
  }
  .stats__context {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form__fields {
    grid-template-columns: 1fr;
  }
  .contact-form__field input {
    background: rgba(205, 205, 205, 0.92);
    border-color: rgba(3, 3, 3, 0.45);
    color: var(--dark);
  }

  .press__grid {
    grid-template-columns: 1fr;
  }
  .press__buttons {
    flex-direction: column;
  }
  .press__buttons .btn {
    text-align: center;
    justify-content: center;
  }

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

  .proposal__topics-list {
    grid-template-columns: 1fr;
  }

  .threeforms__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .threeforms__visual {
    order: -1;
  }

  .pulsejourney__title {
    font-size: clamp(22px, 5vw, 32px);
    position: static;
    margin-bottom: 16px;
  }
  .pulsejourney__graph {
    min-width: 850px;
  }
  .pj-label__title {
    font-size: 12px;
  }
  .pj-label--r5 .pj-label__title {
    font-size: 16px;
  }
  .pj-label__num {
    font-size: 8px;
  }
  .pj-label__desc {
    font-size: 9px;
  }

  .discover__main-title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .about__card {
    padding: 28px 24px;
  }
  .about__card-logo {
    min-height: 38px;
  }
  .about__card-logo img {
    max-width: min(100%, 190px);
    max-height: 46px;
  }

  .legal-page {
    padding: 120px 0 72px;
  }
  .legal-page__title {
    margin-bottom: 40px;
  }
  .legal-content h2 {
    margin-top: 36px;
  }
  .cookie-banner {
    padding: 12px;
  }
  .cookie-banner__panel {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 18px;
  }
  .cookie-banner__config {
    grid-template-columns: 1fr;
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-banner__btn {
    width: 100%;
  }

  .media-topbar {
    height: 76px;
    justify-content: flex-start;
    padding: 0 var(--side-padding);
  }
  .media-hero {
    padding: 56px 0 64px;
  }
  .press-listing__grid {
    grid-template-columns: 1fr;
  }
  .press-card {
    min-height: 280px;
    padding: 20px;
  }
  .press-card__brand {
    padding: 24px 0 28px;
  }
  .press-card__brand img {
    width: min(68%, 190px);
    max-height: 74px;
  }
  .press-card h2 {
    min-height: 0;
  }
  .image-bank__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .media-cta .container {
    justify-content: stretch;
  }
  .brand-video {
    padding-top: 28px;
  }
  .brand-video__frame {
    aspect-ratio: 16 / 10;
  }
  .brand-video__play {
    width: 58px;
    height: 58px;
  }
  .brand-video__details {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .brand-video__time {
    justify-self: start;
    margin-top: 0;
  }
  .more-video {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .more-video em {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .hero__cta .btn {
    width: auto;
    min-width: min(100%, 260px);
    text-align: center;
    justify-content: center;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }

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

  .stats__number {
    font-size: 64px;
  }

  .contact__title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .press__title {
    font-size: clamp(32px, 8vw, 56px);
  }

  .about__title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .site-footer__copy a {
    display: block;
    margin: 8px 0 0;
  }

  .legal-content p,
  .legal-content li {
    font-size: 14px;
  }

  .media-hero__title,
  .brand-video__details h1 {
    font-size: clamp(32px, 10vw, 48px);
  }
  .image-bank__grid {
    grid-template-columns: 1fr;
  }
  .more-video {
    padding: 18px 16px;
  }
}

/* Pulse journey exported design */
.pulsejourney {
  position: relative;
  min-height: clamp(880px, 78vw, 1240px);
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  color: var(--white);
  isolation: isolate;
}

.pulsejourney::before {
  content: '';
  position: absolute;
  inset: 20% 0 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(3,3,3,0) 20%),
    linear-gradient(180deg, rgba(3,3,3,0.05) 0%, rgba(3,3,3,0.78) 54%, rgba(3,3,3,0.96) 100%),
    url('../img/degradado_v1/pulsejourney-bg.jpg') center top / cover no-repeat;
}

.pulsejourney::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 64% 44%, rgba(8,132,104,0.35), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 16%, rgba(3,3,3,0) 34%, rgba(3,3,3,0.96) 100%);
  pointer-events: none;
}

.pulsejourney__content {
  position: relative;
  min-height: inherit;
  z-index: 1;
}

.pulsejourney__title {
  position: absolute;
  left: clamp(48px, 10vw, 210px);
  top: clamp(380px, 37vw, 590px);
  z-index: 2;
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(36px, 4.15vw, 74px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pulsejourney__chart {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  overflow: visible;
}

.pulsejourney__graphic {
  display: block;
  width: 100%;
}

.pulsejourney__graphic img {
  display: block;
  width: 100%;
  min-width: 1320px;
  max-width: none;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pulsejourney {
    min-height: 1040px;
  }

  .pulsejourney__title {
    left: 32px;
    top: 390px;
    max-width: 500px;
    font-size: clamp(34px, 5.7vw, 54px);
  }

  .pulsejourney__graphic img {
    width: 1280px;
    min-width: 1280px;
    transform: translateX(-18%);
  }
}

@media (max-width: 768px) {
  .pulsejourney {
    min-height: 1080px;
    background: #030303;
  }

  .pulsejourney::before {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(3,3,3,0.12) 0%, rgba(3,3,3,0.76) 48%, rgba(3,3,3,0.98) 100%),
      url('../img/degradado_v1/pulsejourney-bg.jpg') center top / cover no-repeat;
    opacity: 0.72;
  }

  .pulsejourney::after {
    background:
      radial-gradient(circle at 70% 18%, rgba(8,132,104,0.4), transparent 34%),
      linear-gradient(180deg, rgba(3,3,3,0.05) 0%, rgba(3,3,3,0.48) 30%, rgba(3,3,3,0.98) 100%);
  }

  .pulsejourney__content {
    display: flex;
    min-height: inherit;
    flex-direction: column;
  }

  .pulsejourney__title {
    position: relative;
    top: auto;
    left: auto;
    max-width: 360px;
    padding: 92px 24px 28px;
    font-size: clamp(32px, 8.4vw, 44px);
    line-height: 0.98;
  }

  .pulsejourney__chart {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: auto;
    padding: 0 18px 62px;
  }

  .pulsejourney__graphic img {
    width: min(100%, 380px);
    min-width: 0;
    transform: none;
  }
}

@media (max-width: 420px) {
  .pulsejourney {
    min-height: 1010px;
  }

  .pulsejourney__title {
    padding-top: 78px;
    font-size: clamp(30px, 8.2vw, 38px);
  }
}

/* Pulse journey final Figma export */
.pulsejourney {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  color: var(--white);
  isolation: isolate;
}

.pulsejourney::before,
.pulsejourney::after {
  content: none;
}

.pulsejourney__content {
  position: relative;
  min-height: 0;
  z-index: 1;
}

.pulsejourney__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.pulsejourney__chart {
  position: relative;
  inset: auto;
  z-index: 1;
  overflow: hidden;
}

.pulsejourney__graphic {
  display: block;
  width: 100%;
}

.pulsejourney__graphic img {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: auto;
  margin: 0;
  transform: none;
}

@media (max-width: 768px) {
  .pulsejourney {
    min-height: 1080px;
    background: #030303;
  }

  .pulsejourney::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
      linear-gradient(180deg, rgba(3,3,3,0.08) 0%, rgba(3,3,3,0.68) 42%, rgba(3,3,3,0.98) 100%),
      url('../img/degradado_v1/pulsejourney-bg.jpg') center top / cover no-repeat;
    opacity: 0.78;
  }

  .pulsejourney::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.18) 16%, rgba(3,3,3,0) 34%),
      radial-gradient(circle at 72% 18%, rgba(8,132,104,0.34), transparent 34%),
      linear-gradient(180deg, rgba(3,3,3,0) 0%, rgba(3,3,3,0.95) 100%);
    pointer-events: none;
  }

  .pulsejourney__content {
    display: flex;
    min-height: inherit;
    flex-direction: column;
  }

  .pulsejourney__title {
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
    padding: 76px 24px 10px;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
    border: 0;
    max-width: 390px;
    color: var(--white);
    font-size: clamp(31px, 8.6vw, 44px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .pulsejourney__chart {
    margin-top: 0;
    padding: 0 18px 36px;
    overflow: visible;
  }

  .pulsejourney__graphic img {
    width: min(100%, 402px);
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  .pulsejourney {
    min-height: 1020px;
  }

  .pulsejourney__title {
    padding-top: 64px;
    font-size: clamp(29px, 8.4vw, 38px);
  }
}
