/* ==========================================================================
   INSPENET HOMEPAGE - CONSOLIDATED STYLES
   ==========================================================================
   This stylesheet consolidates front-page-v3.css and front-page-v2.css 
   into a single file to optimize performance, eliminate redundant loads, 
   and improve maintainability.
   ========================================================================== */

    /* ─── RESET + BASE ─────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      /* Brand colors */
      --navy: #1E2362;
      --navy-dark: #18223F;
      --navy-deep: #08111F;
      --navy-mid: #0D1535;
      --cyan: #38BDF8;
      --cyan-dim: rgba(56, 189, 248, .12);
      --orange: #F97316;
      --orange-h: #EA580C;
      --orange-dim: rgba(249, 115, 22, .08);
      /* Surfaces */
      --white: #FFFFFF;
      --gray-bg: #F4F7FB;
      --gray-bg2: #EEF2F8;
      --gray-mid: #E2E8F0;
      --gray-line: #DDE3EE;
      --gray-line2: #C8D3E4;
      /* Text */
      --text: #0B1426;
      --text-soft: #3D526B;
      --text-muted: #7A8FA8;
      --text-light: #A8BACF;
      /* Radius */
      --r-xs: 4px;
      --r-sm: 6px;
      --r-md: 10px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-pill: 100px;
      /* Shadows */
      --s-xs: 0 1px 4px rgba(8, 17, 31, .06);
      --s-sm: 0 2px 12px rgba(8, 17, 31, .08);
      --s-md: 0 6px 28px rgba(8, 17, 31, .10);
      --s-lg: 0 16px 56px rgba(8, 17, 31, .14);
      --s-xl: 0 32px 80px rgba(8, 17, 31, .18);
      /* Layout */
      --max: 1380px;
      --max-text: 880px;
      --gap: clamp(16px, 3vw, 32px);
      /* Transitions */
      --t: .2s ease;
      --t-slow: .4s ease;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: var(--font-base, 'Montserrat', sans-serif);
      color: var(--text);
      background: #fff;
      overflow-x: hidden;
      line-height: 1.6;
    }

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

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

    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
    }

    /* ─── TYPOGRAPHY SCALE ─────────────────────────────────── */
    .t-overline {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .t-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .t-caption {
      font-size: 13px;
      line-height: 1.5;
    }

    .t-body-sm {
      font-size: 14px;
      line-height: 1.6;
    }

    .t-body {
      font-size: 15px;
      line-height: 1.65;
    }

    .t-body-lg {
      font-size: 17px;
      line-height: 1.65;
    }

    .t-h4 {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.3;
    }

    .t-h3 {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.3;
    }

    .t-h2 {
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -.02em;
    }

    .t-h1 {
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 900;
      line-height: 1.06;
      letter-spacing: -.03em;
    }

    /* ─── LAYOUT UTILITIES ─────────────────────────────────── */
    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .sec {
      padding: clamp(40px, 9vw, 80px) 0;
    }

    .sec--sm {
      padding: clamp(32px, 6vw, 40px) 0;
    }

    .sec--xs {
      padding: clamp(20px, 4vw, 30px) 0;
    }

    .sec--white {
      background: #fff;
    }

    .sec--gray {
      background: var(--gray-bg);
    }

    .sec--navy {
      background: var(--navy-dark);
    }

    .sec--deep {
      background: var(--navy-deep);
    }

    .sec-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      color: var(--navy-deep);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .dark-bg.sec-label > a{
      color: var(--cyan);
    }

    .sec-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--cyan);
      border-radius: 2px;
    }

    .sec-title {
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 800;
      letter-spacing: -.025em;
      line-height: 1.15;
      color: var(--navy-deep);
    }

    .sec-sub {
      font-size: 16px;
      color: var(--text-soft);
      max-width: 640px;
      line-height: 1.7;
      margin-top: 12px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap);
    }

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

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

    .flex {
      display: flex;
    }

    .flex-col {
      display: flex;
      flex-direction: column;
    }

    .ai-center {
      align-items: center;
    }

    .jc-between {
      justify-content: space-between;
    }

    .gap-8 {
      gap: 8px;
    }

    .gap-12 {
      gap: 12px;
    }

    .gap-16 {
      gap: 16px;
    }

    .gap-24 {
      gap: 24px;
    }

    .mt-8 {
      margin-top: 8px;
    }

    .mt-12 {
      margin-top: 12px;
    }

    .mt-16 {
      margin-top: 16px;
    }

    .mt-24 {
      margin-top: 24px;
    }

    .mt-32 {
      margin-top: 32px;
    }

    .mb-8 {
      margin-bottom: 8px;
    }

    .mb-16 {
      margin-bottom: 16px;
    }

    /* ─── BUTTONS ──────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: var(--r-sm);
      font-weight: 600;
      transition: var(--t);
      white-space: nowrap;
      cursor: pointer;
    }
    .btn-primary {
      background: #0ea5e9 !important;
      color: #001344 !important;
      border-color: #0ea5e9 !important;
      box-shadow: 0 4px 18px rgba(14, 165, 233, .35) !important;
      padding: 14px 28px;
    font-size: 15px;
    }

    .btn-primary:hover {
      background: #38bdf8 !important;
      border-color: #38bdf8 !important;
      box-shadow: 0 6px 24px rgba(56, 189, 248, .4) !important;
      transform: translateY(-1px);
    }
    .btn-secondary {
      background: transparent;
      color: #fff;
      padding: 13px 26px;
      font-size: 15px;
      border: 1.5px solid rgba(255, 255, 255, .3);
    }

    .btn-secondary:hover {
      border-color: rgba(255, 255, 255, .7);
      background: rgba(255, 255, 255, .06);
    }

    .btn-ghost {
      color: var(--navy);
      padding: 11px 22px;
      font-size: 14px;
      border: 1.5px solid var(--gray-line2);
    }

    .btn-ghost:hover {
      border-color: var(--navy);
      background: var(--gray-bg);
    }

    .btn-cyan {
      background: var(--cyan);
      color: var(--navy-deep);
      padding: 13px 26px;
      font-size: 15px;
      font-weight: 700;
    }

    .btn-cyan:hover {
      background: #7DD3FC;
      transform: translateY(-1px);
    }

    .btn-sm {
      padding: 9px 18px;
      font-size: 13px;
    }

    .btn-lg {
      padding: 17px 36px;
      font-size: 16px;
    }

    .arrow {
      font-size: 16px;
      transition: transform var(--t);
    }

    .btn:hover .arrow {
      transform: translateX(3px);
    }

    /* ─── DIVIDER ──────────────────────────────────────────── */
    .divider {
      height: 1px;
      background: var(--gray-line);
      border: none;
      margin: 0;
    }

    /* ─── HERO ─────────────────────────────────────────────── */
    .hero {
      position: relative;
      overflow: hidden;
      background: var(--navy-deep);
      min-height: 720px;
      display: flex;
      flex-direction: column;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 60% center;
      opacity: .88;
      mix-blend-mode: luminosity;
    }

    /* Deep left-to-right gradient — more coverage for text legibility */
    .hero__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, var(--navy-deep) 40%, rgba(8, 17, 31, .78) 65%, rgba(8, 17, 31, .28) 100%);
    }

    /* Fine noise texture overlay */
    .hero__noise {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: .04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    /* Subtle grid lines */
    .hero__grid {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-size: 56px 56px;
    }

    /* Radial glow bottom-right */
    .hero__glow {
      position: absolute;
      bottom: -120px;
      right: -60px;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(56, 189, 248, .06) 0%, transparent 65%);
      z-index: 1;
      pointer-events: none;
    }

    .hero__inner {
      position: relative;
      z-index: 2;
      display: grid;
      /* Fluid: 2 cols when both fit ≥400px, otherwise single column */
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
      gap: clamp(32px, 5vw, 72px);
      align-items: center;
      max-width: var(--max);
      margin: 0 auto;
      padding: clamp(40px, 10vw, 50px) clamp(16px, 4vw, 30px) clamp(30px, 8vw, 44px);
      min-height: clamp(480px, 70vh, 720px);
      width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }

    /* Left column */
    .hero__left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 28px;
      padding: 6px 16px 6px 12px;
      border-radius: var(--r-pill);
      background: rgba(56, 189, 248, .08);
      border: 1px solid rgba(56, 189, 248, .18);
    }

    .hero__eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      animation: pulse-dot 2.4s infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .4;
        transform: scale(.75);
      }
    }

    .hero__eyebrow-text {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cyan);
    }

    /* Main heading — luxury typographic treatment */
    .hero__h1 {
      font-size: clamp(44px, 5.8vw, 72px);
      font-weight: 900;
      line-height: 1.02;
      letter-spacing: -.035em;
      color: #fff;
      margin-bottom: 0;
    }

    .hero__h1-line1 {
      display: block;
      font-variant-numeric: lining-nums;
    }

    .hero__h1-line2 {
      display: block;
      color: var(--cyan);
    }

    .hero__h1-line3 {
      display: block;
    }

    .hero__h1-period {
      color: var(--orange);
    }

    /* Refined separator */
    .hero__sep {
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), rgba(249, 115, 22, .2));
      border-radius: 3px;
      margin: 28px 0;
    }

    .hero__sub {
      font-size: clamp(16px, 1.4vw, 18.5px);
      color: rgba(255, 255, 255);
      line-height: 1.72;
      max-width: 500px;
      margin-bottom: 40px;
      font-weight: 400;
      font-feature-settings: 'ss01' on;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* Trust chips below actions */
    .hero__trust {
      margin-top: 44px;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .hero__trust-chip {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: rgba(255, 255, 255, .45);
      letter-spacing: .01em;
    }

    .hero__trust-chip svg {
      width: 13px;
      height: 13px;
      color: var(--cyan);
      flex-shrink: 0;
    }

    /* Right column — stats card */
    .hero__right {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      row-gap: 20px;
    }

    .hero__stats-card {
      background: rgba(8, 14, 40, .82);
      backdrop-filter: blur(20px) saturate(1.4);
      -webkit-backdrop-filter: blur(20px) saturate(1.4);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: var(--r-xl);
      padding: 32px;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 40px 80px rgba(0, 0, 0, .45), 0 0 0 1px rgba(56, 189, 248, .06);
    }

    .hero__stats-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .hero__stats-label {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255);
    }

    .hero__stats-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--cyan);
      background: rgba(56, 189, 248, .1);
      border: 1px solid rgba(56, 189, 248, .2);
      padding: 3px 9px;
      border-radius: var(--r-pill);
    }

    .hero__stat-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 15px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .hero__stat-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .hero__stat-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--r-md);
      background: rgba(56, 189, 248, .08);
      border: 1px solid rgba(56, 189, 248, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero__stat-icon svg {
      width: 17px;
      height: 17px;
      color: var(--cyan);
    }

    .hero__stat-info {
      flex: 1;
    }

    .hero__stat-num {
      font-size: 24px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -.025em;
      line-height: 1;
    }

    .hero__stat-num span {
      color: var(--cyan);
    }

    .hero__stat-label {
      font-size: 11px;
      color: rgba(255, 255, 255);
      margin-top: 3px;
      letter-spacing: .02em;
    }

    .hero__stat-bar {
      width: 100%;
      height: 2px;
      background: rgba(255, 255, 255, .06);
      border-radius: 2px;
      margin-top: 8px;
      overflow: hidden;
    }

    .hero__stat-fill {
      height: 100%;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--cyan), rgba(56, 189, 248, .25));
      transition: width .9s ease;
    }

    /* Bottom mini-bar inside hero */
    .hero__mini-bar {
      position: relative;
      z-index: 2;
      background: rgba(255, 255, 255, .04);
      border-top: 1px solid rgba(255, 255, 255, .06);
      backdrop-filter: blur(8px);
    }

    .hero__mini-bar-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
      display: flex;
      align-items: center;
      gap: 0;
    }

    .hero__mini-stat {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 5px;
      border-right: 1px solid rgba(255, 255, 255, .06);
    }

    .hero__mini-stat:last-child {
      border-right: none;
    }

    .hero__mini-stat-num {
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.01em;
    }

    .hero__mini-stat-num span {
      color: var(--cyan);
    }

    .hero__mini-stat-label {
      font-size: 11px;
      color: rgba(255, 255, 255, .38);
      letter-spacing: .03em;
      text-transform: uppercase;
      font-weight: 600;
    }

    /* ─── AUTHORITY BAR ────────────────────────────────────── */
    .authority {
      background: var(--navy);
      padding: 0;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .authority__inner {
      display: flex;
      align-items: stretch;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .authority__item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px 16px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, .08);
      position: relative;
      transition: background var(--t);
    }

    .authority__item:last-child {
      border-right: none;
    }

    .authority__item:hover {
      background: rgba(255, 255, 255, .04);
    }

    .authority__num {
      font-size: clamp(24px, 2.6vw, 32px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -.025em;
      line-height: 1;
    }

    .authority__num span {
      color: var(--cyan);
    }

    .authority__label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .38);
      margin-top: 6px;
    }

    /* ─── WHAT INSPENET IS ─────────────────────────────────── */
    .what {
      background: var(--navy-deep);
      padding: clamp(50px, 10vw, 60px) 0;
    }

    .what__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .what__header {
      max-width: 720px;
      margin: 0 auto 72px;
      text-align: center;
    }

    .what__header .sec-label {
      justify-content: center;
    }

    .what__header .sec-label::before {
      display: none;
    }

    .what__header .sec-label::after {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--cyan);
      border-radius: 2px;
    }

    .what__tagline {
      font-size: clamp(32px, 4vw, 50px);
      font-weight: 900;
      letter-spacing: -.03em;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 20px;
    }

    .what__tagline em {
      font-style: normal;
      color: var(--cyan);
    }

    .what__desc {
      font-size: 17.5px;
      color: rgba(255, 255, 255);
      line-height: 1.75;
      max-width: 660px;
      margin: 0 auto;
    }

    .what__cols {
      display: grid;
      /* 3 cols on wide, 1 col on narrow — auto-collapses */
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
      gap: 2px;
      background: rgba(255, 255, 255, .04);
      border-radius: var(--r-lg);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .06);
    }

    .what__col {
      background: rgba(13, 21, 53, .55);
      padding: 40px 36px;
      transition: background var(--t);
    }

    .what__col:hover {
      background: rgba(24, 34, 63, .6);
    }

    .what__col-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--r-md);
      background: rgba(56, 189, 248, .07);
      border: 1px solid rgba(56, 189, 248, .14);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .what__col-icon svg {
      width: 22px;
      height: 22px;
      color: var(--cyan);
    }

    .what__col-title {
      font-size: 17px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.25;
      letter-spacing: -.01em;
    }

    .what__col-text {
      font-size: 14px;
      color: rgba(255, 255, 255);
      line-height: 1.7;
    }

    .what__cta-row {
      text-align: center;
      margin-top: 52px;
    }

    .what__cta-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 14px;
      font-weight: 600;
      color: var(--cyan);
      transition: var(--t);
      border-bottom: 1px solid rgba(56, 189, 248, .3);
      padding-bottom: 2px;
    }

    .what__cta-link:hover {
      gap: 13px;
      border-bottom-color: var(--cyan);
    }

    .what__cta-link svg {
      width: 15px;
      height: 15px;
    }

    /* ─── ECOSYSTEM ENGINES ────────────────────────────────── */
    .engines {
      background: #fff;
      padding: clamp(40px, 8vw, 50px) 0;
    }

    .engines__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .engines__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
    }

    .engines__view-all {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      padding-bottom: 2px;
      border-bottom: 1.5px solid var(--navy);
      transition: var(--t);
    }

    .engines__view-all:hover {
      color: var(--orange);
      border-bottom-color: var(--orange);
    }

    .engines__grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: clamp(8px, 1.5vw, 14px);
    }

    .engine-card {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
      transition: transform var(--t), box-shadow var(--t);
    }

    .engine-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--s-lg);
    }

    .engine-card__bg {
      position: absolute;
      inset: 0;
    }

    .engine-card__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }

    .engine-card:hover .engine-card__bg img {
      transform: scale(1.07);
    }

    .engine-card__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 17, 31, .94) 0%, rgba(8, 17, 31, .55) 50%, rgba(8, 17, 31, .12) 100%);
    }

    .engine-card__body {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 18px 14px;
    }

    .engine-card__tag {
      display: inline-block;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 7px;
    }

    .engine-card__title {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 8px;
    }

    .engine-card__desc {
      font-size: 11px;
      color: rgba(255, 255, 255, .9);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .engine-card__arrow {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--t);
    }

    .engine-card:hover .engine-card__arrow {
      opacity: 1;
    }

    .engine-card__arrow svg {
      width: 12px;
      height: 12px;
      color: #fff;
    }

    /* ─── LIVE INDUSTRY FEED ───────────────────────────────── */
    .feed {
      background: var(--gray-bg);
      padding: clamp(40px, 8vw, 50px) 0;
    }

    .feed__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .feed__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 36px;
      gap: 24px;
      flex-wrap: wrap;
    }

    .feed__tabs {
      display: flex;
      align-items: center;
      gap: 4px;
      background: #fff;
      border: 1px solid var(--gray-line);
      border-radius: var(--r-md);
      padding: 4px;
    }

    .feed__tab {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      padding: 8px 16px;
      border-radius: var(--r-sm);
      transition: var(--t);
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
    }

    .feed__tab.active {
      background: var(--navy-deep);
      color: #fff;
    }

    .feed__tab:hover:not(.active) {
      color: var(--text);
      background: var(--gray-bg);
    }

    .feed__panel {
      display: none;
      animation: fadeIn var(--t) ease;
    }

    .feed__panel.is-active {
      display: block;
    }

    .feed__body {
      display: grid;
      /* Fluid: main + sidebar. Stacks below ~600px */
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: clamp(16px, 2.5vw, 24px);
    }

    .feed__main {
      border-radius: var(--r-xl);
      overflow: hidden;
      background: #fff;
      box-shadow: var(--s-sm);
    }

    .feed__main-img {
      aspect-ratio: 16/9;
      overflow: hidden;
      position: relative;
    }

    .feed__main-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }

    .feed__main:hover .feed__main-img img {
      transform: scale(1.04);
    }

    .feed__main-body {
      padding: 30px 34px;
    }

    .feed__main-cat {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 12px;
    }

    .feed__main-title {
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 800;
      letter-spacing: -.02em;
      line-height: 1.2;
      color: var(--text);
      margin-bottom: 14px;
    }

    .feed__main-sub {
      font-size: 14.5px;
      color: var(--text-soft);
      line-height: 1.7;
    }

    .feed__main-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 22px;
    }

    .feed__main-author {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feed__main-author-av {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .feed__main-author-name {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text);
    }

    .feed__main-date {
      font-size: 12px;
      color: var(--text);
    }

    .feed__sidebar {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .feed-card {
      background: #fff;
      border-radius: var(--r-lg);
      overflow: hidden;
      display: flex;
      gap: 0;
      box-shadow: var(--s-xs);
      border: 1px solid var(--gray-line);
      transition: var(--t);
    }

    .feed-card:hover {
      box-shadow: var(--s-md);
      border-color: var(--gray-mid);
      transform: translateX(2px);
    }

    .feed-card__img {
      width: 88px;
      flex-shrink: 0;
      overflow: hidden;
    }

    .feed-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .feed-card__body {
      padding: 14px 16px;
      flex: 1;
    }

    .feed-card__cat {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 5px;
    }

    .feed-card__title {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .feed-card__meta {
      font-size: 11.5px;
      color: var(--text);
      margin-top: 6px;
    }

    .feed__footer {
      text-align: center;
      margin-top: 36px;
    }

    /* ─── TECHNICAL ARTICLES ───────────────────────────────── */
    .articles {
      background: #fff;
      padding: clamp(40px, 8vw, 50px) 0;
    }

    .articles__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .articles__top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
    }

    .articles__body {
      display: grid;
      /* Fluid: hero article + secondary stack. Stacks below ~560px */
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: clamp(16px, 2.5vw, 28px);
    }

    .article-hero {
      border-radius: var(--r-xl);
      overflow: hidden;
      background: var(--navy-deep);
      position: relative;
    }

    .article-hero__img {
      aspect-ratio: 4/3;
      overflow: hidden;
    }

    .article-hero__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }

    .article-hero:hover .article-hero__img img {
      transform: scale(1.04);
    }

    .article-hero__badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--orange);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: var(--r-pill);
    }

    .article-hero__body {
      padding: 28px 32px;
    }

    .article-hero__tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 12px;
    }

    .article-hero__title {
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 800;
      letter-spacing: -.02em;
      color: #fff;
      line-height: 1.18;
      margin-bottom: 14px;
    }

    .article-hero__sub {
      font-size: 14px;
      color: rgba(255, 255, 255);
      line-height: 1.7;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-hero__byline {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .article-hero__av {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(56, 189, 248, .15);
      border: 2px solid rgba(56, 189, 248, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--cyan);
    }

    .article-hero__author {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255);
    }

    .article-hero__role {
      font-size: 12px;
      color: rgba(255, 255, 255, .38);
    }

    .article-hero__read {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 22px;
      font-size: 13px;
      font-weight: 700;
      color: var(--cyan);
      border: 1px solid rgba(56, 189, 248, .3);
      padding: 10px 18px;
      border-radius: var(--r-sm);
      transition: var(--t);
    }

    .article-hero__read:hover {
      background: rgba(56, 189, 248, .08);
      gap: 10px;
    }

    .article-hero__read svg {
      width: 13px;
      height: 13px;
    }

    .articles__secondary {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .article-card {
      background: #fff;
      border-radius: var(--r-lg);
      overflow: hidden;
      border: none;
      box-shadow: var(--s-sm);
      transition: var(--t);
      display: flex;
      flex-direction: column;
    }

    .article-card:hover {
      box-shadow: var(--s-md);
      transform: translateY(-3px);
    }

    .article-card__img {
      aspect-ratio: 16/8;
      overflow: hidden;
      flex-shrink: 0;
    }

    .article-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .article-card:hover .article-card__img img {
      transform: scale(1.04);
    }

    .article-card__body {
      padding: 18px 20px;
      flex: 1;
    }

    .article-card__tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 8px;
    }

    .article-card__title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-card__meta {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 10px;
      font-size: 12px;
      color: var(--text);
    }

    .article-card__meta span {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--gray-line2);
      display: inline-block;
    }

    .articles__bottom {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid var(--gray-line);
    }

    .articles__count {
      font-size: 14px;
      color: var(--text-soft);
    }

    .articles__count strong {
      color: var(--text);
      font-weight: 800;
    }

    /* ─── PILLARS OF COVERAGE ──────────────────────────────── */
    .pillars {
      background: var(--gray-bg);
      padding: clamp(40px, 8vw, 50px) 0;
    }

    .pillars__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .pillars__header {
      margin-bottom: 48px;
    }

    .pillars__grid {
      display: grid;
      /* 4 cols → 2 → 1 as viewport narrows */
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
      gap: clamp(12px, 1.8vw, 16px);
    }

    .pillar-card {
      border-radius: var(--r-xl);
      overflow: hidden;
      position: relative;
      min-height: 370px;
      cursor: pointer;
      transition: transform var(--t), box-shadow var(--t);
    }

    .pillar-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--s-lg);
    }

    .pillar-card__bg {
      position: absolute;
      inset: 0;
    }

    .pillar-card__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s ease;
    }

    .pillar-card:hover .pillar-card__bg img {
      transform: scale(1.07);
    }

    .pillar-card__overlay {
      position: absolute;
      inset: 0;
    }

    .pillar-card__body {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
    }

    .pillar-card__sector {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 6px;
    }

    .pillar-card__title {
      font-size: 23px;
      font-weight: 800;
      color: #fff;
      line-height: 1.12;
      margin-bottom: 14px;
      letter-spacing: -.015em;
    }

    .pillar-card__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }

    .pillar-chip {
      font-size: 10px;
      font-weight: 600;
      color: rgba(255, 255, 255, .7);
      background: rgba(255, 255, 255, .09);
      border: 1px solid rgba(255, 255, 255, .14);
      padding: 3px 9px;
      border-radius: var(--r-pill);
    }

    .pillar-card__formats {
      display: flex;
      gap: 5px;
      margin-top: 14px;
      flex-wrap: wrap;
    }

    .pillar-format {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .06em;
      color: rgba(255, 255, 255, .42);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .pillar-format::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--cyan);
      display: block;
    }

    /* ─── SPECIALTY HIGHLIGHTS — Premium semantic layer ─────── */
    .specialty {
      background: var(--navy-dark);
      padding: clamp(30px, 7vw, 40px) 0;
    }

    .specialty__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .specialty__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 36px;
      gap: 24px;
    }

    .specialty__title {
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -.02em;
    }

    .specialty__title span {
      color: var(--cyan);
    }

    .specialty__sub {
      font-size: 13px;
      color: rgba(255, 255, 255, .35);
      margin-top: 5px;
    }

    .specialty__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .specialty-card {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: var(--r-lg);
      padding: 24px 20px;
      cursor: pointer;
      transition: background var(--t), border-color var(--t), transform var(--t);
    }

    .specialty-card:hover {
      background: rgba(56, 189, 248, .07);
      border-color: rgba(56, 189, 248, .2);
      transform: translateY(-2px);
    }

    .specialty-card__icon {
      width: 36px;
      height: 36px;
      border-radius: var(--r-sm);
      background: rgba(56, 189, 248, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .specialty-card__icon svg {
      width: 16px;
      height: 16px;
      color: var(--cyan);
    }

    .specialty-card__name {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      letter-spacing: -.01em;
    }

    .specialty-card__desc {
      font-size: 12px;
      color: rgba(255, 255, 255, .35);
      line-height: 1.6;
    }

    /* ── Image-card variant for curated specialty highlights ── */
    .specialty__grid--img {
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .specialty-card--img {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      height: 220px;
      border-radius: var(--r-lg);
      overflow: hidden;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, .08);
      transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    }

    .specialty-card--img:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
      border-color: rgba(56, 189, 248, .35);
    }

    .specialty-card--img__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform .5s ease;
    }

    .specialty-card--img:hover .specialty-card--img__bg {
      transform: scale(1.06);
    }

    .specialty-card--img__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 10, 30, .90) 0%, rgba(0, 10, 30, .35) 60%, transparent 100%);
      z-index: 1;
    }

    .specialty-card--img__content {
      position: relative;
      z-index: 2;
      padding: 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .specialty-card--img__badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--cyan);
      background: rgba(56, 189, 248, .12);
      border: 1px solid rgba(56, 189, 248, .25);
      padding: 3px 9px;
      border-radius: var(--r-pill);
      align-self: flex-start;
    }

    .specialty-card--img__name {
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      letter-spacing: -.02em;
      text-transform: uppercase;
      margin: 0;
    }

    .specialty-card--img__cta {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255, 255, 255, .55);
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: color var(--t);
    }

    .specialty-card--img:hover .specialty-card--img__cta {
      color: var(--cyan);
    }

    /* Second row of specialty chips — smaller disciplines */
    .specialty__chips-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }

    .specialty__chip {
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, .8);
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      padding: 6px 14px;
      border-radius: var(--r-pill);
      transition: var(--t);
      cursor: pointer;
      letter-spacing: .01em;
    }

    .specialty__chip:hover {
      background: rgba(56, 189, 248, .1);
      border-color: rgba(56, 189, 248, .25);
      color: var(--cyan);
    }

    /* ─── INDUSTRY VOICES ──────────────────────────────────── */
    .voices {
      background: #fff;
      padding: clamp(40px, 8vw, 50px) 0;
    }

    .voices__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .voices__top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
    }

    .voices__body {
      display: grid;
      /* Fluid: video feature + clip list. Stacks below ~580px */
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: clamp(16px, 2.5vw, 28px);
    }

    .voice-feature {
      border-radius: var(--r-xl);
      overflow: hidden;
      background: var(--navy-deep);
      position: relative;
    }

    .voice-feature__video {
      aspect-ratio: 16/9;
      position: relative;
      overflow: hidden;
    }

    .voice-feature__video img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .voice-feature__play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .voice-feature__play-btn {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: rgba(249, 115, 22, .9);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--t);
      box-shadow: 0 8px 32px rgba(249, 115, 22, .45);
    }

    .voice-feature__play-btn:hover {
      background: var(--orange-h);
      transform: scale(1.08);
    }

    .voice-feature__play-btn svg {
      width: 26px;
      height: 26px;
      color: #fff;
      margin-left: 3px;
    }

    .voice-feature__body {
      padding: 26px 30px;
    }

    .voice-feature__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(249, 115, 22, .1);
      border: 1px solid rgba(249, 115, 22, .2);
      border-radius: var(--r-pill);
      padding: 4px 12px;
      margin-bottom: 12px;
    }

    .voice-feature__badge span {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--orange);
    }

    .voice-feature__title {
      font-size: clamp(17px, 2vw, 22px);
      font-weight: 800;
      color: #fff;
      line-height: 1.22;
      margin-bottom: 12px;
      letter-spacing: -.015em;
    }

    .voice-feature__guest {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .voice-feature__av {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(249, 115, 22, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--orange);
    }

    .voice-feature__guest-name {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, .8);
    }

    .voice-feature__guest-role {
      font-size: 12px;
      color: rgba(255, 255, 255, .38);
    }

    .voices__clips {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .voice-clip {
      display: flex;
      gap: 12px;
      background: var(--gray-bg);
      border-radius: var(--r-lg);
      overflow: hidden;
      border: 1px solid var(--gray-line);
      transition: var(--t);
    }

    .voice-clip:hover {
      border-color: var(--navy);
      box-shadow: var(--s-sm);
    }

    .voice-clip__thumb {
      width: 100px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }

    .voice-clip__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .voice-clip__play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(8, 17, 31, .4);
    }

    .voice-clip__play svg {
      width: 20px;
      height: 20px;
      color: #fff;
    }

    .voice-clip__body {
      padding: 14px 16px;
      flex: 1;
    }

    .voice-clip__tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 5px;
    }

    .voice-clip__title {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
    }

    .voice-clip__meta {
      font-size: 11.5px;
      color: var(--text);
      margin-top: 6px;
    }

    /* ─── EVENTS CALENDAR ──────────────────────────────────── */
    .events {
      background: var(--gray-bg);
      padding: clamp(40px, 8vw, 50px) 0;
    }

    .events__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .events__top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
    }

    .events__body {
      display: grid;
      /* Fluid: stacks below ~560px */
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: clamp(14px, 2vw, 24px);
    }

    .event-feature {
      border-radius: var(--r-xl);
      overflow: hidden;
      background: var(--navy-dark);
      position: relative;
    }

    .event-feature__img {
      aspect-ratio: 16/9;
      overflow: hidden;
      position: relative;
    }

    .event-feature__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .68;
    }

    .event-feature__img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 17, 31, .92), transparent 55%);
    }

    .event-feature__badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--orange);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: var(--r-pill);
      z-index: 2;
    }

    .event-feature__body {
      padding: 26px 30px;
    }

    .event-feature__date {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .event-feature__date-box {
      background: var(--cyan);
      color: var(--navy-deep);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: var(--r-sm);
    }

    .event-feature__location {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .42);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .event-feature__location svg {
      width: 12px;
      height: 12px;
    }

    .event-feature__title {
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 800;
      color: #fff;
      line-height: 1.18;
      margin-bottom: 12px;
      letter-spacing: -.015em;
    }

    .event-feature__desc {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .48);
      line-height: 1.65;
    }

    .event-feature__cta {
      margin-top: 22px;
    }

    .events__list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .event-row {
      background: #fff;
      border-radius: var(--r-lg);
      border: 1px solid var(--gray-line);
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 18px;
      transition: var(--t);
    }

    .event-row:hover {
      border-color: var(--navy);
      box-shadow: var(--s-sm);
    }

    .event-row__date {
      flex-shrink: 0;
      width: 52px;
      text-align: center;
      background: var(--navy-deep);
      border-radius: var(--r-md);
      padding: 10px 8px;
    }

    .event-row__day {
      font-size: 22px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }

    .event-row__month {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-top: 2px;
    }

    .event-row__info {
      flex: 1;
    }

    .event-row__title {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
    }

    .event-row__meta {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 5px;
      font-size: 12px;
      color: var(--text);
      flex-wrap: wrap;
    }

    .event-row__meta-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--gray-line2);
    }

    .event-row__tag {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: var(--r-pill);
      flex-shrink: 0;
    }

    .event-row__tag--energy {
      background: rgba(249, 115, 22, .1);
      color: var(--orange);
    }

    .event-row__tag--integrity {
      background: var(--cyan-dim);
      color: #0284C7;
    }

    .event-row__tag--industry {
      background: rgba(30, 35, 98, .08);
      color: var(--navy);
    }

    .event-row__tag--management {
      background: rgba(16, 185, 129, .08);
      color: #059669;
    }

    /* ─── CORPORATE VALUE ──────────────────────────────────── */
    .corp {
      background: var(--navy-deep);
      padding: clamp(40px, 8vw, 50px) 0;
      position: relative;
      overflow: hidden;
    }

    .corp::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 18% 55%, rgba(56, 189, 248, .05) 0%, transparent 55%), radial-gradient(circle at 82% 28%, rgba(249, 115, 22, .04) 0%, transparent 50%);
    }

    .corp::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
      background-size: 64px 64px;
    }

    .corp__inner {
      position: relative;
      z-index: 1;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(16px, 4vw, 60px);
      display: grid;
      /* Text + visual side-by-side. Large gap scales down on mobile */
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
      gap: clamp(32px, 5vw, 80px);
      align-items: center;
      box-sizing: border-box;
    }

    .corp__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(249, 115, 22, .08);
      border: 1px solid rgba(249, 115, 22, .2);
      border-radius: var(--r-pill);
      padding: 5px 14px;
      margin-bottom: 26px;
    }

    .corp__eyebrow span {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--orange);
    }

    .corp__title {
      font-size: clamp(30px, 3.5vw, 46px);
      font-weight: 900;
      letter-spacing: -.03em;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 20px;
    }

    .corp__title em {
      font-style: normal;
      color: var(--cyan);
    }

    .corp__sub {
      font-size: 16px;
      color: rgba(255, 255, 255);
      line-height: 1.72;
      margin-bottom: 36px;
    }

    .corp__bullets {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 40px;
    }

    .corp__bullet {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .corp__bullet-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--r-sm);
      background: rgba(56, 189, 248, .07);
      border: 1px solid rgba(56, 189, 248, .14);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .corp__bullet-icon svg {
      width: 16px;
      height: 16px;
      color: var(--cyan);
    }

    .corp__bullet-text h3 {
      font-size: 14.5px;
      font-weight: 700;
      color: #fff;
    }

    .corp__bullet-text p {
      font-size: 13px;
      color: rgba(255, 255, 255);
      line-height: 1.6;
      margin-top: 2px;
    }

    .corp__actions {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 14px;
      flex-wrap: wrap;
    }

    .corp__stats {
      background: rgba(255, 255, 255, .035);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: var(--r-xl);
      padding: 36px;
      backdrop-filter: blur(10px);
    }

    .corp__stats-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 28px;
    }

    .corp__stat-item {
      margin-bottom: 22px;
    }

    .corp__stat-item:last-child {
      margin-bottom: 0;
    }

    .corp__stat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 9px;
    }

    .corp__stat-name {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, .65);
    }

    .corp__stat-pct {
      font-size: 13px;
      font-weight: 800;
      color: #fff;
    }

    .corp__stat-bar {
      height: 6px;
      background: rgba(255, 255, 255, .07);
      border-radius: 6px;
      overflow: hidden;
    }

    .corp__stat-fill {
      height: 100%;
      border-radius: 6px;
      transition: width 1.1s ease;
    }

    .corp__stat-fill--energy {
      background: linear-gradient(90deg, var(--orange), #FB923C);
    }

    .corp__stat-fill--mi {
      background: linear-gradient(90deg, var(--cyan), #7DD3FC);
    }

    .corp__stat-fill--industry {
      background: linear-gradient(90deg, #818CF8, #A5B4FC);
    }

    .corp__stat-fill--management {
      background: linear-gradient(90deg, #34D399, #6EE7B7);
    }

    .corp__metrics {
      display: grid;
      /* 2x2 grid of metric numbers — stays 2 cols since items are compact */
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(8px, 1.5vw, 12px);
      margin-top: clamp(16px, 3vw, 28px);
      padding-top: clamp(16px, 3vw, 28px);
      border-top: 1px solid rgba(255, 255, 255, .06);
    }

    .corp__metric {
      text-align: center;
      padding: 18px;
    }

    .corp__metric-num {
      font-size: clamp(20px, 2vw, 28px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -.025em;
    }

    .corp__metric-num span {
      color: var(--cyan);
    }

    .corp__metric-label {
      font-size: 11px;
      color: rgba(255, 255, 255, .9);
      margin-top: 5px;
      text-transform: uppercase;
      letter-spacing: .07em;
      font-weight: 600;
    }

    /* ─── BUSINESS DIRECTORY PREVIEW ───────────────────────── */
    .directory {
      background: #fff;
      padding: clamp(40px, 8vw, 50px) 0;
    }

    .directory__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .directory__head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
      flex-wrap: wrap;
    }



    .directory__count {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 6px;
    }

    .directory__count-num {
      font-size: 12px;
      font-weight: 700;
      color: var(--orange);
      background: var(--orange-dim);
      border: 1px solid rgba(249, 115, 22, .15);
      padding: 3px 10px;
      border-radius: var(--r-pill);
    }

    .directory__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(12px, 1.8vw, 16px);
    }

    .dir-card {
      border-radius: var(--r-lg);
      border: 1px solid var(--gray-line);
      background: #fff;
      box-shadow: var(--s-xs);
      padding: 24px;
      transition: var(--t);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .dir-card:hover {
      border-color: var(--navy);
      box-shadow: var(--s-md);
      transform: translateY(-2px);
    }

    .dir-card__logo {
      width: 72px;
      height: 72px;
      border-radius: var(--r-md);
      background: var(--gray-bg);
      border: 1px solid var(--gray-line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 800;
      color: var(--navy);
      flex-shrink: 0;
    }

    .dir-card__logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 6px;
    }

    .dir-card__name {
      font-size: 16px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -.01em;
    }

    .dir-card__sector {
      font-size: 12px;
      color: var(--text);
      margin-top: 2px;
    }

    .dir-card__tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: var(--r-pill);
      background: var(--cyan-dim);
      color: #0284C7;
      margin-top: 6px;
    }

    .dir-card__link {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: auto;
    }

    .dir-card__link svg {
      width: 12px;
      height: 12px;
    }

    .directory__cta {
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 36px;
      background: var(--gray-bg);
      border-radius: var(--r-xl);
      border: 1px solid var(--gray-line);
    }

    .directory__cta-text h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -.01em;
    }

    .directory__cta-text p {
      font-size: 14px;
      color: var(--text-soft);
      margin-top: 4px;
    }

    .directory__cta-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 1;
      flex-wrap: wrap;
    }

    /* ─── CLOSER: BRIEF + NEWSLETTER ───────────────────────── */
    .closer {
      background: var(--gray-bg);
      padding: clamp(40px, 8vw, 50px) 0;
    }

    .closer__inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .closer__grid {
      display: grid;
      /* Two panels side by side — stacks below ~540px */
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: clamp(14px, 2vw, 24px);
    }

    /* Brief panel */
    .brief-panel {
      border-radius: var(--r-xl);
      overflow: hidden;
      background: var(--navy-dark);
      border: 1px solid rgba(255, 255, 255, .07);
      display: flex;
      flex-direction: column;
    }

    .brief-panel__cover {
      aspect-ratio: 16/8;
      overflow: hidden;
      position: relative;
    }

    .brief-panel__cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }

    .brief-panel:hover .brief-panel__cover img {
      transform: scale(1.04);
    }

    .brief-panel__cover-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 17, 31, .85), transparent 55%);
    }

    .brief-panel__issue {
      position: absolute;
      bottom: 16px;
      left: 18px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
    }

    .brief-panel__body {
      padding: 28px 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .brief-panel__tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 10px;
    }

    .brief-panel__title {
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 10px;
      letter-spacing: -.015em;
    }

    .brief-panel__sub {
      font-size: 14px;
      color: rgba(255, 255, 255);
      line-height: 1.65;
    }

    .brief-panel__features {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .brief-panel__feature {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      color: rgba(255, 255, 255);
    }

    .brief-panel__feature::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--cyan);
      flex-shrink: 0;
    }

    .brief-panel__cta {
      margin-top: 28px;
    }

    /* Newsletter panel */
    .nl-panel {
      border-radius: var(--r-xl);
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--gray-line);
      display: flex;
      flex-direction: column;
    }

    .nl-panel__head {
      background: linear-gradient(135deg, var(--navy-deep), var(--navy));
      padding: 36px 36px 28px;
      position: relative;
      overflow: hidden;
    }

    .nl-panel__head::before {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(56, 189, 248, .08), transparent 65%);
    }

    .nl-panel__icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(56, 189, 248, .1);
      border: 1.5px solid rgba(56, 189, 248, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .nl-panel__icon svg {
      width: 24px;
      height: 24px;
      color: var(--cyan);
    }

    .nl-panel__head-title {
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 900;
      color: #fff;
      letter-spacing: -.02em;
      margin-bottom: 8px;
    }

    .nl-panel__head-sub {
      font-size: 14px;
      color: rgba(255, 255, 255, .9);
      line-height: 1.65;
    }

    .nl-panel__head-stat {
      margin-top: 16px;
      font-size: 13px;
      color: rgba(255, 255, 255, .8);
    }

    .nl-panel__head-stat strong {
      color: var(--cyan);
      font-weight: 700;
    }

    .nl-panel__body {
      padding: 28px 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .nl-panel__perks {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px;
    }

    .nl-panel__perk {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .nl-panel__perk-icon {
      width: 32px;
      height: 32px;
      border-radius: var(--r-sm);
      background: var(--cyan-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .nl-panel__perk-icon svg {
      width: 14px;
      height: 14px;
      color: var(--cyan);
    }

    .nl-panel__perk-title {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text);
    }

    .nl-panel__perk-sub {
      font-size: 12.5px;
      color: var(--text);
      margin-top: 2px;
    }

    .nl-panel__form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .nl-panel__input-row {
      display: flex;
      gap: 8px;
    }

    .nl-panel__input {
      flex: 1;
      padding: 12px 16px;
      border-radius: var(--r-sm);
      border: 1.5px solid var(--gray-line);
      font-size: 14px;
      font-family: inherit;
      outline: none;
      transition: var(--t);
      color: var(--text);
    }

    .nl-panel__input:focus {
      border-color: var(--cyan);
    }

    .nl-panel__input::placeholder {
      color: var(--text-light);
    }

    .nl-panel__submit {
      background: var(--orange);
      color: #fff;
      padding: 12px 22px;
      border-radius: var(--r-sm);
      font-size: 14px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: var(--t);
      white-space: nowrap;
    }

    .nl-panel__submit:hover {
      background: var(--orange-h);
      box-shadow: 0 4px 16px rgba(249, 115, 22, .35);
    }

    .nl-panel__privacy {
      font-size: 11.5px;
      color: var(--text);
    }

    /* ─── FINAL CTA ─────────────────────────────────────────── */
    .final-cta {
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-dark) 100%);
      padding: clamp(40px, 8vw, 50px) 0;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, .06) 0%, transparent 60%);
      pointer-events: none;
    }

    .final-cta__inner {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    .final-cta__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cyan);
    }

    .final-cta__label::before,
    .final-cta__label::after {
      content: '';
      display: block;
      width: 20px;
      height: 1.5px;
      background: var(--cyan);
      border-radius: 2px;
    }

    .final-cta__title {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 900;
      letter-spacing: -.03em;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 18px;
    }

    .final-cta__title span {
      color: var(--cyan);
    }

    .final-cta__sub {
      font-size: 17px;
      color: rgba(255, 255, 255);
      line-height: 1.72;
      margin-bottom: 40px;
    }

    .final-cta__actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ─── FLOATING BUTTON ──────────────────────────────────── */
    .float-btn {
      position: fixed;
      bottom: 28px;
      left: 28px;
      /* Moved to left */
      right: auto;
      z-index: 800;
      background: var(--orange);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 14px 24px;
      border-radius: var(--r-pill);
      box-shadow: 0 8px 28px rgba(249, 115, 22, .45);
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .3s ease, transform .3s ease;
      pointer-events: none;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: .01em;
      /* Shrink to content size, never stretch full width */
      width: fit-content;
      max-width: calc(100vw - 56px);
    }

    .float-btn.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .float-btn:hover {
      background: var(--orange-h);
      box-shadow: 0 12px 36px rgba(249, 115, 22, .55);
      transform: translateY(-2px);
    }

    .float-btn svg {
      width: 15px;
      height: 15px;
    }

    /* ─── RESPONSIVE ────────────────────────────────────────── */
    /* ─── RESPONSIVE 1100px: hide hero right col, handle non-auto-fit elements ── */
    @media(max-width:1100px) {

      /* Hero right panel: hidden on tablet — grid already stacks automatically */
      .hero__right {
        display: none;
      }

      /* Specialty grids: not auto-fit, override here */
      .specialty__grid,
      .specialty__grid--img {
        grid-template-columns: 1fr 1fr;
      }

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

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

      .specialty-card--img {
        height: 180px;
      }

      .corp__title,
      .corp__sub,
      .corp__bullet-text p,
      .corp__bullet-text h3 {
        word-break: break-word;
        overflow-wrap: break-word;
      }

      /* Directory CTA — tablet: texto arriba, botones abajo contenidos */
      .directory__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
      }

      .directory__cta-actions {
        width: 100%;
        flex-wrap: wrap;
      }

      .directory__cta-actions a,
      .directory__cta-actions button {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
        justify-content: center;
      }

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

    /* ─── RESPONSIVE 720px: non-auto-fit elements only ── */
    @media(max-width:720px) {
      .topbar {
        display: none;
      }

      /* Specialty: still needs explicit override */
      .specialty__grid,
      .specialty__grid--img {
        grid-template-columns: 1fr 1fr;
      }

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

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

      .dir-card {
        align-items: center;
        text-align: center;
      }

      .dir-card__logo {
        width: 86px;
        height: 86px;
      }

      .dir-card__name {
        font-size: 18px;
      }

      .specialty-card--img {
        height: 160px;
      }

      .authority__inner {
        flex-wrap: wrap;
      }

      .authority__item {
        min-width: 45%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
      }

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

      /* Corp / Construya Autoridad — mobile: padding y overflow */
      .corp__inner {
        padding: 0 clamp(16px, 4vw, 24px);
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }

      .corp__title {
        font-size: clamp(26px, 7vw, 40px);
        word-break: break-word;
      }

      .corp__sub,
      .corp__bullet-text p,
      .corp__bullet-text h4 {
        word-break: break-word;
        overflow-wrap: break-word;
      }

      .directory__cta {
        flex-direction: column;
        gap: 20px;
      }
    }

    /* ── HIGH-DENSITY PHONES: ≤430 CSS-px wide ─────────────────────────
       Samsung FHD+ 1080×2340 (DPR≈3) → ~360px lógicos
       Google 2712×1220 (DPR≈3) → ~404px lógicos
       User WQHD+ 3200×1440 (DPR≈3.5) → ~411px lógicos
       ──────────────────────────────────────────────────────────────── */
    @media(max-width: 430px) {

      /* Hero: font size scale down */
      .hero__h1 {
        font-size: clamp(28px, 8.5vw, 44px) !important;
      }

      .hero__sub {
        font-size: 14px !important;
      }

      /* Hero buttons: stack vertically, full width */
      .hero__cta {
        flex-direction: column;
        gap: 10px;
      }

      .hero__cta a,
      .hero__cta button {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      /* Engines grid: 2 col instead of 4 */
      .engines__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      /* Specialty cards: 2 columns to match 720px */
      .specialty__grid,
      .specialty__grid--img {
        grid-template-columns: 1fr 1fr;
      }

      /* Section headings across all sections */
      .sec-title {
        font-size: clamp(19px, 5.5vw, 25px);
      }

      .sec-label {
        font-size: 10px;
      }

      /* Corp section */
      .corp__title {
        font-size: clamp(22px, 6.5vw, 32px);
        word-break: break-word;
      }

      /* Wrap padding: tighter on very narrow screens */
      .wrap {
        padding: 0 16px;
      }

      /* Footer col title spacing */
      .footer__col-title {
        margin-bottom: 10px !important;
      }
    }

    /* ─── MOBILE — GLOBAL OVERFLOW & MARGIN FIX ─────────────── */
    @media (max-width: 991px) {
      body {
        overflow-x: hidden;
      }

      /* Every .wrap container constrains itself */
      .wrap {
        padding-left: clamp(16px, 5vw, 40px);
        padding-right: clamp(16px, 5vw, 40px);
        box-sizing: border-box;
        max-width: 100%;
        overflow-x: hidden;
      }

      /* Sections that use their own inner max-width divs */
      .hero__inner,
      .hero__mini-bar-inner,
      .authority__inner,
      .feed__header,
      .articles__header,
      .voices__header,
      .events__header,
      .pillars__header,
      .specialty__header,
      .directory__header,
      .closer__header,
      .brief__header {
        padding-left: clamp(16px, 5vw, 40px) !important;
        padding-right: clamp(16px, 5vw, 40px) !important;
        box-sizing: border-box;
        max-width: 100%;
        overflow-x: hidden;
      }

      /* Prevent any horizontal overflow from inline styles */
      [style*="max-width"],
      [style*="padding"] {
        box-sizing: border-box;
      }

      /* Section titles */
      .sec-title,
      .hero__h1,
      .t-h1,
      .t-h2,
      .t-h3 {
        word-break: break-word;
        overflow-wrap: break-word;
      }
    }

    /* ─── MOBILE OPTIMIZATION ────────────────────────────────── */
    @media (max-width: 991px) {
      .hero__mini-bar-inner {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 20px !important;
        gap: 0 !important;
      }

      .hero__mini-stat {
        border-right: 1px solid rgba(255, 255, 255, .06) !important;
        border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
        padding: 15px !important;
        justify-content: center !important;
        text-align: center !important;
        flex: none !important;
      }

      .hero__mini-stat:nth-child(2n) {
        border-right: none !important;
      }

      .hero__mini-stat:nth-last-child(-n+2) {
        border-bottom: none !important;
      }

      .hero__mini-stat-num {
        font-size: 18px !important;
      }

      .hero__mini-stat-label {
        font-size: 11px !important;
        opacity: 0.7;
      }
    }

    /* ─── ACADEMIA BANNER — MOBILE STATS STACK ────────────────── */
    @media (max-width: 640px) {

      /* Outer flex: text + stats apilados verticalmente */
      .academia-banner>div {
        flex-direction: column !important;
      }

      /* Texto izquierdo: ancho completo */
      .academia-banner>div>div:first-child {
        min-width: unset !important;
        width: 100% !important;
      }

      /* Contenedor de stat-cards: columna, ancho completo */
      .academia-banner>div>div:last-child {
        flex-direction: column !important;
        width: 100% !important;
        align-items: stretch !important;
        flex: 0 0 auto !important;
      }

      /* Cada stat-card: ancho completo, padding reducido, centrado */
      .academia-banner>div>div:last-child>div {
        width: 100% !important;
        min-width: unset !important;
        flex: none !important;
        text-align: center !important;
        padding: 16px 20px !important;
        box-sizing: border-box !important;
      }
    }

    /* ─── FIX 2: ECOSISTEMA HEADER — BUTTON DROPS BELOW TITLE ON MOBILE ──── */
    @media (max-width: 768px) {
      .engines__header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
      }

      .engines__view-all {
        align-self: flex-start;
      }
    }

    /* ─── FIX 3: HERO — SAFE PADDING & OVERFLOW ON VERY NARROW SCREENS ───── */
    @media (max-width: 480px) {
      .hero__inner {
        padding-top: 110px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        width: 100% !important;
      }

      .hero {
        overflow-x: hidden !important;
      }

      .hero__h1 {
        font-size: clamp(36px, 10vw, 56px) !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .hero__eyebrow {
        max-width: 100% !important;
        flex-wrap: wrap !important;
        white-space: normal !important;
      }

      .hero__eyebrow-text {
        white-space: normal !important;
        line-height: 1.4 !important;
      }

      .hero__sub {
        max-width: 100% !important;
      }

      /* Prevent inline-style containers from overflowing */
      section,
      div {
        max-width: 100vw;
        box-sizing: border-box;
      }
    }

/* ==========================================================================
   SECTION: HOMEPAGE V2 OVERRIDES & FIXES
   ========================================================================== */

/* =====================================================
   front-page-v2.css — Inspenet Homepage V2 Fixes
   Fixes: Live Feed, Articles Hero, Pillars Grid, TV Voices
   ===================================================== */

/* === 1. LIVE INDUSTRY FEED === */
.feed {
  padding: clamp(40px, 6vw, 72px) 0;
  background: #f8fafc;
}

.feed__inner {
  max-width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.feed__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.feed__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feed__tab {
  padding: clamp(6px, 1.2vw, 9px) clamp(10px, 2.5vw, 16px);
  border: 1px solid #d1d9e8;
  border-radius: 24px;
  background: #fff;
  font-size: clamp(11.5px, 1.4vw, 13px);
  font-weight: 500;
  color: #4b5e7a;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.feed__tab.active,
.feed__tab:hover {
  background: #08111f;
  color: #fff;
  border-color: #08111f;
}

/* Feed body: fluid two-column that stacks below ~640px naturally */
.feed__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}

/* Main featured article */
.feed__main {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  height: 100%;
  /* stretch to fill grid row */
}

.feed__main-img {
  width: 100%;
  height: clamp(180px, 25vw, 320px);
  overflow: hidden;
}

.feed__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feed__main-body {
  padding: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vw, 12px);
}

.feed__main-cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #0ea5e9;
}

