@font-face {
  font-family: 'ES Klarheit Grotesk';
  src: local('Helvetica Neue'), local('Helvetica'), local('Arial'), sans-serif;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'ES Klarheit Grotesk';
  src: local('Helvetica Neue'), local('Helvetica'), local('Arial'), sans-serif;
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'ES Klarheit Grotesk';
  src: local('Helvetica Neue'), local('Helvetica'), local('Arial'), sans-serif;
  font-weight: 700;
  font-style: normal;
}

:root {
  --primary: #FFFF9E;    /* Nelly Pale Yellow */
  --accent: #1A371C;     /* Nelly Dark Green */
  --background: #FDFDFC; /* Off-White */
  --text-primary: #5E6159; /* Gray Text */
  --text-dark: #1A371C;  /* Very Dark Green Text */
  --border-color: #E8E8E7;

  --font-base: 'ES Klarheit Grotesk', -apple-system, system-ui, sans-serif;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --container-width: 1440px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--background);
  color: var(--text-primary);
  font-family: var(--font-base);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--primary);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.4;
  max-width: 600px;
}

/* Text reveals utility */
.line-wrap {
  display: block;
  overflow: hidden;
}
.line {
  display: block;
  will-change: transform;
}

/* ─── LAYOUT & CONTAINERS ─── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 4vw;
}

.section {
  padding: 8vw 0;
}

/* ─── NAVIGATION ─── */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 0;
  z-index: 100;
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-logo {
  height: 28px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-dark);
  border: 1px solid transparent;
}
/* No hover scale here, handled by JS magnet */

.btn-secondary {
  background-color: transparent;
  color: var(--background); /* In dark sections */
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* ─── HERO SECTION ─── */
.hero {
  min-height: 100vh;
  display: flex;
  padding-top: 15vh;
  position: relative;
}

.grid-layout {
  display: grid;
  grid-template-columns: 12fr;
  align-content: center;
}

.badge {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4rem;
  gap: 2rem;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-primary);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background-color: var(--text-primary);
  transform-origin: top;
}

.hero-abstract-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  z-index: -1;
  opacity: 0.6;
  filter: blur(80px);
}

/* ─── THE ROLE & THE COMPANY (ASYMMETRIC) ─── */
.dark-section {
  background-color: var(--accent);
  color: var(--background);
}

.text-light { color: var(--background) !important; }

.section-label {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  display: block;
}
.variant-light { color: var(--primary); opacity: 0.8; }

.context-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 8vw;
  align-items: start;
}

.sticky-card {
  position: sticky;
  top: 6rem;
}

.context-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.lead-text {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.4;
  color: var(--background);
  font-weight: 400;
}

.divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 3rem 0;
  width: 100%;
}

.secondary-text {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: rgba(253, 253, 252, 0.7);
  max-width: 80%;
}
.secondary-text strong {
  color: var(--primary);
  font-weight: 500;
}

/* ─── THE MATCH (BENTO GRID) ─── */
.match-header {
  margin-bottom: 4rem;
}
.match-header .section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  max-width: 800px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
}

.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  border-radius: 50%;
  margin-bottom: 2rem;
  color: var(--accent);
}

.bento-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.bento-content {
  font-size: 1rem;
  color: var(--text-primary);
  margin-top: auto;
}

.highlight-card {
  background: var(--primary);
  border-color: transparent;
}
.highlight-card .bento-icon {
  background: rgba(26, 55, 28, 0.1);
}

.dark-bento {
  background: var(--accent);
  color: var(--background);
}
.dark-bento h3 { color: var(--background); }
.dark-bento .bento-content { color: rgba(255,255,255,0.7); }
.dark-bento .bento-icon { background: rgba(255,255,255,0.1); color: var(--primary); }

/* ─── PITCH FOCUS (EDITORIAL L/R) ─── */
.editorial-layout {
  display: grid;
  grid-template-columns: 3fr 8fr;
  gap: 8vw;
}

.editorial-sidebar {
  position: sticky;
  top: 8rem;
  height: calc(100vh - 16rem);
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: clamp(2rem, 3vw, 3rem);
  text-transform: uppercase;
}

.vertical-line {
  flex-grow: 1;
  width: 1px;
  background: var(--border-color);
  margin-top: 2rem;
  margin-left: 2px;
}

.editorial-content {
  display: flex;
  flex-direction: column;
  gap: 8vw;
  padding-bottom: 10vh;
}

.focus-article {
  max-width: 680px;
}

.focus-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.article-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.article-body {
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* ─── MASSIVE CTA ─── */
.cta-section {
  background-color: var(--accent);
  color: var(--background);
  padding: 12vw 0 6vw;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.massive-title {
  font-size: clamp(4rem, 10vw, 12rem);
  color: var(--primary);
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.cta-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
}

.cta-info {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.cta-actions {
  display: flex;
  gap: 1rem;
}

/* ─── FOOTER ─── */
.footer {
  background-color: var(--accent);
  color: var(--background);
  padding: 2rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.hover-underline {
  color: inherit;
  text-decoration: none;
  position: relative;
}
.hover-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: currentColor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* ─── RESPONSIVE FALLBACKS ─── */
@media (max-width: 1024px) {
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .scroll-indicator { display: none; }
  
  .context-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sticky-card { position: static; }
  
  .bento-grid { grid-template-columns: 1fr 1fr; }
  
  .editorial-layout { grid-template-columns: 1fr; }
  .vertical-line { display: none; }
  .editorial-sidebar { height: auto; position: static; margin-bottom: 2rem; }
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .cta-bottom-row { flex-direction: column; align-items: flex-start; gap: 2rem; }
}
