@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-Thin.ttf') format('truetype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-ThinItalic.ttf') format('truetype'); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-LightItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-MediumItalic.ttf') format('truetype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-BoldItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/Roboto-BlackItalic.ttf') format('truetype'); font-weight: 900; font-style: italic; font-display: swap; }
@font-face { font-family: 'Roboto Condensed'; src: url('../fonts/Roboto-Condensed.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto Condensed'; src: url('../fonts/Roboto-CondensedItalic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Roboto Condensed'; src: url('../fonts/Roboto-BoldCondensed.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto Condensed'; src: url('../fonts/Roboto-BoldCondensedItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }

@font-face {
  font-family: 'Archer Pro';
  src: url('../fonts/archerpro_medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archer Pro';
  src: url('../fonts/archerpro_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Expansiva';
  src: url('../fonts/Copy_of_Expansiva.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Expansiva';
  src: url('../fonts/Copy_of_Expansiva_italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Expansiva';
  src: url('../fonts/Copy_of_Expansiva_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Expansiva';
  src: url('../fonts/Copy_of_Expansiva_bold_italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
   
:root {
  /* =========================================================
    BRAND COLORS (from Branding Guide.pdf)
    ========================================================= */
  --clock-dark-blue:  #012B3E; /* primary dark — backgrounds, body copy on light */
  --clock-logo-blue:  #1C9AD6; /* primary accent — logo, CTA links, chart 1 */
  --clock-light-green:#AECD40; /* energetic accent — highlights on dark, data viz pops */
  --clock-dark-green: #31713A; /* secondary — GreenFeed / sustainability contexts */
  --clock-grey:       #A9A9A9; /* neutral — rules, disabled, secondary icons */

  /* =========================================================
    EXTENDED NEUTRALS — derived from dark blue for surfaces
    ========================================================= */
  --clock-navy-900:   #001824;
  --clock-navy-800:   #012B3E; /* = dark-blue */
  --clock-navy-700:   #0A3E55;
  --clock-navy-600:   #14526D;
  --clock-navy-500:   #1F6885;
  --clock-ink:        #0A1620; /* near-black used behind grid bg */

  --clock-white:      #FFFFFF;
  --clock-paper:      #F4F6F7; /* light grid background paper */
  --clock-mist:       #E4E8EB;
  --clock-ash:        #C8CED2;
  --clock-stone:      #8F9AA2;

  /* =========================================================
    SEMANTIC SURFACE & TEXT TOKENS
    ========================================================= */
  /* Dark theme (default on dark grid) */
  --bg-dark:          var(--clock-navy-800);
  --bg-dark-elev:     var(--clock-navy-700);
  --bg-dark-ink:      var(--clock-ink);

  --fg-on-dark:       #FFFFFF;
  --fg-on-dark-soft:  rgba(255,255,255,0.72);
  --fg-on-dark-mute:  rgba(255,255,255,0.48);
  --rule-on-dark:     rgba(255,255,255,0.12);

  /* Light theme (on white grid or white paper) */
  --bg-light:         #FFFFFF;
  --bg-light-paper:   var(--clock-paper);
  --fg-on-light:      var(--clock-dark-blue);
  --fg-on-light-soft: #3A5565;
  --fg-on-light-mute: #6B8190;
  --rule-on-light:    #D9E0E4;

  /* Accents */
  --accent-primary:   var(--clock-logo-blue);
  --accent-highlight: var(--clock-light-green);  /* for callout words on dark */
  --accent-eco:       var(--clock-dark-green);   /* for GreenFeed context */

  /* Status (inferred — brand guide doesn't spec these) */
  --status-success:   #5FB86B;
  --status-warning:   #E9B949;
  --status-danger:    #D9534F;
  --status-info:      var(--clock-logo-blue);

  /* =========================================================
    TYPOGRAPHY STACKS
    ========================================================= */
  --font-display: 'Archer Pro', Georgia, serif;
  --font-wordmark: 'Expansiva', 'Archer Pro', sans-serif;
  --font-sans:    'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-sans-condensed: 'Roboto Condensed', 'Roboto', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  /* Fluid type scale — anchored on 16px body */
  --text-xs:   0.75rem;   /* 12 — legal, ID tags */
  --text-sm:   0.875rem;  /* 14 — captions, meta */
  --text-base: 1rem;      /* 16 — body */
  --text-md:   1.125rem;  /* 18 — lead paragraphs */
  --text-lg:   1.375rem;  /* 22 — subhead */
  --text-xl:   1.75rem;   /* 28 — card title */
  --text-2xl:  2.25rem;   /* 36 — section head */
  --text-3xl:  3rem;      /* 48 — page head */
  --text-4xl:  4rem;      /* 64 — hero */
  --text-5xl:  5.25rem;   /* 84 — billboard */

  /* Weights */
  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-bold:    700;
  --fw-black:   900;

  /* Line height */
  --lh-tight: 1.05;
  --lh-snug:  1.2;
  --lh-body:  1.5;
  --lh-loose: 1.7;

  /* Tracking — the wordmark is wide; use subtle positive tracking on all-caps */
  --track-tight:   -0.01em;
  --track-normal:  0;
  --track-wide:    0.04em;
  --track-wider:   0.08em;
  --track-widest:  0.16em; /* section eyebrows */

  /* =========================================================
    SPACING, RADII, SHADOWS, MOTION
    ========================================================= */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  /* Shadows — the brand uses almost no shadow in print; these are
    for interactive surfaces only */
  --shadow-sm: 0 1px 2px rgba(1,43,62,0.08);
  --shadow-md: 0 4px 12px rgba(1,43,62,0.10);
  --shadow-lg: 0 12px 32px rgba(1,43,62,0.14);
  --shadow-glow-blue: 0 0 0 1px rgba(28,154,214,0.30), 0 8px 24px rgba(28,154,214,0.20);
  --shadow-glow-lime: 0 0 0 1px rgba(174,205,64,0.35), 0 8px 24px rgba(174,205,64,0.22);

  --border-hairline: 1px solid var(--rule-on-dark);
  --border-rule-light: 1px solid var(--rule-on-light);
  --border-accent: 2px solid var(--accent-highlight);

  /* Motion — deliberate, technical; no bouncing */
  --ease-standard: cubic-bezier(0.2, 0.0, 0.2, 1);
  --ease-emphasized: cubic-bezier(0.2, 0.0, 0, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;
}
   
/* ============================================================
  SEMANTIC TYPE CLASSES
  Use these as the authoritative styles — don't restyle h1s.
  ============================================================ */

.t-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--track-widest);
  color: var(--accent-primary);
}

.t-hero {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--text-4xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-tight);
  color: var(--fg-on-light);
}

.t-h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--text-3xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-tight);
}

.t-h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--text-2xl);
  line-height: var(--lh-snug);
}

.t-h3 {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: var(--text-xl);
  line-height: var(--lh-snug);
}

.t-lead {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--text-md);
  line-height: var(--lh-body);
}

.t-body {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--text-base);
  line-height: var(--lh-body);
}

.t-caption {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  color: var(--fg-on-light-mute);
}

.t-data {
  font-family: var(--font-mono);
  font-weight: var(--fw-medium);
  font-size: var(--text-base);
  letter-spacing: var(--track-wide);
}

.t-metric {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--text-4xl);
  line-height: 1;
  letter-spacing: var(--track-tight);
}

/* Highlight token — used for the lime-accent word on dark headlines
  ("C-Lock Identifies and Ranks…") */
.t-highlight {
  color: var(--accent-highlight);
}
.t-highlight--blue {
  color: var(--accent-primary);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--fg-on-light);
  background: var(--bg-light);
  line-height: var(--lh-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
/* ============ SECTION DEFAULTS ============ */
section { padding: 110px 0; position: relative; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--accent-primary);
}
section.dark .eyebrow { color: var(--accent-highlight); }
section.dark .eyebrow::before { background: var(--accent-highlight); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--fg-on-light);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: #fff; }
.hl { color: var(--accent-highlight); }
.hl-blue { color: var(--accent-primary); }
h2 { font-size: clamp(36px, 4.5vw, 56px); max-width: 900px; }
h2.uppercase-title { text-transform: none; letter-spacing: -0.015em; }
.section-intro {
  font-size: 18px; color: var(--fg-on-light-soft);
  max-width: 720px; margin-top: 24px; line-height: 1.65;
}
section.dark .section-intro { color: rgba(255,255,255,0.75); }
/* ============ HERO ============ */
.mask-heroslider_section {
  background: var(--clock-dark-blue);
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 770px;
  display: flex; align-items: stretch;
}
.mask-heroslider_section .hero-bg-layers { position: absolute; inset: 0; z-index: 0; }
.mask-heroslider_section .hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: heroZoom 14s ease-in-out infinite alternate;
  transform-origin: center;
}
.mask-heroslider_section .hero-bg-img.active { opacity: 1; }
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}
.mask-heroslider_section::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(1,43,62,0.85) 0%, rgba(1,43,62,0.55) 55%, rgba(1,43,62,0.35) 100%),
    radial-gradient(circle at 85% 20%, rgba(28,154,214,0.20), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(174,205,64,0.08), transparent 55%);
  pointer-events: none;
}
.mask-heroslider_section .wrap {
  position: relative; z-index: 2;
  display: block;
  width: 100%;
  padding-top: 150px; padding-bottom: 120px;
  max-width: 1100px;
}
.mask-heroslider_section .hero-slides { position: relative; }
.mask-heroslider_section .hero-slide { display: none; animation: fadeUp .7s ease both; }
.mask-heroslider_section .hero-slide.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mask-heroslider_section .eyebrow-live {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-highlight);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 600;
}
.mask-heroslider_section .eyebrow-live .pulse-dot {
  width: 8px; height: 8px;
  background: var(--accent-highlight);
  border-radius: 50%;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(174,205,64,0.6); }
  50% { opacity: 0.5; transform: scale(0.85); box-shadow: 0 0 0 8px rgba(174,205,64,0); }
}
.mask-heroslider_section h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.7vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.mask-heroslider_section h1 .subline {
  display: block;
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-top: 14px;
  color: rgba(255,255,255,0.92);
  text-transform: none;
}
.mask-heroslider_section .hero-countries {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-highlight);
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.mask-heroslider_section .hero-countries::before {
  content: ""; width: 40px; height: 2px; background: var(--accent-highlight);
}
.mask-heroslider_section h1 .hl { color: var(--accent-highlight); }
.mask-heroslider_section h1 .hl-blue { color: var(--accent-primary); }
.mask-heroslider_section h1 .underline {
  position: relative; display: inline-block;
}
.mask-heroslider_section h1 .underline::after {
  content: ""; position: absolute;
  bottom: 2px; left: 0; right: 0; height: 4px;
  background: var(--accent-highlight);
}
.mask-heroslider_section .hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 720px;
  margin: 28px 0 40px;
}
.mask-heroslider_section .hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.mask-heroslider_section .btn-hero {
  background: var(--accent-highlight);
  color: var(--clock-dark-blue);
  padding: 16px 26px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--dur-base);
  display: inline-flex; align-items: center; gap: 10px;
}
.mask-heroslider_section .btn-hero:hover { background: #fff; transform: translateY(-2px); }
.mask-heroslider_section .btn-hero-outline {
  color: #fff;
  padding: 16px 26px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  transition: all var(--dur-base);
  display: inline-flex; align-items: center; gap: 10px;
}
.mask-heroslider_section .btn-hero-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

/* Live data panel */
.mask-heroslider_section .hero-stats-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  position: relative;
}
.mask-heroslider_section .hero-stats-panel::before {
  content: 'LIVE DATA';
  position: absolute;
  top: -10px; left: 24px;
  background: var(--clock-dark-blue);
  color: var(--accent-highlight);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 2px 10px;
  font-weight: 600;
}
.mask-heroslider_section .hero-stats-panel h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.mask-heroslider_section .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mask-heroslider_section .stat-row:last-child { border-bottom: none; }
.mask-heroslider_section .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  max-width: 60%;
  line-height: 1.35;
}
.mask-heroslider_section .stat-val {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  font-size: 30px;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.mask-heroslider_section .stat-val .unit {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-highlight);
  margin-left: 4px;
  letter-spacing: 0.05em;
}