.feed__main-title {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  color: #0f1f35;
  margin: 0;
}

.feed__main-sub {
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.65;
  color: #4b5e7a;
  margin: 0;
}

.feed__main-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #eef0f5;
}

.feed__main-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feed__main-author-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #08111f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feed__main-author-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e2d42;
}

.feed__main-date {
  font-size: 12px;
  color: #8a9bb5;
}

/* Sidebar feed cards — fill height of featured card */
.feed__sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  /* stretch with grid */
}

.feed-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  flex: 1;
  /* distribute equally to fill full height */
}

.feed-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

.feed-card__img {
  width: clamp(72px, 10vw, 92px);
  height: clamp(56px, 8vw, 76px);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.feed-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feed-card__body {
  flex: 1;
  min-width: 0;
}

.feed-card__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #0ea5e9;
  margin-bottom: 4px;
}

.feed-card__title {
  font-size: clamp(12px, 1.5vw, 13px);
  font-weight: 600;
  line-height: 1.4;
  color: #1e2d42;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-card__meta {
  font-size: 11px;
  color: #8a9bb5;
  margin-top: 5px;
}

.feed__footer {
  text-align: center;
  margin-top: 32px;
}


/* === 2. TECHNICAL ARTICLES AUTHORITY === */
.articles {
  padding: clamp(40px, 6vw, 72px) 0;
  background: #fff;
  overflow: visible;
}

