/*!
Theme Name: Okay Bhargav
Theme URI: https://okaybhargav.com
Author: Bhargav Kotadiya
Description: Okay Bhargav Animation Studio - Consolidated Global Master Stylesheet (Realtime Colors dark theme).
Version: 25.0.0
Requires PHP: 8.1
*/

/* ==========================================================================
   0. PRODUCT SANS TYPOGRAPHY (Full Font Family: 400 Regular, 500 Medium, 700 Bold)
   ========================================================================== */
@font-face {
  font-family: 'Product Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Product Sans'), local('Product Sans Regular'), local('Google Sans'), local('Google Sans Regular'),
       url('https://fonts.cdnfonts.com/s/14955/ProductSans-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Product Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Product Sans Medium'), local('Google Sans Medium'),
       url('https://fonts.cdnfonts.com/s/14955/ProductSans-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Product Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Product Sans Bold'), local('Google Sans Bold'),
       url('https://fonts.cdnfonts.com/s/14955/ProductSans-Bold.woff') format('woff');
}

/* ==========================================================================
   1. MINIMAL ROOT SYSTEM (Realtime Colors: ffffff-000000-73b2f7-031030-be55ff)
   ========================================================================== */
:root {
  /* Realtime Colors Core Palette */
  --background: #000000;
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-subtle: #6b7280;
  
  /* Primary: Sky Blue (Black text on button) */
  --primary: #73b2f7;
  --primary-hover: #5ea4f2;
  --primary-content: #000000;
  
  /* Secondary: Midnight Navy */
  --secondary: #06090c;
  --secondary-hover: #0c1218;
  --secondary-content: #ffffff;
  
  /* Accent: Electric Violet */
  --accent: #be55ff;
  --accent-hover: #af3bf7;
  --accent-content: #000000;
  
  /* Dark Surfaces & Cards */
  --card: #000000;
  --card-elevated: #06090c;
  --surface-raised: #0a0e14;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(115, 178, 247, 0.4);

  /* Legacy Backward-Compatibility Aliases */
  --ok-bg: #000000;
  --ok-bg-surface: #06090c;
  --ok-surface: #06090c;
  --ok-ink: #ffffff;
  --ok-ink-soft: #cbd5e1;
  --ok-ink-muted: #9ca3af;
  --ok-ink-faint: #64748b;
  --ok-blue-ui: #73b2f7;
  --ok-brand-blue-light: #73b2f7;
  --ok-violet: #be55ff;
  --ok-border: rgba(255, 255, 255, 0.1);
  --ok-border-blue: rgba(115, 178, 247, 0.3);
  --ok-radius-pill: 999px;
  
  /* Radii & Geometry */
  --radius-sm: 8px;
  --radius-card: 20px;
  --radius-btn: 999px;
  --radius-input: 999px;
  
  /* Font Families */
  --font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* ==========================================================================
   2. RESET & BASE (High Contrast Dark System)
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  background-color: var(--background);
  color: var(--text);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  background-color: var(--background);
  color: var(--text);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  overflow-y: visible;
}

main,
.site-main,
.okb-studio-v2,
.okb-studio-v2-about,
.okb-studio-v2-contact,
.okb-policy-page,
.ok-project-page {
  overflow: visible;
  overflow-x: clip;
  overflow-y: visible;
}

body.okb-gemini-site {
  background-color: #000000;
  color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  letter-spacing: -0.01em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--primary-hover);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Base Shell */
.okg-shell {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 40px);
}

.okg-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  width: 100%;
}

/* ==========================================================================
   3. SHARED BUTTONS & CONTROLS (Realtime Colors System)
   ========================================================================== */
.okg-btn,
.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  padding: 0 24px;
  height: 48px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
  white-space: nowrap;
}

.okg-btn:hover,
.btn:hover,
.button:hover {
  transform: translateY(-1px);
}

/* PRIMARY BUTTON: Sky Blue (#73b2f7) with Black text */
.okg-btn--primary,
.okg-btn--blue,
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-content);
  border-color: var(--primary);
  box-shadow: none;
}

.okg-btn--primary:hover,
.okg-btn--blue:hover,
.btn-primary:hover,
.ok-btn-primary:hover,
.ok-checkout-btn-primary:hover,
.ok-checkout-pay:hover,
.okb-live-view-all-btn:hover,
.ok-stock-btn-primary:hover,
.profile-credit-topup-link:hover,
a.okg-btn--primary:hover,
a.okg-btn--blue:hover,
a.btn-primary:hover,
button.okg-btn--primary:hover,
button.okg-btn--blue:hover,
button.btn-primary:hover,
input[type="submit"]:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
}

.okg-btn--primary:hover *,
.okg-btn--blue:hover *,
.btn-primary:hover *,
.ok-btn-primary:hover *,
.ok-checkout-btn-primary:hover *,
.ok-checkout-pay:hover *,
.okb-live-view-all-btn:hover *,
.ok-stock-btn-primary:hover *,
.profile-credit-topup-link:hover * {
  color: #000000;
}

/* SECONDARY BUTTON: Dark Surface (#06090c) with White text */
.okg-btn--secondary,
.btn-secondary {
  background-color: var(--secondary);
  color: #ffffff;
  border-color: rgba(115, 178, 247, 0.25);
}

.okg-btn--secondary:hover,
.btn-secondary:hover {
  background-color: var(--secondary-hover);
  border-color: var(--primary);
  color: #ffffff;
}

/* ACCENT BUTTON: Electric Violet (#be55ff) */
.okg-btn--accent,
.btn-accent {
  background-color: var(--accent);
  color: #000000;
  border-color: var(--accent);
  font-weight: 600;
}

.okg-btn--accent:hover,
.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #000000;
}

/* ==========================================================================
   4. UNIFIED GLOBAL SEARCH BAR & DROPDOWN (Realtime Colors System)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 10px clamp(18px, 2.4vw, 36px);
  box-sizing: border-box;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Pseudo-element overlay for header when search is focused */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1;
}

body.okb-search-focused .site-header::before {
  opacity: 1;
  pointer-events: auto;
  cursor: default;
}

/* Header inner on desktop (> 1024px): Full-width spanning from logo on far-left to profile on far-right */
.site-header .header-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 32px);
  z-index: 20000;
  box-sizing: border-box;
}

.site-header .site-logo {
  display: flex;
  align-items: center;
  height: 56px;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.site-header .site-logo img {
  height: 54px;
  width: auto;
  max-height: 56px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.site-header .site-logo:hover img {
  transform: scale(1.05);
}

.site-header .okb-header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

/* When search is focused on desktop/laptop: blur and dim logo and profile button */
body.okb-search-focused .site-header .site-logo,
body.okb-search-focused .site-header .okb-header-right {
  opacity: 0.15;
  filter: blur(4px);
  pointer-events: none;
}

/* Elevate header when search is focused */
body.okb-search-focused .site-header {
  z-index: 20000;
}

body.okb-search-focused .site-header .header-inner,
body.okb-search-open .site-header .header-inner,
.site-header:has(.header-search.is-suggesting) .header-inner,
.site-header:has(.header-search-dropdown:not([hidden])) .header-inner {
  z-index: 20050 !important;
}

/* Search Bar Wrapper (Focused & Wide, spans full width between logo and profile) */
.site-header .okb-header-search,
.okb-header-search {
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  min-width: 0;
  z-index: 20050;
}

body.okb-search-focused .site-header .okb-header-search,
body.okb-search-open .site-header .okb-header-search,
.site-header:has(.header-search.is-suggesting) .okb-header-search,
.site-header:has(.header-search-dropdown:not([hidden])) .okb-header-search {
  z-index: 20060 !important;
}

body.okb-search-focused .site-header .header-search,
body.okb-search-open .site-header .header-search,
.site-header .header-search.is-suggesting,
.header-search.is-suggesting,
.site-header:has(.header-search-dropdown:not([hidden])) .header-search {
  z-index: 20070 !important;
}

/* Fullscreen Search Backdrop for desktop/laptop focus mode */
.okb-search-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  cursor: default;
}

body.okb-search-focused .okb-search-backdrop {
  display: block;
}

.header-search,
.okb-universal-search-form,
.header-search.okb-universal-search-form {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
  outline: none;
}

.header-search.okb-universal-search-form:focus-within {
  background: transparent;
  border: none;
  box-shadow: none;
}

.header-search-field-wrapper,
.okb-universal-search-form .header-search-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 52px;
  background-color: #101114;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.2s ease;
}

.header-search-field-wrapper:hover,
.okb-universal-search-form .header-search-field-wrapper:hover {
  border-color: rgba(79, 117, 255, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.header-search-field-wrapper:focus-within,
.okb-universal-search-form .header-search-field-wrapper:focus-within,
.header-search.is-suggesting .header-search-field-wrapper,
body.okb-search-focused .header-search-field-wrapper {
  border-color: #4f75ff;
  background-color: #101114;
  box-shadow: 0 0 0 3px rgba(79, 117, 255, 0.22), 0 8px 30px rgba(0, 0, 0, 0.8);
}

.header-search .search-icon {
  color: #8e95a2;
  font-size: 18px;
  margin-right: 14px;
  flex-shrink: 0;
  transition: color 0.15s ease, transform 0.15s ease;
}

.header-search-field-wrapper:hover .search-icon,
.header-search-field-wrapper:focus-within .search-icon,
body.okb-search-focused .header-search .search-icon {
  color: #4f75ff;
  transform: scale(1.06);
}

.header-search-field {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  cursor: text;
}

.header-search-input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  padding: 0;
}

.header-search-input::placeholder,
.okb-universal-search-form .wp-search-input::placeholder {
  color: #8e95a2;
  font-family: var(--font-family);
  font-size: 14.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-search-back {
  display: none;
}

/* --------------------------------------------------------------------------
   PREDICTIVE SEARCH DROPDOWN CARD (#101114 Matching Profile Dropdown)
   -------------------------------------------------------------------------- */
.header-search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  width: 100%;
  background-color: #101114;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85), 0 0 1px rgba(255, 255, 255, 0.1);
  max-height: min(78vh, 660px);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20080 !important;
  padding: 24px 28px;
  scrollbar-width: thin;
  scrollbar-color: rgba(79, 117, 255, 0.35) transparent;
  box-sizing: border-box;
}

.header-search-dropdown::-webkit-scrollbar {
  width: 6px;
}

.header-search-dropdown::-webkit-scrollbar-thumb {
  background-color: rgba(115, 178, 247, 0.3);
  border-radius: 999px;
}

.header-search-dropdown[hidden] {
  display: none;
}

.header-search-dropdown:not([hidden]),
.header-search.is-suggesting .header-search-dropdown {
  display: block;
}

/* Slim Glowing Progress Bar inside Dropdown */
.okb-live-loading-bar {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(115, 178, 247, 0.1);
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.header-search.is-loading .okb-live-loading-bar {
  opacity: 1;
}

.header-search.is-loading .okb-live-loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  animation: okbSearchLoadingBar 1s infinite linear;
}

@keyframes okbSearchLoadingBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Predictive Wrap & Sections */
.okb-live-predictive-wrap,
.okb-live-search-panel,
.okb-quickstart-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.okb-live-section-kicker {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Suggestion Chips */
.okb-live-suggestions-chips,
.okb-live-suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.okb-live-suggest-chip,
.okb-live-chip-btn,
.okb-try-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(115, 178, 247, 0.2);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.okb-live-suggest-chip i,
.okb-live-chip-btn i {
  color: var(--primary);
  font-size: 11px;
}

.okb-live-suggest-chip:hover,
.okb-live-chip-btn:hover,
.okb-try-pill:hover {
  background-color: var(--primary);
  color: #000000;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: none;
}

.okb-live-suggest-chip:hover i,
.okb-live-chip-btn:hover i {
  color: #000000;
}

/* Intent Category Search Routes (2 columns on desktop) */
.okb-live-intent-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.okb-live-intent-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: #06090c;
  border: 1px solid rgba(115, 178, 247, 0.16);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13.5px;
  transition: all 0.15s ease;
}

.okb-live-intent-card:hover {
  background-color: rgba(115, 178, 247, 0.12);
  border-color: rgba(115, 178, 247, 0.4);
  color: var(--primary);
  transform: translateX(3px);
}

.okb-live-intent-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: rgba(115, 178, 247, 0.15);
  color: var(--primary);
  font-size: 13px;
  margin-right: 10px;
}

.okb-live-intent-count {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* QuickStart Categories Grid (4 columns across wide desktop) */
.okb-quickstart-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.okb-quickstart-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 14px;
  background-color: #14161c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #ffffff;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.okb-quickstart-link:hover {
  background-color: #1a1d26;
  border-color: rgba(79, 117, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.okb-quickstart-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.okb-quickstart-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.okb-quickstart-content strong {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
}

.okb-quickstart-content small {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.okb-quickstart-arrow {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease;
}

.okb-quickstart-link:hover .okb-quickstart-arrow {
  transform: translateX(3px);
  color: var(--primary);
}

/* Matching Assets Preview Grid (Fixed 16:9 ratio for ALL cards) */
.okb-live-assets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.okb-live-asset-mini {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background-color: #14161c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.okb-live-asset-mini:hover {
  border-color: #4f75ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.okb-live-asset-mini-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000000;
  overflow: hidden;
}

.okb-live-asset-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.okb-live-asset-mini-title {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  white-space: nowrap !important;
  text-wrap: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.okb-live-asset-mini:hover .okb-live-asset-mini-title {
  color: var(--primary);
}

/* View All Results Button */
.okb-live-view-all-btn,
a.okb-live-view-all-btn,
.okb-live-view-all-btn:link,
.okb-live-view-all-btn:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  margin-top: 14px;
  border-radius: 999px;
  background-color: var(--primary);
  color: #000000;
  border: 1px solid var(--primary);
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.okb-live-view-all-btn:hover,
a.okb-live-view-all-btn:hover,
.okb-live-view-all-btn:focus,
.okb-live-view-all-btn:active {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: none;
}

.okb-live-view-all-btn span,
.okb-live-view-all-btn i,
.okb-live-view-all-btn:hover span,
.okb-live-view-all-btn:hover i,
a.okb-live-view-all-btn:hover span,
a.okb-live-view-all-btn:hover i {
  color: #000000;
}

.okb-live-view-all-btn:hover i,
a.okb-live-view-all-btn:hover i {
  transform: translateX(4px);
}

.okb-live-view-all-text-mobile {
  display: none;
}

/* Header Right Actions & Profile Button */
.site-header .okb-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   MAGNIFIC STYLE PROFILE BUTTON & CIRCULAR CREDIT RING
   ========================================================================== */
.site-header .profile-btn,
.site-header .profile-btn.ok-profile-btn,
.profile-btn.ok-profile-btn,
.site-header #profileToggle,
#profileToggle {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  overflow: visible !important;
  outline: none !important;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), filter 0.18s ease !important;
}

.site-header .profile-btn:hover,
.site-header .profile-btn.ok-profile-btn:hover,
.profile-btn.ok-profile-btn:hover,
#profileToggle:hover {
  transform: scale(1.05) !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 8px rgba(79, 117, 255, 0.45)) !important;
}

.ok-avatar-ring-container {
  position: relative !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.ok-avatar-ring-svg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 50px !important;
  height: 50px !important;
  pointer-events: none !important;
  overflow: visible !important;
  display: block !important;
}

.ok-avatar-ring-track {
  fill: none !important;
  stroke: #222631 !important; /* Sleek dark grey/slate for credit left */
  stroke-width: 2.8 !important;
}

.ok-avatar-ring-bar {
  fill: none !important;
  stroke: #4f75ff !important; /* Vibrant theme blue for credit used */
  stroke-width: 2.8 !important;
  stroke-linecap: round !important;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ok-avatar-ring-img {
  position: relative !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #111317 !important;
  z-index: 1 !important;
}

.ok-avatar-ring-img img,
.ok-avatar-ring-img .profile-avatar,
.ok-avatar-ring-img .avatar {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Guest avatar button */
.ok-avatar-ring-container--guest {
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
}

.ok-avatar-ring-img--guest {
  color: #c9d1d9 !important;
  font-size: 15px !important;
  background: #161922 !important;
}

/* ==========================================================================
   MAGNIFIC STYLE PROFILE DROPDOWN
   ========================================================================== */
body .site-header #profileMenu.profile-dropdown,
body .site-header .profile-dropdown.ok-profile-dropdown-v2,
body > #profileMenu.profile-dropdown,
#profileMenu.profile-dropdown {
  position: absolute !important;
  top: calc(100% + 14px) !important;
  right: max(24px, env(safe-area-inset-right)) !important;
  left: auto !important;
  margin: 0 !important;
  width: 320px !important;
  min-width: 290px !important;
  max-width: min(320px, calc(100vw - 32px)) !important;
  background: #101114 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  padding: 16px !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85), 0 0 1px rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  z-index: 200100 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
  transform-origin: top right !important;
  font-family: inherit !important;
}

body .site-header #profileMenu.profile-dropdown:not([hidden]),
body .site-header .profile-dropdown.ok-profile-dropdown-v2:not([hidden]),
body > #profileMenu.profile-dropdown:not([hidden]),
#profileMenu.profile-dropdown:not([hidden]) {
  display: block !important;
}

body .site-header #profileMenu.profile-dropdown[hidden],
body .site-header .profile-dropdown.ok-profile-dropdown-v2[hidden],
body > #profileMenu.profile-dropdown[hidden],
#profileMenu.profile-dropdown[hidden],
#profileMenu[hidden],
.profile-dropdown[hidden] {
  display: none !important;
}

/* Suppress profile dropdown when search is focused, open, or predicting */
body.okb-search-open #profileMenu,
body.okb-search-focused #profileMenu,
body:has(.header-search.is-suggesting) #profileMenu,
body:has(.header-search-dropdown:not([hidden])) #profileMenu,
body.okb-search-open .profile-dropdown,
body.okb-search-focused .profile-dropdown,
body:has(.header-search.is-suggesting) .profile-dropdown,
body:has(.header-search-dropdown:not([hidden])) .profile-dropdown {
  display: none !important;
}

/* 1. Header: User Info Row */
.ok-pd-head {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ok-pd-avatar-wrap {
  position: relative !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  flex-shrink: 0 !important;
}

.ok-pd-avatar-img,
.ok-pd-avatar-wrap img,
.ok-pd-avatar-wrap .avatar {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  border: none !important;
  box-shadow: none !important;
}

.ok-pd-crown-badge {
  position: absolute !important;
  top: -3px !important;
  right: -3px !important;
  width: 17px !important;
  height: 17px !important;
  background: #16181f !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
  z-index: 2 !important;
}

.ok-pd-crown-badge svg {
  display: block !important;
  width: 11px !important;
  height: 11px !important;
}

.ok-pd-user-meta {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  flex: 1 !important;
  overflow: hidden !important;
}

.ok-pd-user-name {
  color: #ffffff !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
}

.ok-pd-user-email {
  color: #8e95a0 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  margin-top: 2px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
}

/* Subtle Divider */
.ok-pd-divider {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  margin: 14px 0 !important;
  border: none !important;
  padding: 0 !important;
  display: block !important;
}

/* 2. Credit Usage Section */
.ok-pd-credit-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ok-pd-credit-heading {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
}

.ok-pd-usage-icon {
  flex-shrink: 0 !important;
  display: block !important;
}

.ok-pd-credit-metrics {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  margin-top: 1px !important;
}

.ok-pd-metric-item {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.ok-pd-metric-lbl {
  color: #9ca3af !important;
  font-weight: 400 !important;
}

.ok-pd-metric-val {
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* Horizontal Raw Progress Bar: Grey for credit left, Blue for credit used */
.ok-pd-progress-track {
  width: 100% !important;
  height: 6px !important;
  background: #222631 !important; /* Grey for credit left */
  border-radius: 999px !important;
  overflow: hidden !important;
  margin-top: 3px !important;
  position: relative !important;
  display: block !important;
}

.ok-pd-progress-fill {
  height: 100% !important;
  background: #4f75ff !important; /* Blue for credit used */
  border-radius: 999px !important;
  transition: width 0.35s ease !important;
  min-width: 0 !important;
  display: block !important;
}

/* 3. Menu List */
.ok-pd-menu-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ok-pd-menu-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 8.5px 10px !important;
  border-radius: 10px !important;
  color: #e1e4ea !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  transition: background 0.15s ease, color 0.15s ease !important;
  min-height: auto !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}

.ok-pd-menu-item:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
}

.ok-pd-menu-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
  color: #8a92a0 !important;
  transition: color 0.15s ease !important;
}

.ok-pd-menu-icon svg {
  display: block !important;
}

.ok-pd-menu-item:hover .ok-pd-menu-icon {
  color: #ffffff !important;
}

.ok-pd-menu-text {
  flex: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.ok-pd-plan-pill {
  padding: 3px 8px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  background: #1a2235 !important;
  color: #7da4ff !important;
  letter-spacing: 0.2px !important;
  text-transform: capitalize !important;
  margin-left: auto !important;
}

.ok-pd-menu-item--pin {
  cursor: default !important;
}

.ok-pd-pin-btn {
  margin-left: auto !important;
  padding: 3px 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 6px !important;
  color: #d1d5db !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
}

.ok-pd-pin-btn:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

.ok-pd-menu-item--logout {
  color: #9ca3af !important;
}

.ok-pd-menu-item--logout:hover {
  color: #f87171 !important;
}

.ok-pd-menu-item--logout:hover .ok-pd-menu-icon {
  color: #f87171 !important;
}

.okb-profile-backdrop {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 199990 !important;
  pointer-events: auto !important;
  cursor: default !important;
}

body.okb-profile-open .okb-profile-backdrop {
  display: block !important;
}

body.okb-profile-open {
  overflow: visible !important;
}

/* Guest / Logged-Out Card */
.profile-login-box {
  text-align: center;
  padding: 10px 4px 4px;
}

.profile-login-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(115, 178, 247, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 12px;
}

.profile-login-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.profile-login-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 16px;
}

.profile-login-btn {
  width: 100%;
  height: 42px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 12px;
}

.profile-login-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.profile-login-help {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.profile-login-help:hover {
  color: var(--primary);
}

.profile-login-dot {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

/* Mobile Search Toggle & Backdrop (Desktop Defaults) */
.okb-mobile-search-toggle {
  display: none;
}

body.okb-profile-open .site-header {
  z-index: 200050 !important;
}

/* Responsive adjustments & Mobile Overlays */
@media (max-width: 1024px) {
  .site-header {
    padding: 0 !important;
  }
  .site-header .header-inner {
    width: 100%;
    max-width: 100%;
    padding-left: max(20px, env(safe-area-inset-left)) !important;
    padding-right: max(20px, env(safe-area-inset-right)) !important;
    gap: 18px;
  }
  .site-header .site-logo img {
    height: 54px !important;
    max-height: 54px !important;
    width: auto !important;
  }

  .site-header .okb-header-search {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .header-search-field-wrapper {
    height: 50px;
    padding: 0 20px;
  }
  .okb-quickstart-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 !important;
  }
  .site-header .header-inner {
    width: 100%;
    padding-left: max(18px, env(safe-area-inset-left)) !important;
    padding-right: max(18px, env(safe-area-inset-right)) !important;
    gap: 16px;
  }
  .site-header .site-logo img {
    height: 52px !important;
    max-height: 52px !important;
    width: auto !important;
  }
}

@media (max-width: 768px) {
  body.okb-search-focused .okb-search-backdrop {
    display: none;
  }

  .site-header {
    padding: 0 !important;
  }

  .site-header .header-inner {
    width: 100%;
    min-height: 64px;
    padding-left: max(16px, env(safe-area-inset-left)) !important;
    padding-right: max(16px, env(safe-area-inset-right)) !important;
    gap: 12px;
  }

  .site-header .site-logo {
    height: 50px;
  }

  .site-header .site-logo img {
    height: 50px !important;
    max-height: 50px !important;
    width: auto !important;
  }



  .okb-quickstart-links-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .okb-live-intent-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .okb-live-assets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .okb-live-view-all-text-desktop {
    display: none;
  }

  .okb-live-view-all-text-mobile {
    display: inline;
  }

  .okb-mobile-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    border: 1px solid rgba(115, 178, 247, 0.25);
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .okb-mobile-search-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
  }

  .site-header .okb-header-search {
    display: none;
  }

  body.okb-search-open .site-header .okb-header-search {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 60px;
    z-index: 100002;
    background: #06090c;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    align-items: center;
    padding: 8px 14px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.admin-bar.okb-search-open .site-header .okb-header-search {
    top: 46px;
  }

  body.okb-search-open .site-header .okb-header-search .header-search {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  body.okb-search-open .site-header .mobile-search-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
  }

  body.okb-search-open .site-header .header-inner > *:not(.okb-header-search) {
    display: none;
  }

  body.okb-search-open .site-header .header-search-dropdown {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
    border-radius: 0 !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 16px 16px 40px;
    background-color: #06090c;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-sizing: border-box;
    z-index: 100003;
  }

  body.admin-bar.okb-search-open .site-header .header-search-dropdown {
    top: 106px;
    height: calc(100vh - 106px);
    max-height: calc(100vh - 106px);
  }

  /* Mobile profile dropdown: anchor directly beneath profile toggle button with professional margin */
  body .site-header #profileMenu.profile-dropdown,
  body .site-header .profile-dropdown.ok-profile-dropdown-v2,
  body > #profileMenu.profile-dropdown,
  #profileMenu.profile-dropdown,
  .profile-dropdown {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: max(16px, env(safe-area-inset-right)) !important;
    left: auto !important;
    margin: 0 !important;
    width: min(320px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85), 0 0 1px rgba(255, 255, 255, 0.1) !important;
    z-index: 200100 !important;
    transform: none !important;
  }

  .okb-profile-backdrop {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 199990 !important;
    pointer-events: auto !important;
  }

  body.okb-profile-open .okb-profile-backdrop {
    display: block !important;
  }

  body.okb-profile-open {
    overflow: visible !important;
  }
}

@media (max-width: 480px) {
  .site-header .site-logo img {
    height: 38px;
  }

  .okb-mobile-search-toggle {
    width: 38px;
    height: 38px;
  }
}

/* ==========================================================================
   5. HOMEPAGE SYSTEM (Matching Realtime Colors Landing Page Structure)
   ========================================================================== */
.okg-home,
.okg-home-v2 {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

.okg-shell {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.okg-orb {
  display: none;
}

/* --- SECTION 1: GOOGLE DEEPMIND CARD-STYLE HERO --- */
.okg-hero {
  position: relative;
  padding: 28px 0 clamp(46px, 5vw, 60px);
  background-color: #000000;
  width: 100%;
  overflow: hidden;
}

.okg-hero-stage {
  position: relative;
  width: 100%;
}

.okg-hero-track {
  display: flex;
  gap: clamp(40px, 3.5vw, 56px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(28px, calc((100vw - 1320px) / 2 + 28px));
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding-top: 8px;
  padding-bottom: 24px;
  padding-left: max(28px, calc((100vw - 1320px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1320px) / 2 + 28px));
}

.okg-hero-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.okg-hero-card {
  position: relative;
  flex: 0 0 clamp(300px, 23.5vw, 360px);
  height: 520px;
  aspect-ratio: 9 / 14;
  border-radius: 28px;
  overflow: hidden;
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
  cursor: pointer;
}

.okg-hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(115, 178, 247, 0.5);
  box-shadow: 0 24px 50px rgba(3, 16, 48, 0.9), 0 0 24px rgba(255, 255, 255, 0.08);
}

.okg-hero-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.okg-hero-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transition: none !important;
}

.okg-hero-card .okb-media-softload,
.okg-hero-card video,
.okg-hero-card img {
  opacity: 1 !important;
  filter: none !important;
  visibility: visible !important;
  transition: none !important;
}

.okg-hero-card__scrim-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.okg-hero-card__scrim-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72%;
  background: linear-gradient(
    0deg,
    rgba(4, 7, 12, 0.96) 0%,
    rgba(4, 7, 12, 0.85) 38%,
    rgba(4, 7, 12, 0.42) 68%,
    rgba(4, 7, 12, 0) 100%
  );
  pointer-events: none;
}

.okg-hero-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
  box-sizing: border-box;
}

.okg-hero-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: auto;
  width: 100%;
}

.okg-hero-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.okg-hero-card__title {
  font-family: var(--font-family);
  font-size: 21px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.okg-hero-card__desc {
  font-family: var(--font-family);
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.42;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.okg-hero-card__action {
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.okg-hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #000000;
  border-radius: 999px;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.okg-hero-pill:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.okg-deepmind-btn,
.okg-deepmind-bottom .okg-hero-pill {
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-weight: 700;
}

.okg-deepmind-btn:hover,
.okg-deepmind-bottom .okg-hero-pill:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.okg-hero-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-left: max(28px, calc((100vw - 1320px) / 2 + 28px));
}

.okg-hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
  padding: 0;
  outline: none;
}

.okg-hero-arrow:hover:not(:disabled) {
  background-color: var(--secondary-hover);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.04);
}

.okg-hero-arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- SECTION 2 & 3: SPLIT FEATURES (Motion & Library) --- */
.okg-section {
  padding: clamp(46px, 5vw, 60px) 0;
  background-color: #000000;
}

.okg-split {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.okg-split--reverse {
  grid-template-columns: 1.08fr 1fr;
}

.okg-split--reverse .okg-split-copy {
  order: 2;
}

.okg-split--reverse .okg-media-wrap {
  order: 1;
}

.okg-split-copy {
  display: flex;
  flex-direction: column;
}

.okg-split-header {
  display: flex;
  flex-direction: column;
}

.okg-kicker-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.okg-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.okg-kicker {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  display: inline-block;
}

.okg-title {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 14px;
}

.okg-split-lead {
  font-size: 15.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0 0 28px;
  max-width: 520px;
}

.okg-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 32px;
}

.okg-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 16px;
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.okg-feature-item:hover {
  background-color: #06090c;
  border-color: rgba(115, 178, 247, 0.45);
  transform: translateX(4px);
  box-shadow: 0 10px 28px rgba(3, 16, 48, 0.8), 0 0 18px rgba(115, 178, 247, 0.14);
}

.okg-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background-color: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(115, 178, 247, 0.2);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.okg-feature-item:hover .okg-feature-icon {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(115, 178, 247, 0.4);
  transform: scale(1.05);
}

.okg-feature-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.okg-feature-text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #94a3b8;
}

.okg-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.okg-media-wrap {
  position: relative;
  width: 100%;
}

.okg-media-ambient {
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle at center, rgba(115, 178, 247, 0.12) 0%, rgba(190, 85, 255, 0.05) 45%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.okg-media {
  position: relative;
  z-index: 1;
  border-radius: 26px;
  overflow: hidden;
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.75), 0 0 40px -10px rgba(115, 178, 247, 0.14);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
}

.okg-media img,
.okg-media video,
.okg-media__img,
.okg-media__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.okg-media:hover img,
.okg-media:hover video,
.okg-media:hover .okg-media__img,
.okg-media:hover .okg-media__video {
  transform: scale(1.025);
}

.okg-media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 2;
}

.okg-media-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background-color: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #f1f5f9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.okg-badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: okg-pulse 2s infinite ease-in-out;
}

@keyframes okg-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.okg-media-note {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: auto;
  max-width: calc(100% - 36px);
  z-index: 3;
  background-color: rgba(8, 12, 20, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.okg-media-note__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  flex-shrink: 0;
}

.okg-media-note__content strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.okg-media-note__content span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
}

/* --- SECTION 5: STUDIO LIBRARY & COLLECTIONS SLIDER --- */
.okg-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.okg-studio-slider-controls,
.okg-featured-collection__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.okg-collection-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-btn);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}

.okg-collection-arrow:hover {
  background-color: var(--secondary-hover);
  border-color: var(--primary);
  color: var(--primary);
}

.okg-text-link,
.okg-featured-collection__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-left: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.okg-featured-collection__link--below {
  display: none;
}

@media (max-width: 680px) {
  .okg-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .okg-studio-slider-controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .okg-studio-slider-controls .okg-collection-arrow {
    width: 40px;
    height: 40px;
  }

  .okg-studio-slider-controls .okg-text-link {
    margin-left: auto;
    white-space: nowrap;
    font-size: 13.5px;
  }
}

.okg-studio-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 14px;
}

.okg-studio-slider__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 2px 20px;
}

.okg-studio-slider__track::-webkit-scrollbar {
  display: none;
}

.okg-studio-slider__slide {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  width: calc((100% - 40px) / 3);
}

@media (max-width: 1024px) {
  .okg-studio-slider__slide {
    flex: 0 0 calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 640px) {
  .okg-studio-slider__slide {
    flex: 0 0 85%;
    width: 85%;
  }
}

.okg-collection-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background-color: #06090c;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.okg-collection-card * {
  pointer-events: none;
}

.okg-collection-card:hover {
  transform: translateY(-4px);
  background-color: #06090c;
  border-color: rgba(115, 178, 247, 0.5);
  box-shadow: 0 16px 36px rgba(3, 16, 48, 0.9), 0 0 20px rgba(255, 255, 255, 0.08);
}

.okg-collection-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #000000;
}

.ok-collection-thumb {
  width: 100%;
  height: 100%;
  display: grid;
  gap: 2px;
  overflow: hidden;
}

.ok-collection-thumb__tile {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.ok-collection-thumb__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ok-collection-thumb--1 {
  grid-template-columns: 1fr;
}

.ok-collection-thumb--2 {
  grid-template-columns: repeat(2, 1fr);
}

.ok-collection-thumb--3 {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.ok-collection-thumb--3 .ok-collection-thumb__tile--1 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.ok-collection-thumb--3 .ok-collection-thumb__tile--2 {
  grid-column: 1;
  grid-row: 1;
}

.ok-collection-thumb--3 .ok-collection-thumb__tile--3 {
  grid-column: 1;
  grid-row: 2;
}

.okg-collection-card__body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
}

.okg-collection-card__body span {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- SECTION 6: STUDIO PROCESS (4 Steps) --- */
.okg-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.okg-process article {
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  padding: 32px 24px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.okg-process article:hover {
  background-color: #06090c;
  border-color: rgba(115, 178, 247, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(3, 16, 48, 0.8), 0 0 20px rgba(115, 178, 247, 0.16);
}

.okg-process span {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.okg-process h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 10px;
}

.okg-process p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .okg-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .okg-process {
    grid-template-columns: 1fr;
  }
}


/* General Theme Buttons & Slider Poster/Video Layers */
.okg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-sizing: border-box;
}

.okg-btn--blue,
.okg-btn--primary {
  background-color: #73b2f7;
  color: #000000;
  border: none;
  box-shadow: none;
}

.okg-btn--blue:hover,
.okg-btn--primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: none;
}

.okg-btn--blue:hover *,
.okg-btn--primary:hover * {
  color: #000000;
}

.okg-googleai-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  opacity: 1;
  transition: transform 0.4s ease;
}

.okg-googleai-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.4s ease;
}

.okg-googleai-card:hover .okg-googleai-card__poster,
.okg-googleai-card:hover .okg-googleai-card__video {
  transform: scale(1.04);
}

.okg-blog-card {
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.okg-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(115, 178, 247, 0.45);
  box-shadow: 0 16px 36px rgba(3, 16, 48, 0.85), 0 0 20px rgba(115, 178, 247, 0.14);
}

/* --- SECTION 7: GOOGLE AI-STYLE 2-LINE INFINITE LOOP SHOWCASE (PICK YOUR STYLE) --- */
.okg-googleai-section {
  position: relative;
  background-color: #000000;
  overflow: hidden;
}

.okg-googleai-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(24px, 3vw, 34px);
  padding: 0 24px;
}

.okg-googleai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background-color: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.okg-googleai-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 12px;
}

.okg-googleai-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

.okg-googleai-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.okg-googleai-vignette {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(50px, 10vw, 160px);
  z-index: 10;
  pointer-events: none;
}

.okg-googleai-vignette--left {
  left: 0;
  background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.85) 30%, transparent 100%);
}

.okg-googleai-vignette--right {
  right: 0;
  background: linear-gradient(to left, #000000 0%, rgba(0, 0, 0, 0.85) 30%, transparent 100%);
}

.okg-googleai-row {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.okg-googleai-shifter {
  display: flex;
  width: max-content;
  transition: transform 0.45s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform;
}

.okg-googleai-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: okg-marquee-scroll 75s linear infinite;
}

.okg-googleai-track--reverse {
  animation: okg-marquee-scroll-reverse 80s linear infinite;
}

.okg-googleai-wrapper:hover .okg-googleai-track,
.okg-googleai-wrapper.is-paused .okg-googleai-track {
  animation-play-state: paused;
}

@keyframes okg-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes okg-marquee-scroll-reverse {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.okg-googleai-group {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  padding-right: clamp(14px, 1.6vw, 22px);
}

.okg-googleai-card {
  position: relative;
  flex: 0 0 clamp(280px, 22vw, 360px);
  width: clamp(280px, 22vw, 360px);
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  display: block;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.okg-googleai-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(115, 178, 247, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 24px rgba(115, 178, 247, 0.25);
  z-index: 5;
}

.okg-googleai-card__media-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.okg-googleai-card__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.okg-googleai-card:hover .okg-googleai-card__media {
  transform: scale(1.05);
}

.okg-googleai-card__scrim {
  display: none;
}

.okg-googleai-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 14px;
  z-index: 3;
  pointer-events: none;
  background: transparent;
}

.okg-googleai-card__title {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.okg-googleai-footer {
  max-width: 1320px;
  margin: clamp(20px, 2.5vw, 28px) auto 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.okg-googleai-btn--toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  outline: none;
}

.okg-googleai-btn--toggle i {
  color: #000000;
  font-size: 12px;
}

.okg-googleai-btn--toggle:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.okg-googleai-btn--toggle:hover i {
  color: #000000;
}

.okg-googleai-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background-color: #73b2f7;
  color: #000000;
  border: none;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(115, 178, 247, 0.25);
}

.okg-googleai-all-link i {
  font-size: 12px;
  color: #000000;
  transition: transform 0.2s ease;
}

.okg-googleai-all-link:hover {
  background-color: #8bc2ff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(115, 178, 247, 0.4);
}

.okg-googleai-all-link:hover i {
  transform: translateX(3px);
  color: #000000;
}

/* --- SECTION 8: GOOGLE DEEPMIND-STYLE CENTERING VIDEO SLIDER --- */
.okg-deepmind-slider-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

.okg-deepmind-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  padding: 4px 0;
}

.okg-deepmind-track {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px calc(50vw - min(540px, calc(50vw - 60px)));
}

.okg-deepmind-track::-webkit-scrollbar {
  display: none;
}

.okg-deepmind-slide {
  position: relative;
  flex: 0 0 auto;
  width: min(1080px, calc(100vw - 120px));
  aspect-ratio: 16 / 9;
  min-height: 380px;
  max-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #06090c;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(115, 178, 247, 0.2);
  scroll-snap-align: center;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  cursor: pointer;
}

.okg-deepmind-slide.is-active {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.8), 0 0 36px rgba(255, 255, 255, 0.08);
  border-color: rgba(115, 178, 247, 0.6);
  cursor: default;
}