.mask-heroslider_section .hero-controls {
  position: absolute; bottom: 40px; left: 0; right: 0;
  z-index: 2;
  display: flex; justify-content: center; gap: 12px;
}
.mask-heroslider_section .hero-dot {
  width: 36px; height: 3px;
  background: rgba(255,255,255,0.25);
  border: none; cursor: pointer;
  padding: 0;
  transition: all .3s;
}
.mask-heroslider_section .hero-dot.active { background: var(--accent-highlight); width: 56px; }
.mask-heroslider_section .hero-dot:hover { background: rgba(255,255,255,0.5); }
.mask-heroslider_section button.hero-arrow {
  padding: inherit;
}
.mask-heroslider_section .hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(1,43,62,0.45);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all .25s ease;
}
.mask-heroslider_section button.hero-arrow:hover::after {
  background: var(--accent-highlight);
  color: var(--clock-dark-blue);
  border-color: var(--accent-highlight);
  transform: translateY(0) scale(0) !important;
  -webkit-transform: translateY(0) scale(0) !important;
}
.mask-heroslider_section button.hero-arrow:hover {
  background: var(--accent-highlight);
  color: var(--clock-dark-blue);
  border-color: var(--accent-highlight);
  transform: translateY(-50%) scale(1.06);
  -webkit-transform: translateY(-50%) scale(1.06);
}
.mask-heroslider_section .herobutton.hero-arrow:hover::after {
  border-color: var(--accent-highlight);
}
.mask-heroslider_section .hero-arrow-prev { left: 32px; }
.mask-heroslider_section .hero-arrow-next { right: 32px; }
@media (max-width: 900px) {
  .mask-heroslider_section .hero-arrow { width: 44px; height: 44px; }
  .mask-heroslider_section .hero-arrow-prev { left: 12px; }
  .mask-heroslider_section .hero-arrow-next { right: 12px; }
}