.articles__inner {
  max-width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.articles__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

/* articles body: fluid two-column, stacks naturally below ~580px */
.articles__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}

/* Hero article — horizontal: image left, body right */
.article-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0f1f35;
  display: flex !important;
  flex-direction: row !important;
  height: 100%;
  min-height: 340px;
}

.article-hero__img {
  flex: 0 0 45%;
  /* fixed 45% width */
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1c2e 0%, #0f2a42 60%, #0e2336 100%);
}

.article-hero__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.article-hero:hover .article-hero__img img {
  transform: scale(1.03);
}

.article-hero__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #f97316;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 4px 10px;
  border-radius: 4px;
}

.article-hero__body {
  flex: 1;
  padding: 28px 28px 24px;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
}

/* Mobile: revert to stacked */
@media (max-width: 640px) {
  .article-hero {
    flex-direction: column !important;
    min-height: auto !important;
  }

  .article-hero__img {
    flex: 0 0 200px !important;
    position: relative !important;
  }

  .article-hero__img img {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 200px !important;
  }
}

.article-hero__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #38bdf8;
}

.article-hero__title {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}

.article-hero__sub {
  font-size: 13px;
  line-height: 1.6;
  color: #a8bacf;
  margin: 0;
}

.article-hero__byline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.article-hero__av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #38bdf8;
  color: #08111f;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-hero__author {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.article-hero__role {
  font-size: 11px;
  color: #8a9bb5;
}

