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

  :root {
    --blue:  #29ABE2;
    --blue-dark: #1F8FBF;
    --navy:  #1A2B4A;
    --navy-2: #122038;
    --white: #FFFFFF;
    --light: #F4FAFD;
    --line: rgba(26,43,74,0.10);
    --muted: rgba(26,43,74,0.55);
    --faint: rgba(26,43,74,0.35);
    --green: #2E9E5B;
  }

  html, body { background: var(--white); color: var(--navy); }
  body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  body[dir="rtl"] { font-family: 'Cairo', 'Montserrat', sans-serif; }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
  }
  @media (max-width: 768px) { .container { padding: 0 20px; } }

  /* ── NAV ───────────────────────────────────────── */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .nav-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--blue);
  }
  .nav-logo span { color: var(--blue); }
  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .lang-toggle {
    display: flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .lang-toggle button {
    background: none;
    border: none;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    color: var(--muted);
    font-weight: 700;
  }
  .lang-toggle button.active {
    background: var(--navy);
    color: #fff;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, background 0.15s;
    font-family: inherit;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--blue); color: #fff; }
  .btn-primary:hover { background: var(--blue-dark); }
  .btn-dark { background: var(--navy); color: #fff; }
  .btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
  .btn-ghost-light { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
  .btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

  @media (max-width: 900px) {
    .nav-links { display: none; }
  }

  /* ── HERO ──────────────────────────────────────── */
  .hero {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -300px; right: -300px;
    width: 800px; height: 800px;
    border-radius: 50%;
    border: 2px solid rgba(41,171,226,0.08);
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -250px; left: -250px;
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 2px solid rgba(41,171,226,0.06);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 28px;
  }
  .hero-eyebrow .pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 0 rgba(41,171,226,0.7);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(41,171,226,0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(41,171,226,0); }
    100% { box-shadow: 0 0 0 0 rgba(41,171,226,0); }
  }
  .hero h1 {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
  }
  .hero h1 em {
    color: var(--blue);
    font-style: normal;
  }
  .hero-sub {
    font-size: 22px;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin-bottom: 40px;
    font-weight: 500;
  }
  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .hero-quick-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
  }
  .hero-quick-stats .qs-item .qs-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .hero-quick-stats .qs-item .qs-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
  }

  /* Hero portrait */
  .hero-portrait {
    aspect-ratio: 4/5;
    background: rgba(41,171,226,0.08);
    border: 1px solid rgba(41,171,226,0.2);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-portrait::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      rgba(41,171,226,0.04) 0px,
      rgba(41,171,226,0.04) 1px,
      transparent 1px,
      transparent 24px
    );
  }
  .hero-portrait .hp-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: rgba(41,171,226,0.5);
    font-family: 'Courier New', monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  .hero-portrait .hp-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 1.5px solid rgba(41,171,226,0.4);
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-portrait .hp-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
  }
  body[dir="rtl"] .hero-portrait .hp-tag { left: auto; right: 20px; }
  .hero-portrait .hp-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--blue);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 12px 40px rgba(41,171,226,0.4);
  }
  .hero-portrait .hp-play:hover { transform: translate(-50%, -50%) scale(1.08); }
  .hero-portrait .hp-play svg { margin-left: 4px; }

  .hero-portrait.has-media::before { display: none; }
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-quick-stats { gap: 32px; }
    .hero-quick-stats .qs-item .qs-num { font-size: 28px; }
  }

  /* ── SECTION HEADER ────────────────────────────── */
  .section { padding: 120px 0; }
  .section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
  }
  .section-title {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .section-sub {
    font-size: 20px;
    color: var(--muted);
    max-width: 720px;
    line-height: 1.55;
    font-weight: 500;
  }
  .section-head { margin-bottom: 60px; }

  /* ── STATS BAND ────────────────────────────────── */
  .stats-band {
    background: var(--blue);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .stats-band::before {
    content: '#WWK';
    position: absolute;
    top: 50%; right: -40px;
    transform: translateY(-50%);
    font-size: 240px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    letter-spacing: -0.04em;
    pointer-events: none;
    z-index: 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
  }
  .stat-cell {
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell:first-child { padding-left: 0; }
  .stat-cell-num {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
  }
  .stat-cell-num sup { font-size: 36px; }
  .stat-cell-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 4px;
  }
  .stat-cell-sub {
    font-size: 13px;
    opacity: 0.65;
    font-weight: 500;
  }
  @media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .stat-cell { border-right: none; padding: 0 16px; }
    .stat-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
    .stat-cell-num { font-size: 52px; }
  }

  /* ── WHAT IT IS ────────────────────────────────── */
  .what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .what-text p {
    font-size: 22px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .what-text p:last-child { margin-bottom: 0; }
  .what-text strong { color: var(--navy); font-weight: 800; }
  .what-pills { display: flex; flex-direction: column; gap: 16px; }
  .what-pill {
    background: var(--navy);
    color: #fff;
    padding: 24px 28px;
    border-radius: 4px;
    border-left: 3px solid var(--blue);
  }
  body[dir="rtl"] .what-pill { border-left: none; border-right: 3px solid var(--blue); }
  .what-pill .wp-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.005em;
  }
  .what-pill .wp-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    line-height: 1.5;
  }
  @media (max-width: 900px) { .what-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* ── EPISODES ──────────────────────────────────── */
  .episodes-section {
    background: var(--light);
  }
  .episodes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .episode-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }
  .episode-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(26,43,74,0.10);
  }
  .ep-thumb {
    aspect-ratio: 16/9;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ep-thumb img.ep-yt-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ep-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .ep-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      rgba(41,171,226,0.04) 0px,
      rgba(41,171,226,0.04) 1px,
      transparent 1px,
      transparent 18px
    );
  }
  .ep-thumb .ep-num {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 6px 10px;
    border-radius: 2px;
    z-index: 2;
    white-space: nowrap;
  }
  body[dir="rtl"] .ep-thumb .ep-num { left: auto; right: 16px; }
  .ep-thumb .ep-views {
    position: absolute;
    bottom: 16px; right: 16px;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 2px;
    z-index: 2;
    white-space: nowrap;
  }
  body[dir="rtl"] .ep-thumb .ep-views { right: auto; left: 16px; }
  .ep-thumb .ep-play {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex; align-items: center; justify-content: center;
    z-index: 1;
  }
  .ep-thumb .ep-play svg { margin-left: 3px; }
  .ep-meta {
    padding: 20px 22px 22px;
  }
  .ep-meta .ep-guest {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
  }
  .ep-meta .ep-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
  }
  @media (max-width: 900px) { .episodes-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .episodes-grid { grid-template-columns: 1fr; } }

  /* ── MINI-SERIES ──────────────────────────── */
  .mini-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 44px;
  }
  .mini-stat .ms-num {
    font-size: 64px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .mini-stat .ms-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--muted);
    max-width: 260px;
    line-height: 1.4;
  }
  .mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .mini-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mini-card .mini-thumb-wrap {
    width: 100%;
    aspect-ratio: 9/16;
    display: block;
  }
  .mini-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  .mini-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(41,171,226,0.08);
    border: 1px solid rgba(41,171,226,0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    color: rgba(41,171,226,0.55);
    text-align: center;
    padding: 12px;
  }
  .mini-thumb-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      rgba(41,171,226,0.05) 0px,
      rgba(41,171,226,0.05) 1px,
      transparent 1px,
      transparent 16px
    );
  }
  .mini-thumb-placeholder span {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .mini-thumb-placeholder svg { position: relative; z-index: 1; }
  .mini-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
  }
  .mini-name.placeholder { color: var(--faint); font-weight: 600; font-style: italic; }
  .mini-watch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
  }
  @media (max-width: 900px) { .mini-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ── ABOUT KESHTA ──────────────────────────────── */
  .about-section { background: var(--navy); color: #fff; padding: 140px 0; position: relative; overflow: hidden; }
  .about-section::before {
    content: '';
    position: absolute;
    top: -400px; right: -300px;
    width: 900px; height: 900px;
    border-radius: 50%;
    border: 2px solid rgba(41,171,226,0.06);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative; z-index: 1;
  }
  .about-portrait {
    aspect-ratio: 3/4;
    background: rgba(41,171,226,0.08);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
  }
  .about-portrait img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
  }
  .about-portrait::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      rgba(41,171,226,0.04) 0px,
      rgba(41,171,226,0.04) 1px,
      transparent 1px,
      transparent 24px
    );
  }
  .about-text .section-eyebrow { color: var(--blue); }
  .about-text h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 28px;
  }
  .about-text .role {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
  }
  .about-text p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .about-stats {
    display: flex;
    gap: 36px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .as-item .as-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
  }
  .as-item .as-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
  }
  .about-pull {
    margin-top: 36px;
    font-size: 26px;
    font-weight: 800;
    font-style: italic;
    color: var(--blue);
    line-height: 1.3;
  }
  @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* ── GUESTS ────────────────────────────────────── */
  .guests-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .guest-card {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
  }
  .guest-card:hover { border-color: var(--blue); transform: translateY(-2px); }
  .guest-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--navy);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
  }
  .guest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .guest-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .guest-role {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  @media (max-width: 900px) { .guests-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ── SOCIAL FEED ───────────────────────────────── */
  .social-section { background: var(--light); }
  .social-portrait-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 32px;
    border: 3px solid var(--blue);
    box-shadow: 0 16px 40px rgba(26,43,74,0.14);
  }
  .social-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
  }
  .social-follow {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    transition: border-color 0.2s, color 0.2s;
  }
  .social-link:hover { border-color: var(--blue); color: var(--blue); }
  .social-link .sl-count {
    color: var(--muted);
    font-weight: 500;
  }

  /* ── ACCESS TEASER ─────────────────────────────── */
  .access-section {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
  }
  .access-section::before {
    content: '';
    position: absolute;
    top: -260px; left: -260px;
    width: 640px; height: 640px;
    border-radius: 50%;
    border: 2px solid rgba(41,171,226,0.07);
  }
  .access-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .access-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(41,171,226,0.12);
    padding: 9px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
  }
  .access-title {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 22px;
  }
  .access-title em { color: var(--blue); font-style: normal; }
  .access-sub {
    font-size: 19px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 32px;
    font-weight: 500;
  }
  .access-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .access-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15.5px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
  }
  .access-point svg { flex-shrink: 0; margin-top: 4px; }
  .access-phone {
    aspect-ratio: 9/19.5;
    max-width: 300px;
    margin: 0 auto;
    background: #F4FAFD;
    border: 6px solid #0d1524;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  }
  .access-phone .ap-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 18px;
    background: #0d1524;
    border-radius: 0 0 12px 12px;
    z-index: 5;
  }
  .access-phone .ap-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px 14px 14px;
    color: var(--navy);
    overflow: hidden;
  }
  .access-phone .ap-greet {
    font-size: 12.5px;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .access-phone .ap-search {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 9.5px;
    color: var(--faint);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .access-phone .ap-chips {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
  }
  .access-phone .ap-chip {
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 8.5px;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
  }
  .access-phone .ap-chip.active { background: var(--navy); color: #fff; border-color: transparent; }
  .access-phone .ap-heading {
    font-size: 10.5px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .access-phone .ap-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .access-phone .ap-card-img {
    height: 58px;
    background: linear-gradient(135deg,#dbeafc,#a9d4f0);
    position: relative;
  }
  .access-phone .ap-score {
    position: absolute;
    top: 6px; right: 6px;
    background: var(--green);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
  }
  .access-phone .ap-verified {
    position: absolute;
    top: 6px; left: 6px;
    background: rgba(255,255,255,0.92);
    color: var(--blue);
    font-size: 7px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 999px;
  }
  .access-phone .ap-card-body { padding: 8px 10px; }
  .access-phone .ap-card-name { font-size: 10px; font-weight: 800; margin-bottom: 2px; }
  .access-phone .ap-card-meta { font-size: 8px; color: var(--muted); font-weight: 600; }
  .access-phone .ap-tabbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 10px;
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .access-phone .ap-tab { font-size: 13px; color: rgba(26,43,74,0.35); }
  .access-phone .ap-tab.active { color: var(--blue); }
  .access-phone .ap-tab.fab {
    width: 30px; height: 30px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-top: -18px;
    box-shadow: 0 6px 14px rgba(41,171,226,0.4);
    font-size: 15px;
  }
  .access-caption {
    text-align: center;
    margin-top: 18px;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.03em;
  }
  @media (max-width: 900px) { .access-grid { grid-template-columns: 1fr; gap: 44px; } .access-phone { order: -1; } }

  /* ── PARTNER FORM ──────────────────────────────── */
  .partner-section {
    background: var(--blue);
    color: #fff;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .partner-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
  }
  .partner-section::after {
    content: '';
    position: absolute;
    bottom: -300px; left: -200px;
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.08);
  }
  .partner-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
  }
  .partner-left .section-eyebrow { color: rgba(255,255,255,0.7); }
  .partner-left h2 {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
  }
  .partner-left p {
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .partner-bullets {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .partner-bullet {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
  }
  .partner-bullet svg {
    flex-shrink: 0;
    margin-top: 4px;
  }
  .partner-form {
    background: #fff;
    border-radius: 6px;
    padding: 40px 36px;
    color: var(--navy);
  }
  .partner-form-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .partner-form-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .form-group { margin-bottom: 14px; }
  .form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .form-input, .form-textarea, .form-select {
    width: 100%;
    background: var(--light);
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 14px 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--navy);
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
  }
  .form-textarea { min-height: 120px; resize: vertical; }
  .form-submit {
    width: 100%;
    background: var(--navy);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
    font-family: inherit;
  }
  .form-submit:hover { background: var(--navy-2); }
  .form-fineprint {
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
    text-align: center;
  }
  @media (max-width: 900px) {
    .partner-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── PRESS KIT ─────────────────────────────────── */
  .press-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }
  .press-feature {
    background: var(--navy);
    color: #fff;
    border-radius: 6px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    transition: transform .2s ease;
  }
  .press-feature:hover { transform: translateY(-2px); }
  .press-feature .pf-source {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
  }
  .press-feature .pf-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    flex: 1;
  }
  .press-feature .pf-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .press-feature .pf-read {
    font-size: 13px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  @media (max-width: 900px) { .press-features { grid-template-columns: 1fr; } }
  .press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .press-card {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .press-card:hover { border-color: var(--blue); transform: translateY(-2px); }
  .press-icon {
    width: 48px; height: 48px;
    background: rgba(41,171,226,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .press-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
  }
  .press-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    flex: 1;
  }
  .press-card .download {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  @media (max-width: 900px) { .press-grid { grid-template-columns: 1fr; } }

  /* ── FAQ ───────────────────────────────────────── */
  .faq-section { background: var(--light); }
  .faq-list {
    max-width: 880px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  body[dir="rtl"] .faq-q { text-align: right; }
  .faq-q .faq-toggle {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 800;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
  }
  .faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 0 28px;
  }

  /* ── NEWSLETTER ────────────────────────────────── */
  .newsletter-section {
    padding: 100px 0;
    background: var(--navy);
    color: #fff;
    text-align: center;
  }
  .newsletter-section h3 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.05;
  }
  .newsletter-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 540px;
    margin: 0 auto 36px;
  }
  .newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
  }
  .newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 16px 18px;
    border-radius: 3px;
    font-size: 15px;
    font-family: inherit;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
  .newsletter-form input:focus { outline: none; border-color: var(--blue); }
  .newsletter-form button {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 0 28px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
  }
  .newsletter-form button:hover { background: var(--blue-dark); }
  @media (max-width: 540px) {
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { padding: 14px 28px; }
  }

  /* ── FOOTER ────────────────────────────────────── */
  footer {
    background: #0E1A2E;
    color: rgba(255,255,255,0.5);
    padding: 80px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .footer-logo span { color: var(--blue); }
  .footer-tag {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
  }
  .footer-col h5 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--blue); }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
  }
  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* RTL adjustments */
  body[dir="rtl"] .hero-eyebrow,
  body[dir="rtl"] .section-eyebrow {
    letter-spacing: 0;
  }
  body[dir="rtl"] .stat-cell-label,
  body[dir="rtl"] .ep-meta .ep-guest,
  body[dir="rtl"] .form-label,
  body[dir="rtl"] .footer-col h5 {
    letter-spacing: 0;
  }

  /* ── FORM STATUS ───────────────────────────────── */
  .form-status {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 3px;
    padding: 12px 14px;
    display: none;
  }
  .form-status.visible { display: block; }
  .form-status.success { background: rgba(46,158,91,0.12); color: var(--green); }
  .form-status.error { background: rgba(179,38,30,0.1); color: #B3261E; }
  .form-submit[disabled] { opacity: 0.6; cursor: default; }
  .newsletter-form-wrap .form-status { color: rgba(255,255,255,0.85); }
  .newsletter-form-wrap .form-status.success { background: rgba(41,171,226,0.15); color: #fff; }
  .newsletter-form-wrap .form-status.error { background: rgba(255,255,255,0.1); color: #ffb4ae; }

  /* ── TWEAKS GEAR TOGGLE ────────────────────────── */
  .twk-gear {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2147483647;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(26,43,74,0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
    transition: transform 0.15s, background 0.15s;
  }
  .twk-gear:hover { background: rgba(26,43,74,1); transform: scale(1.06); }
  .twk-gear svg { width: 18px; height: 18px; }