.okg-deepmind-media-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.okg-deepmind-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  background-color: #0d121d;
}

.okg-deepmind-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.6) 42%,
    rgba(0, 0, 0, 0.15) 75%,
    transparent 100%
  );
  pointer-events: none;
}

.okg-deepmind-content {
  position: absolute;
  bottom: clamp(28px, 4.5vw, 56px);
  left: clamp(28px, 4.5vw, 56px);
  max-width: min(600px, 88%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.okg-deepmind-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.okg-deepmind-desc {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 400;
  line-height: 1.5;
  max-width: 480px;
}

.okg-deepmind-bottom {
  margin-top: 4px;
}

.okg-deepmind-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #000000;
  border-radius: 999px;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.okg-deepmind-btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* Footer Controls below DeepMind slider */
.okg-deepmind-footer {
  max-width: 1320px;
  margin: clamp(20px, 2.5vw, 32px) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1320px) / 2 + 24px));
}

.okg-deepmind-kicker {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

.okg-deepmind-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.okg-deepmind-arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  background-color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.okg-deepmind-arrow:hover {
  background-color: var(--secondary-hover);
  border-color: var(--primary);
  color: var(--primary);
}

.okg-deepmind-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- SECTION 9: OPENART STYLE FINAL CTA BLOCK (Single Spotlight, Brand Color) --- */
.okg-final {
  position: relative;
  background-color: #000000;
}

.okg-openart-card {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 28px;
  background-color: #000000;
  background-image: radial-gradient(85% 65% at 50% 0%, rgba(115, 178, 247, 0.35) 0%, rgba(3, 16, 48, 0.5) 45%, rgba(0, 0, 0, 0.98) 85%);
  border: 1px solid rgba(115, 178, 247, 0.2);
  padding: clamp(60px, 7.5vw, 92px) clamp(24px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.85);
}

.okg-openart-title {
  font-family: var(--font-family);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.15;
}

.okg-openart-desc {
  font-size: clamp(14.5px, 1.7vw, 16.5px);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto clamp(28px, 3.5vw, 38px);
}

.okg-openart-actions {
  display: flex;
  justify-content: center;
}

.okg-openart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #000000;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.okg-openart-btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   6. OPENART AI STYLE BRAND FOOTER (Black to Brand Color Gradient)
   ========================================================================== */
.okb-footer,
#site-footer {
  position: relative;
  background-color: #000000;
  background-image: linear-gradient(
    180deg,
    #000000 0%,
    #020814 15%,
    #05152d 30%,
    #092652 48%,
    #103c80 65%,
    #1958b4 80%,
    #2475e8 93%,
    #3b8cf8 100%
  );
  border-top: none;
  padding: clamp(60px, 7vw, 84px) 0 0;
  color: var(--text-muted);
  overflow: hidden;
}

.okb-footer-shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 40px);
}

.okb-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(48px, 6vw, 100px);
  position: relative;
  z-index: 2;
}

.okb-footer-brand {
  flex: 0 0 auto;
  max-width: 320px;
}

.okb-footer-tagline {
  font-family: var(--font-family);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.15;
}

.okb-footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.okb-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.okb-footer-socials a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.okb-footer-links {
  margin-left: auto;
  max-width: 660px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}

.okb-footer-col h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.okb-footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.okb-footer-col a:hover {
  color: #ffffff;
}

/* Giant Brand Wordmark across the bottom */
.okb-footer-brand-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: clamp(48px, 6vw, 76px);
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.okb-footer-hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 90% 100% at 50% 100%, rgba(115, 178, 247, 0.28) 0%, rgba(36, 117, 232, 0.15) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.okb-footer-hero-wordmark {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  line-height: 0;
}

.okb-footer-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 20%, #000000 55%, #000000 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 20%, #000000 55%, #000000 100%);
  opacity: 0.95;
}

/* ==========================================================================
   25. DEDICATED SEARCH RESULTS PAGE (Filter Bar, Results Grid, Tabs)
   ========================================================================== */
.okb-search-page-header {
  padding: 32px 0 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--ok-border, #2c3542);
}

.okb-search-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ok-blue-ui, var(--ok-brand-blue-light, #60a5fa));
  margin-bottom: 8px;
}

.okb-search-title-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.okb-search-title-row h1 {
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: 800;
  margin: 0;
  color: var(--ok-ink, #f5f7fb);
  line-height: 1.15;
}

.okb-search-title-row h1 span {
  color: var(--ok-blue-ui, var(--ok-brand-blue-light, #60a5fa));
}

.okb-search-total-count {
  font-size: 14.5px;
  color: var(--ok-ink-muted, #a8b0bf);
  font-weight: 600;
}

/* Intent & Typo Alerts */
.okb-search-intent-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ok-blue-soft, rgba(59, 130, 246, 0.16));
  border: 1px solid var(--ok-border-blue, rgba(59, 130, 246, 0.42));
  color: var(--ok-ink, #f5f7fb);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 8px;
}

.okb-search-intent-badge i {
  color: var(--ok-blue-ui, var(--ok-brand-blue-light, #60a5fa));
}

.okb-search-intent-badge a {
  color: var(--ok-blue-ui, var(--ok-brand-blue-light, #60a5fa));
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 700;
}

.okb-search-intent-badge a:hover {
  color: var(--ok-violet, var(--ok-brand-violet-light, #a78bfa));
}

.okb-search-typo-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--ok-radius-pill);
  background: var(--ok-brand-violet-soft);
  border: 1px solid var(--ok-border-violet);
  color: var(--ok-brand-violet-light);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 8px;
}

.okb-search-typo-notice a {
  color: var(--ok-brand-blue-light);
  text-decoration: underline;
  margin-left: 4px;
}

.okb-search-typo-notice a:hover {
  color: var(--ok-ink);
}

/* Asset Type Summary Tabs */
.okb-search-tabs-wrap {
  position: relative;
  margin: 20px 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.okb-search-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.okb-search-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0 8px;
  list-style: none;
  margin: 0;
  min-width: max-content;
}

.okb-search-tab-item {
  margin: 0;
}

.okb-search-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ok-surface-soft, #171d26);
  border: 1px solid var(--ok-border, #2c3542);
  color: var(--ok-ink-soft, #d7dce5);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.okb-search-tab-btn:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--ok-violet, var(--ok-brand-violet-light, #a78bfa));
  color: var(--ok-violet, var(--ok-brand-violet-light, #a78bfa));
  transform: translateY(-1px);
}

.okb-search-tab-btn.is-active {
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, .18), transparent 34%),
    linear-gradient(115deg, var(--ok-blue-ui, var(--ok-brand-blue-light, #60a5fa)) 0%, var(--ok-blue-ui, var(--ok-brand-blue-light, #60a5fa)) 58%, #5b9cff 100%);
  border-color: transparent;
  color: var(--ok-surface, var(--ok-bg-surface, #10131a));
  font-weight: 760;
  box-shadow: none;
}

.okb-search-tab-btn.is-active i {
  color: var(--ok-surface, var(--ok-bg-surface, #10131a));
}

.okb-search-tab-count {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
}

.okb-search-tab-btn.is-active .okb-search-tab-count {
  background: rgba(0, 0, 0, 0.2);
  color: var(--ok-surface, var(--ok-bg-surface, #10131a));
}

/* =========================================================
   4. DROPDOWN FILTER SYSTEM (.ok-stock-filter-menu)
========================================================= */
/* Full width search page container */
.okb-search-page {
  overflow: visible;
  width: 100%;
  max-width: 100%;
}

.okb-search-page .theme-container {
  overflow: visible;
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(16px, 2.5vw, 40px);
  box-sizing: border-box;
}

/* Dedicated Fixed Filter Bar â€” embedded directly inside fixed site-header */
.site-header {
  overflow: visible;
  border-bottom: none;
}

.site-header .okb-search-filter-bar,
.okb-search-filter-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  width: 100%;
  z-index: 10050;
  padding: 10px clamp(16px, 2.5vw, 40px);
  background: #000000 !important; /* Seamlessly matches pure black header and body background */
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

/* Ensure filter bar drops strictly below search dropdown and dims when search or dropdown is open */
body.okb-search-focused .okb-search-filter-bar,
body.okb-search-focused .site-header .okb-search-filter-bar,
body.okb-search-open .okb-search-filter-bar,
body.okb-search-open .site-header .okb-search-filter-bar,
.site-header:has(.header-search.is-suggesting) .okb-search-filter-bar,
.site-header:has(.header-search-dropdown:not([hidden])) .okb-search-filter-bar,
body:has(.header-search.is-suggesting) .okb-search-filter-bar,
body:has(.header-search-dropdown:not([hidden])) .okb-search-filter-bar {
  z-index: 1 !important;
  opacity: 0.15 !important;
  pointer-events: none !important;
}

.okb-search-filter-bar::-webkit-scrollbar {
  display: none;
  height: 0;
}

/* Ensure site-header and filter bar do NOT clip dropdown panels when open */
.site-header,
.site-header .header-inner {
  overflow: visible;
}

.site-header .okb-search-filter-bar:has(.ok-stock-filter-menu[open]),
.site-header .okb-search-filter-bar.has-open-dropdown,
.okb-search-filter-bar:has(.ok-stock-filter-menu[open]),
.okb-search-filter-bar.has-open-dropdown {
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  z-index: 10500;
}

.ok-stock-filter-menu[open] {
  position: relative;
  z-index: 10600;
}

.ok-stock-filter-menu[open] .ok-stock-filter-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10700;
}

.okb-search-filters-left,
.okb-search-filters-right {
  overflow: visible;
  position: relative;
}

/* Fallback if filter bar is rendered standalone outside header */
main .okb-search-filter-bar {
  position: fixed;
  top: var(--ok-fixed-header-height, 76px);
  left: 0;
  right: 0;
}

body.admin-bar main .okb-search-filter-bar {
  top: calc(var(--ok-fixed-header-height, 76px) + 32px);
}

@media (max-width: 782px) {
  body.admin-bar main .okb-search-filter-bar {
    top: calc(var(--ok-fixed-header-height, 58px) + 46px);
  }
}

/* Results section positioned cleanly below header & filter bar without extra gap */
.okb-search-page .ok-stock-results {
  padding-top: 18px; /* Compact, balanced spacing directly below filter bar */
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .okb-search-page .ok-stock-results {
    padding-top: 14px;
  }
}

/* Horizontal single-line slider for filter tabs (Desktop & Tablets >= 600px) */
.okb-search-filters-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.okb-filter-lead-icon,
.ok-stock-filter-menu {
  flex-shrink: 0;
  white-space: nowrap;
}

.okb-filter-lead-icon {
  width: 38px;
  height: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #73b2f7;
  font-size: 13px;
  flex-shrink: 0;
}

.okb-search-filters-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 14px;
}

/* =========================================================
   MOBILE (< 600px) RESPONSIVE FILTER TRIGGER BAR & DRAWER
   Matching user uploaded mockup (media_1788260177898.png & media_1788260195251.png)
========================================================= */
@media (max-width: 599px) {
  .site-header .okb-search-filter-bar,
  .okb-search-filter-bar {
    display: none !important;
  }

  .okb-mobile-filter-bar {
    display: block !important;
    width: 100%;
    padding: 8px 14px;
    background: #000000;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    box-sizing: border-box;
    position: relative;
    z-index: 10050;
  }

  .okb-mobile-filter-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 44px;
    gap: 8px;
    align-items: center;
  }

  .okb-m-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f1f5f9;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
  }

  .okb-m-filter-btn:active {
    background: rgba(115, 178, 247, 0.15);
    border-color: #73b2f7;
  }

  .okb-m-filter-btn--sort {
    padding: 0;
  }

  .okb-m-filter-btn i {
    font-size: 13px;
    color: #73b2f7;
    flex-shrink: 0;
  }

  .okb-m-filter-btn-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .okb-m-chevron {
    font-size: 10px;
    color: #64748b;
    margin-left: auto;
  }

  .okb-m-filter-badge {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #73b2f7;
    box-shadow: 0 0 8px #73b2f7;
  }
}

@media (min-width: 600px) {
  .okb-mobile-filter-bar {
    display: none;
  }
}

/* Filter Drawer Backdrop */
.okb-filter-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 10700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.okb-filter-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Slide-over Filter Drawer */
.okb-filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  height: 100vh;
  height: 100dvh;
  background: #111419;
  z-index: 10750;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

.okb-filter-drawer.is-open {
  transform: translateX(0);
}

.okb-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Drawer Header */
.okb-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.okb-drawer-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.okb-drawer-title i {
  color: var(--ok-blue-ui, var(--ok-brand-blue-light, #60a5fa));
}

.okb-drawer-close {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  max-width: 32px;
  max-height: 32px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.okb-drawer-close:hover,
.okb-drawer-close:active {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(0.95);
}

/* Drawer Body with Accordions */
.okb-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 14px;
}

.okb-drawer-acc {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 0;
}

.okb-drawer-acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.okb-drawer-acc-head::-webkit-details-marker {
  display: none;
}

.okb-drawer-acc-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.okb-drawer-acc-title i {
  font-size: 13px;
  color: var(--ok-blue-ui, var(--ok-brand-blue-light, #60a5fa));
  width: 16px;
  text-align: center;
}

.okb-drawer-chevron {
  font-size: 12px;
  color: #70757a;
  transition: transform 0.2s ease;
}

.okb-drawer-acc[open] .okb-drawer-chevron {
  transform: rotate(180deg);
}

.okb-drawer-acc-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 6px 12px 28px;
}

/* Drawer radio options matching media_1788260177898.png */
.okb-drawer-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 8px;
  border-radius: 6px;
  color: #b0b8c4;
  font-size: 13.5px;
  cursor: pointer;
  user-select: none;
  transition: all 0.12s ease;
}

.okb-drawer-option:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.okb-drawer-option input[type="radio"] {
  display: none;
}

.okb-drawer-option-label {
  flex: 1;
}

/* Customized radio indicator dot matching media_1788260177898.png */
.okb-drawer-option-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.okb-drawer-option input[type="radio"]:checked ~ .okb-drawer-option-radio {
  border-color: #73b2f7;
}

.okb-drawer-option input[type="radio"]:checked ~ .okb-drawer-option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73b2f7;
}

.okb-drawer-option input[type="radio"]:checked ~ .okb-drawer-option-label {
  color: #73b2f7;
  font-weight: 600;
}

/* Drawer Footer with Theme Brand Blue Apply Button */
.okb-drawer-foot {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d1118;
  flex-shrink: 0;
}

.okb-drawer-apply-btn {
  width: 100%;
  height: 46px;
  background: #73b2f7;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.okb-drawer-apply-btn:hover {
  background: #ffffff;
  color: #000000;
}

.okb-drawer-apply-btn:active {
  transform: scale(0.98);
}

body.okb-drawer-open {
  overflow: hidden;
}

/* Orientation box shape indicators (clean SVGs: horizontal, vertical, square) */
.okb-orient-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: var(--ok-brand-blue-light, #60a5fa);
  transition: color 0.15s ease, fill 0.15s ease;
}

.ok-stock-radio .okb-orient-svg {
  margin-right: 2px;
}

.ok-stock-radio:hover .okb-orient-svg,
summary:hover .okb-orient-svg {
  color: #ffffff;
}

.ok-stock-radio.is-active .okb-orient-svg {
  color: var(--ok-brand-blue-light, #60a5fa);
  fill: rgba(59, 130, 246, 0.28);
}

/* Compact panels for orientation, license & resolution */
.ok-stock-filter-menu__panel--orientation {
  min-width: 155px;
  width: max-content;
  max-width: 180px;
}

.ok-stock-filter-menu__panel--compact {
  min-width: 145px;
  width: max-content;
  max-width: 180px;
}

.okb-filter-reset-btn {
  min-height: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.18s ease;
  box-sizing: border-box;
}

.okb-filter-reset-btn:hover {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}

/* Theme-native details filter menu */
.ok-stock-filter-menu {
  position: relative;
  flex: 0 0 auto;
}

.ok-stock-filter-menu summary {
  min-height: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  list-style: none;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.18s ease;
  user-select: none;
  box-sizing: border-box;
}

.ok-stock-filter-menu summary::-webkit-details-marker {
  display: none;
}

.ok-stock-filter-menu summary i:first-child,
.ok-stock-filter-menu summary .okb-orient-svg {
  color: #73b2f7 !important;
  font-size: 13px;
  flex-shrink: 0;
}

.ok-stock-filter-menu summary i:last-child {
  color: #64748b;
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.2s ease, color 0.18s ease;
  flex-shrink: 0;
}

/* Clean theme hover state - NO VIOLET */
.ok-stock-filter-menu:hover summary {
  border-color: rgba(115, 178, 247, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.ok-stock-filter-menu:hover summary i:last-child {
  color: #94a3b8;
}

.ok-stock-filter-menu[open] summary {
  border-color: #73b2f7;
  background: rgba(115, 178, 247, 0.1);
  color: #ffffff;
}

.ok-stock-filter-menu[open] summary i:last-child {
  transform: rotate(180deg);
  color: #73b2f7;
}

.ok-stock-filter-menu.has-active-filter summary {
  border-color: #73b2f7;
  background: rgba(115, 178, 247, 0.14);
  color: #ffffff;
  font-weight: 600;
}

.ok-stock-filter-menu.has-active-filter summary i:first-child,
.ok-stock-filter-menu.has-active-filter summary .okb-orient-svg {
  color: #73b2f7 !important;
}

.ok-stock-filter-remove {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
  margin-left: 4px;
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.ok-stock-filter-remove:hover {
  background: #ef4444;
  color: #ffffff;
  transform: scale(1.08);
}

.okb-filter-count-badge {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  padding: 0 8px;
  white-space: nowrap;
}

.okb-filter-count-badge strong {
  color: #ffffff;
  font-weight: 700;
}

.ok-stock-filter-menu {
  position: relative;
  overflow: visible;
}

.ok-stock-filter-menu[open] {
  position: relative;
  z-index: 10250;
}

/* Floating panel (Dark theme ready & crisp SaaS glass) */
.ok-stock-filter-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10300;
  min-width: 200px;
  max-width: min(340px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow-y: auto;
  max-height: 360px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #0d1118;
  box-shadow: 0 16px 40px -4px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(115, 178, 247, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-sizing: border-box;
}

.ok-stock-filter-menu__panel::-webkit-scrollbar {
  width: 5px;
}
.ok-stock-filter-menu__panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}

.ok-stock-filter-menu__panel--right {
  left: auto;
  right: 0;
}

/* Pricing Filter Panel & Box Styling */
.ok-stock-filter-menu__panel--pricing {
  min-width: 350px;
  width: 360px;
  max-width: min(390px, calc(100vw - 32px));
  padding: 20px 22px;
  gap: 16px;
  border-radius: 16px;
}

.okb-price-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.okb-price-box__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.okb-price-box__title span {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.okb-price-box__title span i {
  color: #73b2f7;
  font-size: 15px;
}

.okb-price-box__title small {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.okb-price-presets {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.okb-price-chip {
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.okb-price-chip:hover,
.okb-price-chip.is-active {
  background: rgba(115, 178, 247, 0.15);
  border-color: rgba(115, 178, 247, 0.5);
  color: #73b2f7;
}

.okb-price-range-inputs {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.okb-price-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.okb-price-field label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.okb-price-field input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.okb-price-field input:focus {
  border-color: #73b2f7;
  box-shadow: 0 0 0 2px rgba(115, 178, 247, 0.25);
}

.okb-price-dash {
  color: #64748b;
  font-weight: 600;
  font-size: 18px;
  align-self: flex-end;
  margin-bottom: 10px;
  line-height: 1;
}

.okb-price-slider-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px 0 2px;
  margin-top: 2px;
}

.okb-price-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}

.okb-price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #73b2f7;
  border: 2px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.15s ease;
}

.okb-price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.okb-price-slider-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
}

.okb-price-slider-val {
  font-weight: 700;
  color: #73b2f7;
  font-size: 12.5px;
}

.okb-price-apply-btn {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: #73b2f7;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
  margin-top: 6px;
}

.okb-price-apply-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-1px);
}

.okb-price-apply-btn:active {
  transform: translateY(0);
}

/* Mobile drawer compact pricing box adjustments */
.okb-price-box--drawer {
  gap: 12px;
}
.okb-price-box--drawer .okb-price-field input {
  height: 38px;
}
.okb-price-box--drawer .okb-price-dash {
  margin-bottom: 8px;
}

/* Dropdown Radio Option Styling */
.ok-stock-filter-menu__panel .ok-stock-radio,
.ok-stock-filter-menu__panel .ok-stock-radio span,
.ok-stock-filter-menu__panel .ok-stock-radio:hover span,
.ok-stock-filter-menu__panel .ok-stock-radio.is-active span,
.ok-stock-filter-menu__panel .ok-stock-radio:focus span {
  box-shadow: none;
  outline: none;
}

.ok-stock-filter-menu__panel .ok-stock-radio {
  min-height: 36px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 8px;
  background: transparent;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  border: 1px solid transparent;
  margin: 0;
}

.ok-stock-filter-menu__panel .ok-stock-radio > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  min-height: 0;
  width: 100%;
  border-radius: 0;
}

.ok-stock-filter-menu__panel .ok-stock-radio:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

.ok-stock-filter-menu__panel .ok-stock-radio.is-active {
  background: rgba(115, 178, 247, 0.12);
  color: #73b2f7;
  border-color: rgba(115, 178, 247, 0.28);
  font-weight: 600;
}

.ok-stock-filter-menu__panel .ok-stock-radio.is-active::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: #73b2f7;
  margin-left: auto;
  flex-shrink: 0;
}

.ok-stock-filter-menu__panel .ok-stock-radio i,
.ok-stock-filter-menu__panel .ok-stock-radio svg {
  font-size: 13px;
  color: #73b2f7;
  width: 16px;
  flex-shrink: 0;
  text-align: center;
  transition: color 0.15s ease;
}

.ok-stock-filter-menu__panel .ok-stock-radio:hover i,
.ok-stock-filter-menu__panel .ok-stock-radio:hover svg {
  color: #ffffff;
}

.ok-stock-filter-menu__panel .ok-stock-radio.is-active i,
.ok-stock-filter-menu__panel .ok-stock-radio.is-active svg {
  color: #73b2f7;
}

.ok-stock-filter-menu__panel .ok-stock-radio .fa-crown {
  color: #fbbf24 !important;
}

/* =========================================================
   5. FULL-WIDTH RESPONSIVE MASONRY (Zero Gaps, Proportional)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   â€¢ Unlimited posts auto-fill cleanly across available width
   â€¢ Horizontal (16:9) cards render wide and uncropped
   â€¢ Vertical (9:16) cards capped at 390px â€” never too big
   â€¢ Square (1:1) cards render at balanced 1:1 proportion
   â€¢ Fully responsive from 6 columns down to 1 column
========================================================= */

/* =========================================================
   5. STANDARD 4-COLUMN FEED GRID (Normal Theme Grid)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   â€¢ Normal 4-grid option matching theme standard
   â€¢ 4 equal columns per row on desktop
   â€¢ 3 on laptop (max 1200px), 2 on tablet (max 768px), 1 on mobile
   â€¢ Standard feed card styling with 16:9 media
   â€¢ Extension & credit thumbnail labels removed
========================================================= */

.okb-search-page .ok-stock-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
  width: 100%;
}

@media (max-width: 1200px) {
  .okb-search-page .ok-stock-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .okb-search-page .ok-stock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .okb-search-page .ok-stock-grid {
    grid-template-columns: 1fr;
  }
}

/* Base feed card item in search grid inherits global .ok-stock-card styles */
.okb-search-page .ok-stock-grid .ok-stock-card {
  width: 100%;
  max-width: 100%;
  background: var(--feed-surface, #06090c);
  border: 1px solid var(--feed-border, rgba(115, 178, 247, 0.16));
  border-radius: 8px !important;
}



/* =========================================================
   6. RELATED KEYWORDS & CHIPS (Removed per user request)
========================================================= */
.okb-search-related-section {
  display: none !important;
  border-top: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.okb-search-related-section h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ok-ink, #f5f7fb);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.okb-search-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ok-surface-soft, #171d26);
  border: 1px solid var(--ok-border, #2c3542);
  color: var(--ok-ink-soft, #d7dce5);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}

.okb-search-chip-btn:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--ok-violet, var(--ok-brand-violet-light, #a78bfa));
  color: var(--ok-violet, var(--ok-brand-violet-light, #a78bfa));
  transform: translateY(-1px);
}

/* ==========================================================================
   7. EXPLORE & ASSET FEED SYSTEM
   ========================================================================== */
/* ==========================================================================
   REALTIME COLORS HOMEFEED SYSTEM - OKAY BHARGAV CREATIVE ASSET MARKETPLACE
   Palette: Background: #000000 | Secondary: #06090c | Primary: #73b2f7 | Accent: #be55ff | Text: #ffffff
   Typography: Product Sans (400, 500, 700)
   Strictly zero priority override flags throughout.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Container & Base Canvas
   -------------------------------------------------------------------------- */
:root {
  --feed-bg: #000000;
  --feed-surface: #06090c;
  --feed-surface-card: #06090c;
  --feed-primary: #73b2f7;
  --feed-accent: #be55ff;
  --feed-text: #ffffff;
  --feed-text-muted: rgba(255, 255, 255, 0.7);
  --feed-border: rgba(115, 178, 247, 0.16);
  --feed-border-hover: rgba(115, 178, 247, 0.45);
  --feed-glow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.okb-search-page,
.homefeed,
.ok-stock-library-v3 {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-color: var(--feed-bg);
  color: var(--feed-text);
  font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 0 0 clamp(40px, 6vw, 80px);
  overflow-x: clip;
}

.homefeed .theme-container,
.ok-stock-library-v3 .theme-container,
.ok-stock-layout {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 36px);
  box-sizing: border-box;
}

/* Full-width presentation for collection, taxonomy, and category archives (matches search/other archives) */
.homefeed--taxonomy .ok-stock-layout,
.homefeed--asset-taxonomy .ok-stock-layout,
.homefeed--taxonomy-layout .ok-stock-layout,
.homefeed--results .ok-stock-layout,
main.homefeed--taxonomy .ok-stock-layout,
main.homefeed--asset-taxonomy .ok-stock-layout {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 clamp(16px, 2.5vw, 40px) !important;
  box-sizing: border-box;
}

.homefeed--taxonomy .ok-stock-results,
.homefeed--asset-taxonomy .ok-stock-results,
.homefeed--taxonomy-layout .ok-stock-results {
  width: 100% !important;
  max-width: 100% !important;
}

.homefeed--taxonomy .ok-stock-grid,
.homefeed--asset-taxonomy .ok-stock-grid,
.homefeed--taxonomy-layout .ok-stock-grid {
  width: 100% !important;
  max-width: 100% !important;
  gap: clamp(14px, 1.4vw, 22px) !important;
}

/* --------------------------------------------------------------------------
   2. Cinematic Hero Section
   -------------------------------------------------------------------------- */
.ok-stock-library-hero {
  position: relative;
  width: min(100%, 1440px);
  margin: clamp(16px, 2.5vw, 36px) auto clamp(24px, 3.5vw, 48px);
  padding: clamp(36px, 5.5vw, 68px) clamp(20px, 4vw, 44px);
  border-radius: clamp(20px, 2.5vw, 32px);
  background: radial-gradient(ellipse at 50% -20%, rgba(115, 178, 247, 0.18) 0%, rgba(3, 16, 48, 0.85) 45%, rgba(0, 0, 0, 0.98) 100%), #000000;
  border: 1px solid var(--feed-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
}

.ok-stock-library-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(190, 85, 255, 0.16) 0%, rgba(115, 178, 247, 0.1) 50%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

.ok-stock-library-hero__copy {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Pill Badge */
.ok-stock-hero-pill,
.ok-stock-library-hero__copy > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(3, 16, 48, 0.9);
  border: 1px solid rgba(115, 178, 247, 0.32);
  color: var(--feed-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.ok-stock-hero-pill i,
.ok-stock-library-hero__copy > span:first-child i {
  color: var(--feed-accent);
  font-size: 11px;
}

/* Hero Headline */
.ok-stock-library-hero__copy h1 {
  font-family: 'Product Sans', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--feed-text);
  margin: 18px 0 14px;
  text-wrap: balance;
}

.ok-stock-gradient-text {
  background: linear-gradient(135deg, #ffffff 10%, #73b2f7 55%, #be55ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Hero Subtitle */
.ok-stock-library-hero__copy p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--feed-text-muted);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.6;
  text-wrap: pretty;
}

/* Quick Category Navigation Pills */
.ok-stock-hero-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.ok-stock-hero-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(3, 16, 48, 0.7);
  border: 1px solid var(--feed-border);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.ok-stock-hero-pill-link i {
  color: var(--feed-primary);
  font-size: 12px;
  transition: transform 0.24s ease;
}

.ok-stock-hero-pill-link:hover {
  background: #06090c;
  border-color: var(--feed-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: none;
}

.ok-stock-hero-pill-link:hover i {
  transform: scale(1.15);
}

.ok-stock-hero-pill-link.is-active {
  background: linear-gradient(135deg, rgba(115, 178, 247, 0.28) 0%, rgba(6, 9, 12, 0.95) 100%);
  border-color: var(--feed-primary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   3. Section Header & Results Bars
   -------------------------------------------------------------------------- */
.ok-stock-results {
  position: relative;
  width: 100%;
}

.ok-stock-results__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: clamp(24px, 3.5vw, 40px) 0 18px;
}

.ok-stock-results__bar span {
  display: block;
  color: var(--feed-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ok-stock-results__bar h1,
.ok-stock-results__bar h2 {
  font-family: 'Product Sans', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--feed-text);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.ok-stock-results__count-badge {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--feed-text-muted);
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--feed-surface);
  border: 1px solid var(--feed-border);
}

/* --------------------------------------------------------------------------
   4. Modern Category Cards Grid
   -------------------------------------------------------------------------- */
.ok-stock-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  margin-bottom: clamp(60px, 8vw, 120px);
}

.ok-stock-category-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: var(--feed-surface);
  border: 1px solid var(--feed-border);
  text-decoration: none;
  color: var(--feed-text);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.ok-stock-category-card:hover {
  transform: translateY(-5px);
  border-color: var(--feed-border-hover);
  box-shadow: var(--feed-glow);
  background: linear-gradient(180deg, #0d121a 0%, #06090c 100%);
}

.ok-stock-category-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ok-stock-category-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(115, 178, 247, 0.1);
  color: var(--feed-primary);
  font-size: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.ok-stock-category-card:hover .ok-stock-category-card__arrow {
  background: var(--feed-primary);
  color: #000000;
  transform: translateX(3px);
}

.ok-stock-category-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ok-stock-category-card__media > i {
  font-size: 32px;
  color: var(--feed-primary);
}

/* Category Thumb Collage */
.ok-collection-thumb {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  width: 100%;
  height: 100%;
  padding: 4px;
  box-sizing: border-box;
  background: #020818;
}

.ok-collection-thumb--1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.ok-collection-thumb--2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.ok-collection-thumb__tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000000;
}

.ok-collection-thumb__tile--1 {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.ok-collection-thumb__tile--2 {
  grid-column: 2;
  grid-row: 1;
}

.ok-collection-thumb__tile--3 {
  grid-column: 2;
  grid-row: 2;
}

.ok-collection-thumb__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ok-stock-category-card:hover .ok-collection-thumb__tile img {
  transform: scale(1.06);
}

.ok-stock-category-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--feed-text);
  line-height: 1.2;
  transition: color 0.2s ease;
}

.ok-stock-category-card:hover strong {
  color: var(--feed-primary);
}

.ok-stock-category-card small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--feed-text-muted);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   5. Interactive Filter Bar
   -------------------------------------------------------------------------- */
.ok-stock-filterbar {
  position: relative;
  margin: 0 0 24px;
  padding: 10px 14px;
  border-radius: 20px;
  background: rgba(3, 16, 48, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--feed-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.ok-stock-filterbar__scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 0;
}

.ok-stock-filterbar__scroll::-webkit-scrollbar {
  display: none;
}

/* Filter Menus (Details / Summary) */
.ok-stock-filter-menu {
  position: relative;
  display: inline-block;
}

.ok-stock-filter-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--feed-text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  list-style: none;
}

.ok-stock-filter-menu summary::-webkit-details-marker {
  display: none;
}

.ok-stock-filter-menu summary i {
  color: var(--feed-primary);
  font-size: 12px;
}

.ok-stock-filter-menu summary:hover {
  background: rgba(115, 178, 247, 0.12);
  border-color: rgba(115, 178, 247, 0.35);
}

.ok-stock-filter-menu.has-active-filter summary,
.ok-stock-filter-menu[open] summary {
  background: rgba(115, 178, 247, 0.2);
  border-color: var(--feed-primary);
  color: var(--feed-primary);
  box-shadow: none;
}

.ok-stock-filter-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 10px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.ok-stock-filter-remove:hover {
  background: rgba(255, 80, 80, 0.8);
  color: #ffffff;
}

/* Dropdown Panels */
.ok-stock-filter-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  max-height: 340px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 18px;
  background: #06090c;
  border: 1px solid rgba(115, 178, 247, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85);
  z-index: 70;
  scrollbar-width: thin;
  scrollbar-color: rgba(115, 178, 247, 0.3) transparent;
}

/* Radio Options */
.ok-stock-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease;
}

.ok-stock-radio input[type="radio"] {
  accent-color: var(--feed-primary);
  margin: 0;
  cursor: pointer;
}

.ok-stock-radio:hover {
  background: rgba(115, 178, 247, 0.12);
  color: #ffffff;
}

.ok-stock-radio input[type="radio"]:checked + span {
  color: var(--feed-primary);
  font-weight: 700;
}

.ok-stock-radio.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Credit Range Slider inside Panel */
.ok-stock-filter-menu__panel--credits {
  min-width: 260px;
  padding: 16px;
}

.ok-stock-credit-range {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ok-stock-credit-range__track {
  padding: 8px 0;
}

.ok-stock-credit-range__rail {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.ok-stock-credit-range__bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--credit-min, 0%);
  right: calc(100% - var(--credit-max, 100%));
  border-radius: 3px;
  background: linear-gradient(90deg, var(--feed-primary), var(--feed-accent));
}

.ok-stock-credit-range__handle {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--feed-primary);
  box-shadow: none;
  cursor: grab;
  padding: 0;
  touch-action: none;
}

.ok-stock-credit-range__handle:active {
  cursor: grabbing;
  transform: scale(1.15);
}

.ok-stock-credit-range__handle--min {
  left: var(--credit-min, 0%);
}

.ok-stock-credit-range__handle--max {
  left: var(--credit-max, 100%);
}

.ok-stock-credit-range__values {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ok-stock-credit-range__values label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.ok-stock-credit-range__values span {
  font-size: 11px;
  color: var(--feed-text-muted);
  font-weight: 500;
}

.ok-stock-credit-range__values input {
  width: 100%;
  padding: 6px 10px;
  border-radius: 8px;
  background: #020818;
  border: 1px solid var(--feed-border);
  color: #ffffff;
  font-size: 13px;
  box-sizing: border-box;
}

/* Reset Button */
.ok-stock-filterbar__reset {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--feed-text-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-left: auto;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.ok-stock-filterbar__reset:hover {
  background: rgba(255, 80, 80, 0.12);
  border-color: rgba(255, 80, 80, 0.4);
  color: #ff6b6b;
}

/* --------------------------------------------------------------------------
   6. Asset Feed Grid & Cards
   -------------------------------------------------------------------------- */
.ok-stock-grid,
#homefeed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(36px, 5vw, 60px);
}

.ok-stock-card {
  position: relative;
  border-radius: 8px !important;
  overflow: hidden;
  background: var(--feed-surface);
  border: 1px solid var(--feed-border);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.ok-stock-card:hover {
  transform: translateY(-5px);
  border-color: var(--feed-border-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.ok-stock-card__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.ok-stock-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
  background: linear-gradient(90deg, #070b14 0%, #131c2e 50%, #070b14 100%);
  background-size: 200% 100%;
  animation: okb-card-shimmer 2.2s infinite ease-in-out;
  display: block;
  border-radius: 8px 8px 0 0 !important;
}

@keyframes okb-card-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.ok-stock-card__media:has(.is-loaded),
.ok-stock-card__media.is-media-ready {
  animation: none;
  background: #020818;
}

/* Enforce uniform 16:9 ratio across all orientations and card variations */
.ok-stock-card.is-vertical-card .ok-stock-card__media,
.ok-stock-card.is-square-card .ok-stock-card__media,
.ok-stock-card.is-horizontal-card .ok-stock-card__media,
.ok-stock-card.is-orientation-vertical .ok-stock-card__media,
.ok-stock-card.is-orientation-square .ok-stock-card__media,
.ok-stock-card.is-orientation-horizontal .ok-stock-card__media,
.ok-stock-card[data-orientation="vertical"] .ok-stock-card__media,
.ok-stock-card[data-orientation="square"] .ok-stock-card__media,
.ok-stock-card[data-orientation="horizontal"] .ok-stock-card__media {
  aspect-ratio: 16 / 9 !important;
}

.okb-card-img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 8px 8px 0 0 !important;
  color: transparent;
  font-size: 0;
  transform: none !important;
}

.okb-card-img.is-loaded {
  opacity: 1;
}

.ok-stock-card:hover .okb-card-img,
.feed-item:hover .okb-card-img {
  transform: none !important;
}

/* Video Hover Player - pixel-matched 1:1 with thumbnail (16:9 cover) */
.ok-stock-card,
.feed-item,
.ok-stock-card__link,
.ok-stock-card__media {
  cursor: pointer !important;
}

.hover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 0;
  pointer-events: none;
  cursor: pointer !important;
  transition: opacity 0.25s ease;
  border-radius: 8px 8px 0 0 !important;
  transform: none !important;
}

.ok-stock-card.is-video-playing .hover-video,
.ok-stock-card.is-touch-video-playing .hover-video,
.feed-item.is-video-playing .hover-video,
.feed-item.is-touch-video-playing .hover-video {
  opacity: 1;
}

/* Vertical video & thumbnail - uncropped full display with clean letterbox */
.ok-stock-card.is-vertical-card .hover-video,
.ok-stock-card.is-orientation-vertical .hover-video,
.ok-stock-card[data-orientation="vertical"] .hover-video,
.ok-stock-card .hover-video.is-vertical-video,
.feed-item.is-vertical-card .hover-video,
.feed-item.is-orientation-vertical .hover-video,
.feed-item[data-orientation="vertical"] .hover-video,
.feed-item .hover-video.is-vertical-video,
.hover-video.is-vertical-video,
.ok-stock-card.is-vertical-card .okb-card-img,
.ok-stock-card.is-orientation-vertical .okb-card-img,
.ok-stock-card[data-orientation="vertical"] .okb-card-img,
.feed-item.is-vertical-card .okb-card-img,
.feed-item.is-orientation-vertical .okb-card-img,
.feed-item[data-orientation="vertical"] .okb-card-img,
.okb-card-img.is-vertical-img {
  object-fit: contain !important;
  object-position: center !important;
  background: #000000 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

.ok-stock-card.is-vertical-card .ok-stock-card__media,
.ok-stock-card.is-orientation-vertical .ok-stock-card__media,
.ok-stock-card[data-orientation="vertical"] .ok-stock-card__media,
.feed-item.is-vertical-card .ok-stock-card__media,
.feed-item.is-orientation-vertical .ok-stock-card__media,
.feed-item[data-orientation="vertical"] .ok-stock-card__media {
  background: #000000 !important;
}

/* Card Video Eye Preview Button */
.okb-card-eye-btn {
  position: absolute !important;
  bottom: 12px !important;
  right: 12px !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, 0.88) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  cursor: pointer !important;
  z-index: 25 !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5) !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  outline: none !important;
}

.okb-card-eye-btn:hover {
  background: #6366f1 !important;
  border-color: #818cf8 !important;
  color: #ffffff !important;
  transform: scale(1.12) !important;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.6) !important;
}

.ok-stock-card.is-video-playing .okb-card-eye-btn,
.ok-stock-card.is-touch-video-playing .okb-card-eye-btn,
.feed-item.is-video-playing .okb-card-eye-btn,
.feed-item.is-touch-video-playing .okb-card-eye-btn,
.okb-card-eye-btn.is-active {
  background: #ef4444 !important;
  border-color: #f87171 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.6) !important;
}

/* Remove/hide floating badges/labels on thumbnails across all cards */
.ok-stock-card__meta,
.feed-overlay,
.ok-stock-card .feed-overlay,
.ok-stock-card .ok-stock-card__meta {
  display: none !important;
}

/* Card Footer */
.ok-stock-card__footer {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--feed-surface);
  border-top: 1px solid rgba(115, 178, 247, 0.1);
  box-sizing: border-box;
  border-radius: 0 0 8px 8px !important;
}

.ok-stock-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--feed-text);
  text-decoration: none;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  text-wrap: nowrap !important;
  display: block !important;
  transition: color 0.2s ease;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  line-height: 1.35 !important;
}

.ok-stock-card:hover .ok-stock-card__title {
  color: var(--feed-primary);
}

/* High-Contrast Golden / Yellow Crown Icon for Premium Assets */
.ok-stock-card__crown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24 !important;
  font-size: 13px;
  line-height: 1;
  filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.65)) !important;
  transition: transform 0.2s ease, filter 0.2s ease, color 0.2s ease;
}

.ok-stock-card__crown i,
.ok-stock-card__crown .fa-crown,
.fa-crown,
i.fa-crown {
  color: #fbbf24 !important;
  fill: #fbbf24 !important;
}

.ok-stock-card:hover .ok-stock-card__crown {
  color: #f59e0b !important;
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.95)) !important;
}

/* --------------------------------------------------------------------------
   7. Topic Tags & Related Search Tags
   -------------------------------------------------------------------------- */
.ok-search-related-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(3, 16, 48, 0.5);
  border: 1px solid var(--feed-border);
}

.ok-search-related-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--feed-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ok-search-tags-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ok-inspo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ok-inspo-tag i {
  color: var(--feed-primary);
  font-size: 10px;
}

.ok-inspo-tag small {
  color: var(--feed-text-muted);
  font-size: 11px;
}

.ok-inspo-tag:hover {
  background: rgba(115, 178, 247, 0.15);
  border-color: var(--feed-primary);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   8. Collection Cards & Studio Notes Grid
   -------------------------------------------------------------------------- */
.ok-inspo-category-grid,
.ok-stock-note-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(36px, 5vw, 60px);
}

.ok-inspo-card,
.ok-stock-note-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--feed-surface);
  border: 1px solid var(--feed-border);
  text-decoration: none;
  color: var(--feed-text);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.ok-inspo-card:hover,
.ok-stock-note-card:hover {
  transform: translateY(-5px);
  border-color: var(--feed-border-hover);
  box-shadow: var(--feed-glow);
}

.ok-inspo-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #020818;
}

.ok-collection-type-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(3, 16, 48, 0.85);
  backdrop-filter: blur(8px);
  color: var(--feed-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(115, 178, 247, 0.2);
}

.ok-inspo-card-body,
.ok-stock-note-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ok-inspo-card-body h3,
.ok-stock-note-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--feed-text);
  margin: 0;
  line-height: 1.25;
}

.ok-inspo-card:hover h3,
.ok-stock-note-card:hover h3 {
  color: var(--feed-primary);
}

.ok-inspo-card-meta {
  font-size: 12px;
  color: var(--feed-text-muted);
}

/* --------------------------------------------------------------------------
   9. Pagination
   -------------------------------------------------------------------------- */
.ok-stock-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: clamp(32px, 4vw, 56px) 0 20px;
}

/* Search & Feed Pagination */
.ok-pagination-wrap,
.ok-stock-pagination,
.okb-pagination-wrap {
  width: 100%;
  margin: clamp(36px, 5vw, 60px) 0 30px;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  position: relative;
  z-index: 2;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.ok-pagination,
.okb-pagination,
.ok-stock-pagination ul {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-wrap: wrap;
}

.ok-pagination li,
.okb-pagination li,
.ok-stock-pagination li {
  display: inline-flex !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ok-pagination .page-numbers,
.okb-pagination .page-numbers,
.ok-stock-pagination .page-numbers,
.okb-search-page .page-numbers {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0 !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  line-height: 1;
  box-sizing: border-box;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  user-select: none;
  cursor: pointer;
}

.ok-pagination .page-numbers i,
.okb-pagination .page-numbers i,
.ok-stock-pagination .page-numbers i,
.okb-search-page .page-numbers i {
  color: inherit !important;
  font-size: 11px;
  transition: color 0.18s ease;
}

.ok-pagination .page-numbers.prev,
.ok-pagination .page-numbers.next,
.okb-pagination .page-numbers.prev,
.okb-pagination .page-numbers.next,
.ok-stock-pagination .page-numbers.prev,
.ok-stock-pagination .page-numbers.next,
.okb-search-page .page-numbers.prev,
.okb-search-page .page-numbers.next {
  padding: 0 18px;
  gap: 8px;
  font-size: 13.5px;
}

.ok-pagination .page-numbers:not(.current):hover,
.okb-pagination .page-numbers:not(.current):hover,
.ok-stock-pagination .page-numbers:not(.current):hover,
.okb-search-page .page-numbers:not(.current):hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.ok-pagination .page-numbers:not(.current):hover i,
.okb-pagination .page-numbers:not(.current):hover i,
.ok-stock-pagination .page-numbers:not(.current):hover i,
.okb-search-page .page-numbers:not(.current):hover i {
  color: #000000 !important;
}

.ok-pagination .page-numbers.current,
.okb-pagination .page-numbers.current,
.ok-stock-pagination .page-numbers.current,
.okb-search-page .page-numbers.current {
  background: #73b2f7 !important;
  border-color: #73b2f7 !important;
  color: #000000 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  cursor: default;
  pointer-events: none;
  transform: none;
}

.ok-pagination .page-numbers.current i,
.okb-pagination .page-numbers.current i,
.ok-stock-pagination .page-numbers.current i,
.okb-search-page .page-numbers.current i {
  color: #000000 !important;
}

.ok-pagination .page-numbers.dots,
.okb-pagination .page-numbers.dots,
.ok-stock-pagination .page-numbers.dots {
  background: transparent !important;
  border-color: transparent !important;
  color: #64748b !important;
  cursor: default;
  min-width: 30px;
}

/* --------------------------------------------------------------------------
   10. Empty State
   -------------------------------------------------------------------------- */
.ok-stock-empty {
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ok-stock-empty i {
  font-size: 48px;
  color: var(--feed-primary);
  margin-bottom: 16px;
  opacity: 0.8;
}

.ok-stock-empty h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--feed-text);
  margin: 0 0 10px;
}

.ok-stock-empty p {
  color: var(--feed-text-muted);
  font-size: 15px;
  max-width: 440px;
  margin: 0 0 24px;
  line-height: 1.5;
}

.ok-stock-empty a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--feed-primary);
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ok-stock-empty a:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   11. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
  .ok-stock-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ok-stock-grid,
  #homefeed-grid,
  .ok-inspo-category-grid,
  .ok-stock-note-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ok-stock-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ok-stock-grid,
  #homefeed-grid,
  .ok-inspo-category-grid,
  .ok-stock-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ok-stock-library-hero {
    padding: 32px 20px;
    border-radius: 20px;
  }
}

@media (max-width: 600px) {
  .ok-stock-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .ok-stock-category-card {
    padding: 10px;
    border-radius: 16px;
  }
  .ok-stock-category-card strong {
    font-size: 13px;
  }
  .ok-stock-grid,
  #homefeed-grid,
  .ok-inspo-category-grid,
  .ok-stock-note-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ok-stock-filterbar {
    border-radius: 16px;
    padding: 8px 10px;
  }
  .ok-stock-results__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .ok-stock-hero-pill-link {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* ==========================================================================
   8. EXPLORE CATEGORY TILES & COLLECTIONS
   ========================================================================== */
/* Explore page dark finish. Shared feed/explore foundations load from homefeed.css. */

body .ok-inspo-page {
  --ok-explore-blue: var(--ok-blue-ui);
  --ok-explore-violet: var(--ok-violet);
  --ok-explore-green: #81c995;
  --ok-explore-coral: #f6aea9;
  --ok-explore-card-bg: color-mix(in srgb, var(--ok-surface) 86%, #000 14%);
  min-height: 72vh;
  padding: clamp(26px, 4.8vw, 70px) clamp(14px, 3vw, 34px) clamp(68px, 8vw, 116px);
  background: var(--background, #000000);
  color: var(--ok-ink-soft);
}

body .ok-inspo-page .ok-inspo-shell {
  width: min(100%, 1640px);
  max-width: none;
  margin: 0 auto;
}

body .ok-inspo-page .ok-inspo-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(20px, 4vw, 44px);
  align-items: end;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #121212;
  box-shadow: none;
}

body .ok-inspo-page .ok-inspo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--ok-sky);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

body .ok-inspo-page .ok-inspo-eyebrow i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ok-explore-blue);
  box-shadow: none;
}

body .ok-inspo-page .ok-inspo-head h1 {
  max-width: 840px;
  margin: 0;
  color: var(--ok-ink);
  font-size: clamp(38px, 6vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

body .ok-inspo-page .ok-inspo-head p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ok-ink-muted);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.62;
}

body .ok-inspo-page .ok-inspo-counts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

body .ok-inspo-page .ok-inspo-counts span {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #121212;
  color: var(--ok-ink-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

body .ok-inspo-page .ok-inspo-counts span:nth-child(2) {
  border-color: rgba(255, 255, 255, 0.08);
  background: #121212;
}

body .ok-inspo-page .ok-inspo-counts strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ok-ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 850;
  line-height: 1;
}

body .ok-inspo-page .ok-inspo-section {
  margin-top: clamp(30px, 4.2vw, 58px);
}

body .ok-inspo-page .ok-inspo-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(16px, 2vw, 24px);
}

body .ok-inspo-page .ok-inspo-section-head h2 {
  margin: 0;
  color: var(--ok-ink);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

body .ok-inspo-page .ok-inspo-section-head p {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--ok-ink-muted);
  font-size: 15px;
  line-height: 1.58;
}

body .ok-inspo-page .ok-inspo-section-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--ok-border) 72%, var(--ok-explore-blue) 28%);
  border-radius: 999px;
  background: rgba(122, 183, 255, .08);
  color: var(--ok-sky);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

body .ok-inspo-page .ok-inspo-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
}