.article-hero__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #38bdf8;
  text-decoration: none;
  margin-top: auto;
}

.article-hero__read svg {
  width: 14px;
  height: 14px;
  stroke: #38bdf8;
}

.article-hero__read:hover {
  color: #7dd3fc;
}

/* Secondary article cards — Magazine-style full-image overlay cards */
.articles__secondary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

/* Each card: full-bleed image with gradient overlay text */
.article-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  flex: 1;
  /* fill equal height */
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0f1f35;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

/* Full-bleed background image */
.article-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.article-card:hover .article-card__img img {
  transform: scale(1.04);
}

/* Gradient overlay for readability */
.article-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 17, 31, 0) 20%,
      rgba(8, 17, 31, .55) 55%,
      rgba(8, 17, 31, .9) 100%);
  transition: opacity .25s;
}

.article-card:hover::after {
  background: linear-gradient(to bottom,
      rgba(8, 17, 31, 0) 10%,
      rgba(8, 17, 31, .65) 50%,
      rgba(8, 17, 31, .95) 100%);
}

/* Card text content — sits above the overlay */
.article-card__body {
  position: relative;
  z-index: 2;
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.article-card__tag {
  display: inline-block;
  width: fit-content;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #0B1322;
  background: #0EA5E9;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.article-card__title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__meta {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-card__meta span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  display: inline-block;
}

/* Read-more arrow that appears on hover */
.article-card__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .25s, transform .25s;
}