/* ============ ABOUT / VIDEO ============ */
.about-and-video-section { background: #fff; border-bottom: 1px solid var(--rule-on-light); }
.about-and-video-section .about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 72px; align-items: center;
}
.about-and-video-section .video-wrap {
  position: relative; aspect-ratio: 16/10;
  background: var(--clock-dark-blue);
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--rule-on-light);
}
.about-and-video-section .video-wrap::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(1,43,62,0.55), rgba(1,43,62,0.85)),
    url('../backgrounds/grid-dark.png') center/cover,
    var(--clock-dark-blue);
  transition: transform .6s;
}
.about-and-video-section .video-wrap {
  position: relative; aspect-ratio: 16/10;
  background: var(--clock-dark-blue);
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--rule-on-light);
}
.about-and-video-section .video-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(1,43,62,0.55), rgba(1,43,62,0.85));
  transition: transform .6s;
}
.about-and-video-section .video-inner .about-video-media,
.about-and-video-section .video-inner .about-video-media video,
.about-and-video-section .video-inner .about-video-media iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about-and-video-section .video-poster {
  position: absolute; inset: 0;
  z-index: 3;
  cursor: pointer;
  transition: opacity .35s var(--ease-standard);
}
.about-and-video-section .video-poster.hidden { opacity: 0; pointer-events: none; }
.about-and-video-section .video-wrap:hover::before { transform: scale(1.04); }
.about-and-video-section .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  background: var(--accent-highlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
  z-index: 2;
}
.about-and-video-section .play-btn::after {
  content: ""; width: 0; height: 0;
  border-left: 22px solid var(--clock-dark-blue);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.about-and-video-section .video-wrap:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.about-and-video-section .video-label {
  position: absolute;
  bottom: 24px; left: 24px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.about-and-video-section .video-label .duration { color: var(--accent-highlight); margin-left: 8px; }
.about-and-video-section .about-text p {
  font-size: 16px;
  color: var(--fg-on-light-soft);
  line-height: 1.7;
  margin-top: 20px;
}
.about-and-video-section .about-text p strong { color: var(--clock-dark-blue); font-weight: 700; }
.about-and-video-section .about-quick-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--rule-on-light);
}
.about-and-video-section .quick-stat .num {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  font-size: 42px;
  color: var(--clock-dark-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-and-video-section .quick-stat .num .plus { color: var(--accent-primary); }
.about-and-video-section .quick-stat .label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-on-light-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
}

/* ============ APPLICATIONS ============ */
.mask-applications_section {
  background: var(--clock-dark-blue) url('../backgrounds/grid-dark.png') center/cover;
  position: relative;
}
.mask-applications_section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(28,154,214,0.15), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(174,205,64,0.08), transparent 60%);
  pointer-events: none;
}
.mask-applications_section .wrap { position: relative; z-index: 1; }
.mask-applications_section .eyebrow { color: var(--accent-highlight); }
.mask-applications_section .eyebrow::before { background: var(--accent-highlight); }
.mask-applications_section h2 { color: #fff; }
.mask-applications_section h2 .hl-blue { color: var(--accent-highlight); }
.mask-applications_section .section-intro { color: rgba(255,255,255,0.78); }
.apps-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 56px;
}
.mask-applications_section .app-card {
  background: #fff;
  border: 1px solid var(--rule-on-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .3s var(--ease-standard);
  box-shadow: 0 14px 34px -18px rgba(174,205,64,0.45);
}
.mask-applications_section .app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px -18px rgba(174,205,64,0.75), 0 0 0 1px rgba(174,205,64,0.35);
  border-color: var(--accent-highlight);
}
.mask-applications_section .app-img {
  height: 280px;
  position: relative;
  background: var(--clock-dark-blue) url('../backgrounds/grid-dark.png') center/cover;
  overflow: hidden;
}
.mask-applications_section .app-img {
  background-color: rgba(0, 0, 0, 0);
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-origin: padding-box;
  background-clip: border-box;
}
.mask-applications_section .app-img.greenfeed::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1,43,62,0.15) 0%, rgba(1,43,62,0.55) 60%, rgba(1,43,62,0.88) 100%),
              linear-gradient(90deg, rgba(1,43,62,0.20), transparent 50%);
}
.mask-applications_section .app-img.smartline::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1,43,62,0.15) 0%, rgba(1,43,62,0.55) 60%, rgba(1,43,62,0.88) 100%),
              linear-gradient(90deg, rgba(1,43,62,0.20), transparent 50%);
}
.mask-applications_section .app-img .overlay-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: #fff;
  color: var(--clock-dark-blue);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 10px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.mask-applications_section .app-img h3 {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-size: 52px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.mask-applications_section .app-img h3 .sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-highlight);
  letter-spacing: 0.14em;
  margin-top: 12px;
  text-transform: uppercase;
}
.mask-applications_section .app-body { padding: 32px 28px; }
.mask-applications_section .app-body ol {
  list-style: none; counter-reset: app-counter;
}
.mask-applications_section .app-body ol li {
  counter-increment: app-counter;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-on-light);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.mask-applications_section .app-body ol li:last-child { border-bottom: none; }