body .ok-inspo-page .ok-inspo-card {
  --ok-card-accent: var(--ok-explore-blue);
  --ok-card-accent-soft: rgba(122, 183, 255, .12);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-height: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #121212;
  color: var(--ok-ink-soft);
  text-decoration: none;
  box-shadow: none;
  overflow: hidden;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

body .ok-inspo-page .ok-inspo-card:nth-child(4n + 2) {
  --ok-card-accent: var(--ok-explore-violet);
  --ok-card-accent-soft: rgba(168, 131, 255, .13);
}

body .ok-inspo-page .ok-inspo-card:nth-child(4n + 3) {
  --ok-card-accent: var(--ok-explore-green);
  --ok-card-accent-soft: rgba(129, 201, 149, .12);
}

body .ok-inspo-page .ok-inspo-card:nth-child(4n) {
  --ok-card-accent: var(--ok-explore-coral);
  --ok-card-accent-soft: rgba(246, 174, 169, .12);
}

body .ok-inspo-page .ok-inspo-card:hover,
body .ok-inspo-page .ok-inspo-card:focus-visible {
  border-color: rgba(115, 178, 247, 0.4);
  background: #181818;
  color: var(--ok-ink);
  transform: translateY(-2px);
  box-shadow: none;
}

body .ok-inspo-page .ok-inspo-thumb {
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  place-items: center;
  flex-basis: auto;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  background: color-mix(in srgb, var(--ok-surface-subtle) 86%, #000 14%);
  overflow: hidden;
}

body .ok-inspo-page .ok-inspo-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

body .ok-inspo-page .ok-inspo-thumb .ok-collection-thumb {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

body .ok-inspo-page .ok-inspo-thumb > i {
  color: color-mix(in srgb, var(--ok-card-accent) 70%, #fff 30%);
  font-size: 24px;
}

body .ok-inspo-page .ok-inspo-card-body {
  display: grid;
  min-width: 0;
  gap: 9px;
  padding: 0 2px 2px;
}

body .ok-inspo-page .ok-inspo-card h3 {
  margin: 0;
  overflow: hidden;
  color: var(--ok-ink);
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body .ok-inspo-page .ok-inspo-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  color: var(--ok-ink-muted);
  font-size: 13px;
  font-weight: 750;
}

body .ok-inspo-page .ok-inspo-card-meta i {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--ok-card-accent-soft);
  color: color-mix(in srgb, var(--ok-card-accent) 78%, #fff 22%);
  transform: translateX(0);
  transition: transform .18s ease;
}

body .ok-inspo-page .ok-inspo-card:hover .ok-inspo-card-meta i,
body .ok-inspo-page .ok-inspo-card:focus-visible .ok-inspo-card-meta i {
  transform: translateX(2px);
}

body .ok-inspo-page .ok-inspo-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}

body .ok-inspo-page .ok-inspo-tag {
  --ok-tag-accent: var(--ok-explore-blue);
  --ok-tag-soft: rgba(122, 183, 255, .1);
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  max-width: 100%;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  background: #121212;
  color: var(--ok-ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

body .ok-inspo-page .ok-inspo-tag:nth-child(4n + 2) {
  --ok-tag-accent: var(--ok-explore-violet);
  --ok-tag-soft: rgba(168, 131, 255, .11);
}

body .ok-inspo-page .ok-inspo-tag:nth-child(4n + 3) {
  --ok-tag-accent: var(--ok-explore-green);
  --ok-tag-soft: rgba(129, 201, 149, .1);
}

body .ok-inspo-page .ok-inspo-tag:nth-child(4n) {
  --ok-tag-accent: var(--ok-explore-coral);
  --ok-tag-soft: rgba(246, 174, 169, .1);
}

body .ok-inspo-page .ok-inspo-tag:hover,
body .ok-inspo-page .ok-inspo-tag:focus-visible {
  border-color: rgba(115, 178, 247, 0.4);
  background: #181818;
  color: var(--ok-ink);
  transform: translateY(-1px);
}

body .ok-inspo-page .ok-inspo-tag > span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body .ok-inspo-page .ok-inspo-tag i {
  display: inline-grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--ok-tag-soft);
  color: color-mix(in srgb, var(--ok-tag-accent) 78%, #fff 22%);
  font-size: 10px;
}

body .ok-inspo-page .ok-inspo-tag small {
  flex: 0 0 auto;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .05);
  color: var(--ok-ink-muted);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

body .ok-inspo-page .ok-inspo-empty {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--ok-border);
  border-radius: 16px;
  background: var(--ok-surface);
  color: var(--ok-ink-muted);
  text-align: center;
}

body .ok-inspo-page .ok-inspo-empty strong {
  display: block;
  color: var(--ok-ink);
  font-size: 22px;
}

body .ok-inspo-page .ok-inspo-empty p {
  margin: 8px 0 0;
}

@media (max-width: 1279px) {
  body .ok-inspo-page .ok-inspo-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body .ok-inspo-page .ok-inspo-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body .ok-inspo-page .ok-inspo-counts {
    width: 100%;
  }

  body .ok-inspo-page .ok-inspo-section-head {
    display: block;
  }

  body .ok-inspo-page .ok-inspo-section-badge {
    display: inline-flex;
    margin-top: 12px;
  }

  body .ok-inspo-page .ok-inspo-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 619px) {
  body .ok-inspo-page {
    padding: 20px 10px 64px;
  }

  body .ok-inspo-page .ok-inspo-head {
    padding: 20px;
    border-radius: 16px;
  }

  body .ok-inspo-page .ok-inspo-head h1 {
    font-size: clamp(34px, 12vw, 46px);
  }

  body .ok-inspo-page .ok-inspo-head p,
  body .ok-inspo-page .ok-inspo-section-head p {
    font-size: 14px;
  }

  body .ok-inspo-page .ok-inspo-counts,
  body .ok-inspo-page .ok-inspo-category-grid {
    grid-template-columns: 1fr;
  }

  body .ok-inspo-page .ok-inspo-counts span {
    min-height: 72px;
  }

  body .ok-inspo-page .ok-inspo-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: stretch;
    gap: 12px;
    border-radius: 14px;
  }

  body .ok-inspo-page .ok-inspo-thumb {
    height: 112px;
    aspect-ratio: auto;
    border-radius: 10px;
  }

  body .ok-inspo-page .ok-inspo-card-body {
    align-content: center;
    padding: 2px 0;
  }

  body .ok-inspo-page .ok-inspo-card h3 {
    font-size: clamp(18px, 5.5vw, 22px);
  }

  body .ok-inspo-page .ok-inspo-tag {
    min-height: 36px;
    padding-inline: 9px;
    font-size: 12px;
  }
}

/* =========================================================
   EXPLORE PAGE FILTER TABS & COLLECTION TYPE TAGS
========================================================= */
.ok-inspo-filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 14px;
  flex-wrap: wrap;
}

.ok-inspo-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ok-ink, #fff);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: all .22s ease;
}

.ok-inspo-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.ok-inspo-tab.is-active {
  background: var(--primary, #73b2f7);
  border-color: var(--primary, #73b2f7);
  color: #000000;
  box-shadow: none;
}

.ok-inspo-section-badge--video {
  border-color: rgba(99, 230, 242, 0.4);
  color: #63e6f2;
  background: rgba(99, 230, 242, 0.1);
}

.ok-inspo-section-badge--image {
  border-color: var(--ok-border-violet);
  color: var(--ok-brand-violet-light);
  background: var(--ok-brand-violet-soft);
}

.ok-inspo-thumb {
  position: relative;
}

.ok-collection-type-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: var(--ok-radius-xs);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ok-collection-type-tag--video {
  background: var(--ok-bg-glass);
  border: 1px solid var(--ok-border-blue);
  color: var(--ok-brand-blue-light);
}

.ok-collection-type-tag--image {
  background: var(--ok-bg-glass);
  border: 1px solid var(--ok-border-violet);
  color: var(--ok-brand-violet-light);
}

.ok-stock-card-meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.ok-collection-type-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.ok-collection-type-pill--video {
  background: var(--ok-brand-blue-soft);
  color: var(--ok-brand-blue-light);
  border: 1px solid var(--ok-border-blue);
}

.ok-collection-type-pill--image {
  background: var(--ok-brand-violet-soft);
  color: var(--ok-brand-violet-light);
  border: 1px solid var(--ok-border-violet);
}

body .ok-inspo-page {
  --ok-explore-green: var(--ok-brand-blue-light);
  --ok-explore-coral: var(--ok-brand-violet-light);
  --ok-explore-card-bg: var(--ok-bg-card);
  background: var(--ok-bg-base);
  background-image: none;
}

body .ok-inspo-page::before,
body .ok-inspo-page::after,
body .ok-inspo-page .ok-inspo-head::before,
body .ok-inspo-page .ok-inspo-head::after,
body .ok-inspo-page .ok-inspo-section::before,
body .ok-inspo-page .ok-inspo-section::after {
  display: none;
  content: none;
}

body .ok-inspo-page .ok-inspo-head {
  border: 1px solid var(--ok-border);
  background: var(--ok-bg-card);
  border-radius: var(--ok-radius-xl);
}

body .ok-inspo-page .ok-inspo-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121212;
  border-radius: var(--ok-radius-lg);
  box-shadow: none;
  transition: border-color var(--ok-transition-fast), transform var(--ok-transition-fast);
}

body .ok-inspo-page .ok-inspo-card:hover,
body .ok-inspo-page .ok-inspo-card:focus-visible {
  border-color: rgba(115, 178, 247, 0.4);
  background: #181818;
  box-shadow: none;
  transform: translateY(-2px);
}

body .ok-inspo-page .ok-inspo-tag {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121212;
  border-radius: var(--ok-radius-pill);
  color: var(--ok-ink-soft);
  transition: border-color var(--ok-transition-fast), background var(--ok-transition-fast);
}

body .ok-inspo-page .ok-inspo-tag:hover {
  border-color: rgba(115, 178, 247, 0.4);
  background: #181818;
  color: var(--ok-brand-blue-light);
}

body .ok-inspo-page .ok-inspo-tab {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121212;
  color: var(--ok-ink-muted);
  border-radius: var(--ok-radius-pill);
}

body .ok-inspo-page .ok-inspo-tab.is-active {
  border-color: transparent;
  background: var(--primary, #73b2f7);
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
}

body .ok-inspo-page .ok-inspo-thumb {
  border: 1px solid var(--ok-border);
  background: var(--ok-bg-surface-elevated);
}

body .ok-inspo-page .ok-inspo-card:nth-child(2n + 1),
body .ok-inspo-page .ok-inspo-tag:nth-child(2n + 1) {
  --ok-card-accent: var(--ok-brand-blue-light);
  --ok-tag-accent: var(--ok-brand-blue-light);
}

body .ok-inspo-page .ok-inspo-card:nth-child(2n),
body .ok-inspo-page .ok-inspo-tag:nth-child(2n) {
  --ok-card-accent: var(--ok-brand-violet-light);
  --ok-tag-accent: var(--ok-brand-violet-light);
}

body .ok-inspo-page .ok-inspo-card h3,
body .ok-inspo-page .ok-inspo-card-meta i,
body .ok-inspo-page .ok-inspo-tag i {
  color: var(--ok-card-accent, var(--ok-brand-blue-light));
}

body .ok-inspo-page .ok-inspo-section-badge {
  background: var(--ok-brand-violet-soft);
  color: var(--ok-brand-violet-light);
  border: 1px solid var(--ok-border-violet);
  border-radius: var(--ok-radius-pill);
}

/* ==========================================================================
   9. SINGLE POST & ASSET DETAILS
   ========================================================================== */
body.single-post {
  background: var(--ok-page-bg);
}

.ok-product-page {
  min-height: 0;
  --ok-product-preview-min-height: 0px;
  --ok-product-preview-max-height: 820px;
  --ok-product-preview-mobile-max-height: 560px;
  padding: clamp(22px, 3vw, 42px) 0 clamp(56px, 7vw, 96px);
  color: var(--ok-ink);
}

.ok-product-shell {
  width: 80%;
  max-width: 80%;
  margin-inline: auto;
}

.ok-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(14px, 1.8vw, 24px);
  align-items: start;
}

.ok-product-preview-card,
.ok-product-panel,
.ok-product-details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #080c14;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
}

.ok-product-preview-card {
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
}

.ok-product-preview-box {
  width: 100%;
  min-height: var(--ok-product-preview-min-height);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: #000000;
}

.ok-product-preview-box.is-png {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, .03) 25%, transparent 25% 75%, rgba(255, 255, 255, .03) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, .03) 25%, transparent 25% 75%, rgba(255, 255, 255, .03) 75%),
    var(--ok-bg-surface, #101905);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

.ok-product-preview-box.is-video {
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: #070b14;
}

.ok-product-preview-box img,
.ok-product-preview-box video,
.ok-product-preview-box picture {
  display: block;
}

.ok-product-preview-box picture {
  width: 100%;
}

.ok-product-preview-box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(82vh, var(--ok-product-preview-max-height));
}

.ok-product-preview-box.has-preview-slider {
  position: relative;
  overflow: hidden;
}

.ok-preview-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
}

.ok-preview-carousel-track {
  width: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ok-preview-carousel-track::-webkit-scrollbar {
  display: none;
}

.ok-preview-carousel-slide {
  width: 100%;
  min-width: 100%;
  min-height: var(--ok-product-preview-min-height);
  display: grid;
  place-items: center;
  margin: 0;
  scroll-snap-align: center;
}

.ok-preview-carousel-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(82vh, var(--ok-product-preview-max-height));
  object-fit: contain;
  object-position: center;
}

.ok-preview-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115, 178, 247, 0.35);
  border-radius: 999px;
  background: rgba(14, 21, 3, 0.88);
  color: var(--ok-ink, #ffffff);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transform: translateY(-50%);
}

.ok-preview-carousel-arrow:hover {
  background: var(--primary, #73b2f7);
  color: var(--background, #000000);
}

.ok-preview-carousel-arrow--prev {
  left: 12px;
}

.ok-preview-carousel-arrow--next {
  right: 12px;
}

.ok-preview-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--ok-border-soft, rgba(255, 255, 255, 0.1));
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%);
}

.ok-preview-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.ok-preview-carousel-dots button[aria-current="true"] {
  width: 22px;
  background: var(--primary, #73b2f7);
}

.ok-product-preview-box picture img {
  width: 100%;
  height: auto;
}

.ok-product-preview-box video {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(82vh, var(--ok-product-preview-max-height));
}

.ok-product-preview-box img,
.ok-product-preview-box video {
  object-fit: contain;
  object-position: center;
}

.ok-product-panel {
  position: sticky;
  top: 96px;
  min-width: 0;
  padding: 10px;
  border-radius: 5px;
}

.ok-product-preview-title {
  margin: 10px 2px 0;
  color: var(--ok-ink);
  font-size: 15px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.ok-product-list {
  overflow: hidden;
  border: 1px solid var(--ok-border-soft);
  border-radius: 8px;
  background: var(--ok-surface);
}

.ok-product-list-row {
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(82px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 18px;
  padding: 0 14px;
  border-bottom: 1px solid var(--ok-border-soft);
}

.ok-product-list-row:last-child {
  border-bottom: 0;
}

.ok-product-list-row span {
  color: var(--ok-ink-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ok-product-list-row strong {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: var(--ok-ink);
  font-size: 15px;
  font-weight: 900;
  text-align: left;
}

.ok-product-list-row i {
  color: var(--ok-ink);
}

.ok-product-alert {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(251, 191, 36, .35);
  border-radius: 12px;
  background: rgba(251, 191, 36, .08);
  color: #fde68a;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 760;
}

.ok-product-utility {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 14px;
  padding: 0;
  border: none;
  background: transparent;
}

.ok-product-utility button,
.ok-product-utility a,
.ok-product-utility span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ok-product-utility button i,
.ok-product-utility a i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 12px;
}

.ok-product-utility button:hover,
.ok-product-utility a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  -webkit-text-fill-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.ok-product-utility button:hover *,
.ok-product-utility a:hover * {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

.ok-product-creator-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--ok-border-soft);
  border-radius: 8px;
  background: var(--ok-surface);
}

.ok-product-creator-card img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 999px;
}

.ok-product-creator-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ok-ink);
  font-size: 15px;
  font-weight: 900;
}

.ok-product-creator-card strong i {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ok-blue);
  color: var(--ok-surface);
  font-size: 10px;
}

.ok-product-creator-card span {
  display: block;
  margin-top: 3px;
  color: var(--ok-ink-muted);
  font-size: 13px;
  font-weight: 760;
}

.ok-product-action {
  margin: 12px 0 10px;
}

.ok-product-primary,
.ok-product-primary:visited {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #2563eb;
  border-radius: 999px;
  background-color: #2563eb;
  background: #2563eb;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 2px 14px rgba(37, 99, 235, 0.28);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ok-product-primary i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 14px;
}

.ok-product-primary span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 12px;
}

.ok-product-primary:hover,
.ok-product-primary:focus-visible {
  background-color: #ffffff !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-1px);
}

.ok-product-primary:hover *,
.ok-product-primary:focus-visible * {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

.ok-product-primary--unavailable,
.ok-product-primary--unavailable:hover {
  border: 1px solid var(--ok-border-soft);
  background: var(--ok-surface-soft);
  color: var(--ok-ink-muted);
  cursor: not-allowed;
  pointer-events: none;
  text-align: center;
}

.ok-product-empty {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--ok-border-soft);
  border-radius: 16px;
  background: var(--ok-surface-soft);
  color: var(--ok-ink-muted);
  font-weight: 760;
}

.ok-product-description > span,
.ok-product-tags > div > span,
.ok-product-section-head span {
  display: block;
  margin-bottom: 6px;
  color: var(--ok-ink-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ok-product-license {
  display: flex;
  gap: 11px;
  margin-top: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #181818;
  color: #a3a3a3;
  font-size: 13px;
  font-weight: 720;
}

.ok-product-license i,
.ok-product-license a {
  color: var(--primary, #73b2f7);
}

.ok-product-license p {
  margin: 0;
}

.ok-post-download-ad {
  margin-top: 16px;
}

.ok-product-details {
  width: 100%;
  margin: clamp(20px, 2.8vw, 34px) auto 0;
  display: block;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 5px;
}

.ok-product-description {
  min-width: 0;
}

.ok-product-content {
  color: var(--ok-ink-soft);
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ok-product-content > :first-child {
  margin-top: 0;
}

.ok-product-content > :last-child {
  margin-bottom: 0;
}

.ok-product-content img,
.ok-product-content video,
.ok-product-content iframe,
.ok-product-content embed,
.ok-product-content object {
  max-width: 100%;
  height: auto;
}

.ok-product-content img,
.ok-product-content video {
  border-radius: 18px;
}

.ok-product-content figure,
.ok-product-content picture,
.ok-product-content .wp-caption,
.ok-product-content .wp-video,
.ok-product-content .wp-block-image,
.ok-product-content .wp-block-video,
.ok-product-content .wp-block-embed {
  max-width: 100%;
}

.ok-product-content figure img,
.ok-product-content picture img,
.ok-product-content .wp-caption img,
.ok-product-content .wp-block-image img,
.ok-product-content .wp-block-video video {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.ok-product-content .wp-video,
.ok-product-content .wp-video-shortcode,
.ok-product-content .wp-block-video video {
  width: 100%;
  height: auto;
}

.ok-product-content .wp-block-embed__wrapper,
.ok-product-content .wp-has-aspect-ratio .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.ok-product-content .wp-embed-aspect-21-9 .wp-block-embed__wrapper {
  aspect-ratio: 21 / 9;
}

.ok-product-content .wp-embed-aspect-18-9 .wp-block-embed__wrapper {
  aspect-ratio: 18 / 9;
}

.ok-product-content .wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
}

.ok-product-content .wp-embed-aspect-4-3 .wp-block-embed__wrapper {
  aspect-ratio: 4 / 3;
}

.ok-product-content .wp-embed-aspect-1-1 .wp-block-embed__wrapper {
  aspect-ratio: 1 / 1;
}

.ok-product-content .wp-embed-aspect-9-16 .wp-block-embed__wrapper {
  aspect-ratio: 9 / 16;
}

.ok-product-content .wp-block-embed__wrapper iframe,
.ok-product-content .wp-has-aspect-ratio .wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ok-product-tags {
  display: grid;
  align-content: start;
  gap: 18px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--ok-border-soft);
  border-radius: 8px;
  background: var(--ok-surface);
}

.ok-product-tags div div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ok-product-tags a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--ok-border-soft);
  border-radius: 999px;
  background: var(--ok-surface);
  color: var(--ok-blue);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.ok-product-tags a:hover {
  border-color: var(--ok-border-blue);
  background: var(--ok-blue-soft);
}

.ok-product-related {
  --stock-panel: var(--ok-bg-card);
  --stock-panel-strong: var(--ok-bg-surface-elevated);
  --stock-text: var(--ok-ink);
  --stock-soft: var(--ok-ink-soft);
  --stock-blue: var(--ok-brand-blue);
  --stock-cyan: var(--ok-brand-blue-light);
  --stock-violet: var(--ok-brand-violet);
  --stock-yellow: var(--ok-brand-violet-light);
  width: 100%;
  margin: clamp(20px, 2.8vw, 34px) auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.ok-product-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.ok-product-section-head > div:first-child {
  min-width: 0;
}

.ok-product-section-head h2 {
  margin: 0;
  color: var(--ok-ink);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
}

.ok-product-related-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.ok-related-arrow,
.ok-product-section-head a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--ok-border-blue);
  border-radius: 999px;
  background: var(--ok-surface);
  color: var(--ok-blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.ok-related-arrow {
  width: 40px;
  padding: 0;
  cursor: pointer;
}

.ok-related-arrow:hover,
.ok-product-section-head a:hover {
  background: var(--ok-blue-soft);
}

.ok-related-slider {
  width: 100%;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--ok-border-blue) transparent;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .ok-related-slider {
    scroll-behavior: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .ok-preview-carousel-track {
    scroll-behavior: auto;
    scroll-snap-type: x proximity;
  }
}

.ok-related-slider::-webkit-scrollbar {
  height: 8px;
}

.ok-related-slider::-webkit-scrollbar-track {
  background: transparent;
}

.ok-related-slider::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--ok-border-blue);
}

.ok-related-slider .feed-item {
  flex: 0 0 min(420px, calc((100% - 36px) / 3));
  scroll-snap-align: start;
}

.ok-share-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 31, 31, .92);
  color: var(--ok-surface);
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
}

.ok-share-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.ok-credit-modal-open {
  overflow: hidden;
}

.ok-credit-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  place-items: center;
  padding: 20px;
}

.ok-credit-modal.show {
  display: grid;
}

.ok-credit-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(122, 183, 255, .18), transparent 20rem),
    rgba(5, 8, 14, .68);
  backdrop-filter: blur(14px) saturate(1.12);
}

.ok-credit-modal-card {
  position: relative;
  width: min(420px, 100%);
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: #080c14;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.ok-credit-modal-card::before {
  display: none;
}

.ok-credit-modal-card > * {
  position: relative;
  z-index: 1;
}

.ok-credit-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115, 178, 247, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--ok-ink-soft);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.ok-credit-modal-close:hover,
.ok-credit-modal-close:focus-visible {
  border-color: rgba(115, 178, 247, .58);
  background: rgba(115, 178, 247, .14);
  color: var(--ok-ink);
  transform: rotate(90deg);
}

.ok-credit-modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #181818;
  color: var(--primary, #73b2f7);
  box-shadow: none;
  font-size: 22px;
}

.ok-credit-modal-card h2 {
  margin: 0 0 8px;
  color: var(--ok-ink);
  font-size: 26px;
  font-weight: 900;
}

.ok-credit-modal-card p {
  margin: 0;
  color: var(--ok-ink-muted);
  line-height: 1.6;
}

.ok-credit-modal-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.ok-credit-modal-stats div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.ok-credit-modal-stats span,
.ok-credit-modal-stats strong {
  display: block;
}