.article-card:hover .article-card__arrow {
  opacity: 1;
  transform: scale(1);
}

.article-card__arrow svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
}

.articles__bottom {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center; /* Fixed space-between */
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #eef0f5;
}

.articles__count {
  font-size: 14px;
  color: #4b5e7a;
  margin: 0;
}


/* === 3. PILLARS OF COVERAGE — Container & Card Sizing Fix === */
.section--gray {
  background: #f0f4f9;
  padding: clamp(40px, 6vw, 72px) 0;
}

.section__inner {
  max-width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

/* Fluid auto-fit grid: 4 cols on wide, collapses automatically */
.pillars-grid--v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.pilar-card-v2 {
  background: #0f1f35;
  border-radius: 16px;
  border: none !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35), 0 1px 4px rgba(0, 0, 0, .2);
  transition: transform .3s ease, box-shadow .3s ease;
}

/* When accordion is open, allow card to grow in height */
.pilar-card-v2.accordion-open {
  overflow: visible;
}

.pilar-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5), 0 2px 8px rgba(56, 189, 248, .08);
}

/* Tab bar */
.pilar-card-v2__tabs {
  display: flex;
  gap: 0;
  background: rgba(0, 0, 0, .3);
}

.pilar-tab {
  flex: 1;
  padding: 7px 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.pilar-tab:hover,
.pilar-tab.active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.pilar-tab__icon {
  font-size: 12px;
}

/* Card hero image — fluid height */
.pilar-card-v2__hero {
  position: relative;
  width: 100%;
  height: clamp(140px, 18vw, 200px);
  overflow: hidden;
}

.pilar-card-v2__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pilar-card-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 17, 31, 0) 30%, rgba(8, 17, 31, .85));
}