.mask-applications_section .app-body ol li::before {
  content: counter(app-counter, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-primary);
  padding-top: 4px;
  font-weight: 700;
}
.mask-applications_section .app-body ol li h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--clock-dark-blue);
  margin-bottom: 4px;
  letter-spacing: 0;
}
.mask-applications_section .app-body ol li p {
  font-size: 14px;
  color: var(--fg-on-light-soft);
  line-height: 1.55;
}
.mask-applications_section .app-link {
  display: inline-flex;
  align-items: center; gap: 10px;
  margin-top: 24px;
  font-size: 13px; font-weight: 700;
  color: var(--clock-dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--dur-base);
}
.mask-applications_section .app-link:hover { gap: 14px; color: var(--accent-primary); }

/* ============ PRODUCER (Feed becomes) ============ */
.mask_producer_section {
  background: #fff;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--rule-on-light);
}
.mask_producer_section::before {
  content: ""; position: absolute;
  top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(174,205,64,0.08), transparent 60%);
  pointer-events: none;
}
.mask_producer_section .producer-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
  margin-top: 56px;
  position: relative; z-index: 1;
}
.mask_producer_section .producer-text .lead-in {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-primary);
  font-size: 22px;
  margin-bottom: 12px;
}
.mask_producer_section .producer-text p {
  font-size: 17px;
  color: var(--fg-on-light-soft);
  line-height: 1.7;
  margin-bottom: 18px;
}
.mask_producer_section .producer-text p strong { color: var(--clock-dark-blue); font-weight: 700; }
.mask_producer_section .producer-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin: 32px 0;
}
.mask_producer_section .producer-pillar {
  padding: 22px 20px;
  background: var(--clock-paper);
  border: 1px solid var(--rule-on-light);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--accent-highlight);
}
.mask_producer_section .producer-pillar h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--clock-dark-blue);
  margin-bottom: 6px;
}
.mask_producer_section .producer-pillar p {
  font-size: 12px;
  color: var(--fg-on-light-mute);
  line-height: 1.5;
  margin: 0;
}
.mask_producer_section .producer-cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.mask_producer_section .btn-dark {
  background: var(--clock-dark-blue); color: #fff;
  padding: 14px 24px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--dur-base);
  display: inline-flex; align-items: center; gap: 10px;
}
.mask_producer_section .btn-dark:hover { background: var(--accent-primary); }
.mask_producer_section .btn-outline {
  color: var(--clock-dark-blue);
  padding: 14px 24px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--clock-dark-blue);
  border-radius: var(--radius-sm);
  transition: all var(--dur-base);
}
.mask_producer_section .btn-outline:hover { background: var(--clock-dark-blue); color: #fff; }

.mask_producer_section .producer-visual {
  background: var(--clock-dark-blue) url('../backgrounds/grid-dark.png') center/cover;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 48px 40px;
  position: relative; overflow: hidden;
}
.mask_producer_section .producer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-highlight);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mask_producer_section .producer-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.mask_producer_section .producer-flow {
  display: flex; align-items: center; justify-content: space-between;
  margin: 32px 0; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.mask_producer_section .producer-flow-step { text-align: center; flex: 1; }
.mask_producer_section .producer-flow-step .icon {
  width: 48px; height: 48px;
  margin: 0 auto 10px;
  background: rgba(174,205,64,0.12);
  border: 1px solid var(--accent-highlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-highlight);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.mask_producer_section .producer-flow-step .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.mask_producer_section .producer-flow-arrow {
  color: var(--accent-highlight);
  font-size: 20px; margin: 0 8px; margin-bottom: 24px;
}
.mask_producer_section .producer-big-stat { text-align: center; padding-top: 8px; }
.mask_producer_section .producer-big-stat .num {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  font-size: 76px;
  color: var(--accent-highlight);
  line-height: 1;
  letter-spacing: -0.03em;
}
.mask_producer_section .producer-big-stat .num .small {
  font-size: 28px;
  color: #fff;
  margin-left: 4px;
}
.mask_producer_section .producer-big-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 600;
}
.mask_producer_section .producer-big-stat .source {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-style: italic;
}

/* ============ WHO WE SERVE ============ */
.mask-who_we_serve_section { background: #fff; border-bottom: 1px solid var(--rule-on-light); }
.mask-who_we_serve_section .who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.mask-who_we_serve_section .who-card {
  background: #fff;
  border: 1px solid var(--rule-on-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .35s var(--ease-standard);
  position: relative; cursor: pointer;
  display: flex; flex-direction: column;
}
.mask-who_we_serve_section .who-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
}
.mask-who_we_serve_section .who-card .img {
  height: 220px;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.mask-who_we_serve_section .who-card .img::before {
  content: ""; position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(1,43,62,0.15) 0%, rgba(1,43,62,0.55) 60%, rgba(1,43,62,0.85) 100%);
}
.mask-who_we_serve_section .who-card .img-researchers::before,
.mask-who_we_serve_section .who-card .img-producers::before,
.mask-who_we_serve_section .who-card .img-corporations::before {
  background: linear-gradient(180deg, rgba(1,43,62,0.15) 0%, rgba(1,43,62,0.55) 60%, rgba(1,43,62,0.85) 100%);
}
.mask-who_we_serve_section .who-card .badge {
  position: absolute; top: 16px; left: 16px;
  background: #fff;
  color: var(--clock-dark-blue);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 10px;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 600;
}
.mask-who_we_serve_section .who-card .img h3 {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  z-index: 2;
  line-height: 1;
}
.mask-who_we_serve_section .who-card-body {
  padding: 28px 24px; flex: 1;
  display: flex; flex-direction: column;
}
.mask-who_we_serve_section .who-card-body p {
  font-size: 14px; color: var(--fg-on-light-soft);
  margin-bottom: 20px; line-height: 1.6;
}
.mask-who_we_serve_section .who-card-body ul { list-style: none; margin-bottom: 24px; flex: 1; }
.mask-who_we_serve_section .who-card-body ul li {
  font-size: 13px; color: var(--fg-on-light);
  padding: 6px 0; padding-left: 18px; position: relative;
}
.mask-who_we_serve_section .who-card-body ul li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--accent-primary); font-weight: 700;
}
.mask-who_we_serve_section .who-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  color: var(--clock-dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-top: 16px;
  border-top: 1px solid var(--rule-on-light);
  transition: gap var(--dur-base);
}
.mask-who_we_serve_section .who-card:hover .who-link { gap: 14px; color: var(--accent-primary); }