.ok-credit-modal-stats span {
  color: var(--ok-ink-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ok-credit-modal-stats strong {
  margin-top: 5px;
  color: var(--ok-ink);
  font-size: 22px;
  font-weight: 900;
}

.ok-credit-modal-buy {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--primary, #73b2f7);
  background-image: none;
  color: #000000;
  font-weight: 900;
  cursor: pointer;
  box-shadow: none;
  transition: transform .2s ease, background .2s ease;
}

.ok-credit-modal-buy,
.ok-credit-modal-buy *,
.ok-credit-modal-buy:hover,
.ok-credit-modal-buy:hover * {
  color: #000000;
}

.ok-credit-modal-buy:hover,
.ok-credit-modal-buy:focus-visible {
  background: #5ea4f2;
  background-image: none;
  transform: translateY(-1px);
  box-shadow: none;
}

@media (max-width: 1180px) {
  .ok-product-hero {
    grid-template-columns: 1fr;
  }

  .ok-product-panel {
    position: static;
  }

}

@media (max-width: 760px) {
  .ok-product-shell {
    width: min(100% - 12px, 1520px);
  }

  .ok-product-preview-card,
  .ok-product-preview-box {
    border-radius: 0;
  }

  .ok-product-panel,
  .ok-product-details,
  .ok-product-related {
    border-radius: 5px;
  }

  .ok-product-preview-box {
    min-height: clamp(220px, 58vw, 360px);
    border-radius: 0;
  }

  .ok-product-section-head h2 {
    font-size: 28px;
  }

  .ok-product-details {
    padding: 20px;
  }

  .ok-product-section-head {
    align-items: start;
    flex-direction: column;
  }

  .ok-product-related-actions {
    width: 100%;
  }

  .ok-product-section-head a {
    flex: 1 1 auto;
  }

  .ok-related-slider .feed-item {
    flex-basis: min(360px, calc((100% - 18px) / 2));
  }
}

@media (max-width: 520px) {
  .ok-product-page {
    padding-top: 14px;
  }

  .ok-product-preview-card {
    padding: 8px;
  }

  .ok-product-preview-box {
    min-height: clamp(200px, 68vw, 320px);
  }

  .ok-product-panel {
    padding: 18px;
  }

  .ok-product-related-actions {
    display: grid;
    grid-template-columns: 40px 40px minmax(0, 1fr);
  }

  .ok-related-slider {
    gap: 14px;
    padding-bottom: 14px;
  }

  .ok-related-slider .feed-item {
    flex-basis: 86%;
  }
}

/* Clean single asset preview */
.ok-product-preview-card {
  padding: clamp(8px, 1.2vw, 16px);
  overflow: visible;
  border: 1px solid rgba(218, 220, 224, .72);
  border-radius: 5px;
  background: var(--ok-surface);
  box-shadow: none;
  backdrop-filter: none;
}

.ok-product-preview-box,
.ok-product-preview-box img,
.ok-product-preview-box picture,
.ok-product-preview-box picture img,
.ok-product-preview-box video,
.ok-preview-carousel,
.ok-preview-carousel-slide,
.ok-preview-carousel-media {
  box-shadow: none;
  filter: none;
}

.ok-preview-carousel-arrow,
.ok-preview-carousel-arrow:hover,
.ok-preview-carousel-dots {
  box-shadow: none;
}

.ok-product-preview-box {
  min-height: var(--ok-product-preview-min-height);
  overflow: hidden;
  border: 1px solid rgba(218, 220, 224, .76);
  border-radius: 5px;
  background: var(--ok-surface-soft);
}

.ok-product-preview-box.is-png {
  background:
    linear-gradient(45deg, rgba(226, 232, 240, .95) 25%, transparent 25% 75%, rgba(226, 232, 240, .95) 75%),
    linear-gradient(45deg, rgba(226, 232, 240, .95) 25%, transparent 25% 75%, rgba(226, 232, 240, .95) 75%),
    var(--ok-surface);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

.ok-product-preview-box.is-image {
  min-height: var(--ok-product-preview-min-height);
}

.ok-product-preview-box.is-video {
  aspect-ratio: var(--okvp-ratio, 16 / 9);
  min-height: 0;
  background: #000;
}

.ok-product-preview-box.is-video.is-vertical-video {
  aspect-ratio: 16 / 9;
}

.ok-product-preview-box img,
.ok-product-preview-box picture,
.ok-product-preview-box picture img,
.ok-product-preview-box video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78vh, var(--ok-product-preview-max-height));
  margin: 0;
  border-radius: 6px;
}

.ok-product-preview-box img,
.ok-product-preview-box picture img {
  object-fit: contain;
  object-position: center;
}

.ok-product-preview-box video {
  object-fit: contain;
  object-position: center;
  background: #000;
}

.ok-product-preview-box.is-image img,
.ok-product-preview-box.is-image picture,
.ok-product-preview-box.is-image picture img {
  height: auto;
  max-height: min(78vh, var(--ok-product-preview-max-height));
}

.ok-product-preview-box.is-video video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: #000;
}

@media (max-width: 760px) {
  .ok-product-page {
    --ok-mobile-content-gutter: 6px;
    --ok-mobile-video-sticky-top: var(--ok-fixed-header-height, 58px);
    --ok-mobile-video-height: 56.25vw;
    padding-top: 0;
  }

  .admin-bar .ok-product-page {
    --ok-mobile-video-sticky-top: calc(46px + var(--ok-fixed-header-height, 58px));
  }

  .ok-product-shell {
    width: calc(100% - (var(--ok-mobile-content-gutter) * 2));
  }

  .ok-product-preview-card.is-video-preview {
    padding: 0;
    border-inline: 0;
    border-radius: 0;
    background: var(--ok-surface);
  }

  .ok-product-page.has-video-preview .ok-product-hero,
  .ok-product-page.has-video-preview .ok-product-preview-card.is-video-preview {
    display: contents;
  }

  .ok-product-preview-card.is-video-preview .ok-product-preview-box {
    position: fixed;
    top: var(--ok-mobile-video-sticky-top);
    right: 0;
    left: 0;
    z-index: 10090;
    width: 100vw;
    max-width: none;
    margin-inline: 0;
    aspect-ratio: 16 / 9;
    height: var(--ok-mobile-video-height);
    min-height: 0;
    border-inline: 0;
    border-radius: 0;
    background: #000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  }

  .ok-product-preview-card.is-video-preview .ok-product-preview-box.is-vertical-video {
    aspect-ratio: 16 / 9;
    height: var(--ok-mobile-video-height);
  }

  .ok-product-preview-card.is-video-preview .ok-product-preview-box video {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .ok-product-preview-card.is-video-preview .ok-product-preview-title {
    display: block;
    margin: var(--ok-mobile-video-height) 0 0;
    padding: 10px max(12px, env(safe-area-inset-right)) 8px max(12px, env(safe-area-inset-left));
    background: var(--ok-surface);
    color: var(--ok-ink);
    -webkit-text-fill-color: currentColor;
    background-image: none;
    font-size: 15px;
    line-height: 1.28;
    font-weight: 850;
    overflow-wrap: anywhere;
  }

  .ok-product-hero {
    gap: 8px;
  }

  .ok-product-preview-card,
  .ok-product-preview-box {
    border-radius: 5px;
  }

  .ok-product-preview-card.is-video-preview,
  .ok-product-preview-card.is-video-preview .ok-product-preview-box,
  .ok-product-preview-card.is-video-preview video {
    border-radius: 0;
  }

  .ok-product-preview-box.is-image {
    min-height: var(--ok-product-preview-min-height);
  }

  .ok-product-preview-box.is-image img,
  .ok-product-preview-box.is-image picture img {
    max-height: min(72vh, var(--ok-product-preview-mobile-max-height));
  }

  .ok-product-panel,
  .ok-product-details,
  .ok-product-related {
    width: 100%;
    margin-inline: 0;
  }

  .ok-product-page.has-video-preview .ok-product-panel {
    margin-top: 6px;
  }

  .ok-product-panel,
  .ok-product-details {
    padding-inline: 12px;
  }
}

@media (max-width: 782px) {
  .ok-preview-carousel-arrow {
    display: none;
  }
}

@media (max-width: 520px) {
  .ok-product-preview-card {
    padding: 0;
  }

  .ok-product-preview-box {
    min-height: 0;
  }

  .ok-product-preview-box.is-video {
    width: 100%;
  }

  .ok-product-panel {
    padding: 12px;
  }
}

/* Final single preview cleanup: no inner image/video shadows, no shadowed carousel controls. */
.ok-product-page .ok-product-preview-card .ok-product-preview-box,
.ok-product-page .ok-product-preview-card .ok-product-preview-box *,
.ok-product-page .ok-product-preview-card .ok-preview-carousel,
.ok-product-page .ok-product-preview-card .ok-preview-carousel *,
.ok-product-page .ok-product-preview-card .ok-preview-carousel-media,
.ok-product-page .ok-product-preview-card .ok-preview-carousel-media *,
.ok-product-page .ok-product-preview-card .ok-preview-carousel-slide,
.ok-product-page .ok-product-preview-card .ok-preview-carousel-slide *,
.ok-product-page .ok-product-preview-card .ok-product-preview-box > video {
  box-shadow: none;
  filter: none;
  text-shadow: none;
}

.ok-product-page .ok-product-preview-card .ok-preview-carousel-arrow,
.ok-product-page .ok-product-preview-card .ok-preview-carousel-arrow:hover,
.ok-product-page .ok-product-preview-card .ok-preview-carousel-arrow:focus,
.ok-product-page .ok-product-preview-card .ok-preview-carousel-arrow:active {
  box-shadow: none;
  filter: none;
  background: var(--ok-surface);
}

/* Final root-token post/detail finish */
.ok-product-page {
  background: var(--ok-gradient-page);
  color: var(--ok-ink-soft);
}

.ok-product-preview-card,
.ok-product-panel,
.ok-product-details,
.ok-product-meta,
.ok-product-card,
.ok-product-download-card,
.ok-product-license,
.ok-product-related-card {
  border-color: var(--ok-border);
  background: var(--ok-gradient-card);
  color: var(--ok-ink-soft);
  box-shadow: none;
}

.ok-product-preview-box,
.ok-product-preview-box.is-png {
  border-color: var(--ok-border-soft);
  background:
    linear-gradient(45deg, rgba(122, 183, 255, .08) 25%, transparent 25% 75%, rgba(122, 183, 255, .08) 75%),
    linear-gradient(45deg, rgba(122, 183, 255, .08) 25%, transparent 25% 75%, rgba(122, 183, 255, .08) 75%),
    var(--ok-surface-subtle);
}

.ok-product-page :where(h1, h2, h3, strong) {
  color: var(--ok-ink);
}

.ok-product-page :where(p, li, small, span) {
  color: var(--ok-ink-muted);
}

.ok-preview-carousel-arrow,
.ok-preview-carousel-dots {
  border-color: var(--ok-border);
  background: rgba(18, 22, 29, .9);
  color: var(--ok-ink);
  box-shadow: none;
}

/* Premium dark single asset system */
body.single-post {
  background: var(--ok-page-bg);
}

body.single-post .ok-product-page {
  --ok-asset-accent: var(--ok-blue-ui);
  --ok-asset-accent-soft: rgba(122, 183, 255, .12);
  --ok-asset-violet: var(--ok-violet);
  --ok-asset-green: #81c995;
  --ok-asset-coral: #f6aea9;
  padding: clamp(18px, 2.5vw, 34px) 0 clamp(48px, 6vw, 84px);
  background:
    radial-gradient(circle at 12% 0, rgba(122, 183, 255, .1), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(168, 131, 255, .09), transparent 30%),
    var(--ok-page-bg);
  color: var(--ok-ink-soft);
}

@media (min-width: 861px) {
  body.single-post .ok-product-shell {
    width: 80%;
    max-width: 80%;
    margin-inline: auto;
  }
}

body.single-post .ok-product-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(14px, 2vw, 28px);
  align-items: start;
}

body.single-post .ok-product-panel {
  align-self: start;
  height: auto;
}

body.single-post .ok-product-preview-card,
body.single-post .ok-product-panel,
body.single-post .ok-product-details {
  border: 1px solid var(--ok-border);
  border-radius: var(--ok-radius-lg);
  background: var(--ok-gradient-card);
  color: var(--ok-ink-soft);
  box-shadow: none;
  backdrop-filter: none;
}

body.single-post .ok-product-preview-card {
  padding: clamp(8px, 1vw, 12px);
}

body.single-post .ok-product-preview-box {
  border-color: var(--ok-border-soft);
  border-radius: var(--ok-radius-md);
  background:
    linear-gradient(45deg, rgba(122, 183, 255, .07) 25%, transparent 25% 75%, rgba(122, 183, 255, .07) 75%),
    linear-gradient(45deg, rgba(168, 131, 255, .06) 25%, transparent 25% 75%, rgba(168, 131, 255, .06) 75%),
    var(--ok-surface-subtle);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
}

body.single-post .ok-product-preview-box.is-video {
  background: #05070d;
}

body.single-post .ok-product-preview-title {
  margin: 12px 4px 2px;
  color: var(--ok-ink);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 820;
  line-height: 1.18;
}

body.single-post .ok-product-panel {
  padding: 16px;
  top: calc(var(--ok-fixed-header-height, 72px) + 18px);
}

body.single-post .ok-product-list,
body.single-post .ok-product-utility,
body.single-post .ok-product-creator-card,
body.single-post .ok-product-tags,
body.single-post .ok-product-empty {
  border-color: rgba(255, 255, 255, 0.08);
  background: transparent;
}

body.single-post .ok-product-list-row {
  min-height: 46px;
  grid-template-columns: minmax(86px, .74fr) minmax(0, 1.26fr);
  gap: 12px;
  border-color: rgba(255, 255, 255, 0.06);
}

body.single-post .ok-product-list-row span,
body.single-post .ok-product-description > span,
body.single-post .ok-product-tags > div > span,
body.single-post .ok-product-section-head span {
  color: #8b949e;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

body.single-post .ok-product-list-row strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Flat white icons across all rows and utilities - NO multi color */
body.single-post .ok-product-list-row i,
body.single-post .ok-product-list-row strong i,
body.single-post .ok-product-list-row:nth-child(n) i,
body.single-post .ok-product-list-row:nth-child(n) strong i,
body.single-post .ok-product-list-row .ok-stock-app-icon,
body.single-post .ok-product-list-row:nth-child(n) .ok-stock-app-icon,
body.single-post .ok-product-utility i,
body.single-post .ok-product-creator-card strong i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 12px;
  opacity: 0.95;
}

body.single-post .ok-product-list-row .ok-stock-app-icon {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 10px;
}

/* Collection / Categories / Tags Links */
body.single-post .ok-product-term-list a {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.2s ease;
}

body.single-post .ok-product-term-list a:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Main Download/Subscribe Button: Theme Blue & Hover White BG + Black Text */
body.single-post .ok-product-primary,
body.single-post .ok-product-primary:visited {
  min-height: 48px;
  border: 1px solid #2563eb;
  border-radius: 999px;
  background-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 14px rgba(37, 99, 235, 0.28);
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.single-post .ok-product-primary:hover,
body.single-post .ok-product-primary:focus-visible {
  border-color: #ffffff;
  background-color: #ffffff;
  background: #ffffff;
  color: #000000;
  -webkit-text-fill-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
  outline: 0;
}

body.single-post .ok-product-primary span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body.single-post .ok-product-primary:hover *,
body.single-post .ok-product-primary:focus-visible * {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

body.single-post .ok-product-primary--unavailable,
body.single-post .ok-product-primary--unavailable:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #64748b;
  -webkit-text-fill-color: #64748b;
  transform: none;
  box-shadow: none;
}

body.single-post .ok-product-alert {
  border-color: rgba(246, 174, 169, .34);
  background: rgba(246, 174, 169, .1);
  color: #ffd1ce;
}

/* Quick Actions / Utilities (Share & License) */
body.single-post .ok-product-utility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0;
  margin-top: 10px;
}

body.single-post .ok-product-utility button,
body.single-post .ok-product-utility a,
body.single-post .ok-product-utility span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.single-post .ok-product-utility button:hover,
body.single-post .ok-product-utility button:focus-visible,
body.single-post .ok-product-utility a:hover,
body.single-post .ok-product-utility a:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
  -webkit-text-fill-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.18);
  outline: 0;
  text-decoration: none;
}