.pilar-card-v2__name-block {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  transition: all .65s cubic-bezier(.22, 1, .36, 1);
}
.pilar-card-v2.accordion-open .pilar-card-v2__name-block {
  bottom: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.pilar-card-v2.accordion-open .pilar-card-v2__label {
  display: none;
}

.pilar-card-v2__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
}

.pilar-card-v2__title {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 700;
  color: #fff;
  margin: 2px 0 4px;
  line-height: 1.2;
}
.pilar-card-v2.accordion-open .pilar-card-v2__title {
  font-size: 16px;
  margin: 0;
}

.pilar-card-v2__count {
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pilar-count-num {
  font-weight: 700;
  color: #38bdf8;
}
.pilar-card-v2.accordion-open .pilar-card-v2__count {
  background: rgba(56, 189, 248, .1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, .2);
}

/* Card body */
.pilar-card-v2__body {
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.pilar-card-v2__explore-row {
  display: grid;
  grid-template-columns: 1fr auto;
  transition: grid-template-columns .65s cubic-bezier(.22, 1, .36, 1);
}

.pilar-card-v2.accordion-open .pilar-card-v2__explore-row {
  grid-template-columns: 0fr auto;
}

.pilar-card-v2__explore-link {
  grid-column: 2;
  font-size: 12px;
  font-weight: 600;
  color: #38bdf8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pilar-card-v2__explore-link:hover {
  color: #7dd3fc;
}

/* Accordion — scrollable list with larger readable text */
.pilar-card-v2__accordion {
  display: flex;
  flex-direction: column; /* Panel expands below trigger (downward) */
}

.pilar-accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .04);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  transition: color .2s, background .2s;
}

.pilar-accordion__trigger:hover,
.pilar-accordion__trigger.open {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.pilar-accordion__arrow {
  font-size: 16px;
  transition: transform .25s;
  color: #38bdf8;
}

.pilar-accordion__trigger.open .pilar-accordion__arrow {
  transform: rotate(180deg);
}

/* Panel expands DOWNWARD natively */
.pilar-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .65s cubic-bezier(.22, 1, .36, 1);
}

.pilar-accordion__panel.open {
  max-height: 155px; /* Exact height swapped from Hero image collapse */
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, .4) transparent;
}

/* Hero image collapses to Header Row smoothly */
.pilar-card-v2.accordion-open .pilar-card-v2__hero {
  height: 55px !important;
}
.pilar-card-v2.accordion-open .pilar-card-v2__hero img,
.pilar-card-v2.accordion-open .pilar-card-v2__overlay {
  opacity: 0;
}
.pilar-card-v2__hero img,
.pilar-card-v2__overlay {
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1);
}

.pilar-card-v2__hero {
  transition: height .65s cubic-bezier(.22, 1, .36, 1);
}

.pilar-accordion__panel.open::-webkit-scrollbar {
  width: 4px;
}

.pilar-accordion__panel.open::-webkit-scrollbar-track {
  background: transparent;
}

.pilar-accordion__panel.open::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, .4);
  border-radius: 4px;
}

/* List items as vertical rows with divider lines */
.pilar-accordion__list {
  padding: 6px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pilar-accordion__item {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, color .2s;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.pilar-accordion__item:last-child {
  border-bottom: none;
}

.pilar-accordion__item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #38bdf8;
  flex-shrink: 0;
  opacity: .7;
}

.pilar-accordion__item:hover {
  background: rgba(56, 189, 248, .1);
  color: #38bdf8;
}

.pilar-accordion__item:hover::before {
  opacity: 1;
}

.pilar-accordion__empty {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  padding: 10px 14px;
  font-style: italic;
}


/* === 4. INDUSTRY VOICES & EVENT COVERAGE (TV Section) === */
.voices {
  padding: 64px 0;
  background: #fff;
}

.voices__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.voices__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

/* Voices body: main feature left + sidebar clips right — equal heights */
.voices__body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .voices__body {
    grid-template-columns: 1fr;
  }
}

/* Featured video article — fills full column height */
.voice-feature {
  border-radius: 12px;
  overflow: hidden;
  background: #0f1f35;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.voice-feature__video {
  position: relative;
  width: 100%;
  height: clamp(180px, 22vw, 300px);
  overflow: hidden;
}

.voice-feature__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play button overlay — properly centered over the image */
.voice-feature__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 17, 31, .3);
  transition: background .2s;
}

.voice-feature:hover .voice-feature__play {
  background: rgba(8, 17, 31, .5);
}

.voice-feature__play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: #08111f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s, background .2s;
}

.voice-feature__play-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.voice-feature__play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  /* optical center for play triangle */
}

.voice-feature__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voice-feature__badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #38bdf8;
}

.voice-feature__title {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}

.voice-feature__guest {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.voice-feature__av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.voice-feature__guest-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.voice-feature__guest-role {
  font-size: 12px;
  color: #8a9bb5;
}

/* Side clip cards — fill the height of featured video */
.voices__clips {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.voice-clip {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  padding: 10px;
  border: 1px solid #eef0f5;
  border-radius: 10px;
  transition: box-shadow .2s, transform .2s;
  background: #fff;
  flex: 1;
  /* distribute equally to fill featured card height */
}

.voice-clip:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.voice-clip__thumb {
  position: relative;
  width: clamp(70px, 10vw, 92px);
  height: clamp(50px, 7vw, 66px);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.voice-clip__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Small play overlay on clip thumbnails */
.voice-clip__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 17, 31, .4);
}

.voice-clip__play svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 2px;
}

.voice-clip__body {
  flex: 1;
  min-width: 0;
}

.voice-clip__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #0ea5e9;
  margin-bottom: 4px;
}

.voice-clip__title {
  font-size: clamp(12px, 1.5vw, 13px);
  font-weight: 600;
  line-height: 1.4;
  color: #1e2d42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voice-clip__meta {
  font-size: 11px;
  color: #8a9bb5;
  margin-top: 4px;
}