/* ============ GLOBE SECTION — USER-SPEC COLORS ============ */
.interactive-globe-mask-section {
  background: #012b3e; /* user-specified solid */
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 120px 0;
}
.interactive-globe-mask-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(174,205,64,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,205,64,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.interactive-globe-mask-section .wrap { position: relative; z-index: 1; }
.interactive-globe-mask-section .eyebrow { color: #aecd40; }
.interactive-globe-mask-section .eyebrow::before { background: #aecd40; }
.interactive-globe-mask-section h2 { color: #fff; }
.interactive-globe-mask-section h2 .hl { color: #aecd40; }
.interactive-globe-mask-section .section-intro { color: rgba(255,255,255,0.75); }

.interactive-globe-mask-section .globe-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 72px;
}
.interactive-globe-mask-section .globe-stage {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  cursor: grab;
  user-select: none;
}
.interactive-globe-mask-section .globe-stage.dragging { cursor: grabbing; }
.interactive-globe-mask-section .globe-svg {
  width: 100%; height: 100%;
  overflow: visible;
}

/* Interactive tooltip */
.interactive-globe-mask-section .country-tip {
  position: absolute;
  background: #012b3e;
  border: 1px solid #aecd40;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aecd40;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 10px));
  transition: opacity .18s;
  white-space: nowrap;
  z-index: 5;
  font-weight: 600;
}
.interactive-globe-mask-section .country-tip.active { opacity: 1; }
.interactive-globe-mask-section .country-tip::after {
  content: ""; position: absolute;
  bottom: -5px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: #012b3e;
  border-right: 1px solid #aecd40;
  border-bottom: 1px solid #aecd40;
  rotate: 45deg;
}

/* Globe counters */
.interactive-globe-mask-section .globe-meta {
  display: flex; gap: 40px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.interactive-globe-mask-section .globe-meta-item {
  text-align: center;
}
.interactive-globe-mask-section .globe-meta-item .num {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  font-size: 48px;
  color: #aecd40;
  line-height: 1;
  letter-spacing: -0.02em;
}
.interactive-globe-mask-section .globe-meta-item .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-weight: 600;
}

/* Side panel — stats & country list */
.interactive-globe-mask-section .globe-side h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.interactive-globe-mask-section .globe-side h3 .hl { color: #aecd40; }
.interactive-globe-mask-section .globe-side p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.interactive-globe-mask-section .counter-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(174,205,64,0.25);
  border-bottom: 1px solid rgba(174,205,64,0.25);
}
.interactive-globe-mask-section .counter-cell {
  padding: 28px 20px;
  border-right: 1px solid rgba(174,205,64,0.25);
  border-bottom: 1px solid rgba(174,205,64,0.25);
}
.interactive-globe-mask-section .counter-cell:nth-child(2n) { border-right: none; }
.interactive-globe-mask-section .counter-cell:nth-last-child(-n+2) { border-bottom: none; }
.interactive-globe-mask-section .counter-cell .big-num {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: #aecd40;
  letter-spacing: -0.03em;
}
.interactive-globe-mask-section .counter-cell .big-num .plus {
  font-size: 0.6em; color: #fff;
}
.interactive-globe-mask-section .counter-cell .big-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-top: 10px;
  font-weight: 600;
}

.interactive-globe-mask-section .globe-origin {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(174,205,64,0.06);
  border-left: 3px solid #aecd40;
}
.interactive-globe-mask-section .globe-origin .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aecd40;
  margin-bottom: 6px;
  font-weight: 600;
}
.interactive-globe-mask-section .globe-origin .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.interactive-globe-mask-section .country-pills {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.interactive-globe-mask-section .country-pills .pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border: 1px solid rgba(174,205,64,0.3);
  border-radius: 2px;
  transition: all .2s;
  cursor: default;
}
.interactive-globe-mask-section .country-pills .pill:hover, .interactive-globe-mask-section .country-pills .pill.hover {
  background: #aecd40;
  color: #012b3e;
  border-color: #aecd40;
}

/* ============ NEWS ============ */

.news_and_Insights .news-head {
  display: flex; justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.news_and_Insights .news-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.news_and_Insights .news-card {
  background: #fff;
  border: 1px solid var(--rule-on-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .3s;
}
.news_and_Insights .news-card:hover { border-color: var(--accent-primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news_and_Insights .news-card .img {
  height: 200px;
  background: var(--clock-dark-blue) url('../backgrounds/grid-dark.png') center/cover;
  position: relative;
}
.news_and_Insights .news-card .img::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,154,214,0.5), rgba(1,43,62,0.85));
}
.news_and_Insights .news-card.featured .img { height: 280px; }
.news_and_Insights .news-card.featured .img::before {
  background: linear-gradient(135deg, rgba(49,113,58,0.55), rgba(1,43,62,0.85));
}
.news_and_Insights .news-card:nth-child(3) .img::before {
  background: linear-gradient(135deg, rgba(174,205,64,0.35), rgba(1,43,62,0.90));
}
.news_and_Insights .news-card .img-overlay {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--clock-dark-blue);
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.news_and_Insights .news-card-body {
  padding: 24px; flex: 1;
  display: flex; flex-direction: column;
}
.news_and_Insights .news-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-on-light-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
.news_and_Insights .news-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  color: var(--clock-dark-blue);
  margin-bottom: 12px;
}
.news_and_Insights .news-card.featured h3 { font-size: 30px; }
.news_and_Insights .news-card p {
  font-size: 14px; color: var(--fg-on-light-soft);
  line-height: 1.6; margin-bottom: 20px; flex: 1;
}
.news_and_Insights .news-link {
  font-size: 12px; font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex; align-items: center; gap: 8px;
}
.frame-type-news_newsliststicky.frame-layout-22 header.frame-header {
  display: none;
}
.frame-layout-22 .frame-container-default {
	max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.news_and_Insights .btn-ghost {
  font-size: 13px; font-weight: 600;
  color: var(--fg-on-light);
  padding: 10px 18px;
  border: 1px solid var(--rule-on-light);
  border-radius: var(--radius-sm);
  transition: all var(--dur-base);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.news_and_Insights .btn-ghost:hover { background: var(--clock-dark-blue); color: #fff; border-color: var(--clock-dark-blue); }
/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--clock-navy-900) url('../backgrounds/grid-dark.png') center/cover;
  color: #fff;
  padding: 120px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(174,205,64,0.10), transparent 60%);
}
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta .eyebrow { justify-content: center; color: var(--accent-highlight); }
.final-cta .eyebrow::before { background: var(--accent-highlight); }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 5.5vw, 72px);
  color: #fff;
  line-height: 1;
  margin: 0 auto 28px;
  max-width: 900px;
  letter-spacing: -0.01em;
}
.final-cta p:first-of-type {
  margin-bottom: 0;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.final-cta-row {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

.final-cta .btn-hero {
  background: var(--accent-highlight);
  color: var(--clock-dark-blue);
  padding: 16px 26px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--dur-base);
  display: inline-flex; align-items: center; gap: 10px;
  justify-content: center;
}
.final-cta .btn-hero:hover { background: #fff; transform: translateY(-2px); }
.final-cta .btn-hero-outline {
  color: #fff;
  padding: 16px 26px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  transition: all var(--dur-base);
  display: inline-flex; align-items: center; gap: 10px;
}
.final-cta .btn-hero-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
/* ============ RESPONSIVE ============ */
@media (min-width: 1024px) {
  .final-cta .btn-hero { width: 30%;justify-content:center; }
}
@media (max-width: 1400px) {
  .mask-heroslider_section { min-height: 720px;}
}
@media (max-width: 1024px) {
  .mask-heroslider_section .wrap { max-width: 90%;}
  .mask-heroslider_section .wrap, .about-and-video-section .about-grid, .mask_producer_section .producer-grid, .interactive-globe-mask-section .globe-wrapper {
    grid-template-columns: 1fr; gap: 48px;
  }
  .apps-grid { grid-template-columns: 1fr; }
  .who-grid,
  .mask-who_we_serve_section .who-grid { grid-template-columns: 1fr 1fr; }
  
  .news_and_Insights .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 639px) {
  .final-cta .btn-hero { width: 40%;justify-content:center; }
}
@media (max-width: 640px) {
  .mask-heroslider_section .wrap { max-width: 80%;}
  .mask-applications_section .app-img h3 {
    font-size: 30px;
  }
  .wrap { padding: 0 20px; }
  .util-bar .left { display: none; }
  .mask-heroslider_section { min-height: auto; }
  .mask-heroslider_section .wrap { padding-top: 60px; padding-bottom: 100px; }
  section { padding: 72px 0; }
  .who-grid, .mask-who_we_serve_section .who-grid, .news_and_Insights .news-grid, .interactive-globe-mask-section .globe-wrapper { grid-template-columns: 1fr; }
  .about-and-video-section .about-quick-stats, .mask_producer_section .producer-pillars, .counter-grid { grid-template-columns: 1fr 1fr; }
  .news_and_Insights .news-head { flex-direction: column; align-items: flex-start; }
  .final-cta-row { flex-direction: column; }
}