body.single-post .ok-product-utility button:hover *,
body.single-post .ok-product-utility a:hover * {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

body.single-post .ok-product-creator-card strong {
  color: #ffffff;
}

body.single-post .ok-product-creator-card strong i {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

body.single-post .ok-product-creator-card span {
  color: #8b949e;
}

body.single-post .ok-product-tags a {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

body.single-post .ok-product-tags a:hover,
body.single-post .ok-product-tags a:focus-visible {
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
  outline: 0;
}

body.single-post .ok-product-license {
  border: 1px solid rgba(129, 201, 149, .28);
  background: rgba(129, 201, 149, .08);
  color: var(--ok-ink-muted);
}

body.single-post .ok-product-license i,
body.single-post .ok-product-license a {
  color: var(--ok-asset-green);
}

body.single-post .ok-product-details {
  padding: clamp(20px, 2.5vw, 32px);
}

body.single-post .ok-product-content {
  color: var(--ok-ink-soft);
}

body.single-post .ok-product-content :where(h1, h2, h3, h4, h5, h6, strong) {
  color: var(--ok-ink);
}

body.single-post .ok-product-content :where(p, li) {
  color: var(--ok-ink-muted);
}

body.single-post .ok-product-content a {
  color: #2563eb;
  text-decoration: none;
}

body.single-post .ok-product-content a:hover {
  color: #ffffff;
  text-decoration: underline;
}

body.single-post .ok-product-section-head h2 {
  color: #ffffff;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
}

body.single-post .ok-related-arrow,
body.single-post .ok-product-section-head a,
body.single-post .ok-preview-carousel-arrow {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.single-post .ok-related-arrow i,
body.single-post .ok-preview-carousel-arrow i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body.single-post .ok-related-arrow:hover,
body.single-post .ok-product-section-head a:hover,
body.single-post .ok-preview-carousel-arrow:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
  -webkit-text-fill-color: #000000;
  transform: translateY(-1px);
}

body.single-post .ok-related-arrow:hover i,
body.single-post .ok-preview-carousel-arrow:hover i {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

body.single-post .ok-preview-carousel-dots {
  border-color: var(--ok-border);
  background: var(--ok-surface);
}

body.single-post .ok-preview-carousel-dots button {
  background: var(--ok-border-strong);
}

body.single-post .ok-preview-carousel-dots button[aria-current="true"] {
  background: var(--ok-asset-accent);
}

@media (max-width: 1180px) {
  body.single-post .ok-product-hero {
    grid-template-columns: 1fr;
  }

  body.single-post .ok-product-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  body.single-post .ok-product-page {
    padding: 14px 12px 48px;
  }

  body.single-post .ok-product-shell {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  body.single-post .ok-product-hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.single-post .ok-product-preview-card {
    padding: 8px;
    border-radius: 8px;
  }

  body.single-post .ok-product-preview-card.is-video-preview {
    background: var(--ok-surface);
  }

  body.single-post .ok-product-preview-card.is-video-preview .ok-product-preview-title {
    background: var(--ok-surface);
    color: var(--ok-ink);
  }

  body.single-post .ok-product-preview-box.is-image {
    height: auto;
    min-height: 0;
    padding: 8px;
    border-radius: 6px;
  }

  body.single-post .ok-product-preview-box.is-image > img,
  body.single-post .ok-product-preview-box.is-image > picture,
  body.single-post .ok-product-preview-box.is-image > picture img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 68vh;
    object-fit: contain;
    display: block;
    border-radius: 4px;
  }

  body.single-post .ok-product-preview-box.has-preview-slider {
    height: auto;
    min-height: 0;
  }

  body.single-post .ok-product-preview-box.has-preview-slider .ok-preview-carousel-slide {
    height: auto;
    min-height: 0;
    padding: 8px;
  }

  body.single-post .ok-product-preview-box.has-preview-slider .ok-preview-carousel-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 68vh;
    object-fit: contain;
  }

  body.single-post .ok-product-panel,
  body.single-post .ok-product-details {
    padding: 12px;
    border-radius: 8px;
  }
}

@media (max-width: 520px) {
  body.single-post .ok-product-list-row {
    min-height: 46px;
    grid-template-columns: minmax(76px, .72fr) minmax(0, 1.28fr);
    padding-inline: 10px;
  }

  body.single-post .ok-product-primary {
    min-height: 50px;
  }
}

/* =========================================================
   PREMIUM STUDIO SINGLE POST ENGINE (REALTIME COLORS)
   ========================================================= */
body.single-post {
  background: var(--background, #000000) !important;
  background-image: none !important;
}

body.single-post .ok-product-shell {
  width: 82% !important;
  max-width: 1400px !important;
  margin-inline: auto !important;
}

body.single-post .ok-product-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px !important;
  gap: 24px !important;
  align-items: start !important;
}

/* Card Wrappers */
body.single-post .ok-product-preview-card,
body.single-post .ok-product-panel,
body.single-post .ok-product-details,
body.single-post .ok-product-creator-card,
body.single-post .ok-product-tags,
body.single-post .ok-product-license-box {
  background: #080c14 !important;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8) !important;
}

body.single-post .ok-product-preview-card {
  padding: 12px !important;
  border-radius: 12px !important;
  min-width: 0 !important;
}

/* 1. IMAGE FORMAT FIXED MAX HEIGHT (Strictly Contained) */
body.single-post .ok-product-preview-box {
  width: 100% !important;
  background: #000000 !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  overflow: hidden !important;
  position: relative !important;
}

body.single-post .ok-product-preview-box.is-image,
body.single-post .ok-product-preview-box.has-preview-slider,
body.single-post .ok-product-preview-card:not(.is-video-preview) .ok-product-preview-box {
  height: 520px !important;
  min-height: 520px !important;
  max-height: 520px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #020408 !important;
  box-sizing: border-box !important;
}

body.single-post .ok-product-preview-box.is-png {
  background-color: #040711 !important;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 80%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.02) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.02) 75%) !important;
  background-size: 100% 100%, 24px 24px, 24px 24px !important;
  background-position: 0 0, 0 0, 12px 12px !important;
}

/* Single Image Containment (Fits all random sizes) */
body.single-post .ok-product-preview-box.is-image > img,
body.single-post .ok-product-preview-box.is-image > picture,
body.single-post .ok-product-preview-box.is-image > picture img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: auto !important;
  display: block !important;
  padding: 16px !important;
  box-sizing: border-box !important;
  user-select: none !important;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
}

/* Video Preview Format */
body.single-post .ok-product-preview-box.is-video {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  max-height: 520px !important;
  background: #000000 !important;
}

body.single-post .ok-product-preview-box.is-video.is-vertical-video {
  aspect-ratio: 9 / 16 !important;
  height: 520px !important;
  max-height: 520px !important;
  margin-inline: auto !important;
}

/* 2. REFINED PREVIEW SLIDER (CAROUSEL) */
body.single-post .ok-preview-carousel {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

body.single-post .ok-preview-carousel-track {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

body.single-post .ok-preview-carousel-track::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body.single-post .ok-preview-carousel-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 24px !important;
  box-sizing: border-box !important;
  scroll-snap-align: center !important;
  scroll-snap-stop: always !important;
}

body.single-post .ok-preview-carousel-media {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

body.single-post .ok-preview-carousel-slide img,
body.single-post .ok-preview-carousel-media img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: auto !important;
  display: block !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

/* Slider Floating Glass Arrows */
body.single-post .ok-preview-carousel-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 15 !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(10, 15, 26, 0.75) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  opacity: 0.9 !important;
}

body.single-post .ok-preview-carousel-arrow i {
  font-size: 15px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

body.single-post .ok-preview-carousel-arrow--prev {
  left: 16px !important;
}

body.single-post .ok-preview-carousel-arrow--next {
  right: 16px !important;
}

body.single-post .ok-preview-carousel-arrow:hover,
body.single-post .ok-preview-carousel-arrow:focus-visible {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  opacity: 1 !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.35) !important;
}

body.single-post .ok-preview-carousel-arrow:hover i,
body.single-post .ok-preview-carousel-arrow:focus-visible i {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

body.single-post .ok-preview-carousel-arrow--prev:hover i {
  transform: translateX(-1px) !important;
}

body.single-post .ok-preview-carousel-arrow--next:hover i {
  transform: translateX(1px) !important;
}

/* Slider Floating Minimal Capsule Dots */
body.single-post .ok-preview-carousel-dots {
  position: absolute !important;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 15 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 14px !important;
  background: rgba(10, 15, 26, 0.78) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

body.single-post .ok-preview-carousel-dots button {
  width: 7px !important;
  height: 7px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.35) !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.single-post .ok-preview-carousel-dots button:hover {
  background: rgba(255, 255, 255, 0.75) !important;
}

body.single-post .ok-preview-carousel-dots button[aria-current="true"] {
  width: 22px !important;
  background: #2563eb !important;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.7) !important;
}

/* 3. RESHAPED PREMIUM RIGHT PANE */
body.single-post .ok-product-panel {
  padding: 22px 24px !important;
  border-radius: 12px !important;
  background: #080c14 !important;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-self: start !important;
  box-sizing: border-box !important;
}

body.single-post .ok-product-list {
  display: flex !important;
  flex-direction: column !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.single-post .ok-product-list-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 44px !important;
  padding: 10px 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  gap: 14px !important;
  box-sizing: border-box !important;
}

body.single-post .ok-product-list-row:last-child {
  border-bottom: none !important;
  padding-bottom: 2px !important;
}

body.single-post .ok-product-list-row > span {
  color: #8b949e !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  text-transform: capitalize !important;
  flex-shrink: 0 !important;
}

body.single-post .ok-product-list-row > strong {
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  text-align: right !important;
  flex-wrap: wrap !important;
}

/* Flat white icons across all rows */
body.single-post .ok-product-list-row i,
body.single-post .ok-product-list-row strong i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 13px !important;
  opacity: 0.9 !important;
}

/* Reshaped Terms (Categories, Collections, Tags) as Soft Pills */
body.single-post .ok-product-term-list {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  justify-content: flex-end !important;
}

body.single-post .ok-product-term-list a {
  display: inline-flex !important;
  align-items: center !important;
  padding: 3px 12px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #e2e8f0 !important;
  -webkit-text-fill-color: #e2e8f0 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: nowrap !important;
}

body.single-post .ok-product-term-list a:hover {
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3) !important;
}

/* Extension Badge */
body.single-post .ok-product-list-row .ok-stock-app-icon {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 4px !important;
  padding: 2px 7px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  letter-spacing: 0.02em !important;
}

/* Action Area */
body.single-post .ok-product-action {
  margin-top: 18px !important;
  width: 100% !important;
}

/* Main CTA Button: Theme Blue & Hover White BG + Black Text */
body.single-post .ok-product-primary,
body.single-post .ok-product-primary:visited {
  width: 100% !important;
  min-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: #2563eb !important;
  background-color: #2563eb !important;
  border: 1px solid #2563eb !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.32) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}

body.single-post .ok-product-primary i.fa-crown {
  color: #f59e0b !important;
  -webkit-text-fill-color: #f59e0b !important;
  font-size: 15px !important;
  transition: color 0.2s ease !important;
}

body.single-post .ok-product-primary:hover,
body.single-post .ok-product-primary:focus-visible {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.28) !important;
  outline: 0 !important;
}

body.single-post .ok-product-primary:hover *,
body.single-post .ok-product-primary:focus-visible * {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

/* Quick Utilities (Share & License) */
body.single-post .ok-product-utility {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin-top: 10px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

body.single-post .ok-product-utility button,
body.single-post .ok-product-utility a,
body.single-post .ok-product-utility span {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #8b949e !important;
  -webkit-text-fill-color: #8b949e !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.single-post .ok-product-utility i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 12px !important;
  opacity: 0.8 !important;
  transition: color 0.2s ease !important;
}

body.single-post .ok-product-utility button:hover,
body.single-post .ok-product-utility a:hover {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.18) !important;
}

body.single-post .ok-product-utility button:hover *,
body.single-post .ok-product-utility a:hover * {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

/* Responsiveness & Mobile Enhancements */
@media (max-width: 1100px) {
  body.single-post .ok-product-hero {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  body.single-post .ok-product-panel {
    position: static !important;
  }
}

@media (max-width: 900px) {
  body.single-post .ok-product-shell {
    width: 96% !important;
    max-width: 100% !important;
    padding-inline: 0 !important;
  }

  body.single-post .ok-product-preview-card {
    padding: 8px !important;
    border-radius: 12px !important;
  }

  /* 1. Video Player on smaller devices: 16:9 ratio fixed player for ANY video size */
  body.single-post .ok-product-preview-box.is-video,
  body.single-post .ok-product-preview-box.is-video.is-vertical-video,
  body.single-post .ok-product-preview-card.is-video-preview .ok-product-preview-box {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #000000 !important;
    overflow: hidden !important;
  }

  body.single-post .ok-product-preview-box.is-video .ok-yt-player,
  body.single-post .ok-product-preview-box.is-video .ok-ai-player,
  body.single-post .ok-product-preview-box.is-video .ok-yt-player.is-vertical-video {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16 / 9 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #000000 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.single-post .ok-product-preview-box.is-video video,
  body.single-post .ok-product-preview-box.is-video.is-vertical-video video,
  body.single-post .ok-product-video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: auto !important;
    background: #000000 !important;
    border-radius: 0 !important;
  }

  /* Sticky Top Video on Scroll (like fixed header) */
  body.single-post .ok-product-preview-card.is-video-preview.is-sticky-pinned {
    position: fixed !important;
    top: var(--ok-header-offset, 60px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 0 12px 12px !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: #000000 !important;
    z-index: 998 !important;
    padding: 0 !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.95) !important;
    box-sizing: border-box !important;
  }

  body.admin-bar.single-post .ok-product-preview-card.is-video-preview.is-sticky-pinned {
    top: calc(var(--ok-header-offset, 60px) + 46px) !important;
  }

  body.single-post .ok-product-preview-card.is-video-preview.is-sticky-pinned .ok-product-preview-box {
    border-radius: 0 !important;
    border: none !important;
  }

  /* 2. Images on mobile/smaller devices: 16:9 ratio instead of squared */
  body.single-post .ok-product-preview-box.is-image,
  body.single-post .ok-product-preview-box.has-preview-slider,
  body.single-post .ok-product-preview-card:not(.is-video-preview) .ok-product-preview-box {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #020408 !important;
  }

  body.single-post .ok-preview-carousel {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
  }

  body.single-post .ok-preview-carousel-track {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.single-post .ok-preview-carousel-slide {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    padding: 10px 14px !important;
    box-sizing: border-box !important;
  }

  body.single-post .ok-preview-carousel-media {
    width: 100% !important;
    height: 100% !important;
  }

  body.single-post .ok-preview-carousel-slide img,
  body.single-post .ok-preview-carousel-media img,
  body.single-post .ok-product-preview-box.is-image > img,
  body.single-post .ok-product-preview-box.is-image > picture,
  body.single-post .ok-product-preview-box.is-image > picture img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: auto !important;
  }

  /* 3. Remove arrows from smaller devices */
  body.single-post .ok-preview-carousel-arrow {
    display: none !important;
  }

  /* Dots on smaller devices */
  body.single-post .ok-preview-carousel-dots {
    bottom: 10px !important;
    padding: 4px 10px !important;
    gap: 6px !important;
  }

  body.single-post .ok-preview-carousel-dots button {
    width: 6px !important;
    height: 6px !important;
  }

  body.single-post .ok-preview-carousel-dots button[aria-current="true"] {
    width: 18px !important;
  }

  body.single-post .ok-product-panel {
    padding: 20px 18px !important;
  }
}

@media (max-width: 540px) {
  body.single-post .ok-product-shell {
    width: 100% !important;
    padding-inline: 6px !important;
  }

  body.single-post .ok-product-preview-card {
    padding: 6px !important;
  }

  body.single-post .ok-preview-carousel-slide {
    padding: 8px 10px !important;
  }

  body.single-post .ok-product-panel {
    padding: 16px 14px !important;
  }
}

/* ==========================================================================
   10. STUDIO NOTES & EDITORIAL (Dedicated: assets/css/pages/blog-system.css)
   ========================================================================== */

/* ==========================================================================
   13. PRICING PLANS & SUBSCRIPTIONS
   ========================================================================== */
/**
 * Pricing Page Stylesheet - Modern Theme-Matched Overhaul
 * Colors: #000000 (Pure Black), #06090c (Midnight Navy), #73b2f7 (Sky Blue), #be55ff (Electric Violet)
 * Strictly zero flags.
 */

/* ==========================================================================
   1. PAGE CONTAINER & ATMOSPHERE
   ========================================================================== */
.ok-pricing-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px 100px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

/* ==========================================================================
   2. HERO HEADER & NAVIGATION
   ========================================================================== */
.ok-pricing-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ok-pricing-nav-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ok-pricing-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background-color: rgba(6, 9, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ok-pricing-back:hover {
  background-color: #06090c;
  border-color: rgba(115, 178, 247, 0.5);
  color: #ffffff;
  transform: translateX(-2px);
}

.ok-pricing-back i {
  font-size: 12px;
  color: #73b2f7;
}

.ok-pricing-header .ok-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #73b2f7;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ok-pricing-header .ok-badge i {
  font-size: 11px;
  color: #be55ff;
}

h1.ok-pricing-title {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-align: center;
}

h1.ok-pricing-title span {
  display: block;
  color: #ffffff;
}

h1.ok-pricing-title .ok-gradient-text {
  display: inline-block;
  background: linear-gradient(135deg, #73b2f7 0%, #be55ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #73b2f7;
}

.ok-pricing-subtitle {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   3. COUNTDOWN OFFER TIMER
   ========================================================================== */
.ok-offer-timer {
  margin: 28px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(6, 9, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.ok-offer-timer-copy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ok-offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 107, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.35);
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
}

.ok-offer-tag i {
  color: #ff6b6b;
}

.ok-offer-timer-copy strong {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.ok-offer-timer-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ok-timer-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px 10px;
  min-width: 46px;
  text-align: center;
}

.ok-timer-box strong {
  display: block;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.ok-timer-box span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  margin-top: 3px;
  line-height: 1;
}

/* Payment notification banners */
.ok-test-payment-banner,
.ok-payment-unavailable-banner {
  max-width: 800px;
  margin: 0 auto 32px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  text-align: center;
}

.ok-test-payment-banner {
  background: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(115, 178, 247, 0.3);
  color: #73b2f7;
}

.ok-payment-unavailable-banner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ==========================================================================
   4. CREDIT PLANS GRID (4-COLUMN DESKTOP)
   ========================================================================== */
.ok-credit-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 64px;
  align-items: stretch;
}

.ok-credit-card {
  background: #070a10;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.ok-credit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(190, 85, 255, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 20px rgba(168, 85, 247, 0.15);
}

/* Popular Card Tier Highlight */
.ok-credit-card.is-popular {
  border-color: rgba(168, 85, 247, 0.25);
  background: #070a10;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.ok-credit-card.is-popular:hover {
  transform: translateY(-5px);
  border-color: rgba(190, 85, 255, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 20px rgba(168, 85, 247, 0.15);
}

.ok-popular-tag {
  display: none !important;
}

/* Card Header */
.ok-card-top {
  margin-bottom: 16px;
}

.ok-plan-tier {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #73b2f7;
  margin-bottom: 6px;
  display: block;
}

.ok-credit-card.is-popular .ok-plan-tier {
  color: #be55ff;
}

.ok-plan-name {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

/* Pricing Display */
.ok-price {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.ok-price [data-price-current],
.ok-price .ok-price-current {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ok-price .ok-price-original {
  font-size: 18px;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 500;
}

/* Credits Badge Line */
.ok-credit-line {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(115, 178, 247, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 24px;
}

.ok-credit-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14.5px;
  color: #ffffff;
}

.ok-credit-coin-icon {
  color: #fbbf24;
  font-size: 16px;
}

.ok-credit-badge strong {
  font-weight: 700;
}

.ok-per-credit {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
  line-height: 1.35;
}

/* Feature Checklist */
.ok-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.ok-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.45;
}

.ok-features li:before {
  content: none !important;
  display: none !important;
}

.ok-feature-check {
  color: #ffffff !important;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.ok-credit-card.is-popular .ok-feature-check {
  color: #ffffff !important;
}

/* Button & CTA */
.ok-card-cta-wrap {
  margin-top: auto;
  padding-top: 8px;
}

.ok-buy-credit {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  background-color: #ffffff;
  color: #0b0f19;
  outline: none;
  box-sizing: border-box;
}

.ok-buy-credit * {
  color: #0b0f19;
}

.ok-buy-credit:hover:not(:disabled):not(.is-active-current) {
  background-color: #2563eb;
  border: none;
  color: #ffffff;
  box-shadow: none;
  transform: translateY(-2px);
}

.ok-buy-credit:hover:not(:disabled):not(.is-active-current) * {
  color: #ffffff;
}

.ok-buy-arrow {
  font-size: 12px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ok-buy-credit:hover:not(:disabled):not(.is-active-current) .ok-buy-arrow {
  transform: translateX(4px);
  color: #ffffff;
}

.ok-buy-credit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   5. ON-DEMAND INSTANT PASS SECTION
   ========================================================================== */
.ok-on-demand-section {
  background: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.ok-on-demand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background-color: rgba(115, 178, 247, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #73b2f7;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.ok-on-demand-badge i {
  color: #73b2f7;
}

.ok-on-demand-copy h3 {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.25;
}

.ok-on-demand-copy p {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

.ok-on-demand-notice {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #73b2f7;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
}

.ok-credit-card--on-demand {
  background: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
}

.ok-credit-card--on-demand:hover {
  transform: translateY(-4px);
  border-color: rgba(115, 178, 247, 0.5);
}

/* ==========================================================================
   6. ENTERPRISE CUSTOM PLAN BANNER
   ========================================================================== */
.ok-enterprise-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 36px;
  margin-bottom: 64px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.ok-enterprise-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #be55ff;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.ok-enterprise-copy h3 {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.ok-enterprise-copy p {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14.5px;
  color: #94a3b8;
  margin: 0;
  max-width: 620px;
  line-height: 1.55;
}

.ok-enterprise-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #73b2f7 0%, #be55ff 100%);
  color: #000000;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.ok-enterprise-btn:hover {
  transform: translateY(-2px);
  box-shadow: none;
  color: #000000;
  background: linear-gradient(135deg, #8bc2ff 0%, #c86eff 100%);
}

/* ==========================================================================
   7. INCLUDED BENEFITS SECTION
   ========================================================================== */
.ok-subscription-benefits {
  margin-bottom: 64px;
}

.ok-subscription-benefits-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.ok-benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background-color: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #73b2f7;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.ok-subscription-benefits-head h2 {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.25;
}

.ok-subscription-benefits-head p {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

.ok-subscription-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ok-benefit-card {
  background: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.ok-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(115, 178, 247, 0.4);
}

.ok-benefit-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.ok-benefit-icon--primary {
  background: rgba(115, 178, 247, 0.12);
  color: #73b2f7;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ok-benefit-icon--accent {
  background: rgba(190, 85, 255, 0.12);
  color: #be55ff;
  border: 1px solid rgba(190, 85, 255, 0.25);
}

.ok-benefit-icon--history {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.ok-benefit-card h3 {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.ok-benefit-card p {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14px;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0;
}

/* ==========================================================================
   8. FREQUENTLY ASKED QUESTIONS ACCORDION
   ========================================================================== */
.ok-subscription-faq {
  margin-bottom: 40px;
}

.ok-subscription-faq-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
}

.ok-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background-color: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #73b2f7;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.ok-subscription-faq-head h2 {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.ok-subscription-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ok-faq-item {
  background: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.ok-faq-item[open] {
  border-color: rgba(115, 178, 247, 0.45);
  background-color: #0a0e14;
}

.ok-faq-summary {
  padding: 20px 24px;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 15.5px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
  outline: none;
}

.ok-faq-summary::-webkit-details-marker {
  display: none;
}

.ok-faq-chevron {
  font-size: 14px;
  color: #73b2f7;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.ok-faq-item[open] .ok-faq-chevron {
  transform: rotate(180deg);
  color: #be55ff;
}

.ok-faq-content {
  padding: 0 24px 20px;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14.5px;
  line-height: 1.6;
  color: #94a3b8;
}

.ok-faq-content p {
  margin: 0;
}

/* ==========================================================================
   9. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
  .ok-credit-plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .ok-on-demand-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
  }

  .ok-subscription-benefit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ok-enterprise-credit {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 20px;
  }

  .ok-enterprise-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .ok-pricing-wrap {
    padding: 32px 16px 60px;
  }

  .ok-pricing-header {
    margin-bottom: 40px;
  }

  h1.ok-pricing-title {
    font-size: 28px;
  }

  .ok-pricing-subtitle {
    font-size: 14.5px;
  }

  .ok-offer-timer {
    flex-direction: column;
    gap: 12px;
    border-radius: 16px;
    padding: 14px 18px;
    width: 100%;
    box-sizing: border-box;
  }

  .ok-offer-timer-grid {
    width: 100%;
    justify-content: center;
  }

  .ok-credit-plans {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  .ok-credit-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .ok-popular-tag {
    right: 18px;
  }

  .ok-price [data-price-current],
  .ok-price .ok-price-current {
    font-size: 32px;
  }

  .ok-faq-summary {
    padding: 16px 18px;
    font-size: 14.5px;
  }

  .ok-faq-content {
    padding: 0 18px 16px;
    font-size: 13.5px;
  }
}

/* ==========================================================================
   10. SUCCESS POPUP MODAL
   ========================================================================== */
.ok-popup-overlay[hidden],
.ok-popup-overlay:not(.active) {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ok-popup-overlay.active {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ok-popup-box {
  width: 100%;
  max-width: 440px;
  background: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  animation: okPopupZoom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes okPopupZoom {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ok-checkmark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(115, 178, 247, 0.15);
  border: 1px solid rgba(115, 178, 247, 0.4);
  color: #73b2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.ok-popup-kicker {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #73b2f7;
  margin: 0 0 6px;
}

.ok-popup-box h3 {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

#okPopupText {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 0 24px;
}

.ok-popup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(115, 178, 247, 0.12);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 24px;
}

.ok-popup-stats div span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 4px;
}

.ok-popup-stats div strong {
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.ok-popup-continue {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #73b2f7 0%, #be55ff 100%);
  color: #000000;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
}

.ok-popup-continue:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

/* ==========================================================================
   14. CREATOR STUDIO & MY PROFILE DASHBOARD
   Rebuilt into modern YouTube Studio interface (assets/css/pages/my-profile-page.css)
   ========================================================================== */

/* ==========================================================================
   15. CHECKOUT & COMMERCE FLOW
   ========================================================================== */
/* ==========================================================================
   15. CHECKOUT & COMMERCE FLOW (Okay Bhargav Brand Theme System)
   ========================================================================== */

/* Main Checkout Wrap Canvas */
.ok-checkout-wrap {
  width: 100%;
  min-height: calc(100vh - 160px);
  padding: clamp(24px, 4vw, 56px) clamp(16px, 3vw, 32px) clamp(48px, 6vw, 80px);
  background-color: #000000;
  color: var(--text, #ffffff);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: var(--font-family, 'Product Sans', sans-serif);
}

.ok-checkout-wrap *,
.ok-checkout-wrap *::before,
.ok-checkout-wrap *::after {
  box-sizing: border-box;
}

/* ==========================================================================
   ACTIVE CHECKOUT SHELL (Two-Column Desktop Layout)
   ========================================================================== */

.ok-checkout-shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.95fr);
  gap: 32px;
  align-items: start;
}

/* Close / Change Plan Top Button */
.ok-checkout-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ok-checkout-close:hover,
.ok-checkout-close:focus-visible {
  background-color: #0f1620;
  border-color: var(--primary, #73b2f7);
  color: #ffffff;
  transform: scale(1.08);
  outline: none;
}

/* ==========================================================================
   LEFT COLUMN: MAIN CHECKOUT DETAILS & PAYMENT
   ========================================================================== */

.ok-checkout-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(28px, 4vw, 42px);
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.ok-checkout-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ok-checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary, #73b2f7);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ok-checkout-back:hover,
.ok-checkout-back:focus-visible {
  color: #ffffff;
  transform: translateX(-2px);
  outline: none;
}

.ok-checkout-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background-color: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(115, 178, 247, 0.2);
  color: var(--primary, #73b2f7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ok-checkout-title {
  margin: 4px 0 0;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.ok-checkout-lead {
  margin: 0;
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.6;
}

/* International / Currency Alert */
.ok-checkout-test-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background-color: rgba(115, 178, 247, 0.08);
  border: 1px solid rgba(115, 178, 247, 0.2);
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
}

.ok-checkout-test-banner i {
  color: var(--primary, #73b2f7);
  font-size: 15px;
  flex-shrink: 0;
}

.ok-checkout-test-banner.is-admin {
  background-color: rgba(234, 179, 8, 0.1);
  border-color: rgba(234, 179, 8, 0.3);
  color: #fef08a;
}

.ok-checkout-test-banner.is-admin i {
  color: #eab308;
}

/* Section Blocks */
.ok-checkout-section-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.ok-checkout-section-label {
  font-size: 13px;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Payment Methods Radio Group */
.ok-checkout-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ok-checkout-method {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background-color: #0a0e14;
  border: 1px solid rgba(115, 178, 247, 0.15);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ok-checkout-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ok-checkout-method:hover {
  border-color: rgba(115, 178, 247, 0.4);
  background-color: #0b1a38;
}

.ok-checkout-method.is-selected {
  border-color: var(--primary, #73b2f7);
  background-color: #0b1d40;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ok-method-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid rgba(115, 178, 247, 0.35);
  background-color: #06090c;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s ease;
}

.ok-checkout-method.is-selected .ok-method-dot {
  border-color: var(--primary, #73b2f7);
  background-color: var(--primary, #73b2f7);
  box-shadow: inset 0 0 0 3px #06090c;
}

.ok-method-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ok-method-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ok-method-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.ok-method-desc {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.4;
}

.ok-payment-brands {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ok-payment-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border-radius: 6px;
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
}

.ok-payment-brand--visa {
  color: #93c5fd;
  border-color: rgba(147, 197, 253, 0.3);
}

.ok-payment-brand--mc {
  color: #fca5a5;
  border-color: rgba(252, 165, 165, 0.3);
}

.ok-payment-brand--upi {
  color: #86efac;
  border-color: rgba(134, 239, 172, 0.3);
}

/* ==========================================================================
   PROMO CODE SECTION
   ========================================================================== */

.ok-checkout-promo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 14px;
  background-color: #0a0e14;
  border: 1px solid rgba(115, 178, 247, 0.15);
}

.ok-checkout-promo-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ok-checkout-promo-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ok-checkout-promo-label i {
  color: var(--primary, #73b2f7);
  font-size: 12px;
}

.ok-checkout-promo-sub {
  font-size: 12px;
  color: #64748b;
}

.ok-checkout-promo-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ok-checkout-promo-form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.ok-checkout-promo-form input::placeholder {
  color: #475569;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.ok-checkout-promo-form input:focus {
  border-color: var(--primary, #73b2f7);
  box-shadow: 0 0 0 3px rgba(115, 178, 247, 0.2);
  outline: none;
}

.ok-checkout-promo-btn {
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.ok-checkout-promo-btn--apply {
  background-color: var(--primary, #73b2f7);
  color: #000000;
  border: 1px solid var(--primary, #73b2f7);
}

.ok-checkout-promo-btn--apply:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: none;
}

.ok-checkout-promo-btn--clear {
  background-color: transparent;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ok-checkout-promo-btn--clear:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.ok-checkout-promo-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.ok-checkout-promo-message {
  margin: 2px 0 0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
}

.ok-checkout-promo-message.is-success {
  color: #4ade80;
}

.ok-checkout-promo-message.is-error {
  color: #f87171;
}

/* ==========================================================================
   PRIMARY CTA: PAY NOW BUTTON
   ========================================================================== */

.ok-checkout-pay {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 0 24px;
  border-radius: 999px;
  background-color: var(--primary, #73b2f7);
  color: #000000;
  border: 1px solid var(--primary, #73b2f7);
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ok-checkout-pay i {
  color: #000000;
  font-size: 14px;
}

.ok-checkout-pay:hover,
.ok-checkout-pay:focus-visible {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: none;
  outline: none;
}

.ok-checkout-pay:hover i {
  color: #000000;
}

.ok-checkout-pay:active {
  transform: translateY(0);
}

.ok-checkout-pay:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ok-checkout-status {
  min-height: 20px;
  margin: 2px 0 0;
  color: #94a3b8;
  font-size: 13px;
  text-align: center;
}

.ok-checkout-status.is-error {
  color: #f87171;
}

/* ==========================================================================
   TRUST & SECURITY GUARANTEES BAR
   ========================================================================== */

.ok-checkout-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ok-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
}

.ok-trust-item i {
  color: var(--primary, #73b2f7);
  font-size: 13px;
}

/* ==========================================================================
   RIGHT COLUMN: STICKY ORDER SUMMARY CARD
   ========================================================================== */

.ok-checkout-summary {
  position: sticky;
  top: 96px;
  width: 100%;
}

.ok-summary-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 3.5vw, 36px);
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
}

.ok-summary-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ok-checkout-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary, #73b2f7);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ok-checkout-pill.is-popular {
  background-color: rgba(115, 178, 247, 0.16);
  border-color: var(--primary, #73b2f7);
  color: #ffffff;
}

.ok-summary-change-btn {
  background: transparent;
  border: none;
  padding: 0;
  color: #94a3b8;
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s ease;
}

.ok-summary-change-btn:hover {
  color: var(--primary, #73b2f7);
}

.ok-summary-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.ok-summary-credits {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background-color: #0a0e14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 13.5px;
}

.ok-summary-credits i {
  color: var(--primary, #73b2f7);
  font-size: 14px;
}

.ok-summary-credits strong {
  color: var(--primary, #73b2f7);
  font-size: 18px;
  font-weight: 700;
}

.ok-summary-features {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ok-summary-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.45;
}

.ok-summary-features li i {
  color: var(--primary, #73b2f7);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.ok-summary-prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ok-summary-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #94a3b8;
  font-size: 13.5px;
}

.ok-summary-price-row del {
  color: #64748b;
}

.ok-summary-price-row.is-discount strong {
  color: #4ade80;
  font-weight: 700;
}

.ok-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.ok-summary-total-amount {
  color: var(--primary, #73b2f7);
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ok-summary-reassurance {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background-color: rgba(115, 178, 247, 0.06);
  border: 1px solid rgba(115, 178, 247, 0.12);
  color: #94a3b8;
  font-size: 11.5px;
  line-height: 1.4;
}

.ok-summary-reassurance i {
  color: #4ade80;
  font-size: 13px;
  flex-shrink: 0;
}

/* ==========================================================================
   EMPTY CHECKOUT & PLAN PICKER EXPERIENCE
   ========================================================================== */

.ok-checkout-picker-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.ok-checkout-picker {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ok-checkout-picker-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}

.ok-checkout-picker-head .ok-checkout-nav-bar {
  justify-content: center;
}

.ok-checkout-picker-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.ok-checkout-picker-head p {
  margin: 0;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
}

/* 4-Column Responsive Plans Grid */
.ok-checkout-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.ok-checkout-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
  border-radius: 18px;
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ok-checkout-plan-card:hover {
  border-color: var(--primary, #73b2f7);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.6);
}

.ok-checkout-plan-card.is-popular {
  border-color: var(--primary, #73b2f7);
  background: linear-gradient(180deg, #0a0e14 0%, #06090c 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.ok-checkout-plan-card.is-current-plan {
  border-color: rgba(74, 222, 128, 0.4);
}

.ok-checkout-plan-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ok-checkout-pill.is-popular-tag {
  background-color: var(--primary, #73b2f7);
  color: #000000;
  border: none;
  font-weight: 700;
}

.ok-checkout-plan-current {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background-color: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
}

.ok-checkout-plan-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.ok-checkout-plan-credits {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 13px;
}

.ok-checkout-plan-credits i {
  color: var(--primary, #73b2f7);
}

.ok-checkout-plan-credits strong {
  color: var(--primary, #73b2f7);
  font-size: 18px;
  font-weight: 700;
}

.ok-checkout-plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.ok-checkout-plan-price del {
  color: #64748b;
  font-size: 15px;
}

.ok-checkout-plan-price strong {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ok-checkout-plan-features {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.ok-checkout-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #94a3b8;
  font-size: 12.5px;
  line-height: 1.45;
}

.ok-checkout-plan-features li i {
  color: var(--primary, #73b2f7);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

.ok-checkout-plan-footer {
  margin-top: auto;
  padding-top: 6px;
}

.ok-checkout-plan-action {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  background-color: var(--primary, #73b2f7);
  color: #000000;
  border: 1px solid var(--primary, #73b2f7);
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ok-checkout-plan-action i {
  font-size: 12px;
  transition: transform 0.15s ease;
}

.ok-checkout-plan-action:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: none;
}

.ok-checkout-plan-action:hover i {
  transform: translateX(3px);
}

.ok-checkout-plan-action.is-disabled {
  background-color: #0a0e14;
  border-color: rgba(255, 255, 255, 0.1);
  color: #64748b;
  cursor: default;
  pointer-events: none;
}

/* ==========================================================================
   STANDALONE EMPTY STATE / STATUS WRAP
   ========================================================================== */

.ok-checkout-empty-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60vh;
}

.ok-checkout-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 600px;
  padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 36px);
  background-color: #06090c;
  border: 1px solid rgba(115, 178, 247, 0.2);
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
}

.ok-checkout-empty-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: rgba(115, 178, 247, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary, #73b2f7);
  font-size: 26px;
}

.ok-checkout-empty h2 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.ok-checkout-empty p {
  margin: 0;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
}

.ok-checkout-empty-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.ok-checkout-btn-primary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background-color: var(--primary, #73b2f7);
  color: #000000;
  border: 1px solid var(--primary, #73b2f7);
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ok-checkout-btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: none;
}

.ok-checkout-btn-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background-color: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ok-checkout-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   SUCCESS MODAL POPUP
   ========================================================================== */

.ok-checkout-success-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ok-checkout-success-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ok-checkout-success-modal .ok-popup-box {
  position: relative;
  width: min(100%, 460px);
  padding: 36px 30px;
  border: 1px solid rgba(115, 178, 247, 0.3);
  border-radius: 24px;
  background-color: #06090c;
  color: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8), 0 24px 80px rgba(0, 0, 0, 0.8);
  text-align: center;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.ok-checkout-success-modal.active .ok-popup-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ok-checkout-success-modal .ok-checkmark {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #4ade80;
  font-size: 30px;
  font-weight: 700;
}

.ok-checkout-success-modal.is-verifying .ok-checkmark {
  font-size: 0;
}

.ok-checkout-success-modal.is-verifying .ok-checkmark::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 3px solid rgba(115, 178, 247, 0.3);
  border-top-color: var(--primary, #73b2f7);
  animation: okSpin 0.8s linear infinite;
}

@keyframes okSpin {
  to { transform: rotate(360deg); }
}

.ok-checkout-success-modal .ok-success-kicker {
  display: block;
  margin: 0 0 6px;
  color: var(--primary, #73b2f7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ok-checkout-success-modal h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
}

.ok-checkout-success-modal p {
  margin: 0;
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.55;
}

.ok-checkout-success-modal .ok-success-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 16px;
}

.ok-checkout-success-modal .ok-success-stats div {
  padding: 14px;
  border-radius: 14px;
  background-color: #0a0e14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.ok-checkout-success-modal .ok-success-stats span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.ok-checkout-success-modal .ok-success-stats strong {
  display: block;
  color: var(--primary, #73b2f7);
  font-size: 24px;
  font-weight: 700;
}

.ok-checkout-success-modal .ok-popup-continue {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  background-color: var(--primary, #73b2f7);
  color: #000000;
  border: 1px solid var(--primary, #73b2f7);
  font-family: var(--font-family, 'Product Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ok-checkout-success-modal .ok-popup-continue:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* Tablet & Smaller Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .ok-checkout-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ok-checkout-close {
    display: none;
  }

  .ok-checkout-summary {
    position: static;
    order: -1;
  }

  .ok-checkout-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  .ok-checkout-wrap {
    padding: 18px 12px 48px;
  }

  .ok-checkout-main,
  .ok-summary-card,
  .ok-checkout-empty {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .ok-checkout-title {
    font-size: 24px;
  }

  .ok-checkout-lead {
    font-size: 13.5px;
  }

  .ok-checkout-plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ok-checkout-promo-form {
    flex-direction: column;
    align-items: stretch;
  }

  .ok-checkout-promo-form input {
    width: 100%;
  }

  .ok-checkout-promo-btn {
    width: 100%;
  }

  .ok-checkout-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ==========================================================================
   16. USER ACCESS & AUTHENTICATION
   ========================================================================== */
/* Premium studio access and password recovery pages. */

body.ok-access-body,
body.ok-reset-body {
  margin: 0;
  min-height: 100vh;
  color: var(--ok-ink);
  font-family: var(--font-family-main, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

body.ok-access-body *,
body.ok-access-body *::before,
body.ok-access-body *::after,
body.ok-reset-body *,
body.ok-reset-body *::before,
body.ok-reset-body *::after {
  box-sizing: border-box;
}

body.ok-access-body,
body.ok-access-body:not(.home) {
  background-color: var(--background, #000000);
  background: var(--background, #000000);
}

body.ok-reset-body,
body.ok-reset-body:not(.home) {
  background-color: var(--background, #000000);
  background: var(--background, #000000);
}

.ok-access-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  overflow: hidden;
  isolation: isolate;
  background: var(--background, #000000);
}

.ok-reset-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  overflow: hidden;
  isolation: isolate;
  background: var(--background, #000000);
}

.ok-access-page::before,
.ok-reset-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: rgba(5, 8, 18, .16);
}

.ok-access-page::after,
.ok-reset-page::after {
  content: none;
}

.ok-access-shell {
  width: min(980px, calc(100% - 48px));
  min-height: min(700px, calc(100vh - clamp(36px, 8vw, 108px)));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr);
  border-radius: 0;
  overflow: hidden;
  background: var(--ok-surface);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .24);
}

.ok-access-studio {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, .42), rgba(3, 7, 18, .78)),
    url("https://unsplash.com/photos/mth8QPE4yM4/download?force=true&w=1600") center / cover no-repeat;
  color: var(--ok-surface);
}

.ok-access-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .26));
}

.ok-access-studio::after {
  content: none;
}

.ok-access-brand,
.ok-access-studio-copy {
  position: relative;
  z-index: 1;
}

.ok-access-brand {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ok-surface);
  text-decoration: none;
}

.ok-access-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.ok-access-brand span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.ok-access-brand strong,
.ok-access-brand small {
  color: var(--ok-surface);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .48);
}

.ok-access-brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.ok-access-brand small {
  opacity: .78;
  font-size: 12px;
  font-weight: 700;
}

.ok-access-studio-copy {
  max-width: 640px;
  align-self: center;
  margin: auto 0;
}

.ok-access-studio-kicker {
  display: block;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.35;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .52);
  text-transform: uppercase;
  -webkit-text-fill-color: rgba(255, 255, 255, .86);
}

.ok-access-studio-copy > span,
.ok-reset-kicker {
  width: max-content;
  max-width: 100%;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 0;
  background: rgba(255, 255, 255, .14);
  color: var(--ok-surface);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.ok-access-studio-copy > .ok-access-studio-kicker {
  width: auto;
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

body.ok-access-body .ok-access-studio,
body.ok-access-body .ok-access-studio *,
body.ok-access-body .ok-access-studio-copy > span,
body.ok-access-body .ok-access-studio-copy h1,
body.ok-access-body .ok-access-studio-copy h1 span,
body.ok-access-body .ok-access-studio-copy p {
  color: var(--ok-surface);
  -webkit-text-fill-color: var(--ok-surface);
}

.ok-access-studio-copy h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--ok-surface);
  background: none;
  font-size: clamp(38px, 4.45vw, 64px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: 0;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .58);
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--ok-surface);
}

.ok-access-studio-copy h1 span {
  display: block;
}

.ok-access-studio-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .54);
}

.ok-access-card,
.ok-reset-card {
  min-width: 0;
  align-self: center;
  width: 100%;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 0;
  background: var(--ok-surface);
}

.ok-access-card {
  border: 0;
  outline: 0;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
  transform: none;
  transition: none;
}

.ok-access-page[data-active-panel="forgot"] .ok-access-card {
  text-align: center;
}

.ok-access-page[data-active-panel="forgot"] .ok-access-card-head,
.ok-access-page[data-active-panel="forgot"] .ok-access-panels,
.ok-access-page[data-active-panel="forgot"] .ok-access-terms {
  width: 100%;
}

.ok-access-page[data-active-panel="forgot"] .ok-access-panels {
  min-height: 260px;
  display: grid;
  align-items: center;
}

.ok-access-page[data-active-panel="forgot"] .ok-access-panel {
  width: 100%;
}

.ok-access-body .ok-access-page .ok-access-shell .ok-access-card,
.ok-access-body .ok-access-page .ok-access-shell .ok-access-card:hover,
.ok-access-body .ok-access-page .ok-access-shell .ok-access-card:focus,
.ok-access-body .ok-access-page .ok-access-shell .ok-access-card:focus-within {
  border: 0;
  outline: 0;
  border-color: transparent;
  box-shadow: none;
  transform: none;
  background: var(--ok-surface);
}

.ok-reset-card:hover {
  transform: none;
}

.ok-access-card-head {
  margin-bottom: 18px;
}

.ok-access-card-head > span {
  color: var(--ok-blue-ui);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ok-access-card-head h2,
.ok-reset-card h1 {
  margin: 7px 0 7px;
  color: var(--ok-ink);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.ok-access-card-head p,
.ok-reset-card p {
  margin: 0;
  color: var(--ok-ink-muted);
  font-size: 14px;
  line-height: 1.58;
}

.ok-access-alert,
.ok-access-note,
.ok-access-closed,
.ok-reset-alert {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 0;
  font-size: 13px;
  line-height: 1.45;
}

.ok-access-alert--error,
.ok-reset-alert--error {
  border: 1px solid rgba(179, 45, 46, .22);
  background: var(--ok-surface-soft);
  color: #8f1d1d;
}

.ok-access-alert--success,
.ok-reset-alert--success {
  border: 1px solid rgba(52, 168, 83, .24);
  background: var(--ok-surface-soft);
  color: var(--ok-green);
}

.ok-access-note,
.ok-access-closed {
  border: 1px solid rgba(253, 214, 99, .55);
  background: var(--ok-surface-soft);
  color: #7a4a00;
}

.ok-access-note strong,
.ok-access-note span,
.ok-access-closed strong,
.ok-access-closed p {
  display: block;
}

.ok-access-note strong,
.ok-access-closed strong {
  margin-bottom: 4px;
  color: #5f3b00;
  font-weight: 900;
}

.ok-access-closed p {
  margin: 0;
}

.ok-access-panel[hidden] {
  display: none;
}

.ok-access-panels {
  min-height: 414px;
}

.ok-access-google {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 15px;
  border: 1px solid var(--ok-border);
  border-radius: 0;
  background: var(--ok-surface);
  color: var(--ok-ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.ok-access-google:hover,
.ok-access-google:focus {
  border-color: rgba(11, 87, 208, .42);
  box-shadow: 0 12px 30px rgba(60, 64, 67, .12);
}

.ok-access-divider {
  position: relative;
  margin: 16px 0;
  color: var(--ok-ink-faint);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.ok-access-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ok-border);
}

.ok-access-divider span {
  position: relative;
  padding: 0 10px;
  background: var(--ok-surface);
}

.ok-access-form {
  display: grid;
  gap: 12px;
}

.ok-access-form label,
.ok-reset-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.ok-access-form label > span,
.ok-reset-form label > span {
  color: var(--ok-ink-soft);
  font-size: 12px;
  font-weight: 900;
}

.ok-access-form input:not([type="checkbox"]),
.ok-reset-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--ok-border);
  border-radius: 0;
  background: var(--ok-surface);
  color: var(--ok-ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.ok-access-form input:focus,
.ok-reset-form input:focus {
  border-color: var(--ok-blue-ui);
  box-shadow: 0 0 0 3px rgba(11, 87, 208, .13);
}

.ok-access-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.ok-access-remember {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  color: var(--ok-ink-muted);
  font-size: 13px;
  font-weight: 800;
}

.ok-access-remember input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.ok-access-link,
.ok-access-switchline button {
  border: 0;
  background: transparent;
  color: var(--ok-blue-ui);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.ok-access-submit,
.ok-reset-submit {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-pill, 999px);
  background: var(--primary, #73b2f7);
  color: #000000;
  -webkit-text-fill-color: #000000;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: transform .18s ease, background .18s ease;
}

.ok-access-submit:hover,
.ok-access-submit:focus,
.ok-reset-submit:hover,
.ok-reset-submit:focus {
  background: #5ea4f2;
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
  transform: translateY(-2px);
}

.ok-access-submit:focus-visible,
.ok-reset-submit:focus-visible {
  outline: 0;
  box-shadow: none;
}

.ok-reset-submit:disabled {
  cursor: not-allowed;
  background: #9aa0a6;
  box-shadow: none;
  transform: none;
}

.ok-access-switchline {
  margin: 15px 0 0;
  color: var(--ok-ink-muted);
  font-size: 13px;
  text-align: center;
}

.ok-access-terms {
  margin: 20px 0 0;
  color: var(--ok-ink-faint);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.ok-access-terms a,
.ok-reset-links a {
  color: var(--ok-blue-ui);
  font-weight: 900;
  text-decoration: none;
}

.ok-reset-card {
  width: min(100%, 480px);
  border: 1px solid rgba(218, 220, 224, .82);
  border-radius: 0;
  box-shadow: 0 34px 100px rgba(60, 64, 67, .17);
}

.ok-reset-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ok-reset-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 0;
  background: var(--ok-surface);
  box-shadow: 0 12px 28px rgba(60, 64, 67, .12);
}

.ok-reset-kicker {
  border-color: var(--ok-border-blue);
  background: var(--ok-blue-soft);
  color: var(--ok-blue-ui);
  backdrop-filter: none;
}

.ok-reset-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.ok-reset-links {
  margin: 18px 0 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .ok-access-shell {
    grid-template-columns: 1fr;
  }

  .ok-access-studio {
    min-height: 390px;
  }

  .ok-access-studio-copy {
    align-self: start;
  }
}

@media (max-width: 680px) {
  .ok-access-page,
  .ok-reset-page {
    min-height: 100svh;
    padding: 18px;
    place-items: center;
  }

  .ok-access-shell {
    width: min(100%, 480px);
    min-height: 0;
    display: block;
    border-radius: 0;
  }

  .ok-access-studio {
    display: none;
  }

  .ok-access-card,
  .ok-reset-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .ok-access-row {
    display: grid;
    justify-items: start;
  }
}
/* Unified dark account access finish */
.ok-access-body,
.ok-reset-body {
  background: var(--background, #000000);
  color: var(--text, #ffffff);
}

.ok-access-shell,
.ok-access-studio,
.ok-access-card,
.ok-reset-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: #121212;
  color: var(--text, #ffffff);
  box-shadow: none;
}

.ok-access-body :where(h1, h2, h3, strong),
.ok-reset-body :where(h1, h2, h3, strong) {
  color: var(--text, #ffffff);
}

.ok-access-body :where(p, li, small, span),
.ok-reset-body :where(p, li, small, span) {
  color: #a3a3a3;
}

.ok-access-body :where(input, textarea, select),
.ok-reset-body :where(input, textarea, select) {
  border-color: rgba(255, 255, 255, 0.12);
  background: #181818;
  color: #ffffff;
}

/* Final dark access polish. */
body.ok-access-body,
body.ok-reset-body {
  --access-bg: #000000;
  --access-panel: #121212;
  --access-panel-soft: #181818;
  --access-line: rgba(255, 255, 255, 0.08);
  --access-line-strong: rgba(255, 255, 255, 0.16);
  --access-text: #ffffff;
  --access-muted: #a3a3a3;
  --access-soft: #737373;
  --access-blue: var(--primary, #73b2f7);
  --access-cyan: var(--primary, #73b2f7);
  --access-violet: var(--accent, #be55ff);
  --access-orange: var(--accent, #be55ff);
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--background, #000000);
  color: var(--access-muted);
}

body.ok-access-body::before,
body.ok-reset-body::before {
  content: none;
  display: none;
}

body.ok-access-body .ok-access-page,
body.ok-reset-body .ok-reset-page {
  min-height: 100svh;
  padding: clamp(26px, 5vw, 76px) 18px;
  overflow-y: visible;
  overflow-x: hidden;
  background: var(--background, #000000);
  background-attachment: scroll;
}

body.ok-access-body .ok-access-page::before,
body.ok-reset-body .ok-reset-page::before {
  background: transparent;
}

body.ok-access-body .ok-access-shell {
  width: min(1040px, calc(100% - 28px));
  max-height: none;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .82fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: #121212;
  box-shadow: none;
}

body.ok-access-body .ok-access-studio {
  min-height: 600px;
  padding: clamp(30px, 5vw, 56px);
  background: #121212;
}

body.ok-access-body .ok-access-studio::before {
  display: none;
}

body.ok-access-body .ok-access-brand img {
  border-radius: 15px;
  background: var(--access-panel-soft);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

body.ok-access-body .ok-access-brand strong,
body.ok-access-body .ok-access-brand small {
  color: var(--access-text);
  -webkit-text-fill-color: var(--access-text);
}

body.ok-access-body .ok-access-studio-kicker,
body.ok-access-body .ok-access-card-head > span {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(59, 130, 246, .24);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(59, 130, 246, .09);
  color: var(--access-cyan);
  -webkit-text-fill-color: var(--access-cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: none;
}

body.ok-access-body .ok-access-studio-copy h1 {
  max-width: 560px;
  color: var(--access-text);
  -webkit-text-fill-color: var(--access-text);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 950;
  line-height: .96;
  text-shadow: none;
}

body.ok-access-body .ok-access-studio-copy h1,
body.ok-access-body .ok-access-studio-copy h1 span {
  opacity: 1;
  filter: none;
  color: rgba(247, 251, 255, .94);
  -webkit-text-fill-color: rgba(247, 251, 255, .94);
  text-shadow: 0 18px 54px rgba(0, 0, 0, .42);
}

body.ok-access-body .ok-access-studio-copy p {
  max-width: 500px;
  color: var(--access-muted);
  -webkit-text-fill-color: var(--access-muted);
  font-size: 15px;
  font-weight: 700;
  text-shadow: none;
}

body.ok-access-body .ok-access-card,
body.ok-reset-body .ok-reset-card {
  position: relative;
  min-height: 0;
  align-self: stretch;
  justify-content: center;
  padding: clamp(30px, 5vw, 50px);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: #121212;
  color: var(--access-muted);
}

@media (max-height: 820px) and (min-width: 981px) {
  body.ok-access-body .ok-access-page {
    place-items: start center;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  body.ok-access-body .ok-access-shell {
    max-height: none;
    overflow: hidden;
  }

  body.ok-access-body .ok-access-studio {
    min-height: 0;
  }

  body.ok-access-body .ok-access-studio,
  body.ok-access-body .ok-access-card {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  body.ok-access-body .ok-access-studio-copy h1 {
    font-size: clamp(42px, 4.4vw, 62px);
  }

  body.ok-access-body .ok-access-card-head h2 {
    font-size: 38px;
  }

  body.ok-access-body .ok-access-google,
  body.ok-access-body .ok-access-form input:not([type="checkbox"]) {
    min-height: 44px;
  }

  body.ok-access-body .ok-access-submit {
    min-height: 48px;
  }
}

body.ok-access-body .ok-access-card::before,
body.ok-reset-body .ok-reset-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--primary, #73b2f7);
  opacity: 1;
}

body.ok-access-body .ok-access-card-head h2,
body.ok-reset-body .ok-reset-card h1 {
  color: var(--access-text);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.02;
}

body.ok-access-body .ok-access-card-head p,
body.ok-access-body .ok-access-terms,
body.ok-access-body .ok-access-switchline,
body.ok-reset-body .ok-reset-card p {
  color: var(--access-muted);
  font-weight: 700;
}

body.ok-access-body .ok-access-google {
  min-height: 46px;
  border: 1px solid rgba(132, 167, 229, .25);
  border-radius: 14px;
  background: rgba(7, 11, 18, .52);
  color: var(--access-text);
}

body.ok-access-body .ok-access-google:hover {
  border-color: rgba(59, 130, 246, .42);
  background: rgba(59, 130, 246, .08);
}

body.ok-access-body .ok-access-divider::before {
  background: rgba(132, 167, 229, .18);
}

body.ok-access-body .ok-access-divider span {
  background: var(--access-panel);
  color: var(--access-muted);
}

body.ok-access-body .ok-access-form label > span,
body.ok-reset-body .ok-reset-form label > span {
  color: var(--access-text);
  font-size: 12px;
  font-weight: 900;
}

body.ok-access-body .ok-access-form input:not([type="checkbox"]),
body.ok-reset-body .ok-reset-form input:not([type="checkbox"]) {
  min-height: 48px;
  border: 1px solid rgba(132, 167, 229, .24);
  border-radius: 13px;
  background: rgba(6, 10, 18, .62);
  color: var(--access-text);
  font-size: 14px;
}

body.ok-access-body .ok-access-form input:not([type="checkbox"])::placeholder,
body.ok-reset-body .ok-reset-form input:not([type="checkbox"])::placeholder {
  color: rgba(174, 187, 212, .70);
}

body.ok-access-body .ok-access-form input:not([type="checkbox"]):focus,
body.ok-reset-body .ok-reset-form input:not([type="checkbox"]):focus {
  border-color: rgba(134, 183, 255, .72);
  box-shadow: 0 0 0 4px rgba(134, 183, 255, .12);
}

body.ok-access-body .ok-access-remember,
body.ok-access-body .ok-access-link,
body.ok-access-body .ok-access-switchline button,
body.ok-access-body .ok-access-terms a {
  color: var(--access-blue);
}

body.ok-access-body .ok-access-submit,
body.ok-reset-body .ok-access-submit {
  min-height: 50px;
  border-radius: 999px;
  background: var(--primary, #73b2f7);
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
}

body.ok-access-body .ok-access-submit:hover,
body.ok-reset-body .ok-access-submit:hover {
  background: #5ea4f2;
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
  transform: translateY(-1px);
}

body.ok-access-body .ok-access-alert,
body.ok-access-body .ok-access-note,
body.ok-access-body .ok-access-closed {
  border-radius: 14px;
  background: rgba(139, 92, 246, .10);
}

@media (max-width: 980px) {
  body.ok-access-body .ok-access-shell {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 24px));
    max-height: none;
    overflow: hidden;
  }

  body.ok-access-body .ok-access-studio {
    min-height: 300px;
  }

  body.ok-access-body .ok-access-card {
    border-left: 0;
    border-top: 1px solid rgba(132, 167, 229, .14);
  }
}

@media (max-width: 680px) {
  html:has(body.ok-access-body),
  body.ok-access-body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.ok-access-body .ok-access-page,
  body.ok-reset-body .ok-reset-page {
    width: 100%;
    max-width: 100vw;
    padding: 8px 8px 14px;
    place-items: start;
    align-content: start;
    justify-content: start;
    overflow-x: hidden;
  }

  body.ok-access-body .ok-access-shell {
    justify-self: start;
    width: min(340px, calc(100% - 16px));
    max-width: 340px;
    min-width: 0;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
  }

  body.ok-access-body .ok-access-studio {
    display: block;
    min-height: 0;
    height: auto;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(132, 167, 229, .18);
  }

  body.ok-access-body .ok-access-studio::before {
    display: none;
    content: none;
  }

  body.ok-access-body .ok-access-brand img {
    width: 44px;
    height: 44px;
  }

  body.ok-access-body .ok-access-brand {
    width: 100%;
    align-items: center;
  }

  body.ok-access-body .ok-access-studio-copy {
    display: none;
  }

  body.ok-access-body .ok-access-card,
  body.ok-reset-body .ok-reset-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: clamp(560px, 70svh, 640px);
    display: flex;
    flex-direction: column;
    padding: 22px 14px 24px;
    overflow: visible;
    border-top: 0;
  }

  body.ok-access-body .ok-access-panels {
    flex: 1;
    display: grid;
    min-height: 0;
  }

  body.ok-access-body .ok-access-panel:not([hidden]) {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  body.ok-access-body .ok-access-panel[hidden] {
    display: none;
  }

  body.ok-access-body .ok-access-form {
    flex: 0 0 auto;
  }

  body.ok-access-body .ok-access-switchline {
    margin-top: auto;
    padding-top: 14px;
  }

  body.ok-access-body .ok-access-terms {
    margin-top: auto;
    padding-top: 18px;
  }

  body.ok-access-body .ok-access-card::before,
  body.ok-reset-body .ok-reset-card::before {
    height: 3px;
  }

  body.ok-access-body .ok-access-card-head h2 {
    font-size: 34px;
  }

  body.ok-access-body .ok-access-card-head p,
  body.ok-access-body .ok-access-card-head h2,
  body.ok-access-body .ok-access-card-head > span,
  body.ok-access-body .ok-access-panels,
  body.ok-access-body .ok-access-panel,
  body.ok-access-body .ok-access-google,
  body.ok-access-body .ok-access-form,
  body.ok-access-body .ok-access-form label,
  body.ok-access-body .ok-access-row,
  body.ok-access-body .ok-access-switchline,
  body.ok-access-body .ok-access-terms {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  body.ok-access-body .ok-access-card-head p {
    width: 100%;
    display: block;
    font-size: 13px;
    line-height: 1.45;
  }

  body.ok-access-body .ok-access-form input:not([type="checkbox"]),
  body.ok-access-body .ok-access-submit,
  body.ok-access-body .ok-access-google {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.ok-access-body .ok-access-row {
    gap: 10px;
  }
}

/* Laptop-height fit: avoid page scrollbar for access panels. */
@media (max-height: 820px) and (min-width: 981px) {
  html:has(body.ok-access-body),
  body.ok-access-body {
    height: 100%;
    overflow: hidden;
  }

  body.ok-access-body .ok-access-page {
    height: 100vh;
    min-height: 0;
    place-items: center;
    padding: 18px;
    overflow: hidden;
  }

  body.ok-access-body .ok-access-shell {
    height: calc(100vh - 36px);
    max-height: calc(100vh - 36px);
    min-height: 0;
    overflow: hidden;
  }

  body.ok-access-body .ok-access-studio,
  body.ok-access-body .ok-access-card {
    min-height: 0;
    height: 100%;
    overflow: hidden;
  }

  body.ok-access-body .ok-access-studio {
    padding: 26px 44px;
  }

  body.ok-access-body .ok-access-brand img {
    width: 46px;
    height: 46px;
  }

  body.ok-access-body .ok-access-studio-kicker {
    min-height: 24px;
    margin-bottom: 12px;
    padding: 4px 9px;
    font-size: 10px;
  }

  body.ok-access-body .ok-access-studio-copy h1 {
    max-width: 470px;
    margin-bottom: 14px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: .95;
  }

  body.ok-access-body .ok-access-studio-copy p {
    max-width: 440px;
    font-size: 13px;
    line-height: 1.45;
  }

  body.ok-access-body .ok-access-card {
    padding: 24px 40px;
  }

  body.ok-access-body .ok-access-card-head {
    margin-bottom: 14px;
  }

  body.ok-access-body .ok-access-card-head > span {
    min-height: 24px;
    padding: 4px 9px;
    font-size: 10px;
  }

  body.ok-access-body .ok-access-card-head h2 {
    margin-bottom: 8px;
    font-size: 34px;
  }

  body.ok-access-body .ok-access-card-head p {
    font-size: 13px;
    line-height: 1.45;
  }

  body.ok-access-body .ok-access-google {
    min-height: 40px;
  }

  body.ok-access-body .ok-access-divider {
    margin: 10px 0;
  }

  body.ok-access-body .ok-access-form {
    gap: 9px;
  }

  body.ok-access-body .ok-access-form label {
    gap: 6px;
  }

  body.ok-access-body .ok-access-form input:not([type="checkbox"]) {
    min-height: 40px;
  }

  body.ok-access-body .ok-access-row {
    margin: 2px 0;
  }

  body.ok-access-body .ok-access-submit {
    min-height: 42px;
    margin-top: 4px;
  }

  body.ok-access-body .ok-access-switchline {
    margin: 14px 0 0;
    font-size: 13px;
  }

  body.ok-access-body .ok-access-terms {
    margin: 18px 0 0;
    font-size: 11px;
    line-height: 1.35;
  }
}

/* Final mobile access lock: keep all account states on the same clean canvas. */
@media (max-width: 680px) {
  body.ok-access-body,
  body.ok-reset-body {
    min-height: 100svh;
    background: var(--ok-bg-base, #07080b);
  }

  body.ok-access-body::before,
  body.ok-reset-body::before {
    content: none;
    display: none;
  }

  body.ok-access-body .ok-access-page,
  body.ok-reset-body .ok-reset-page {
    min-height: 100svh;
    padding: 8px 8px 14px;
    place-items: start;
    align-content: start;
    justify-content: start;
    overflow-x: hidden;
    background:
      radial-gradient(circle at 10% 0, rgba(59, 130, 246, .16), transparent 18rem),
      radial-gradient(circle at 92% 100%, rgba(139, 92, 246, .10), transparent 20rem),
      linear-gradient(135deg, var(--ok-bg-base, #07080b), var(--ok-bg-canvas, #0a0c10) 54%, var(--ok-bg-base, #07080b));
    background-attachment: scroll;
  }

  body.ok-access-body .ok-access-shell {
    justify-self: start;
    margin: 0;
  }

  body.ok-access-body .ok-access-card,
  body.ok-reset-body .ok-reset-card {
    min-height: clamp(560px, 70svh, 640px);
  }
}

/* Final responsive access layout: compact on every phone/tablet width. */
@media (max-width: 980px) {
  html:has(body.ok-access-body),
  html:has(body.ok-reset-body),
  body.ok-access-body,
  body.ok-reset-body {
    width: 100%;
    max-width: 100%;
    min-height: 100svh;
    overflow-x: hidden;
    background: var(--ok-bg-base, #07080b);
  }

  body.ok-access-body::before,
  body.ok-reset-body::before {
    content: none;
    display: none;
  }

  body.ok-access-body .ok-access-page,
  body.ok-reset-body .ok-reset-page {
    width: 100%;
    max-width: 100vw;
    min-height: 100svh;
    padding: 0 10px 16px;
    display: grid;
    place-items: start center;
    align-content: start;
    overflow-x: hidden;
    overflow-y: auto;
    background:
      radial-gradient(circle at 8% 0, rgba(59, 130, 246, .16), transparent 18rem),
      radial-gradient(circle at 94% 100%, rgba(139, 92, 246, .10), transparent 20rem),
      linear-gradient(135deg, var(--ok-bg-base, #07080b), var(--ok-bg-canvas, #0a0c10) 54%, var(--ok-bg-base, #07080b));
    background-attachment: scroll;
  }

  body.ok-access-body .ok-access-shell {
    width: min(460px, calc(100vw - 20px));
    max-width: min(460px, calc(100vw - 20px));
    min-width: 0;
    min-height: 0;
    height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
  }

  body.ok-access-body .ok-access-studio {
    display: block;
    min-height: 0;
    height: auto;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(132, 167, 229, .18);
  }

  body.ok-access-body .ok-access-studio::before {
    content: none;
    display: none;
  }

  body.ok-access-body .ok-access-studio-copy {
    display: none;
  }

  body.ok-access-body .ok-access-brand {
    width: 100%;
    align-items: center;
  }

  body.ok-access-body .ok-access-brand img {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  body.ok-access-body .ok-access-card,
  body.ok-reset-body .ok-reset-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: clamp(560px, calc(100svh - 106px), 650px);
    height: auto;
    display: flex;
    flex-direction: column;
    padding: clamp(18px, 4.8vw, 28px) clamp(14px, 4.4vw, 24px);
    overflow: visible;
    border-left: 0;
    border-top: 0;
  }

  body.ok-access-body .ok-access-card-head {
    margin-bottom: 16px;
  }

  body.ok-access-body .ok-access-card-head h2 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.02;
  }

  body.ok-access-body .ok-access-card-head p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.45;
  }

  body.ok-access-body .ok-access-panels {
    flex: 1 1 auto;
    display: grid;
    min-height: 0;
  }

  body.ok-access-body .ok-access-panel:not([hidden]) {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  body.ok-access-body .ok-access-panel[hidden] {
    display: none;
  }

  body.ok-access-body .ok-access-google,
  body.ok-access-body .ok-access-form input:not([type="checkbox"]),
  body.ok-access-body .ok-access-submit {
    width: 100%;
    max-width: 100%;
  }

  body.ok-access-body .ok-access-row {
    gap: 10px;
  }

  body.ok-access-body .ok-access-switchline,
  body.ok-access-body .ok-access-terms {
    margin-top: auto;
  }
}

@media (max-width: 480px) {
  body.ok-access-body .ok-access-page,
  body.ok-reset-body .ok-reset-page {
    padding: 0 0 12px;
    justify-items: center;
  }

  body.ok-access-body .ok-access-shell {
    width: calc(100vw - 24px);
    max-width: 360px;
    justify-self: center;
    border-radius: 18px;
  }

  body.ok-access-body .ok-access-card,
  body.ok-reset-body .ok-reset-card {
    box-sizing: border-box;
    overflow: hidden;
    min-height: clamp(560px, calc(100svh - 86px), 640px);
    padding: 18px 14px 22px;
  }

  body.ok-access-body .ok-access-card-head,
  body.ok-access-body .ok-access-card-head p,
  body.ok-access-body .ok-access-panels,
  body.ok-access-body .ok-access-panel,
  body.ok-access-body .ok-access-form,
  body.ok-access-body .ok-access-form label,
  body.ok-access-body .ok-access-row,
  body.ok-access-body .ok-access-google,
  body.ok-access-body .ok-access-submit,
  body.ok-access-body .ok-access-switchline,
  body.ok-access-body .ok-access-terms {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.ok-access-body .ok-access-card-head h2 {
    font-size: clamp(28px, 8.2vw, 34px);
  }

  body.ok-access-body .ok-access-card-head p {
    white-space: normal;
    overflow-wrap: break-word;
    max-width: 27ch;
  }

  body.ok-access-body .ok-access-row {
    flex-wrap: wrap;
  }
}

/* Responsive rewrite: desktop split, tablet stacked, phone form-only. */
@media (max-width: 1100px) {
  body.ok-access-body,
  body.ok-reset-body {
    margin: 0;
    padding: 0;
  }

  body.ok-access-body .ok-access-page,
  body.ok-reset-body .ok-reset-page {
    margin: 0;
    min-height: 100svh;
    padding: 18px;
    place-items: start center;
    align-content: start;
    overflow-x: hidden;
    background:
      radial-gradient(circle at 12% 0, rgba(59, 130, 246, .16), transparent 24rem),
      radial-gradient(circle at 92% 100%, rgba(139, 92, 246, .10), transparent 24rem),
      linear-gradient(135deg, var(--ok-bg-base, #07080b), var(--ok-bg-canvas, #0a0c10) 54%, var(--ok-bg-base, #07080b));
  }

  body.ok-access-body .ok-access-shell {
    width: min(760px, 100%);
    max-width: 760px;
    min-width: 0;
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
  }

  body.ok-access-body .ok-access-studio {
    min-height: 0;
    height: auto;
    display: grid;
    gap: 22px;
    padding: 26px 28px;
    border-bottom: 1px solid rgba(132, 167, 229, .18);
  }

  body.ok-access-body .ok-access-studio-copy {
    display: block;
    max-width: 620px;
    align-self: start;
    margin: 0;
  }

  body.ok-access-body .ok-access-studio-copy h1 {
    max-width: 620px;
    font-size: clamp(34px, 7vw, 56px);
    line-height: 1;
  }

  body.ok-access-body .ok-access-studio-copy p {
    max-width: 54ch;
  }

  body.ok-access-body .ok-access-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: auto;
    height: auto;
    padding: 30px 28px;
    border-left: 0;
    border-top: 0;
  }
}

@media (max-width: 680px) {
  body.ok-access-body,
  body.ok-reset-body {
    width: 100%;
    overflow-x: hidden;
    background: var(--ok-bg-base, #07080b);
  }

  body.ok-access-body .ok-access-page,
  body.ok-reset-body .ok-reset-page {
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100svh;
    padding: 12px;
    place-items: start;
    align-content: start;
    justify-content: start;
  }

  body.ok-access-body .ok-access-shell {
    width: 360px;
    max-width: calc(100vw - 24px);
    display: block;
    margin: 0 0 0 12px;
    justify-self: start;
    border-radius: 20px;
  }

  body.ok-access-body .ok-access-studio {
    display: none;
  }

  body.ok-access-body .ok-access-card,
  body.ok-reset-body .ok-reset-card {
    width: 100%;
    max-width: 100%;
    min-height: min(720px, calc(100svh - 24px));
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 5vw, 28px);
    overflow: hidden;
  }

  body.ok-access-body .ok-access-card-head,
  body.ok-access-body .ok-access-panels,
  body.ok-access-body .ok-access-panel,
  body.ok-access-body .ok-access-form,
  body.ok-access-body .ok-access-form label,
  body.ok-access-body .ok-access-google,
  body.ok-access-body .ok-access-submit,
  body.ok-access-body .ok-access-row,
  body.ok-access-body .ok-access-switchline,
  body.ok-access-body .ok-access-terms {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.ok-access-body .ok-access-card-head h2 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.02;
  }

  body.ok-access-body .ok-access-card-head p {
    white-space: normal;
    overflow-wrap: break-word;
  }

  body.ok-access-body .ok-access-panels {
    flex: 1 1 auto;
    display: grid;
  }

  body.ok-access-body .ok-access-panel:not([hidden]) {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  body.ok-access-body .ok-access-panel[hidden] {
    display: none;
  }

  body.ok-access-body .ok-access-form {
    flex: 0 0 auto;
  }

  body.ok-access-body .ok-access-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  body.ok-access-body .ok-access-switchline,
  body.ok-access-body .ok-access-terms {
    margin-top: auto;
  }
}

/* Ultimate mobile cleanup: one background, centered card, no empty shell space. */
@media (max-width: 680px) {
  html:has(body.ok-access-body),
  html:has(body.ok-reset-body),
  body.ok-access-body,
  body.ok-reset-body {
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background:
      radial-gradient(circle at 10% 0, rgba(59, 130, 246, .16), transparent 18rem),
      radial-gradient(circle at 90% 100%, rgba(139, 92, 246, .10), transparent 18rem),
      linear-gradient(135deg, var(--ok-bg-base, #07080b), var(--ok-bg-canvas, #0a0c10) 54%, var(--ok-bg-base, #07080b));
  }

  body.ok-access-body::before,
  body.ok-reset-body::before,
  body.ok-access-body .ok-access-page::before,
  body.ok-reset-body .ok-reset-page::before {
    content: none;
    display: none;
  }

  body.ok-access-body .ok-access-page,
  body.ok-reset-body .ok-reset-page {
    width: 100%;
    max-width: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 18px 12px 12px;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: transparent;
  }

  body.ok-access-body .ok-access-shell {
    width: min(360px, calc(100vw - 24px));
    max-width: min(360px, calc(100vw - 24px));
    min-width: 0;
    min-height: 0;
    height: auto;
    display: block;
    margin: 0 0 0 12px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  body.ok-access-body .ok-access-studio {
    display: none;
  }

  body.ok-access-body .ok-access-card,
  body.ok-reset-body .ok-reset-card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    display: block;
    padding: 22px 18px;
    overflow: hidden;
    border: 1px solid rgba(132, 167, 229, .28);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(20, 27, 46, .98), rgba(7, 12, 22, .98));
    box-shadow: 0 20px 54px rgba(0, 0, 0, .34);
  }

  body.ok-access-body .ok-access-card-head {
    margin-bottom: 18px;
  }

  body.ok-access-body .ok-access-card-head h2 {
    font-size: clamp(30px, 8vw, 36px);
  }

  body.ok-access-body .ok-access-card-head p {
    max-width: 100%;
  }

  body.ok-access-body .ok-access-panels,
  body.ok-access-body .ok-access-panel:not([hidden]),
  body.ok-access-body .ok-access-form {
    display: block;
    min-height: 0;
  }

  body.ok-access-body .ok-access-panel[hidden] {
    display: none;
  }

  body.ok-access-body .ok-access-switchline,
  body.ok-access-body .ok-access-terms {
    margin-top: 20px;
    padding-top: 0;
  }

  body.ok-access-body .ok-access-page[data-active-panel="forgot"] .ok-access-card {
    text-align: center;
  }
}

/* Final access page system: one background, clean spacing, reliable centering. */
body.ok-access-body,
body.ok-reset-body {
  margin: 0;
  padding: 0;
  min-width: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0, rgba(59, 130, 246, .15), transparent 26rem),
    radial-gradient(circle at 88% 100%, rgba(139, 92, 246, .10), transparent 28rem),
    linear-gradient(135deg, var(--ok-bg-base, #07080b), var(--ok-bg-canvas, #0a0c10) 54%, var(--ok-bg-base, #07080b));
}

body.ok-access-body::before,
body.ok-reset-body::before,
body.ok-access-body .ok-access-page::before,
body.ok-reset-body .ok-reset-page::before {
  content: none;
  display: none;
}

body.ok-access-body .ok-access-page,
body.ok-reset-body .ok-reset-page {
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  margin: 0;
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  place-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  background: transparent;
}

body.ok-access-body .ok-access-shell {
  width: min(1040px, calc(100vw - 48px));
  max-width: 1040px;
  min-width: 0;
  min-height: min(640px, calc(100dvh - 48px));
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(132, 167, 229, .26);
  border-radius: 24px;
  background: rgba(9, 14, 24, .94);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
}

body.ok-access-body .ok-access-studio {
  min-height: 0;
  height: auto;
  padding: clamp(32px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(13, 45, 52, .50), rgba(8, 12, 22, .92)),
    linear-gradient(rgba(132, 167, 229, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 167, 229, .045) 1px, transparent 1px);
  background-size: auto, 74px 74px, 74px 74px;
}

body.ok-access-body .ok-access-studio-copy h1 {
  max-width: 520px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .98;
}

body.ok-access-body .ok-access-card,
body.ok-reset-body .ok-reset-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  height: auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 54px) clamp(32px, 4vw, 50px);
  overflow: hidden;
  border: 0;
  border-left: 1px solid rgba(132, 167, 229, .16);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(20, 27, 46, .98), rgba(7, 12, 22, .98));
}

body.ok-access-body .ok-access-card-head {
  margin-bottom: 24px;
}

body.ok-access-body .ok-access-panels,
body.ok-access-body .ok-access-panel:not([hidden]),
body.ok-access-body .ok-access-form {
  min-height: 0;
}

body.ok-access-body .ok-access-panels {
  display: block;
}

body.ok-access-body .ok-access-panel:not([hidden]) {
  display: block;
}

body.ok-access-body .ok-access-panel[hidden] {
  display: none;
}

body.ok-access-body .ok-access-form {
  display: grid;
  gap: 16px;
}

body.ok-access-body .ok-access-submit {
  margin-top: 8px;
}

body.ok-access-body .ok-access-divider {
  margin: 18px 0;
}

body.ok-access-body .ok-access-switchline,
body.ok-access-body .ok-access-terms {
  margin-top: 24px;
  padding-top: 0;
}

body.ok-access-body .ok-access-page[data-active-panel="forgot"] .ok-access-card {
  text-align: center;
}

body.ok-access-body .ok-access-page[data-active-panel="forgot"] .ok-access-form {
  gap: 18px;
}

@media (max-width: 1100px) {
  body.ok-access-body .ok-access-page,
  body.ok-reset-body .ok-reset-page {
    padding: 18px;
    place-items: start center;
  }

  body.ok-access-body .ok-access-shell {
    width: min(760px, calc(100vw - 36px));
    max-width: 760px;
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  body.ok-access-body .ok-access-studio {
    display: grid;
    gap: 22px;
    padding: 28px;
    border-bottom: 1px solid rgba(132, 167, 229, .18);
  }

  body.ok-access-body .ok-access-studio-copy {
    display: block;
    max-width: 620px;
    margin: 0;
  }

  body.ok-access-body .ok-access-studio-copy h1 {
    max-width: 620px;
    font-size: clamp(36px, 7vw, 58px);
  }

  body.ok-access-body .ok-access-card,
  body.ok-reset-body .ok-reset-card {
    justify-content: flex-start;
    padding: 30px 28px;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  body.ok-access-body .ok-access-page,
  body.ok-reset-body .ok-reset-page {
    min-height: 100dvh;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  body.ok-access-body .ok-access-shell {
    width: min(360px, calc(100vw - 28px));
    max-width: min(360px, calc(100vw - 28px));
    min-height: 0;
    display: block;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  body.ok-access-body .ok-access-studio {
    display: none;
  }

  body.ok-access-body .ok-access-card,
  body.ok-reset-body .ok-reset-card {
    display: block;
    padding: 24px 18px;
    border: 1px solid rgba(132, 167, 229, .28);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(20, 27, 46, .98), rgba(7, 12, 22, .98));
    box-shadow: 0 20px 54px rgba(0, 0, 0, .34);
  }

  body.ok-access-body .ok-access-card-head {
    margin-bottom: 22px;
  }

  body.ok-access-body .ok-access-card-head h2 {
    font-size: clamp(29px, 8vw, 35px);
    line-height: 1.04;
  }

  body.ok-access-body .ok-access-form {
    gap: 17px;
  }

  body.ok-access-body .ok-access-submit {
    margin-top: 10px;
  }

  body.ok-access-body .ok-access-switchline,
  body.ok-access-body .ok-access-terms {
    margin-top: 26px;
  }
}

/* Phone visual-viewport guard for mobile preview and narrow devices. */
@media (max-width: 680px) {
  body.ok-access-body .ok-access-page,
  body.ok-reset-body .ok-reset-page {
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
  }

  body.ok-access-body .ok-access-shell {
    width: min(300px, calc(100vw - 24px));
    max-width: min(300px, calc(100vw - 24px));
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================================
   REALTIME COLORS FLAT FINAL ENFORCEMENT
   ========================================================= */
body.ok-access-body,
body.ok-reset-body,
.ok-access-page,
.ok-reset-page {
  background: var(--background, #000000);
  background-image: none;
}

body.ok-access-body .ok-access-shell,
body.ok-access-body .ok-access-studio,
body.ok-access-body .ok-access-card,
body.ok-reset-body .ok-reset-card {
  background: #121212;
  background-image: none;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body.ok-access-body .ok-access-submit,
body.ok-reset-body .ok-access-submit,
.ok-access-submit,
.ok-reset-submit {
  background: var(--primary, #73b2f7);
  background-image: none;
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
  border: none;
}

body.ok-access-body .ok-access-submit:hover,
body.ok-reset-body .ok-access-submit:hover,
.ok-access-submit:hover,
.ok-reset-submit:hover {
  background: #5ea4f2;
  background-image: none;
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
  transform: translateY(-2px);
}

body.ok-access-body .ok-access-card::before,
body.ok-reset-body .ok-reset-card::before {
  background: var(--primary, #73b2f7);
}

/* ==========================================================================
   17. ABOUT US STORY
   ========================================================================== */
/* =========================================================
   ABOUT US STUDIO PAGE - THEME REDESIGN
   Canvas: #000000 | Containers: #06090c | Accent: #73b2f7
   Zero | Fully Responsive
========================================================= */

.okb-studio-v2-about {
  --okb-about-bg: #000000;
  --okb-about-card: #06090c;
  --okb-about-card-hover: #0a0f16;
  --okb-about-card-soft: #0b1017;
  --okb-about-border: rgba(255, 255, 255, 0.08);
  --okb-about-border-hover: rgba(115, 178, 247, 0.35);
  --okb-about-blue: #73b2f7;
  --okb-about-purple: #be55ff;
  --okb-about-text: #ffffff;
  --okb-about-muted: #94a3b8;
  --okb-about-subtle: #64748b;
  width: 100%;
  overflow: visible;
  color: var(--okb-about-text);
  background: var(--okb-about-bg);
  font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.okb-studio-v2-about,
.okb-studio-v2-about * {
  box-sizing: border-box;
}

.okb-studio-v2-about .okb-studio-v2-shell {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

/* =========================================================
   HERO SECTION
========================================================= */

.okb-studio-v2-about .okb-anim-hero {
  position: relative;
  min-height: calc(88vh - 78px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 6vw, 72px);
  background: var(--okb-about-bg);
}

.okb-studio-v2-about .okb-anim-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.okb-studio-v2-about .okb-studio-v2-copy > span,
.okb-studio-v2-about .okb-studio-v2-heading > span,
.okb-studio-v2-about .okb-studio-v2-text > span,
.okb-studio-v2-about .okb-studio-v2-note > span,
.okb-studio-v2-about .okb-studio-v2-final span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--okb-about-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.okb-studio-v2-about .okb-studio-v2-copy > span::before,
.okb-studio-v2-about .okb-studio-v2-heading > span::before,
.okb-studio-v2-about .okb-studio-v2-text > span::before,
.okb-studio-v2-about .okb-studio-v2-note > span::before {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--okb-about-blue), var(--okb-about-purple));
  content: '';
}

.okb-studio-v2-about h1,
.okb-studio-v2-about h2,
.okb-studio-v2-about h3,
.okb-studio-v2-about p {
  margin-top: 0;
}

.okb-studio-v2-about .okb-studio-v2-copy h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.okb-studio-v2-about .okb-studio-v2-copy p {
  max-width: 620px;
  color: var(--okb-about-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.68;
}

/* =========================================================
   BUTTONS (0 GLOW, FLAT PURE WHITE HOVER ON PRIMARY)
========================================================= */

.okb-studio-v2-about .okb-studio-v2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 32px 0 26px;
}

.okb-studio-v2-about .okb-studio-btn,
.okb-studio-v2-about .okb-studio-v2-actions a {
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.okb-studio-v2-about .okb-studio-btn-primary,
.okb-studio-v2-about .okb-studio-v2-actions a:first-child {
  border: 1px solid var(--okb-about-blue);
  background: var(--okb-about-blue);
  color: #000000;
  box-shadow: none;
}

.okb-studio-v2-about .okb-studio-btn-primary:hover,
.okb-studio-v2-about .okb-studio-btn-primary:focus-visible,
.okb-studio-v2-about .okb-studio-v2-actions a:first-child:hover,
.okb-studio-v2-about .okb-studio-v2-actions a:first-child:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
  box-shadow: none;
}

.okb-studio-v2-about .okb-studio-btn-secondary,
.okb-studio-v2-about .okb-studio-v2-actions a:nth-child(2) {
  border: 1px solid var(--okb-about-border);
  background: var(--okb-about-card);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: none;
}

.okb-studio-v2-about .okb-studio-btn-secondary:hover,
.okb-studio-v2-about .okb-studio-btn-secondary:focus-visible,
.okb-studio-v2-about .okb-studio-v2-actions a:nth-child(2):hover,
.okb-studio-v2-about .okb-studio-v2-actions a:nth-child(2):focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
}

.okb-studio-v2-about .okb-studio-v2-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.okb-studio-v2-about .okb-studio-v2-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--okb-about-muted);
  font-size: 13px;
  font-weight: 600;
}

.okb-studio-v2-about .okb-studio-v2-proof i {
  color: var(--okb-about-blue);
}

/* =========================================================
   SHOWCASE PANEL
========================================================= */

.okb-studio-v2-about .okb-studio-v2-showcase {
  width: 100%;
}

.okb-studio-v2-about .okb-showcase-panel {
  position: relative;
  border: 1px solid var(--okb-about-border);
  border-radius: 20px;
  background: var(--okb-about-card);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: border-color 0.22s ease;
}

.okb-studio-v2-about .okb-showcase-panel:hover {
  border-color: var(--okb-about-border-hover);
}

.okb-studio-v2-about .okb-showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--okb-about-border);
}

.okb-studio-v2-about .okb-showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.okb-studio-v2-about .okb-showcase-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--okb-about-blue);
  box-shadow: 0 0 8px rgba(115, 178, 247, 0.6);
}

.okb-studio-v2-about .okb-showcase-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(115, 178, 247, 0.22);
  background: rgba(115, 178, 247, 0.08);
  color: var(--okb-about-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.okb-studio-v2-about .okb-showcase-center {
  display: flex;
  align-items: center;
  gap: 16px;
}

.okb-studio-v2-about .okb-showcase-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 178, 247, 0.12);
  border: 1px solid rgba(115, 178, 247, 0.26);
  color: var(--okb-about-blue);
  font-size: 20px;
  flex-shrink: 0;
}

.okb-studio-v2-about .okb-showcase-lead h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.okb-studio-v2-about .okb-showcase-lead p {
  margin: 0;
  color: var(--okb-about-muted);
  font-size: 13px;
  line-height: 1.5;
}

.okb-studio-v2-about .okb-showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.okb-studio-v2-about .okb-showcase-stat-box {
  padding: 14px;
  border-radius: 12px;
  background: var(--okb-about-card-soft);
  border: 1px solid var(--okb-about-border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.okb-studio-v2-about .okb-showcase-stat-box strong {
  font-size: 20px;
  font-weight: 900;
  color: var(--okb-about-blue);
  line-height: 1.1;
}

.okb-studio-v2-about .okb-showcase-stat-box span {
  font-size: 11px;
  font-weight: 600;
  color: var(--okb-about-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.okb-studio-v2-about .okb-showcase-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--okb-about-border);
}

.okb-studio-v2-about .okb-showcase-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.okb-studio-v2-about .okb-showcase-features i {
  color: var(--okb-about-blue);
  font-size: 13px;
}

/* =========================================================
   TRUST HIGHLIGHTS BAR
========================================================= */

.okb-studio-v2-about .okb-studio-v2-trust {
  padding: clamp(28px, 4vw, 44px) 0;
  background: var(--okb-about-bg);
  border-top: 1px solid var(--okb-about-border);
  border-bottom: 1px solid var(--okb-about-border);
}

.okb-studio-v2-about .okb-studio-v2-trust .okb-studio-v2-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.okb-studio-v2-about .okb-studio-v2-trust div {
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--okb-about-card);
  border: 1px solid var(--okb-about-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.okb-studio-v2-about .okb-studio-v2-trust div:hover {
  border-color: var(--okb-about-border-hover);
  transform: translateY(-2px);
}

.okb-studio-v2-about .okb-studio-v2-trust span {
  font-size: 12px;
  font-weight: 800;
  color: var(--okb-about-blue);
  letter-spacing: 0.5px;
}

.okb-studio-v2-about .okb-studio-v2-trust strong {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

/* =========================================================
   SPLIT SECTION (STORY + STUDIO FOCUS)
========================================================= */

.okb-studio-v2-about .okb-studio-v2-section {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--okb-about-bg);
}

.okb-studio-v2-about .okb-studio-v2-section-soft {
  background: var(--okb-about-bg);
}

.okb-studio-v2-about .okb-studio-v2-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.okb-studio-v2-about .okb-studio-v2-text h2,
.okb-studio-v2-about .okb-studio-v2-heading h2,
.okb-studio-v2-about .okb-studio-v2-final h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.okb-studio-v2-about .okb-studio-v2-text p {
  color: var(--okb-about-muted);
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 14px;
}

.okb-studio-v2-about .okb-studio-v2-note {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  background: var(--okb-about-card);
  border: 1px solid var(--okb-about-border);
  border-left: 4px solid var(--okb-about-blue);
}

.okb-studio-v2-about .okb-studio-v2-note strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 18px;
}

.okb-studio-v2-about .okb-studio-v2-note ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.okb-studio-v2-about .okb-studio-v2-note li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.okb-studio-v2-about .okb-studio-v2-note i {
  color: var(--okb-about-blue);
  font-size: 14px;
  flex-shrink: 0;
}

/* =========================================================
   CAPABILITIES (BENTO GRID)
========================================================= */

.okb-studio-v2-about .okb-studio-v2-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.okb-studio-v2-about .okb-studio-v2-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.okb-studio-v2-about .okb-studio-v2-cards article {
  border-radius: 18px;
  background: var(--okb-about-card);
  border: 1px solid var(--okb-about-border);
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.okb-studio-v2-about .okb-studio-v2-cards article:hover {
  border-color: var(--okb-about-border-hover);
  transform: translateY(-3px);
}

.okb-studio-v2-about .okb-studio-v2-cards i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(115, 178, 247, 0.22);
  color: var(--okb-about-blue);
  font-size: 18px;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.okb-studio-v2-about .okb-studio-v2-cards span {
  display: inline-block;
  color: var(--okb-about-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.okb-studio-v2-about .okb-studio-v2-cards h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.okb-studio-v2-about .okb-studio-v2-cards p {
  margin: 0;
  color: var(--okb-about-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   STUDIO PROCESS (4 STEPS)
========================================================= */

.okb-studio-v2-about .okb-studio-v2-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.okb-studio-v2-about .okb-studio-v2-process article {
  border-radius: 18px;
  background: var(--okb-about-card);
  border: 1px solid var(--okb-about-border);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.okb-studio-v2-about .okb-studio-v2-process article:hover {
  border-color: var(--okb-about-border-hover);
  transform: translateY(-2px);
}

.okb-studio-v2-about .okb-studio-v2-process article > span {
  font-size: 24px;
  font-weight: 900;
  color: var(--okb-about-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}

.okb-studio-v2-about .okb-studio-v2-process strong {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.okb-studio-v2-about .okb-studio-v2-process p {
  margin: 0;
  color: var(--okb-about-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   FINAL CTA PANEL
========================================================= */

.okb-studio-v2-about .okb-studio-v2-final {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--okb-about-bg);
}

.okb-studio-v2-about .okb-studio-v2-final > .okb-studio-v2-shell {
  border-radius: 24px;
  background: var(--okb-about-card);
  border: 1px solid var(--okb-about-border);
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.okb-studio-v2-about .okb-studio-v2-final-panel p {
  color: var(--okb-about-muted);
  font-size: 16px;
  line-height: 1.68;
  margin-bottom: 20px;
}

.okb-studio-v2-about .okb-studio-v2-final-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.okb-studio-v2-about .okb-studio-v2-final-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--okb-about-card-soft);
  border: 1px solid var(--okb-about-border);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
}

.okb-studio-v2-about .okb-studio-v2-final-chips i {
  color: var(--okb-about-blue);
}

.okb-studio-v2-about .okb-studio-v2-final .okb-studio-v2-actions {
  margin: 0;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */

@media (max-width: 1024px) {
  .okb-studio-v2-about .okb-studio-v2-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .okb-studio-v2-about .okb-studio-v2-trust .okb-studio-v2-shell,
  .okb-studio-v2-about .okb-studio-v2-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .okb-studio-v2-about .okb-anim-hero-grid,
  .okb-studio-v2-about .okb-studio-v2-split,
  .okb-studio-v2-about .okb-studio-v2-final > .okb-studio-v2-shell {
    grid-template-columns: 1fr;
  }

  .okb-studio-v2-about .okb-studio-v2-copy h1 {
    font-size: clamp(34px, 7vw, 48px);
  }
}

@media (max-width: 600px) {
  .okb-studio-v2-about .okb-studio-v2-shell {
    width: min(100% - 28px, 1240px);
  }

  .okb-studio-v2-about .okb-studio-v2-cards,
  .okb-studio-v2-about .okb-studio-v2-trust .okb-studio-v2-shell,
  .okb-studio-v2-about .okb-studio-v2-process {
    grid-template-columns: 1fr;
  }

  .okb-studio-v2-about .okb-showcase-stats {
    grid-template-columns: 1fr;
  }

  .okb-studio-v2-about .okb-studio-v2-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .okb-studio-v2-about .okb-studio-btn,
  .okb-studio-v2-about .okb-studio-v2-actions a {
    width: 100%;
    text-align: center;
  }
}

.okb-studio-v2-about .okb-studio-v2-card:hover,
.okb-studio-v2-about .okb-showcase-panel:hover,
.okb-studio-v2-about .okb-milestone-card:hover,
.okb-studio-v2-about .okb-process-card:hover {
  border-color: rgba(190, 85, 255, 0.4);
}

/* ==========================================================================
   18. CONTACT US
   ========================================================================== */
/* =========================================================
   CONTACT US STUDIO PAGE - THEME REDESIGN
   Canvas: #000000 | Containers: #06090c | Accent: #73b2f7
   Zero | Fully Responsive
========================================================= */

.okb-studio-v2-contact {
  --okb-contact-bg: #000000;
  --okb-contact-card: #06090c;
  --okb-contact-card-hover: #0a0f16;
  --okb-contact-card-soft: #0b1017;
  --okb-contact-border: rgba(255, 255, 255, 0.08);
  --okb-contact-border-hover: rgba(115, 178, 247, 0.35);
  --okb-contact-blue: #73b2f7;
  --okb-contact-purple: #be55ff;
  --okb-contact-text: #ffffff;
  --okb-contact-muted: #94a3b8;
  --okb-contact-subtle: #64748b;
  width: 100%;
  overflow: visible;
  color: var(--okb-contact-text);
  background: var(--okb-contact-bg);
  font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.okb-studio-v2-contact,
.okb-studio-v2-contact * {
  box-sizing: border-box;
}

.okb-studio-v2-contact .okb-studio-v2-shell {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

/* =========================================================
   HERO SECTION
========================================================= */

.okb-studio-v2-contact .okb-anim-hero {
  position: relative;
  min-height: calc(84vh - 78px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 6vw, 72px);
  background: var(--okb-contact-bg);
}

.okb-studio-v2-contact .okb-anim-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.okb-studio-v2-contact .okb-studio-v2-copy > span,
.okb-studio-v2-contact .okb-studio-v2-heading > span,
.okb-studio-v2-contact .okb-studio-v2-text > span,
.okb-studio-v2-contact .okb-studio-v2-note > span,
.okb-studio-v2-contact .okb-studio-v2-final span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--okb-contact-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.okb-studio-v2-contact .okb-studio-v2-copy > span::before,
.okb-studio-v2-contact .okb-studio-v2-heading > span::before,
.okb-studio-v2-contact .okb-studio-v2-text > span::before,
.okb-studio-v2-contact .okb-studio-v2-note > span::before {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--okb-contact-blue), var(--okb-contact-purple));
  content: '';
}

.okb-studio-v2-contact h1,
.okb-studio-v2-contact h2,
.okb-studio-v2-contact h3,
.okb-studio-v2-contact p {
  margin-top: 0;
}

.okb-studio-v2-contact .okb-studio-v2-copy h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.okb-studio-v2-contact .okb-studio-v2-copy p {
  max-width: 620px;
  color: var(--okb-contact-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.68;
}

/* =========================================================
   BUTTONS (0 GLOW, FLAT PURE WHITE HOVER ON PRIMARY)
========================================================= */

.okb-studio-v2-contact .okb-studio-v2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 32px 0 26px;
}

.okb-studio-v2-contact .okb-studio-btn,
.okb-studio-v2-contact .okb-studio-v2-actions a {
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.okb-studio-v2-contact .okb-studio-btn-primary,
.okb-studio-v2-contact .okb-studio-v2-actions a:first-child {
  border: 1px solid var(--okb-contact-blue);
  background: var(--okb-contact-blue);
  color: #000000;
  box-shadow: none;
}

.okb-studio-v2-contact .okb-studio-btn-primary:hover,
.okb-studio-v2-contact .okb-studio-btn-primary:focus-visible,
.okb-studio-v2-contact .okb-studio-v2-actions a:first-child:hover,
.okb-studio-v2-contact .okb-studio-v2-actions a:first-child:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
  box-shadow: none;
}

.okb-studio-v2-contact .okb-studio-btn-secondary,
.okb-studio-v2-contact .okb-studio-v2-actions a:nth-child(2) {
  border: 1px solid var(--okb-contact-border);
  background: var(--okb-contact-card);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: none;
}

.okb-studio-v2-contact .okb-studio-btn-secondary:hover,
.okb-studio-v2-contact .okb-studio-btn-secondary:focus-visible,
.okb-studio-v2-contact .okb-studio-v2-actions a:nth-child(2):hover,
.okb-studio-v2-contact .okb-studio-v2-actions a:nth-child(2):focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
}

.okb-studio-v2-contact .okb-studio-v2-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.okb-studio-v2-contact .okb-studio-v2-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--okb-contact-muted);
  font-size: 13px;
  font-weight: 600;
}

.okb-studio-v2-contact .okb-studio-v2-proof i {
  color: var(--okb-contact-blue);
}

/* =========================================================
   SHOWCASE PANEL
========================================================= */

.okb-studio-v2-contact .okb-studio-v2-showcase {
  width: 100%;
}

.okb-studio-v2-contact .okb-showcase-panel {
  position: relative;
  border: 1px solid var(--okb-contact-border);
  border-radius: 20px;
  background: var(--okb-contact-card);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: border-color 0.22s ease;
}

.okb-studio-v2-contact .okb-showcase-panel:hover {
  border-color: var(--okb-contact-border-hover);
}

.okb-studio-v2-contact .okb-showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--okb-contact-border);
}

.okb-studio-v2-contact .okb-showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.okb-studio-v2-contact .okb-showcase-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--okb-contact-blue);
  box-shadow: 0 0 8px rgba(115, 178, 247, 0.6);
}

.okb-studio-v2-contact .okb-showcase-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(115, 178, 247, 0.22);
  background: rgba(115, 178, 247, 0.08);
  color: var(--okb-contact-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.okb-studio-v2-contact .okb-showcase-center {
  display: flex;
  align-items: center;
  gap: 16px;
}

.okb-studio-v2-contact .okb-showcase-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 178, 247, 0.12);
  border: 1px solid rgba(115, 178, 247, 0.26);
  color: var(--okb-contact-blue);
  font-size: 20px;
  flex-shrink: 0;
}

.okb-studio-v2-contact .okb-showcase-lead h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.okb-studio-v2-contact .okb-showcase-lead p {
  margin: 0;
  color: var(--okb-contact-muted);
  font-size: 13px;
  line-height: 1.5;
}

.okb-studio-v2-contact .okb-showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.okb-studio-v2-contact .okb-showcase-stat-box {
  padding: 14px;
  border-radius: 12px;
  background: var(--okb-contact-card-soft);
  border: 1px solid var(--okb-contact-border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.okb-studio-v2-contact .okb-showcase-stat-box strong {
  font-size: 20px;
  font-weight: 900;
  color: var(--okb-contact-blue);
  line-height: 1.1;
}

.okb-studio-v2-contact .okb-showcase-stat-box span {
  font-size: 11px;
  font-weight: 600;
  color: var(--okb-contact-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.okb-studio-v2-contact .okb-showcase-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--okb-contact-border);
}

.okb-studio-v2-contact .okb-showcase-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.okb-studio-v2-contact .okb-showcase-features i {
  color: var(--okb-contact-blue);
  font-size: 13px;
}

/* =========================================================
   ROUTES GRID
========================================================= */

.okb-studio-v2-contact .okb-studio-v2-section {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--okb-contact-bg);
}

.okb-studio-v2-contact .okb-studio-v2-section-soft {
  background: var(--okb-contact-bg);
}

.okb-studio-v2-contact .okb-studio-v2-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.okb-studio-v2-contact .okb-studio-v2-heading h2,
.okb-studio-v2-contact .okb-studio-v2-text h2,
.okb-studio-v2-contact .okb-studio-v2-final h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.okb-studio-v2-contact .okb-studio-v2-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.okb-studio-v2-contact .okb-studio-v2-contact-grid > div {
  border-radius: 18px;
  background: var(--okb-contact-card);
  border: 1px solid var(--okb-contact-border);
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.okb-studio-v2-contact .okb-studio-v2-contact-grid > div:hover {
  border-color: var(--okb-contact-border-hover);
  transform: translateY(-3px);
}

.okb-studio-v2-contact .okb-studio-v2-contact-grid i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(115, 178, 247, 0.22);
  color: var(--okb-contact-blue);
  font-size: 18px;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.okb-studio-v2-contact .okb-studio-v2-contact-grid span {
  display: inline-block;
  color: var(--okb-contact-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.okb-studio-v2-contact .okb-studio-v2-contact-grid strong {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.okb-studio-v2-contact .okb-studio-v2-contact-grid small {
  margin: 0;
  color: var(--okb-contact-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   CONTACT CHANNELS BAND
========================================================= */

.okb-studio-v2-contact .okb-studio-v2-contact-band {
  padding: clamp(32px, 5vw, 56px) 0;
  background: var(--okb-contact-bg);
  border-top: 1px solid var(--okb-contact-border);
  border-bottom: 1px solid var(--okb-contact-border);
}

.okb-studio-v2-contact .okb-studio-v2-contact-band .okb-studio-v2-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.okb-studio-v2-contact .okb-studio-v2-contact-band div {
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 16px;
  background: var(--okb-contact-card);
  border: 1px solid var(--okb-contact-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.okb-studio-v2-contact .okb-studio-v2-contact-band div:hover {
  border-color: var(--okb-contact-border-hover);
  transform: translateY(-2px);
}

.okb-studio-v2-contact .okb-studio-v2-contact-band span {
  font-size: 11px;
  font-weight: 800;
  color: var(--okb-contact-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.okb-studio-v2-contact .okb-contact-channel-val,
.okb-studio-v2-contact .okb-studio-v2-contact-band strong,
.okb-studio-v2-contact .okb-studio-v2-contact-band a {
  color: #ffffff;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.18s ease;
}

.okb-studio-v2-contact .okb-studio-v2-contact-band a:hover {
  color: var(--okb-contact-blue);
}

/* =========================================================
   BEFORE YOU SEND SPLIT SECTION
========================================================= */

.okb-studio-v2-contact .okb-studio-v2-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.okb-studio-v2-contact .okb-studio-v2-text p {
  color: var(--okb-contact-muted);
  font-size: 16px;
  line-height: 1.72;
}

.okb-studio-v2-contact .okb-studio-v2-note {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  background: var(--okb-contact-card);
  border: 1px solid var(--okb-contact-border);
  border-left: 4px solid var(--okb-contact-blue);
}

.okb-studio-v2-contact .okb-studio-v2-note strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 18px;
}

.okb-studio-v2-contact .okb-studio-v2-note ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.okb-studio-v2-contact .okb-studio-v2-note li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.okb-studio-v2-contact .okb-studio-v2-note i {
  color: var(--okb-contact-blue);
  font-size: 14px;
  flex-shrink: 0;
}

/* =========================================================
   GRIEVANCE REDRESSAL BAND
========================================================= */

.okb-studio-v2-contact .okb-studio-v2-grievance-band {
  background: var(--okb-contact-bg);
  border-top: 1px solid var(--okb-contact-border);
  border-bottom: 1px solid var(--okb-contact-border);
}

.okb-studio-v2-contact .okb-studio-v2-grievance-band .okb-studio-v2-shell {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.okb-studio-v2-contact .okb-studio-v2-grievance-band div {
  background: var(--okb-contact-card-soft);
}

.okb-studio-v2-contact .okb-studio-v2-grievance-band strong {
  font-size: 15px;
  font-weight: 700;
}

/* =========================================================
   FINAL CTA PANEL
========================================================= */

.okb-studio-v2-contact .okb-studio-v2-final {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--okb-contact-bg);
}

.okb-studio-v2-contact .okb-studio-v2-final > .okb-studio-v2-shell {
  border-radius: 24px;
  background: var(--okb-contact-card);
  border: 1px solid var(--okb-contact-border);
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.okb-studio-v2-contact .okb-studio-v2-final-panel p {
  color: var(--okb-contact-muted);
  font-size: 16px;
  line-height: 1.68;
  margin-bottom: 20px;
}

.okb-studio-v2-contact .okb-studio-v2-final-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.okb-studio-v2-contact .okb-studio-v2-final-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--okb-contact-card-soft);
  border: 1px solid var(--okb-contact-border);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
}

.okb-studio-v2-contact .okb-studio-v2-final-chips i {
  color: var(--okb-contact-blue);
}

.okb-studio-v2-contact .okb-studio-v2-final .okb-studio-v2-actions {
  margin: 0;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */

@media (max-width: 1024px) {
  .okb-studio-v2-contact .okb-studio-v2-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .okb-studio-v2-contact .okb-studio-v2-grievance-band .okb-studio-v2-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .okb-studio-v2-contact .okb-anim-hero-grid,
  .okb-studio-v2-contact .okb-studio-v2-split,
  .okb-studio-v2-contact .okb-studio-v2-final > .okb-studio-v2-shell {
    grid-template-columns: 1fr;
  }

  .okb-studio-v2-contact .okb-studio-v2-contact-band .okb-studio-v2-shell {
    grid-template-columns: 1fr;
  }

  .okb-studio-v2-contact .okb-studio-v2-copy h1 {
    font-size: clamp(34px, 7vw, 48px);
  }
}

@media (max-width: 600px) {
  .okb-studio-v2-contact .okb-studio-v2-shell {
    width: min(100% - 28px, 1240px);
  }

  .okb-studio-v2-contact .okb-studio-v2-contact-grid,
  .okb-studio-v2-contact .okb-studio-v2-grievance-band .okb-studio-v2-shell {
    grid-template-columns: 1fr;
  }

  .okb-studio-v2-contact .okb-showcase-stats {
    grid-template-columns: 1fr;
  }

  .okb-studio-v2-contact .okb-studio-v2-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .okb-studio-v2-contact .okb-studio-btn,
  .okb-studio-v2-contact .okb-studio-v2-actions a {
    width: 100%;
    text-align: center;
  }
}

.okb-studio-v2-contact .okb-contact-card:hover,
.okb-studio-v2-contact .okb-channel-card:hover,
.okb-studio-v2-contact .okb-studio-v2-card:hover,
.okb-studio-v2-contact .okb-studio-v2-grievance-band div:hover {
  border-color: rgba(190, 85, 255, 0.4);
}

/* ==========================================================================
   19. DISCUSS YOUR PROJECT BRIEF
   ========================================================================== */
/* ==========================================================================
   DISCUSS YOUR PROJECT BRIEF (STUDIO CREATIVE INTAKE)
   Theme Palette: #000000 Canvas, #06090c Containers, #73b2f7 Accents
   Strict 0 Policy. Clean Responsive Grid & Studio Workflow.
   ========================================================================== */

.ok-project-page {
  background-color: #000000;
  color: #f8fafc;
  min-height: 80vh;
  padding: clamp(48px, 6vw, 84px) 20px clamp(64px, 8vw, 100px);
  box-sizing: border-box;
}

.ok-project-shell {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

/* --------------------------------------------------------------------------
   HERO HEADER
   -------------------------------------------------------------------------- */
.ok-project-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.ok-project-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(115, 178, 247, 0.1), rgba(190, 85, 255, 0.1));
  border: 1px solid rgba(190, 85, 255, 0.35);
  color: #73b2f7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ok-project-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #be55ff;
  box-shadow: 0 0 8px #be55ff;
}

.ok-project-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.ok-project-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #94a3b8;
  margin: 0 auto;
  max-width: 680px;
}

/* --------------------------------------------------------------------------
   ALERT STATES
   -------------------------------------------------------------------------- */
.ok-project-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.ok-project-alert--error {
  background-color: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.ok-project-alert--error i {
  font-size: 18px;
  color: #f87171;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   TWO-COLUMN STUDIO LAYOUT
   -------------------------------------------------------------------------- */
.ok-project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
}

.ok-project-main {
  min-width: 0;
}

.ok-project-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

/* --------------------------------------------------------------------------
   CREATIVE BRIEF FORM
   -------------------------------------------------------------------------- */
.ok-project-form {
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.5vw, 36px);
  box-sizing: border-box;
}

.ok-form-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: clamp(20px, 3vw, 28px);
}

.ok-form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.ok-form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.ok-label-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background-color: rgba(115, 178, 247, 0.12);
  border: 1px solid rgba(115, 178, 247, 0.25);
  color: #73b2f7;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.ok-label-required {
  color: #f87171;
}

.ok-opt {
  font-size: 12.5px;
  font-weight: 400;
  color: #64748b;
  margin-left: 4px;
}

.ok-sublabel {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.ok-req {
  color: #f87171;
}

.ok-field-hint {
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
  margin: -4px 0 6px;
}

/* --------------------------------------------------------------------------
   INTERACTIVE BRIEF PILLS (SERVICES & BUDGET)
   -------------------------------------------------------------------------- */
.ok-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.ok-brief-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #cbd5e1;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  user-select: none;
  outline: none;
}

.ok-brief-pill i {
  font-size: 13px;
  color: #73b2f7;
  transition: color 0.15s ease;
}

.ok-brief-pill:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.ok-brief-pill.is-active {
  background-color: rgba(190, 85, 255, 0.16);
  border-color: #be55ff;
  color: #ffffff;
  font-weight: 600;
}

.ok-brief-pill.is-active i {
  color: #be55ff;
}

.ok-brief-pill--budget {
  padding: 8px 16px;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   FORM SELECT DROPDOWN
   -------------------------------------------------------------------------- */
.ok-select-wrap {
  position: relative;
  width: 100%;
}

.ok-select {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 16px;
  box-sizing: border-box;
  background-color: #0c1017;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.ok-select:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background-color: #0f151e;
}

.ok-select:focus {
  border-color: #73b2f7;
  background-color: #0c1017;
  box-shadow: 0 0 0 3px rgba(115, 178, 247, 0.25);
}

.ok-select option {
  background-color: #06090c;
  color: #ffffff;
  padding: 10px 14px;
}

.ok-select-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #73b2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, color 0.15s ease;
}

.ok-select:focus + .ok-select-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   FORM INPUTS & TEXTAREA
   -------------------------------------------------------------------------- */
.ok-input-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ok-input-group {
  display: flex;
  flex-direction: column;
}

.ok-input,
.ok-textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: #0c1017;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.ok-input {
  height: 48px;
  padding: 0 16px;
}

.ok-textarea {
  padding: 14px 16px;
  line-height: 1.55;
  resize: vertical;
  min-height: 140px;
}

.ok-input:hover,
.ok-textarea:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background-color: #0f151e;
}

.ok-input:focus,
.ok-textarea:focus {
  outline: none;
  border-color: #73b2f7;
  background-color: #0c1017;
  box-shadow: 0 0 0 3px rgba(115, 178, 247, 0.25);
}

.ok-input::placeholder,
.ok-textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.ok-input::-webkit-input-placeholder,
.ok-textarea::-webkit-input-placeholder {
  color: #94a3b8;
  opacity: 1;
}

.ok-input::-moz-placeholder,
.ok-textarea::-moz-placeholder {
  color: #94a3b8;
  opacity: 1;
}

/* --------------------------------------------------------------------------
   FILE UPLOAD DROPZONE
   -------------------------------------------------------------------------- */
.ok-file-dropzone {
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  background-color: #0c1017;
  padding: 26px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  box-sizing: border-box;
}

.ok-file-dropzone:hover,
.ok-file-dropzone.is-dragover {
  border-color: #be55ff;
  background-color: rgba(190, 85, 255, 0.08);
}

.ok-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.ok-dropzone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.ok-dropzone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(115, 178, 247, 0.1);
  color: #73b2f7;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ok-dropzone-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.ok-browse-link {
  color: #73b2f7;
  text-decoration: underline;
}

.ok-dropzone-text span {
  display: block;
  font-size: 12.5px;
  color: #64748b;
}

/* Selected File Preview */
.ok-dropzone-preview[hidden],
.ok-dropzone-inner[hidden] {
  display: none;
}

.ok-dropzone-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  position: relative;
  z-index: 3;
}

.ok-file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ok-file-icon {
  font-size: 22px;
  color: #73b2f7;
  flex-shrink: 0;
}

.ok-file-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
}

.ok-file-meta strong {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ok-file-meta span {
  font-size: 12px;
  color: #64748b;
}

.ok-file-remove-btn {
  background-color: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}

.ok-file-remove-btn:hover {
  background-color: #ef4444;
  color: #ffffff;
}

.ok-file-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #64748b;
  margin-top: 10px;
}

.ok-file-tip i {
  color: #73b2f7;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   SUBMIT BUTTON & GUARANTEE
   -------------------------------------------------------------------------- */
.ok-form-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.ok-project-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  border-radius: 14px;
  background-color: #73b2f7;
  border: none;
  outline: none;
  color: #000000;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
  box-shadow: none;
}

.ok-project-submit:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: none;
}

.ok-project-submit i {
  font-size: 15px;
}

.ok-confidentiality-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: #64748b;
  text-align: center;
  line-height: 1.4;
}

.ok-confidentiality-note i {
  color: #10b981;
  font-size: 13px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   SIDEBAR CARDS & PRODUCTION WORKFLOW
   -------------------------------------------------------------------------- */
.ok-sidebar-card {
  background-color: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 28px);
  box-sizing: border-box;
}

.ok-sidebar-header {
  margin-bottom: 20px;
}

.ok-sidebar-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #73b2f7;
  margin-bottom: 6px;
}

.ok-sidebar-header h3 {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
}

.ok-sidebar-header p {
  font-size: 13px;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0;
}

/* 4-Step Pipeline */
.ok-workflow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ok-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ok-step-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background-color: rgba(115, 178, 247, 0.1);
  border: 1px solid rgba(115, 178, 247, 0.25);
  color: #73b2f7;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ok-step-body strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.ok-step-body p {
  font-size: 12.5px;
  line-height: 1.45;
  color: #64748b;
  margin: 0;
}

/* Fast-Track Direct Actions */
.ok-direct-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ok-direct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  box-shadow: none;
}

.ok-direct-btn--whatsapp {
  background-color: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.ok-direct-btn--whatsapp:hover {
  background-color: #25d366;
  color: #000000;
  border-color: #25d366;
}

.ok-direct-btn--email {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}

.ok-direct-btn--email:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Studio Trust & Compliance */
.ok-compliance-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ok-compliance-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ok-compliance-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ok-compliance-label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.ok-compliance-val {
  font-size: 13.5px;
  font-weight: 500;
  color: #e2e8f0;
}

.ok-compliance-link {
  color: #73b2f7;
  text-decoration: none;
  transition: color 0.15s ease;
}

.ok-compliance-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   SUCCESS CONFIRMATION STATE
   -------------------------------------------------------------------------- */
.ok-project-success-card {
  background-color: #06090c;
  border: 1px solid rgba(115, 178, 247, 0.25);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

.ok-project-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ok-project-success-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: rgba(115, 178, 247, 0.12);
  color: #73b2f7;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.ok-project-success-content h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.ok-project-success-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0 auto 24px;
  max-width: 580px;
}

.ok-project-success-sla {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 28px;
}

.ok-sla-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background-color: #0a0e14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
}

.ok-sla-item i {
  font-size: 20px;
  color: #73b2f7;
  flex-shrink: 0;
}

.ok-sla-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
}

.ok-sla-item span {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.ok-project-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.ok-project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  box-shadow: none;
}

.ok-project-btn--primary {
  background-color: #73b2f7;
  color: #000000;
}

.ok-project-btn--primary:hover {
  background-color: #ffffff;
  color: #000000;
}

.ok-project-btn--secondary {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.ok-project-btn--secondary:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .ok-project-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .ok-project-page {
    padding: 36px 16px 64px;
  }

  .ok-input-row {
    grid-template-columns: 1fr;
  }

  .ok-pills-wrap {
    gap: 8px;
  }

  .ok-brief-pill {
    padding: 8px 14px;
    font-size: 12.5px;
  }

  .ok-project-success-sla {
    grid-template-columns: 1fr;
  }

  .ok-project-success-actions {
    flex-direction: column;
  }

  .ok-project-btn {
    width: 100%;
  }
}

/* ==========================================================================
   20. POLICIES & LEGAL DOCUMENTATION
   ========================================================================== */
/* =========================================================
   POLICY PAGES - THEME REDESIGN
   Canvas: #000000 | Containers: #06090c | Accent: #73b2f7
   Zero | Fully Responsive
========================================================= */

.okb-policy-page {
  --okb-pol-bg: #000000;
  --okb-pol-card: #06090c;
  --okb-pol-card-hover: #0a0f16;
  --okb-pol-card-soft: #0b1017;
  --okb-pol-border: rgba(255, 255, 255, 0.08);
  --okb-pol-border-hover: rgba(115, 178, 247, 0.35);
  --okb-pol-blue: #73b2f7;
  --okb-pol-purple: #be55ff;
  --okb-pol-text: #ffffff;
  --okb-pol-muted: #94a3b8;
  --okb-pol-subtle: #64748b;
  width: 100%;
  overflow: visible;
  color: var(--okb-pol-text);
  background: var(--okb-pol-bg);
  font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.okb-policy-page,
.okb-policy-page * {
  box-sizing: border-box;
}

.okb-policy-shell {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

/* =========================================================
   HERO SECTION
========================================================= */

.okb-policy-hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(32px, 4vw, 56px);
  background: var(--okb-pol-bg);
}

.okb-policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.okb-policy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(115, 178, 247, 0.1), rgba(190, 85, 255, 0.1));
  border: 1px solid rgba(190, 85, 255, 0.35);
  color: var(--okb-pol-blue);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.okb-policy-eyebrow::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--okb-pol-purple);
  box-shadow: 0 0 8px var(--okb-pol-purple);
  content: '';
}

.okb-policy-hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.okb-policy-hero-copy p {
  max-width: 640px;
  color: var(--okb-pol-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.68;
  margin: 0 0 28px;
}

/* =========================================================
   BUTTONS (0 GLOW, FLAT WHITE HOVER ON PRIMARY)
========================================================= */

.okb-policy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.okb-policy-btn,
.okb-policy-hero-actions a,
.okb-policy-closing a {
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.okb-policy-btn-primary,
.okb-policy-hero-actions a:first-child,
.okb-policy-closing a {
  border: 1px solid var(--okb-pol-blue);
  background: var(--okb-pol-blue);
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
}

.okb-policy-btn-primary:hover,
.okb-policy-btn-primary:focus-visible,
.okb-policy-hero-actions a:first-child:hover,
.okb-policy-hero-actions a:first-child:focus-visible,
.okb-policy-closing a:hover,
.okb-policy-closing a:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
}

.okb-policy-btn-secondary,
.okb-policy-hero-actions a:nth-child(2) {
  border: 1px solid var(--okb-pol-border);
  background: var(--okb-pol-card);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: none;
}

.okb-policy-btn-secondary:hover,
.okb-policy-btn-secondary:focus-visible,
.okb-policy-hero-actions a:nth-child(2):hover,
.okb-policy-hero-actions a:nth-child(2):focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
  -webkit-text-fill-color: #000000;
  box-shadow: none;
}

/* =========================================================
   POLICY SUMMARY CARD
========================================================= */

.okb-policy-summary {
  position: relative;
  border: 1px solid var(--okb-pol-border);
  border-radius: 20px;
  background: var(--okb-pol-card);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.22s ease;
}

.okb-policy-summary:hover {
  border-color: var(--okb-pol-border-hover);
}

.okb-policy-summary span {
  font-size: 11px;
  font-weight: 800;
  color: var(--okb-pol-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.okb-policy-summary strong {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.okb-policy-summary small {
  color: var(--okb-pol-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.okb-policy-summary dl {
  margin: 6px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--okb-pol-border);
}

.okb-policy-summary dl div {
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--okb-pol-card-soft);
  border: 1px solid var(--okb-pol-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.okb-policy-summary dt {
  font-size: 11px;
  font-weight: 700;
  color: var(--okb-pol-muted);
  text-transform: uppercase;
}

.okb-policy-summary dd {
  margin: 0;
}

.okb-policy-summary dd a {
  color: var(--okb-pol-blue);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease;
}

.okb-policy-summary dd a:hover {
  color: #ffffff;
}

/* =========================================================
   HIGHLIGHTS (3-COLUMN BENTO)
========================================================= */

.okb-policy-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(28px, 4vw, 44px);
}

.okb-policy-highlights > div {
  border-radius: 16px;
  background: var(--okb-pol-card);
  border: 1px solid var(--okb-pol-border);
  padding: clamp(18px, 2.2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.okb-policy-highlights > div:hover {
  border-color: var(--okb-pol-border-hover);
  transform: translateY(-2px);
}

.okb-policy-highlights i {
  color: var(--okb-pol-blue);
  font-size: 16px;
  margin-bottom: 4px;
}

.okb-policy-highlights span {
  font-size: 11px;
  font-weight: 800;
  color: var(--okb-pol-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.okb-policy-highlights strong {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
}

/* =========================================================
   POLICY SUB-NAV
========================================================= */

.okb-policy-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: clamp(24px, 3.5vw, 36px);
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--okb-pol-card);
  border: 1px solid var(--okb-pol-border);
}

.okb-policy-nav a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--okb-pol-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.okb-policy-nav a:hover {
  background: var(--okb-pol-card-soft);
  color: #ffffff;
}

/* =========================================================
   POLICY BODY CONTENT
========================================================= */

.okb-policy-body {
  padding: clamp(32px, 5vw, 64px) 0 clamp(56px, 8vw, 96px);
  background: var(--okb-pol-bg);
}

.okb-policy-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: #09111e;
  border: 1px solid rgba(115, 178, 247, 0.25);
  border-left: 4px solid var(--okb-pol-blue);
  color: #e2e8f0;
  font-size: 14.5px;
  line-height: 1.6;
}

.okb-policy-notice i {
  color: var(--okb-pol-blue);
  font-size: 18px;
  flex-shrink: 0;
}

.okb-policy-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.okb-policy-section {
  border-radius: 20px;
  background: var(--okb-pol-card);
  border: 1px solid var(--okb-pol-border);
  padding: clamp(24px, 3.5vw, 38px);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.okb-policy-section:hover {
  border-color: var(--okb-pol-border-hover);
  transform: translateY(-2px);
}

.okb-policy-section h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.25;
}

.okb-policy-section p {
  color: #cbd5e1;
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.okb-policy-section p:last-child {
  margin-bottom: 0;
}

.okb-policy-section ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
}

.okb-policy-section ul:last-child {
  margin-bottom: 0;
}

.okb-policy-section li {
  margin-bottom: 8px;
}

.okb-policy-section a {
  color: var(--okb-pol-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}

.okb-policy-section a:hover {
  color: #ffffff;
}

/* =========================================================
   CLOSING BANNER
========================================================= */

.okb-policy-closing {
  margin-top: 36px;
  border-radius: 22px;
  background: var(--okb-pol-card);
  border: 1px solid var(--okb-pol-border);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.okb-policy-closing span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--okb-pol-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.okb-policy-closing h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  max-width: 620px;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */

@media (max-width: 1024px) {
  .okb-policy-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .okb-policy-hero-grid {
    grid-template-columns: 1fr;
  }

  .okb-policy-hero h1 {
    font-size: clamp(32px, 7vw, 46px);
  }

  .okb-policy-closing {
    flex-direction: column;
    align-items: flex-start;
  }

  .okb-policy-closing a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .okb-policy-shell {
    width: min(100% - 28px, 1240px);
  }

  .okb-policy-highlights {
    grid-template-columns: 1fr;
  }

  .okb-policy-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .okb-policy-btn,
  .okb-policy-hero-actions a {
    width: 100%;
    text-align: center;
  }

  .okb-policy-section {
    padding: 20px 16px;
  }
}

.okb-policy-summary:hover,
.okb-policy-section:hover,
.okb-policy-card:hover {
  border-color: rgba(190, 85, 255, 0.4);
}

/* ==========================================================================
   21. ERROR 404 EXPERIENCE - CINEMATIC 2D ANIMATION
   ========================================================================== */
.okb404,
.okb-cine-404 {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(ellipse at 50% 20%, #0d152c 0%, #060a17 50%, #020408 100%);
  color: #ffffff;
  padding: clamp(36px, 5vw, 68px) clamp(16px, 3.5vw, 36px);
  font-family: var(--font-family, 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  -webkit-font-smoothing: antialiased;
}

.okb404::before {
  content: none !important;
}

/* Atmospheric Celestial Background Layers */
.okb-cine-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% -5%, rgba(115, 178, 247, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 60% 35% at 85% 20%, rgba(190, 85, 255, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 55% 30% at 15% 30%, rgba(255, 209, 102, 0.09) 0%, transparent 60%);
  filter: blur(50px);
  opacity: 0.85;
  animation: okbAuroraDrift 14s ease-in-out infinite alternate;
  transform: translate3d(0, 0, 0);
}

.okb-cine-moon {
  position: absolute;
  top: clamp(24px, 4vw, 56px);
  right: clamp(28px, 6vw, 92px);
  width: clamp(64px, 8vw, 92px);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: -14px 10px 0 2px rgba(255, 238, 187, 0.95);
  filter: drop-shadow(0 0 24px rgba(255, 209, 102, 0.45));
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  transform: rotate(-18deg) translate3d(calc(var(--multi-x, 0) * -10px), calc(var(--multi-y, 0) * -8px), 0);
  transition: transform 0.25s ease-out;
}

.okb-cine-moon::after {
  content: "";
  position: absolute;
  top: -12px;
  right: -8px;
  width: 14px;
  height: 14px;
  color: #ffd166;
  background: transparent;
  font-size: 14px;
  filter: drop-shadow(0 0 6px #ffd166);
}

.okb-cine-shooting-star {
  position: absolute;
  top: 15%;
  left: 25%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 209, 102, 0.6), transparent);
  border-radius: 999px;
  transform: rotate(-32deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: okbShootingStar 7.5s ease-in-out infinite;
}

.okb-cine-shooting-star--alt {
  top: 30%;
  left: 65%;
  width: 90px;
  animation-delay: 3.8s;
}

.okb-cine-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle at center, transparent 45%, rgba(2, 4, 8, 0.65) 90%);
}

.okb-cine-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Main Multiplane Stage */
.okb-cine-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translate3d(calc(var(--multi-x, 0) * 12px), calc(var(--multi-y, 0) * 10px), 0);
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hero 2D Centerpiece: Artistic 404 & Character */
.okb-cine-hero-cluster {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 22px;
}

.okb-cine-404-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.okb-cine-404-text {
  font-size: clamp(120px, 21vw, 220px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #fff2cc 0%, #ffd166 28%, #ff9ebb 60%, #a2d2ff 90%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: okbStarShift 9s ease-in-out infinite alternate;
  user-select: none;
}

.okb-cine-404-aura {
  position: absolute;
  font-size: clamp(120px, 21vw, 220px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #ffd166;
  opacity: 0.2;
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.okb-cine-constellation {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.okb-cine-starburst {
  position: absolute;
  color: #ffd166;
  font-size: clamp(14px, 2vw, 22px);
  text-shadow: 0 0 14px #ffd166, 0 0 24px #ffffff;
  animation: okbTwinkle 2.4s ease-in-out infinite alternate;
}

.okb-cine-starburst--1 {
  top: 10%;
  left: 8%;
  animation-delay: 0.2s;
}

.okb-cine-starburst--2 {
  top: -5%;
  right: 28%;
  font-size: clamp(18px, 2.5vw, 28px);
  color: #a2d2ff;
  text-shadow: 0 0 16px #a2d2ff;
  animation-delay: 1.1s;
}

.okb-cine-starburst--3 {
  bottom: 12%;
  right: 12%;
  color: #ff9ebb;
  text-shadow: 0 0 14px #ff9ebb;
  animation-delay: 1.8s;
}

.okb-cine-character-wrap {
  position: absolute;
  right: clamp(2%, 6vw, 10%);
  top: -22%;
  width: clamp(120px, 18vw, 195px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 4;
  animation: okbCineFloat 5s ease-in-out infinite alternate;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.6));
}

.okb-cine-character-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.okb-cine-paper-bird {
  position: absolute;
  left: clamp(2%, 7vw, 12%);
  bottom: 8%;
  width: clamp(38px, 6vw, 56px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 4;
  animation: okbBirdFlutter 6.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 8px 18px rgba(255, 209, 102, 0.35));
}

/* Floating 2D Storyboard Reel */
.okb-cine-reel-container {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 10px 0;
}

.okb-cine-reel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd166;
  margin-bottom: 14px;
  opacity: 0.9;
}

.okb-cine-reel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 18px);
  flex-wrap: wrap;
  padding: 8px;
}

.okb-cine-frame {
  position: relative;
  width: clamp(125px, 16vw, 165px);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #0d1424;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.okb-cine-frame:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: #ffd166;
  box-shadow: 0 18px 40px rgba(255, 209, 102, 0.25);
  z-index: 5;
}

.okb-cine-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.okb-cine-frame:hover .okb-cine-frame-img {
  transform: scale(1.08);
}

.okb-cine-frame-sprockets {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 9px;
  background: rgba(4, 8, 16, 0.8);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px;
  pointer-events: none;
  z-index: 2;
}

.okb-cine-frame-sprockets--bottom {
  top: auto;
  bottom: 0;
}

.okb-cine-sprocket-hole {
  width: 5px;
  height: 4px;
  border-radius: 1px;
  background: #ffffff;
  opacity: 0.55;
}

.okb-cine-frame-caption {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  padding: 4px 8px;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 7, 15, 0.88) 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
}

/* Narrative Storytelling Content */
.okb-cine-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.35);
  border-radius: 999px;
  color: #ffd166;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(255, 209, 102, 0.15);
}

.okb-cine-title {
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 14px 0;
  letter-spacing: -0.01em;
  max-width: 720px;
}

.okb-cine-desc {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 620px;
  margin: 0 auto 32px auto;
  font-weight: 400;
}

/* Cinematic Search & Tags */
.okb-cine-search-wrap {
  width: 100%;
  max-width: 640px;
  margin-bottom: 34px;
}

.okb-cine-search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(14, 21, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 209, 102, 0.35);
  border-radius: 999px;
  padding: 6px 7px 6px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease;
}

.okb-cine-search-form:focus-within {
  border-color: #ffd166;
  box-shadow: 0 0 26px rgba(255, 209, 102, 0.35);
  background: rgba(18, 27, 48, 0.95);
}

.okb-cine-search-icon {
  color: #ffd166;
  font-size: 16px;
  margin-right: 12px;
  flex-shrink: 0;
}

.okb-cine-search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  padding: 8px 0;
}

.okb-cine-search-input::placeholder {
  color: #94a3b8;
}

.okb-cine-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #ffd166 0%, #ffbe3b 100%);
  color: #0b1120;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.okb-cine-search-btn:hover {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.6);
  transform: translateX(2px);
}

.okb-cine-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}

.okb-cine-chips-label {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 4px;
}

.okb-cine-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
}

.okb-cine-chip:hover {
  background: rgba(255, 209, 102, 0.15);
  border-color: rgba(255, 209, 102, 0.45);
  color: #ffd166;
  transform: translateY(-2px);
}

/* Theatrical Action Buttons */
.okb-cine-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.okb-cine-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: none;
  cursor: pointer;
}

.okb-cine-btn--primary {
  background: linear-gradient(135deg, #ffd166 0%, #ffaa00 100%);
  color: #0c1220;
  border: 1px solid #ffd166;
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.35);
}

.okb-cine-btn--primary:hover {
  background: #ffffff;
  color: #0c1220;
  box-shadow: 0 0 30px rgba(255, 209, 102, 0.65);
  transform: translateY(-3px);
}

.okb-cine-btn--secondary {
  background: rgba(14, 23, 44, 0.7);
  color: #ffffff;
  border: 1.5px solid rgba(255, 209, 102, 0.4);
  backdrop-filter: blur(10px);
}

.okb-cine-btn--secondary:hover {
  background: rgba(255, 209, 102, 0.16);
  border-color: #ffd166;
  color: #ffd166;
  box-shadow: 0 0 22px rgba(255, 209, 102, 0.3);
  transform: translateY(-3px);
}

.okb-cine-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.okb-cine-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

/* 2D Keyframe Animations */
@keyframes okbAuroraDrift {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  50% { transform: scale(1.08) translate3d(-20px, 15px, 0); }
  100% { transform: scale(0.96) translate3d(18px, -12px, 0); }
}

@keyframes okbStarShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes okbTwinkle {
  0% { opacity: 0.35; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.18); }
}

@keyframes okbCineFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-16px) rotate(2.5deg); }
}

@keyframes okbBirdFlutter {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-6deg); }
  100% { transform: translateY(-20px) rotate(4deg); }
}

@keyframes okbShootingStar {
  0%, 75% { opacity: 0; transform: translate3d(0, 0, 0) rotate(-32deg); }
  78% { opacity: 1; }
  85% { opacity: 0; transform: translate3d(320px, 180px, 0) rotate(-32deg); }
  100% { opacity: 0; }
}

/* Responsiveness */
@media (max-width: 860px) {
  .okb-cine-character-wrap {
    position: relative;
    top: 0;
    right: 0;
    width: 140px;
    margin: -10px auto 14px auto;
  }

  .okb-cine-hero-cluster {
    flex-direction: column;
  }

  .okb-cine-paper-bird {
    display: none;
  }
}

@media (max-width: 680px) {
  .okb-cine-reel-track {
    gap: 10px;
  }

  .okb-cine-frame {
    width: calc(50% - 10px);
    max-width: 155px;
  }

  .okb-cine-search-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 12px;
    gap: 10px;
  }

  .okb-cine-search-input {
    width: 100%;
    text-align: center;
  }

  .okb-cine-search-icon {
    display: none;
  }

  .okb-cine-search-btn {
    width: 100%;
    justify-content: center;
  }

  .okb-cine-actions {
    flex-direction: column;
    width: 100%;
  }

  .okb-cine-btn {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .okb-cine-moon {
    top: 14px;
    right: 18px;
    width: 50px;
  }

  .okb-cine-404-text {
    font-size: 110px;
  }

  .okb-cine-frame:nth-child(n+3) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .okb-cine-stage,
  .okb-cine-moon {
    transform: none !important;
    transition: none !important;
  }

  .okb-cine-aurora,
  .okb-cine-404-text,
  .okb-cine-starburst,
  .okb-cine-character-wrap,
  .okb-cine-paper-bird,
  .okb-cine-shooting-star {
    animation: none !important;
  }

  .okb-cine-canvas {
    display: none !important;
  }
}

/* ==========================================================================
   22. ANANTA HOMEPAGE TEMPLATE
   ========================================================================== */
/* =========================================================
   ANANTA STUDIO HOMEPAGE - VISUAL-FIRST TIMELINE STYLESHEET
   100% Visual Dominated, Scroll-Animated, High-Budget Aesthetic
========================================================= */
:root {
  --ananta-bg: var(--ok-bg-base, #07080b);
  --ananta-card-bg: var(--ok-bg-glass-elevated, rgba(16, 19, 26, 0.9));
  --ananta-card-border: var(--ok-border, rgba(255, 255, 255, 0.08));
  --ananta-cyan: var(--ok-brand-blue-light, #60a5fa);
  --ananta-cyan-glow: rgba(59, 130, 246, 0.4);
  --ananta-pink: var(--ok-brand-violet, #8b5cf6);
  --ananta-gold: var(--ok-brand-violet-light, #a78bfa);
  --ananta-text-main: var(--ok-ink, #f9fafb);
  --ananta-text-sub: var(--ok-ink-muted, #9ca3af);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.okg-ananta-page {
  background: var(--ananta-bg);
  color: var(--ananta-text-main);
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  width: 100%;
}

/* =========================================================
   SCENE 1: CINEMATIC HERO (100vh FULL-BLEED)
========================================================= */
.ananta-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px;
}

.ananta-hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.ananta-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
  will-change: transform, opacity;
  transition: transform 0.1s ease-out;
}

.ananta-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(4, 7, 17, 0.2) 0%, rgba(4, 7, 17, 0.7) 65%, #040711 100%),
              linear-gradient(to bottom, rgba(4, 7, 17, 0.4) 0%, transparent 40%, transparent 60%, #040711 100%);
  z-index: 2;
  pointer-events: none;
}

.ananta-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  will-change: transform, opacity;
}

.ananta-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.4);
  font-family: 'SF Mono', Consolas, Monaco, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ananta-cyan);
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
  backdrop-filter: blur(10px);
}

.ananta-hero-title {
  font-size: clamp(42px, 7.5vw, 96px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 40%, rgba(255, 255, 255, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.9));
}

.ananta-hero-desc {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--ananta-text-sub);
  max-width: 720px;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.ananta-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.ananta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 999px;
  background: #00f0ff;
  color: #040711;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.45);
  transition: all 0.25s cubic-bezier(0.2, 1, 0.3, 1);
}

.ananta-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 38px rgba(0, 240, 255, 0.75);
  background: #ffffff;
  color: #040711;
}

.ananta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: all 0.25s ease;
}

.ananta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.ananta-hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'SF Mono', Consolas, Monaco, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  animation: anantaFadeInOut 2.5s infinite ease-in-out;
}

.ananta-mouse-pill {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}

.ananta-mouse-dot {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #00f0ff;
  border-radius: 50%;
  animation: anantaScrollWheel 1.6s infinite ease-in-out;
}

@keyframes anantaScrollWheel {
  0% { transform: translate(-50%, 0); opacity: 0; }
  40% { opacity: 1; }
  80% { transform: translate(-50%, 14px); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes anantaFadeInOut {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* =========================================================
   SCENE 2: FULL-BLEED CHARACTER & DISTRICT SHOWCASE
   (Visually-dominated large artwork, interactive timeline)
========================================================= */
.ananta-districts-section {
  position: relative;
  width: 100%;
  padding: clamp(60px, 8vw, 110px) 0;
  overflow: hidden;
}

.ananta-section-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: clamp(32px, 4.5vw, 56px);
}

.ananta-section-kicker {
  font-family: 'SF Mono', Consolas, Monaco, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ananta-cyan);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.ananta-section-title {
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  color: #ffffff;
}

/* Big Visual District Stage */
.ananta-district-viewport {
  position: relative;
  width: min(1360px, calc(100vw - 48px));
  height: clamp(580px, 80vh, 760px);
  margin: 0 auto;
  border-radius: clamp(24px, 3vw, 36px);
  overflow: hidden;
  background: #090e1a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ananta-district-bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ananta-district-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform, opacity;
}

/* Giant background watermark letters */
.ananta-district-watermark {
  position: absolute;
  top: 15%;
  right: 5%;
  font-size: clamp(90px, 16vw, 220px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
  z-index: 2;
  transition: opacity 0.4s ease;
}

/* Cinematic dark vignette */
.ananta-district-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 17, 0.3) 0%, transparent 40%, rgba(4, 7, 17, 0.85) 85%, #040711 100%),
              linear-gradient(90deg, rgba(4, 7, 17, 0.9) 0%, rgba(4, 7, 17, 0.5) 45%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Floating HUD content panel */
.ananta-district-hud {
  position: absolute;
  bottom: clamp(32px, 5vw, 60px);
  left: clamp(32px, 5vw, 60px);
  max-width: min(640px, 90%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ananta-district-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'SF Mono', Consolas, Monaco, monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(0, 240, 255, 0.18);
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.45);
  width: fit-content;
}

.ananta-district-hud-title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  margin: 0;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.ananta-district-hud-desc {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 520px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.ananta-district-hud-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ananta-spec-chip {
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(10, 15, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 12px;
  color: #ffffff;
}

.ananta-spec-chip strong {
  color: var(--ananta-cyan);
  margin-right: 4px;
}

/* Floating interactive district navigation pill bar */
.ananta-district-selector-bar {
  position: absolute;
  top: clamp(24px, 4vw, 44px);
  left: clamp(24px, 4vw, 44px);
  z-index: 10;
  display: flex;
  gap: 8px;
  background: rgba(10, 15, 28, 0.75);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  flex-wrap: wrap;
}

.ananta-district-pill-tab {
  background: transparent;
  border: none;
  font-family: 'SF Mono', Consolas, Monaco, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.ananta-district-pill-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.ananta-district-pill-tab.is-active {
  color: #040711;
  background: #00f0ff;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.55);
}

/* Arrow controls inside district viewport */
.ananta-district-arrows {
  position: absolute;
  bottom: clamp(32px, 5vw, 60px);
  right: clamp(32px, 5vw, 60px);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.ananta-district-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 15, 28, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.ananta-district-arrow:hover {
  background: #00f0ff;
  color: #040711;
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
  transform: scale(1.08);
}

/* =========================================================
   SCENE 3: TWO CITIES, TWO ADVENTURES (SPLIT REVEAL)
   (Scroll-Linked Auto Sweep + Interactive Drag)
========================================================= */
.ananta-twocities-section {
  position: relative;
  width: 100%;
  margin: clamp(40px, 6vw, 90px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
}

.ananta-twocities-stage {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vh, 450px);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  touch-action: pan-y;
}

.ananta-twocities-pic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ananta-twocities-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

.ananta-twocities-pic--right {
  clip-path: inset(0 0 0 var(--split-pct, 50%));
  will-change: clip-path;
}

.ananta-twocities-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 5;
}

.ananta-twocities-copy {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 10;
  width: 90%;
  max-width: 960px;
}

.ananta-twocities-copy h2 {
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 8px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.95), 0 0 60px rgba(0, 0, 0, 0.85);
}

.ananta-twocities-copy p {
  font-size: clamp(13px, 1.2vw, 17px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
}

.ananta-twocities-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split-pct, 50%);
  width: 0;
  z-index: 20;
  pointer-events: none;
}

.ananta-twocities-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: #ffffff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.8), 0 0 32px rgba(0, 240, 255, 0.6);
}

.ananta-twocities-handle {
  position: absolute;
  bottom: clamp(20px, 3vw, 36px);
  left: 0;
  transform: translate(-50%, 0);
  width: 76px;
  height: 42px;
  pointer-events: auto;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.ananta-twocities-handle svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.75));
}

.ananta-twocities-arrows {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
}

.ananta-twocities-stage:hover .ananta-twocities-handle,
.ananta-twocities-stage.is-dragging .ananta-twocities-handle {
  transform: translate(-50%, 0) scale(1.12);
}

/* =========================================================
   SCENE 4: GOOGLE DEEPMIND 3-CARD CINEMA STAGE
========================================================= */
.ananta-cinema-section {
  position: relative;
  width: 100%;
  padding: clamp(50px, 7vw, 100px) 0;
  overflow: hidden;
}

.ananta-cinema-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  cursor: grab;
  padding: 16px 0;
}

.ananta-cinema-stage:active {
  cursor: grabbing;
}

.ananta-cinema-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.2, 1, 0.3, 1);
}

.ananta-cinema-slide {
  position: relative;
  flex: 0 0 auto;
  width: min(1180px, calc(100vw - 160px));
  aspect-ratio: 2.15 / 1;
  min-height: 480px;
  border-radius: clamp(22px, 2.5vw, 34px);
  overflow: hidden;
  background: #0d121d;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.65;
  transform: translate3d(0, 0, 0) scale(0.95);
  transition: opacity 0.45s cubic-bezier(0.2, 1, 0.3, 1), transform 0.45s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.45s ease, box-shadow 0.45s ease;
  cursor: pointer;
}

.ananta-cinema-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
  cursor: default;
}

.ananta-cinema-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ananta-cinema-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
}

.ananta-cinema-content {
  position: absolute;
  top: clamp(24px, 4.5vw, 56px);
  left: clamp(24px, 4.5vw, 56px);
  max-width: min(560px, 86%);
  z-index: 3;
}

.ananta-cinema-content h3 {
  color: #ffffff;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  margin: 0 0 12px;
}

.ananta-cinema-content p {
  color: var(--ananta-text-sub);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.5;
  margin: 0 0 20px;
}

.ananta-cinema-footer {
  width: min(1180px, calc(100vw - 160px));
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.ananta-cinema-arrows {
  display: flex;
  gap: 12px;
}

.ananta-cinema-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ananta-cinema-arrow:hover {
  background: #00f0ff;
  color: #040711;
  border-color: #00f0ff;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.5);
}

/* =========================================================
   SCENE 5: 20M+ GLOBAL MILESTONE STAGE (PARALLAX + PARTICLES)
========================================================= */
.ananta-milestone-section {
  position: relative;
  width: 100%;
  margin: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #060911;
  overflow: hidden;
}

.ananta-milestone-stage {
  position: relative;
  width: 100%;
  height: clamp(540px, 82vh, 880px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ananta-milestone-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
}

.ananta-milestone-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* Floating leaves particles */
.ananta-leaf {
  position: absolute;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 35% 35%, #9fff6b, #2ecc71);
  border-radius: 2px 14px 2px 14px;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(46, 204, 113, 0.5));
  animation: anantaLeafDrift 11s infinite linear;
  pointer-events: none;
}

.ananta-leaf--1 { top: 18%; left: 10%; animation-duration: 9s; animation-delay: 0s; }
.ananta-leaf--2 { top: 28%; left: 36%; animation-duration: 13s; animation-delay: 2s; }
.ananta-leaf--3 { top: 12%; left: 62%; animation-duration: 11s; animation-delay: 4s; }
.ananta-leaf--4 { top: 32%; left: 80%; animation-duration: 14s; animation-delay: 1s; }

@keyframes anantaLeafDrift {
  0% { transform: translate(0, -20px) rotate(0deg); opacity: 0; }
  15% { opacity: 0.85; }
  85% { opacity: 0.85; }
  100% { transform: translate(70px, 280px) rotate(360deg); opacity: 0; }
}

.ananta-milestone-tiers {
  position: absolute;
  bottom: clamp(24px, 3.8vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 18px);
  padding: 0 20px;
  flex-wrap: wrap;
  z-index: 6;
}

.ananta-milestone-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(10, 14, 25, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease;
}

.ananta-milestone-tier .tier-val {
  font-family: 'SF Mono', Consolas, Monaco, monospace;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.ananta-milestone-tier .tier-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.ananta-milestone-tier.is-current {
  background: rgba(0, 240, 255, 0.18);
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
}

.ananta-milestone-tier.is-current .tier-val,
.ananta-milestone-tier.is-current .tier-tag {
  color: #00f0ff;
}

/* =========================================================
   SCENE 6: STUDIO NEWS & DISPATCHES
========================================================= */
.ananta-news-section {
  padding: clamp(60px, 8vw, 110px) 24px;
  max-width: 1360px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ananta-news-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.ananta-news-featured {
  background: var(--ananta-card-bg);
  border: 1px solid var(--ananta-card-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ananta-news-featured video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.ananta-news-featured-body {
  padding: clamp(20px, 3vw, 36px);
}

.ananta-news-date {
  font-family: 'SF Mono', Consolas, Monaco, monospace;
  font-size: 11px;
  color: var(--ananta-cyan);
  letter-spacing: 0.1em;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.ananta-news-featured-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  margin: 0 0 12px;
  color: #ffffff;
}

.ananta-news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ananta-news-item {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  align-items: center;
}

.ananta-news-item:hover {
  background: rgba(0, 240, 255, 0.05);
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateX(4px);
}

.ananta-news-thumb {
  width: 100px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.ananta-news-item-body h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* =========================================================
   SCENE 7: COMMISSION TERMINAL
========================================================= */
.ananta-reserve-section {
  position: relative;
  width: 100%;
  padding: clamp(80px, 10vw, 140px) 24px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, #040711 75%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ananta-reserve-card {
  max-width: 880px;
  margin: 0 auto;
}

.ananta-reserve-card h2 {
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #ffffff;
}

.ananta-reserve-card p {
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--ananta-text-sub);
  margin: 0 auto 32px;
  max-width: 640px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ananta-district-viewport {
    height: 520px;
  }
  .ananta-news-grid {
    grid-template-columns: 1fr;
  }
  .ananta-cinema-slide {
    width: calc(100vw - 64px);
    min-height: 380px;
  }
  .ananta-milestone-stage {
    height: clamp(420px, 65vh, 600px);
  }
  .ananta-twocities-stage {
    height: clamp(220px, 35vh, 320px);
  }
}

@media (max-width: 640px) {
  .ananta-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .ananta-btn-primary,
  .ananta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .ananta-district-viewport {
    height: 480px;
  }
  .ananta-district-hud {
    bottom: 20px;
    left: 20px;
  }
  .ananta-district-arrows {
    display: none;
  }
  .ananta-cinema-slide {
    width: calc(100vw - 32px);
    min-height: 320px;
  }
  .ananta-milestone-stage {
    height: clamp(360px, 55vh, 480px);
  }
  .ananta-twocities-stage {
    height: clamp(180px, 28vh, 240px);
  }
}

/* ==========================================================================
   23. VIDEO PLAYER ENGINE
   ========================================================================== */
.ok-yt-player {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: var(--okvp-ratio, 16 / 9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  outline: none;
}

.ok-yt-player::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: inherit;
  pointer-events: none;
}

.ok-yt-player video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: inherit;
  background: #000;
  object-fit: contain;
  object-position: center;
}

.ok-yt-player video::-webkit-media-controls {
  display: none;
}

.ok-yt-player__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}

.ok-yt-player.has-started .ok-yt-player__poster {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.ok-yt-player__surface {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
}

/* Center Big Play Button */
.ok-yt-player__big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(15, 23, 42, .75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .55), 0 0 20px rgba(99, 102, 241, .25);
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), opacity .2s ease, visibility .2s ease, background .2s ease;
}

.ok-yt-player__big:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(99, 102, 241, .85);
  border-color: rgba(255, 255, 255, .4);
}

.ok-yt-player__big svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
  fill: currentColor;
}

.ok-yt-player.is-playing .ok-yt-player__big {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.8);
}

/* Spinner Loader */
.ok-yt-player__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, .15);
  border-top-color: #38bdf8;
  border-radius: 50%;
  animation: ok-yt-spin .75s linear infinite;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease;
}

.ok-yt-player.is-waiting .ok-yt-player__loader {
  opacity: 1;
  visibility: visible;
}

@keyframes ok-yt-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center Ripple Indicator for double-click seek */
.ok-yt-player__ripple-notice {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  z-index: 5;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(15, 23, 42, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 102, 241, .4);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .18s cubic-bezier(.34, 1.56, .64, 1), opacity .18s ease, visibility .18s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
}

.ok-yt-player__ripple-notice.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Controls Toolbar */
.ok-yt-player__controls {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 36px 14px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 9, 16, .35) 30%, rgba(6, 9, 16, .9) 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.ok-yt-player.is-controls-active .ok-yt-player__controls,
.ok-yt-player.is-paused .ok-yt-player__controls,
.ok-yt-player.is-scrubbing .ok-yt-player__controls {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Scrubber / Progress Bar */
.ok-yt-player__bar {
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: height .15s ease;
}

.ok-yt-player__bar:hover,
.ok-yt-player.is-scrubbing .ok-yt-player__bar {
  height: 7px;
}

.ok-yt-player__buffer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  border-radius: inherit;
  background: rgba(255, 255, 255, .35);
  pointer-events: none;
}

.ok-yt-player__progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc);
  box-shadow: 0 0 10px rgba(99, 102, 241, .6);
  pointer-events: none;
}

.ok-yt-player__progress::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, .4), 0 0 8px rgba(99, 102, 241, .8);
  transition: transform .15s ease;
}

.ok-yt-player__bar:hover .ok-yt-player__progress::after,
.ok-yt-player.is-scrubbing .ok-yt-player__progress::after {
  transform: translateY(-50%) scale(1);
}

/* Controls Row */
.ok-yt-player__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ok-yt-player__left,
.ok-yt-player__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */
.ok-yt-player button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #e2e8f0;
  cursor: pointer;
  transition: color .15s ease, background .15s ease, transform .12s ease;
}

.ok-yt-player button:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.ok-yt-player button:active {
  transform: scale(.95);
}

.ok-yt-player button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Time Indicator */
.ok-yt-player__time {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .02em;
  white-space: nowrap;
  padding-left: 2px;
  font-variant-numeric: tabular-nums;
}

/* AI Specs Badge */
.ok-yt-player__ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 9999px;
  background: rgba(99, 102, 241, .16);
  border: 1px solid rgba(129, 140, 248, .35);
  color: #a5b4fc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  user-select: none;
}

.ok-yt-player__ai-badge svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* Speed Button */
.ok-yt-player__speed {
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  color: #cbd5e1;
  padding: 0 6px;
  width: auto;
  min-width: 32px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
}

.ok-yt-player__speed:hover {
  color: #fff;
  border-color: rgba(129, 140, 248, .4);
}

/* Loop Button active state */
.ok-yt-player__loop.is-active {
  color: #38bdf8;
}

/* Close Fullscreen Button */
.ok-yt-player__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 7;
  display: none;
  background: rgba(15, 23, 42, .7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
}

.ok-yt-player.is-player-fullscreen .ok-yt-player__close {
  display: inline-flex;
}

/* Fullscreen Styles */
html.ok-video-player-fullscreen,
body.ok-video-player-fullscreen {
  overflow: hidden;
}

.ok-yt-player.is-player-fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  z-index: 999999;
  margin: 0;
  background: #000;
}

/* Single Post Specific Integration */
body.single-post .ok-product-preview-card.is-video-preview {
  padding: 0;
  border: 0;
  background: transparent;
}

body.single-post .ok-product-preview-box.is-video {
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #000;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .5);
}

body.single-post .ok-product-preview-box.is-video .ok-yt-player {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 18px;
}

body.single-post .ok-product-preview-box.is-video .ok-yt-player video {
  object-fit: contain;
  object-position: center;
}

body.single-post .ok-product-preview-box.is-video .ok-yt-player__poster {
  background-size: contain;
}

body.single-post .ok-yt-player:not(.is-player-fullscreen) .ok-yt-player__close {
  display: none;
}

@media (max-width: 760px) {
  .ok-yt-player,
  body.single-post .ok-product-preview-box.is-video {
    border-radius: 0;
  }

  .ok-yt-player__big {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
  }

  .ok-yt-player__controls {
    gap: 6px;
    padding: 24px max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  }

  .ok-yt-player button {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .ok-yt-player__ai-badge {
    display: none;
  }
}

/* ==========================================================================
   24. STUDIO SITE MOTION & ANIMATIONS
   ========================================================================== */
/* Site-wide studio motion layer. */

:root {
  --okb-studio-blue: var(--primary, #73b2f7);
  --okb-studio-violet: var(--accent, #be55ff);
  --okb-studio-rose: var(--accent, #be55ff);
  --okb-studio-amber: var(--primary, #73b2f7);
  --okb-studio-ink: var(--text, #ffffff);
  --okb-studio-muted: var(--ok-ink-muted, #a3a3a3);
  --okb-studio-line: rgba(255, 255, 255, .08);
  --okb-studio-glow: 0 24px 70px rgba(0, 0, 0, .45);
  --okb-studio-gradient: linear-gradient(100deg, var(--primary, #73b2f7) 0%, var(--secondary, #0936a0) 50%, var(--accent, #be55ff) 100%);
}

body:not(.home) {
  background: var(--background, #000000);
}

.site-main,
.entry-content,
.homefeed,
.ok-pricing-wrap,
.okb-policy-page,
.okb-studio-v2,
.contact-page,
.ok-product-page,
.okb404 {
  position: relative;
  isolation: isolate;
}

.homefeed::before,
.ok-pricing-wrap::before,
.okb-policy-hero::before,
.okb-anim-hero::before,
.contact-page::before,
.ok-product-page::before,
.okb404::before {
  animation: okbStudioGridDrift 18s linear infinite;
}

.homefeed::after,
.ok-pricing-wrap::after,
.ok-product-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 58%);
  animation: okbStudioGridDrift 20s linear infinite;
}

.ok-pricing-header h1 > strong,
.ok-pricing-header h2 > strong,
.asset-search-header h1,
.homefeed-category-head h2,
.ok-product-preview-title,
.okb-policy-hero h1::first-letter,
.okb-studio-v2-copy h1::first-letter {
  background: var(--okb-studio-gradient);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: okbStudioGradient 7s ease-in-out infinite alternate;
}

.asset-search-header h1,
.homefeed-category-head h2,
.ok-product-preview-title {
  color: var(--okb-studio-blue);
  -webkit-text-fill-color: transparent;
}

.homefeed-more-card,
.ok-credit-card,
.ok-on-demand-section,
.ok-enterprise-credit,
.ok-promo-panel,
.okb-policy-highlights > div,
.okb-policy-section,
.okb-studio-v2-cards article,
.okb-studio-v2-process article,
.okb-studio-v2-contact-grid a,
.contact-card,
.contact-compliance-item,
.file-upload-box,
.ok-product-preview-card,
.ok-product-panel,
.ok-product-details {
  transform: translateZ(0);
  transition:
    transform .42s cubic-bezier(.22, 1, .36, 1),
    border-color .28s ease,
    box-shadow .28s ease,
    background-position .42s ease;
}

.homefeed-more-card:hover,
.ok-credit-card:hover,
.okb-policy-highlights > div:hover,
.okb-studio-v2-cards article:hover,
.okb-studio-v2-process article:hover,
.okb-studio-v2-contact-grid a:hover,
.contact-compliance-item:hover,
.ok-product-preview-card:hover,
.ok-product-panel:hover,
.ok-product-details:hover {
  border-color: rgba(115, 178, 247, .42);
  box-shadow: var(--okb-studio-glow);
  transform: translateY(-4px);
}

.ok-buy-credit,
.okg-btn,
.okb-policy-hero-actions a,
.okb-studio-v2-actions a,
.okb-policy-closing a,
.contact-form button,
.homefeed-category-link,
.ok-product-download-btn,
.ok-product-utility button,
.ok-product-utility a {
  position: relative;
  overflow: hidden;
}

.ok-buy-credit::after,
.okg-btn::after,
.okb-policy-hero-actions a::after,
.okb-studio-v2-actions a::after,
.okb-policy-closing a::after,
.contact-form button::after,
.homefeed-category-link::after,
.ok-product-download-btn::after,
.ok-product-utility button::after,
.ok-product-utility a::after {
  display: none;
}

.okb-studio-reveal {
  opacity: 0;
  transform: translateY(24px) scale(.985);
  transition:
    opacity .7s ease,
    transform .78s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--okb-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.okb-studio-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: auto;
}

.okb-media-softload {
  opacity: .001;
  filter: saturate(.92) blur(4px);
  transition:
    opacity .55s ease,
    filter .65s ease;
}

.okb-media-softload.is-loaded {
  opacity: 1;
  filter: none;
}

.razorpay-container .okb-media-softload,
iframe[src*="razorpay"].okb-media-softload {
  opacity: 1;
  filter: none;
  transition: none;
}

.feed-item .hover-video.okb-media-softload,
.ok-stock-card .hover-video.okb-media-softload {
  filter: none;
  transition: none;
}

.feed-item .hover-video.okb-media-softload,
.ok-stock-card .hover-video.okb-media-softload {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.feed-item.ok-stock-card.is-hover-video-ready:hover .ok-stock-card__media > img.okb-media-softload,
.feed-item.ok-stock-card.is-video-playing .ok-stock-card__media > img.okb-media-softload,
.ok-stock-card.is-video-playing .ok-stock-card__media > img.okb-media-softload,
.feed-item.ok-stock-card.is-touch-video-playing .ok-stock-card__media > img.okb-media-softload,
.ok-stock-card.is-touch-video-playing .ok-stock-card__media > img.okb-media-softload {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.feed-item.ok-stock-card.is-hover-video-ready:hover .hover-video.okb-media-softload,
.feed-item.ok-stock-card.is-video-playing .hover-video.okb-media-softload,
.ok-stock-card.is-video-playing .hover-video.okb-media-softload,
.feed-item.ok-stock-card.is-touch-video-playing .hover-video.okb-media-softload,
.ok-stock-card.is-touch-video-playing .hover-video.okb-media-softload {
  display: block;
  opacity: 1;
  visibility: visible;
  background: #000;
}

.okb-studio-pulse {
  position: relative;
}

.okb-studio-pulse::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary, #73b2f7);
  box-shadow: 0 0 0 0 rgba(115, 178, 247, .28);
  animation: okbStudioPulse 1.9s ease-out infinite;
}

.ok-pricing-header.okb-studio-pulse::before,
.asset-search-header.okb-studio-pulse::before,
.okb-policy-hero-copy.okb-studio-pulse::before,
.okb-studio-v2-copy.okb-studio-pulse::before,
.contact-card.okb-studio-pulse::before {
  top: -16px;
  left: 0;
}

@keyframes okbStudioGradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes okbStudioGridDrift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 76px 76px;
  }
}

@keyframes okbStudioPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(115, 178, 247, .32);
  }

  72%,
  100% {
    box-shadow: 0 0 0 13px rgba(115, 178, 247, 0);
  }
}

@media (max-width: 699px) {
  .homefeed::before,
  .homefeed::after,
  .ok-pricing-wrap::before,
  .ok-pricing-wrap::after,
  .okb-policy-hero::before,
  .okb-anim-hero::before,
  .contact-page::before,
  .ok-product-page::before,
  .ok-product-page::after,
  .okb404::before,
  .ok-pricing-header h1 > strong,
  .ok-pricing-header h2 > strong,
  .asset-search-header h1,
  .homefeed-category-head h2,
  .ok-product-preview-title,
  .okb-policy-hero h1::first-letter,
  .okb-studio-v2-copy h1::first-letter,
  .okb-studio-pulse::before {
    animation: none;
  }

  .okg-reveal,
  .okb-studio-reveal,
  .okb-studio-reveal.is-visible,
  .okb-media-softload,
  .okb-media-softload.is-loaded {
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    transition: none;
    transition-delay: 0ms;
    will-change: auto;
  }

  .homefeed-more-card,
  .ok-credit-card,
  .ok-on-demand-section,
  .ok-enterprise-credit,
  .ok-promo-panel,
  .okb-policy-highlights > div,
  .okb-policy-section,
  .okb-studio-v2-cards article,
  .okb-studio-v2-process article,
  .okb-studio-v2-contact-grid a,
  .contact-card,
  .contact-compliance-item,
  .file-upload-box,
  .ok-product-preview-card,
  .ok-product-panel,
  .ok-product-details {
    transition: none;
    transform: none;
  }
}

@media (max-width: 760px) {
  .homefeed-more-card:hover,
  .ok-credit-card:hover,
  .okb-policy-highlights > div:hover,
  .okb-studio-v2-cards article:hover,
  .okb-studio-v2-process article:hover,
  .okb-studio-v2-contact-grid a:hover,
  .contact-compliance-item:hover,
  .ok-product-preview-card:hover,
  .ok-product-panel:hover,
  .ok-product-details:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homefeed::before,
  .homefeed::after,
  .ok-pricing-wrap::before,
  .ok-pricing-wrap::after,
  .okb-policy-hero::before,
  .okb-anim-hero::before,
  .contact-page::before,
  .ok-product-page::before,
  .ok-product-page::after,
  .okb404::before,
  .ok-pricing-header h1 > strong,
  .ok-pricing-header h2 > strong,
  .asset-search-header h1,
  .homefeed-category-head h2,
  .ok-product-preview-title,
  .okb-policy-hero h1::first-letter,
  .okb-studio-v2-copy h1::first-letter,
  .okb-studio-pulse::before {
    animation: none;
  }

  .okb-studio-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .okb-media-softload {
    opacity: 1;
    filter: none;
    transition: none;
  }
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
  .okg-hero-track {
    padding-left: 28px;
    padding-right: 28px;
    gap: 28px;
  }
  .okg-hero-controls {
    padding-left: 28px;
  }
  .okg-hero-card {
    flex: 0 0 clamp(280px, 32vw, 340px);
    height: 500px;
  }
}

@media (max-width: 1024px) {
  .okg-split,
  .okg-split--reverse {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  
  .okg-split-copy {
    display: contents;
  }
  
  .okg-split-header {
    order: 1;
    width: 100%;
  }
  
  .okg-media-wrap {
    order: 2;
    width: 100%;
  }
  
  .okg-feature-list {
    order: 3;
    width: 100%;
    margin: 0;
  }
  
  .okg-actions {
    order: 4;
    width: 100%;
  }
  
  .okg-media {
    aspect-ratio: 16 / 10;
  }
  
  .okg-deepmind-slide {
    width: calc(100vw - 64px);
    aspect-ratio: 16 / 10;
  }
  
  .okg-deepmind-content {
    bottom: 28px;
    left: 24px;
    top: auto;
  }
  
  .okg-deepmind-footer {
    width: calc(100vw - 64px);
  }
  
  .okb-footer-main {
    flex-direction: column;
    gap: 36px;
  }
  
  .okb-footer-links {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 100%;
    margin-left: 0;
  }

  .site-header {
    padding: 0 !important;
  }

  .site-header .header-inner {
    width: 100%;
    max-width: 100%;
    padding-left: max(20px, env(safe-area-inset-left)) !important;
    padding-right: max(20px, env(safe-area-inset-right)) !important;
    gap: 18px;
  }

  .site-header .site-logo img {
    height: 54px !important;
    max-height: 54px !important;
    width: auto !important;
  }

  .site-header .okb-header-search {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .header-search-field-wrapper {
    height: 50px;
    padding: 0 20px;
  }

  .header-search-input::placeholder {
    font-size: 13.5px;
  }

  .okb-live-assets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 !important;
  }

  .site-header .header-inner {
    padding-left: max(16px, env(safe-area-inset-left)) !important;
    padding-right: max(16px, env(safe-area-inset-right)) !important;
    min-height: 64px;
  }

  .site-header .site-logo img {
    height: 50px !important;
    max-height: 50px !important;
    width: auto !important;
  }
  
  .site-header .okb-header-search {
    display: none;
  }
  
  .okb-mobile-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--secondary);
    border: 1px solid rgba(115, 178, 247, 0.25);
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .okb-mobile-search-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
  }

  body.okb-search-open {
    overflow: hidden;
  }

  body.okb-search-open .site-header .site-logo,
  body.okb-search-open .site-header .okb-header-right {
    display: none;
  }

  body.okb-search-open .site-header .okb-header-search {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 58px;
    z-index: 100002;
    background-color: #06090c;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(115, 178, 247, 0.28);
    align-items: center;
    padding: 8px 12px;
    margin: 0;
    max-width: 100vw;
    box-sizing: border-box;
  }

  body.okb-search-open .header-search,
  body.okb-search-open .okb-universal-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  body.okb-search-open .mobile-search-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: transform 0.15s ease, color 0.15s ease;
  }

  body.okb-search-open .mobile-search-back:hover {
    color: #ffffff;
    transform: scale(0.95);
  }

  body.okb-search-open .header-search-field-wrapper {
    flex: 1 1 auto;
    height: 44px;
    padding: 0 16px;
    background-color: #06090c;
    border: 1px solid rgba(115, 178, 247, 0.3);
    border-radius: 999px;
  }

  body.okb-search-open .site-header .header-search-dropdown {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100vh - 58px);
    max-height: calc(100vh - 58px);
    background-color: #06090c;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: none !important;
    border-top: 1px solid rgba(115, 178, 247, 0.28) !important;
    border-radius: 0 !important;
    z-index: 100003;
    padding: 16px 16px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  body.okb-search-open .okb-quickstart-links-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.okb-search-open .okb-live-assets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .okg-hero-track {
    padding-left: 16px;
    padding-right: 16px;
    gap: 20px;
  }
  
  .okg-hero-controls {
    padding-left: 16px;
  }
  
  .okg-hero-card {
    flex: 0 0 82vw;
    min-width: 270px;
    max-width: 330px;
    height: 480px;
    transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .okg-hero-card:not(.is-active) {
    opacity: 0.88;
  }

  .okg-hero-card.is-active {
    opacity: 1;
    border-color: rgba(115, 178, 247, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(115, 178, 247, 0.12);
  }
  
  .okg-hero-card__content {
    padding: 24px 20px;
  }
  
  .okg-hero-card__title {
    font-size: 20px;
  }
  
  .okg-hero-card__desc {
    font-size: 14px;
  }
  
  .okg-hero {
    padding: 20px 0 clamp(30px, 4vw, 38px);
  }

  .okg-section {
    padding: clamp(30px, 4vw, 38px) 0;
  }
  
  .okg-split,
  .okg-split--reverse {
    gap: 28px;
  }
  
  .okg-split-header .okg-title {
    font-size: clamp(26px, 7vw, 34px);
  }
  
  .okg-split-lead {
    font-size: 14.5px;
    margin-bottom: 0;
  }
  
  .okg-feature-list {
    margin: 0;
    gap: 12px;
  }
  
  .okg-feature-item {
    padding: 14px 16px;
    gap: 14px;
  }
  
  .okg-feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 15px;
  }
  
  .okg-media {
    border-radius: 20px;
    aspect-ratio: 16 / 11;
  }
  
  .okg-media-note {
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 10px 14px;
  }
  
  .okg-googleai-head {
    margin-bottom: 28px;
    padding: 0 16px;
  }
  
  .okg-googleai-title {
    font-size: clamp(26px, 7vw, 34px);
  }
  
  .okg-googleai-desc {
    font-size: 14px;
  }
  
  .okg-googleai-card {
    flex: 0 0 240px;
    width: 240px;
    border-radius: 16px;
  }
  
  .okg-googleai-card__content {
    padding: 12px 14px;
  }
  
  .okg-googleai-card__title {
    font-size: 13px;
  }
  
  .okg-googleai-vignette {
    width: 32px;
  }
  
  .okg-googleai-footer {
    padding: 0 16px;
  }
  
  .okg-deepmind-track {
    padding: 10px 16px;
    gap: 14px;
  }
  
  .okg-deepmind-slide {
    width: calc(100vw - 32px);
    aspect-ratio: 16 / 10;
    min-height: 280px;
    border-radius: 20px;
  }
  
  .okg-deepmind-content {
    bottom: 24px;
    left: 20px;
    top: auto;
    max-width: 92%;
  }

  .okg-deepmind-footer {
    width: 100%;
    padding: 0 16px;
  }
  
  .okg-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .okg-btn,
  .btn,
  .button {
    width: 100%;
  }

  .okg-openart-card {
    padding: 44px 20px;
    border-radius: 20px;
  }

  .okg-openart-title {
    font-size: 26px;
  }

  .okg-openart-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .okg-openart-btn {
    width: 100%;
    max-width: 320px;
    height: 46px;
  }

  .okb-footer {
    padding-top: 48px;
    overflow: hidden;
  }

  .okb-footer-shell {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .okb-footer-main {
    flex-direction: column;
    gap: 32px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .okb-footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 100%;
    margin-left: 0;
    box-sizing: border-box;
  }

  .okb-footer-brand-hero {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
    margin-top: 36px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .okb-footer-hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* =========================================================
   GLOBAL FIXED ISOLATED TOOLTIP (Prevents stray text in footer/body flow)
========================================================= */
.okb-tooltip {
  position: fixed !important;
  z-index: 999999 !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  display: none;
  background: #1e2430;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.6), 0 4px 10px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  max-width: min(260px, calc(100vw - 24px));
  line-height: 1.35;
  transition: opacity 0.14s ease, transform 0.14s ease;
  transform: translate3d(-50%, -6px, 0) scale(0.98);
}

.okb-tooltip.is-visible {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(-50%, -10px, 0) scale(1);
}

.okb-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: #1e2430;
  transform: translateX(-50%) rotate(45deg);
}

.okb-tooltip[data-placement="bottom"] {
  transform: translate3d(-50%, 6px, 0) scale(0.98);
}

.okb-tooltip[data-placement="bottom"].is-visible {
  transform: translate3d(-50%, 10px, 0) scale(1);
}

.okb-tooltip[data-placement="bottom"]::after {
  top: -5px;
  bottom: auto;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: #1e2430;
}