/* === 5. COMMUNITY & EVENTS CALENDAR — Height-fill sidebar rows === */
.events {
  padding: clamp(40px, 6vw, 72px) 0;
  background: #f8fafc;
}

.events__inner {
  max-width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.events__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

/* Body: fluid two-column, stacks naturally below ~580px */
.events__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}

/* Featured event card */
.event-feature {
  border-radius: 14px;
  overflow: hidden;
  background: #0f1f35;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.event-feature__img {
  position: relative;
  width: 100%;
  height: clamp(180px, 20vw, 280px);
  overflow: hidden;
  flex-shrink: 0;
}

.event-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-feature__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #f97316;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.event-feature__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.event-feature__date {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.event-feature__date-box {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(56, 189, 248, .15);
  border: 1px solid rgba(56, 189, 248, .3);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .4px;
}

.event-feature__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

.event-feature__location svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255, 255, 255, .5);
}

.event-feature__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -.2px;
}

.event-feature__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .65);
  margin: 0;
}

.event-feature__cta {
  margin-top: auto;
  padding-top: 8px;
}

/* Event list sidebar — fills featured card height */
.events__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: flex-start;
  overflow: hidden;
}

.event-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  border: 1px solid #eef0f5;
  transition: box-shadow .2s, transform .2s;
  min-height: 76px;
}

.event-row:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

/* Date badge inside each row */
.event-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 52px;
  background: #0f1f35;
  border-radius: 8px;
  flex-shrink: 0;
  gap: 0;
}

.event-row__day {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.event-row__month {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #38bdf8;
}

.event-row__info {
  flex: 1;
  min-width: 0;
}

.event-row__title {
  font-size: 14px;
  font-weight: 700;
  color: #1e2d42;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-row__meta {
  font-size: 12px;
  color: #8a9bb5;
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-row__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c8d3e1;
  display: inline-block;
}

/* Sector tags */
.event-row__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.event-row__tag--integrity {
  color: #0ea5e9;
  background: rgba(14, 165, 233, .1);
  border: 1px solid rgba(14, 165, 233, .2);
}

.event-row__tag--energy {
  color: #f97316;
  background: rgba(249, 115, 22, .1);
  border: 1px solid rgba(249, 115, 22, .2);
}

.event-row__tag--industry {
  color: #10b981;
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .2);
}



/* =====================================================
   PILAR CARD PROPOSALS — Full layout redesigns
   ===================================================== */

/* ── Shared: proper padding + tab animation ── */
.pilar-card-v2 {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: none !important;
  overflow: hidden;
  min-width: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35), 0 1px 4px rgba(0, 0, 0, .2);
  transition: transform .3s ease, box-shadow .3s ease;
}

.pilar-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5), 0 2px 8px rgba(56, 189, 248, .08);
}

/* Tab sliding-underline animation */
.pilar-tab {
  position: relative;
  transition: color .2s, background .2s, transform .15s;
}

.pilar-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #38bdf8;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .25s ease;
}

.pilar-tab.active::after {
  width: 60%;
}

.pilar-tab:active {
  transform: scale(.95);
}

/* Accordion item hover: slide-right + color */
.pilar-accordion__item {
  transition: transform .2s ease, color .2s, background .2s;
}

.pilar-accordion__item:hover {
  transform: translateX(6px);
}


/* ── PROPOSAL 1: Cinema — Image large at top, tabs below as pill row ── */
.pilar-proposal-cinema {
  background: linear-gradient(180deg, #0a1e30 0%, #0b2537 100%);
  border: 1px solid rgba(56, 189, 248, .12);
  box-shadow: 0 6px 28px rgba(0, 0, 0, .3);
}

.pilar-proposal-cinema .pilar-card-v2__hero {
  order: 0;
  height: 210px;
}

.pilar-proposal-cinema .pilar-card-v2__tabs {
  order: 1;
  background: rgba(8, 17, 31, .8);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.pilar-proposal-cinema .pilar-tab {
  flex: 1;
  padding: 7px 4px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.pilar-proposal-cinema .pilar-tab.active {
  background: rgba(56, 189, 248, .18);
  color: #38bdf8;
}

.pilar-proposal-cinema .pilar-card-v2__body {
  order: 2;
  padding: 16px 20px 8px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.pilar-proposal-cinema .pilar-card-v2__accordion {
  order: 3;
}

.pilar-proposal-cinema .pilar-accordion__trigger {
  padding: 11px 20px;
  font-size: 12.5px;
  font-weight: 700;
}

.pilar-proposal-cinema .pilar-accordion__list {
  padding: 4px 0 10px;
}

.pilar-proposal-cinema .pilar-accordion__panel.open {
  max-height: 155px !important;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, .4) transparent;
}

.pilar-proposal-cinema .pilar-accordion__item {
  padding: 9px 20px;
}

/* =====================================================
   TOPBAR + NAVBAR SCROLL MAGIC
   Topbar desliza hacia arriba al hacer scroll.
   Navbar sube a top:0, el lang switcher aparece.
   ===================================================== */

/* Topbar: fijo en la cima */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  height: 40px;
  background: #040f1a;
  display: flex;
  align-items: center;
  transition: transform .42s cubic-bezier(.4, 0, .2, 1), opacity .38s ease;
}

.topbar.hidden {
  transform: translateY(-100%);
  transition: none !important; /* Instant hide to prevent showing behind navbar */
  opacity: 0;
  pointer-events: none;
}

.topbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.topbar__message {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .01em;
}

.topbar__message span {
  color: #38bdf8;
  font-weight: 600;
}

.topbar__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.topbar__lang a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}

.topbar__lang a.active,
.topbar__lang a:hover {
  color: #fff;
}

.topbar__lang span {
  color: rgba(255, 255, 255, .2);
}

/* Navbar: posicionado bajo el topbar inicialmente */
.navbar {
  top: 40px;
  transition: top .42s cubic-bezier(.4, 0, .2, 1),
    background .3s ease,
    box-shadow .3s ease;
}

/* Cuando topbar desaparece, navbar sube sin dejar espacio */
.navbar.at-top {
  top: 0;
}

/* Lang switcher dentro del navbar:
   - Oculto por defecto (visible en topbar)
   - Aparece cuando navbar llega al tope */
.navbar__actions .navbar-lang {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: 0;
  transition: opacity .3s ease;
}

.navbar__actions .navbar-lang a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s;
}

.navbar__actions .navbar-lang a:hover {
  color: #fff;
}

.navbar__actions .navbar-lang span {
  color: rgba(255, 255, 255, .2);
  font-size: 10px;
}

.navbar.at-top .navbar__actions .navbar-lang {
  display: flex;
  opacity: 1;
}


/* =====================================================
   PILAR SPLIT LAYOUT — Fixed with CSS Grid
   ===================================================== */

/* Override flex with grid for proper 2-column layout */
.pilar-proposal-split {
  display: grid !important;
  grid-template-columns: 42% 58%;
  grid-template-rows: auto 1fr auto;
  flex-direction: unset;
  flex-wrap: unset;
  min-height: 300px;
  background: #fff;
  border: 1px solid #e2eaf4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  border-radius: 14px;
  overflow: hidden;
}

/* Hero: spans all rows in column 1 */
.pilar-proposal-split .pilar-card-v2__hero {
  grid-column: 1;
  grid-row: 1 / 4;
  order: unset;
  width: auto;
  height: auto;
  min-height: 300px;
  border-radius: 0;
  overflow: hidden;
}

.pilar-proposal-split .pilar-card-v2__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pilar-proposal-split .pilar-card-v2__overlay {
  background: linear-gradient(to right, rgba(8, 17, 31, .55) 0%, rgba(8, 17, 31, 0) 100%);
}

.pilar-proposal-split .pilar-card-v2__name-block {
  padding: 16px;
}

.pilar-proposal-split .pilar-card-v2__label {
  font-size: 10px;
}

.pilar-proposal-split .pilar-card-v2__title {
  font-size: 16px;
}

/* Tabs: column 2, row 1 */
.pilar-proposal-split .pilar-card-v2__tabs {
  grid-column: 2;
  grid-row: 1;
  order: unset;
  width: auto;
  background: #f0f6ff;
  padding: 10px 16px;
  gap: 4px;
  border-bottom: 1px solid #e2eaf4;
  align-items: center;
}

.pilar-proposal-split .pilar-tab {
  flex: 1;
  color: #4b5e7a;
  background: transparent;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 6px;
  text-align: center;
  transition: background .22s, color .18s, transform .15s;
}

.pilar-proposal-split .pilar-tab:hover {
  background: rgba(14, 165, 233, .1);
  color: #0ea5e9;
}

.pilar-proposal-split .pilar-tab.active {
  background: #0ea5e9;
  color: #fff;
  box-shadow: 0 2px 8px rgba(14, 165, 233, .3);
}

.pilar-proposal-split .pilar-tab::after {
  background: #0ea5e9;
  bottom: -2px;
}

/* Body: column 2, row 2 */
.pilar-proposal-split .pilar-card-v2__body {
  grid-column: 2;
  grid-row: 2;
  order: unset;
  width: auto;
  padding: 16px 20px;
  border-bottom: 1px solid #eef0f5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pilar-proposal-split .pilar-card-v2__explore-link {
  font-size: 13px;
  font-weight: 700;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s, color .2s;
}

.pilar-proposal-split .pilar-card-v2__explore-link:hover {
  color: #0284c7;
  gap: 8px;
}

/* Accordion: column 2, row 3 */
.pilar-proposal-split .pilar-card-v2__accordion {
  grid-column: 2;
  grid-row: 3;
  order: unset;
  width: auto;
  border-top: none;
  align-self: end;
}

.pilar-proposal-split .pilar-accordion__trigger {
  padding: 12px 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: #1e2d42;
  background: #f8fbff;
  transition: background .2s, color .2s;
}

.pilar-proposal-split .pilar-accordion__trigger:hover,
.pilar-proposal-split .pilar-accordion__trigger.open {
  color: #0ea5e9;
  background: #eef6ff;
}

.pilar-proposal-split .pilar-accordion__arrow {
  color: #0ea5e9;
}

.pilar-proposal-split .pilar-accordion__item {
  padding: 9px 20px;
  color: #2d4461;
  border-bottom: 1px solid #f0f4f9;
  transition: transform .2s ease, color .2s, background .2s;
}

.pilar-proposal-split .pilar-accordion__item:hover {
  transform: translateX(6px);
  background: #eef6ff;
  color: #0ea5e9;
}

.pilar-proposal-split .pilar-accordion__item::before {
  background: #0ea5e9;
}

.pilar-proposal-split .pilar-accordion__empty {
  color: rgba(30, 45, 66, .4);
  padding: 10px 20px;
  font-style: italic;
  font-size: 12px;
}

.pilar-proposal-split .pilar-accordion__panel.open {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 165, 233, .3) transparent;
}

/* Cinema proposal: minor refinements */
.pilar-proposal-cinema .pilar-card-v2__explore-link {
  font-size: 13px;
  font-weight: 700;
  color: #38bdf8;
  transition: gap .2s, color .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pilar-proposal-cinema .pilar-card-v2__explore-link:hover {
  gap: 8px;
  color: #7dd3fc;
}

.pilar-proposal-cinema .pilar-card-v2__body {
  padding: 14px 20px 10px;
}

.pilar-proposal-cinema .pilar-tab {
  border-radius: 6px;
  padding: 6px 8px;
}

.pilar-proposal-cinema .pilar-tab.active {
  background: rgba(56, 189, 248, .22);
  color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, .3);
}

/* =====================================================
   PILAR TABS — Clearly clickable with smooth animations
   Applied to Cinema layout (all 4 cards)
   ===================================================== */

/* Tab container: subtle separator line */
.pilar-proposal-cinema .pilar-card-v2__tabs {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 8px 10px;
  gap: 6px;
}

/* Each tab: clearly a button, not just text */
.pilar-proposal-cinema .pilar-tab {
  position: relative;
  overflow: hidden;
  flex: 1;
  padding: 8px 4px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .04);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;

  /* All transitions in one rule */
  transition:
    color .22s ease,
    background .22s ease,
    border-color .22s ease,
    transform .15s ease,
    box-shadow .22s ease;
}

/* Hover: brighten + lift slightly */
.pilar-proposal-cinema .pilar-tab:hover {
  color: rgba(255, 255, 255, .85);
  background: rgba(56, 189, 248, .1);
  border-color: rgba(56, 189, 248, .2);
  transform: translateY(-1px);
}

/* Click feedback: press down */
.pilar-proposal-cinema .pilar-tab:active {
  transform: translateY(0) scale(.96);
  background: rgba(56, 189, 248, .18);
}

/* Active / selected state: glowing pill */
.pilar-proposal-cinema .pilar-tab.active {
  color: #fff;
  background: rgba(56, 189, 248, .2);
  border-color: rgba(56, 189, 248, .45);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, .15),
    0 2px 12px rgba(56, 189, 248, .2);
  transform: none;
}

/* Sliding underline indicator on active tab */
.pilar-proposal-cinema .pilar-tab::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #38bdf8;
  border-radius: 2px;
  transition: width .3s ease;
}

.pilar-proposal-cinema .pilar-tab.active::after {
  width: 55%;
}

/* Ripple effect on click via pseudo element */
.pilar-proposal-cinema .pilar-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(56, 189, 248, .25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.pilar-proposal-cinema .pilar-tab:active::before {
  opacity: 1;
  transition: opacity 0s;
}

/* Tab icon: slightly larger + color-matched */
.pilar-proposal-cinema .pilar-tab__icon {
  font-size: 13px;
  display: inline-block;
  transition: transform .2s ease;
}

.pilar-proposal-cinema .pilar-tab:hover .pilar-tab__icon {
  transform: scale(1.15);
}

.pilar-proposal-cinema .pilar-tab.active .pilar-tab__icon {
  transform: scale(1.1);
}

/* =====================================================
   FINAL ADJUSTMENTS — Approved design cleanup
   ===================================================== */

/* 1. Primary buttons → cyan to match navbar (not orange) */

/* ── Back to Top Button ── */
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: rgba(11, 36, 55, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(14, 165, 233, 0.3);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: #0ea5e9;
  border-color: #0ea5e9;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.back-top svg {
  width: 22px;
  height: 22px;
}

/* ─── MOBILE OPTIMIZATION ────────────────────────────────── */
@media (max-width: 991px) {
  /* Duplicate navbar and topbar overrides removed so global-nav.css handles navigation globally */


  /* Articles Section */
  .articles__bottom {
    text-align: center;
  }

  .articles__bottom .btn {
    margin: 16px auto 0;
    display: inline-flex;
  }

  /* Events Section */
  .events__body {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .event-feature {
    width: 100%;
  }

  /* Directory CTAs */
  .directory__cta-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .directory__cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Mobile card optimizations */
  .pilar-card-v2 {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Newsletter adaptation */
  .nl-panel__input-row {
    flex-direction: column;
    gap: 12px;
  }

  .nl-panel__input {
    width: 100% !important;
    border-radius: 8px !important;
  }

  .nl-panel__submit {
    width: 100% !important;
    border-radius: 8px !important;
  }
}

/* 2. Hero content top offset — accounts for topbar (40px) + navbar (64px) */
/* Only apply to desktop where topbar is visible */
@media (min-width: 992px) {
  .hero__inner {
    padding-top: 120px !important;
    /* 40 topbar + 64 navbar + 16 breathing room */
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HIGH-DENSITY PHONE OPTIMIZATION
   Target: narrow CSS-px viewports (360–430px) produced by FHD+, QHD+ phones.

   Physics:
     Samsung FHD+ 1080×2340 @ 396 ppi → DPR≈3   → ~360 CSS-px wide
     Google 2712×1220 @ 446 ppi        → DPR≈3   → ~404 CSS-px wide
     User WQHD+ 3200×1440 @ 526 ppi   → DPR≈3.5 → ~411 CSS-px wide

   Because CSS media-queries work in LOGICAL pixels (physical / DPR), all three
   phones fall inside ≤430px even though their raw resolutions are very different.
   The issue: fixed px values chosen for "mobile" (640px breakpoint) are still too
   large/heavy when the viewport is only 360–430 CSS-px wide.
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 430px) {

  /* ── Global section padding ── */
  .feed,
  .voices,
  .events {
    padding: 40px 0;
  }

  .feed__inner,
  .articles__inner,
  .voices__inner,
  .events__inner {
    padding: 0 16px;
  }

  /* ── Feed tabs — smaller pills so all 4 fit in one row ── */
  .feed__tabs {
    gap: 6px;
  }

  .feed__tab {
    padding: 6px 11px;
    font-size: 11.5px;
  }

  /* ── Main featured card typography ── */
  .feed__main-title {
    font-size: 16px;
    line-height: 1.35;
  }

  .feed__main-sub {
    font-size: 12px;
  }

  /* ── Sidebar feed cards ── */
  .feed-card__thumb {
    width: 72px;
    height: 54px;
  }

  .feed-card__title {
    font-size: 12px;
  }

  /* ── Article hero card ── */
  .article-hero__title {
    font-size: 15px;
  }

  .article-hero__sub {
    font-size: 12px;
  }

  .article-hero__body {
    padding: 18px 16px 16px;
  }

  /* ── Pillar cards ── */
  .pilar-tab {
    font-size: 10px;
    padding: 6px 2px;
    gap: 2px;
  }

  .pilar-tab__icon {
    font-size: 12px;
  }

  .pilar-card-v2__title {
    font-size: 16px;
  }

  /* ── Voice / clips section ── */
  .voice-feature__video {
    height: 200px;
  }

  .voice-feature__title {
    font-size: 15px;
  }

  .voice-clip__thumb {
    width: 72px;
    height: 52px;
  }

  .voice-clip__title {
    font-size: 12px;
  }

  /* ── Events ── */
  .event-feature__img {
    height: 200px;
  }

  .event-feature__title {
    font-size: 18px;
  }

  .event-row__title {
    font-size: 13px;
  }

  /* ── Section headings ── */
  .sec-title {
    font-size: clamp(20px, 5.5vw, 26px) !important;
  }

  /* ── Feed header row: stack title + view-all link ── */
  .feed__top,
  .voices__top,
  .events__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* ── Footer inner grid ── */
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .footer__col-title {
    margin-bottom: 10px !important;
  }

  /* ── Float button ── */
  .float-btn {
    bottom: 20px;
    right: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   INLINE STYLES REPLACEMENT CLASSES
   ───────────────────────────────────────────────────────────────────────────── */
.btn-secondary--corp {
  border-color: rgba(249, 115, 22, 0.4) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.academia-banner {
  padding: 48px 0;
  background: linear-gradient(135deg, #050d1a 0%, #0a1628 60%, #0d2040 100%);
  border-top: 1px solid rgba(0, 102, 255, .12);
  border-bottom: 1px solid rgba(0, 102, 255, .12);
}
.academia-banner__inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 92%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.academia-banner__content {
  flex: 1;
  min-width: 280px;
}
.academia-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, .15);
  border: 1px solid rgba(0, 102, 255, .35);
  border-radius: 6px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.academia-banner__tag-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #60a5fa;
}
.academia-banner__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}
.academia-banner__title-highlight {
  color: #38bdf8;
}
.academia-banner__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 24px;
  max-width: 520px;
  line-height: 1.7;
}
.academia-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0066ff, #0052cc);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s;
}
.academia-banner__stats {
  flex: 0 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.academia-banner__stat-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 120px;
  text-align: center;
  flex: 1 1 120px;
}
.academia-banner__stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #38bdf8;
}
.academia-banner__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .9);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
  .home-banners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 24px;}

.home-banners {
  padding: 40px 0 0;
  max-width: 1320px;
  margin: 0 auto;
  width: 92%;
}
.home-banner-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: fit-content;
  text-decoration: none;
  aspect-ratio: 3;
}
.home-banner-card__img {
  width: 100%;
  height: 100%;
}
.home-banner-card__overlay {
  position: absolute;
  inset: 0;
}
.home-banner-card__content {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  color: white;
}
.home-banner-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #38BDF8;
  font-weight: 700;
}
.home-banner-card__label--orange {
  color: #F97316;
}
.home-banner-card__title {
  margin: 8px 0;
  font-size: 24px;
  font-weight: 700;
}
.home-banner-card__text {
  font-size: 14px;
  color: #A8BACF;
}

.section--industrial {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-bottom: 72px;
}

.pilar-card-v2__hero-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.article-hero__fallback-svg {
  width: 100%;
  height: 100%;
  opacity: .18;
}

.dir-card__logo--no-bg {
  background: none !important;
}
.dir-card__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.btn-secondary--cta {
  border-color: rgba(249, 115, 22, .4) !important;
}

/* ==========================================================================
   OPTIMIZACIONES SEO, ACCESIBILIDAD Y RESPONSIVIDAD AVANZADA
   ========================================================================== */

/* 1. Visibilidad de Foco Universal (Accesibilidad Teclado WCAG) */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--r-xs);
  transition: outline-offset 0.2s ease;
}

/* Evitar outline incómodo en clics de ratón, mantener para teclado */
:focus:not(:focus-visible) {
  outline: none;
}

/* 3. Prevenir Layout Shifts y errores de renderizado en íconos SVG decorativos */
svg {
  flex-shrink: 0;
  display: inline-block;
}

/* 4. Tap Targets Móviles (WCAG = min 44x44px para dedos) */
@media (max-width: 768px) {
  .feed__tab, .pilar-tab {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* 5. Optimización Carga Móvil: Ocultar el contenedor de Hero Background para 
   que no estorbe (la etiqueta <picture> ya previene su descarga física) */
@media (max-width: 767px) {
  .hero__bg { 
    display: none !important; 
  }
}

/* Estilos de la imagen base de la etiqueta picture que reemplazó a tu <img> manual */
.hero__bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  opacity: .88;
  mix-blend-mode: luminosity;
}