@import url("./social.css?v=8.0");
@import url("./fileMenu.css?v=8.0");
@import url("./hub.css?v=8.0");
@import url("./print.css?v=8.0");
@import url("./fontsAndSelection.css?v=8.0");
/* ==========================================================================
   GIRI ORBIT / GIRI OFFICE SUITE — ENTERPRISE WHITE DESIGN SYSTEM
   Inspired by Zoho Office Suite / Apple / Linear
   ========================================================================== */

:root {
  /* Stark White & Corporate Neutral Palette */
  --canvas-white: #ffffff;
  --panel-bg: #f8fafc;
  --panel-alt: #f1f5f9;
  --sidebar-bg: #fafbfc;
  --border-subtle: #e5e7eb;
  --border-crisp: #d1d5db;
  --border-dark: #0f172a;

  /* Typography Colors */
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;

  /* Brand Accents */
  --zoho-red: #e42528;
  --zoho-red-hover: #c91e21;
  --accent-blue: #1e40af;
  --accent-green: #15803d;
  --accent-amber: #b45309;
  --accent-violet: #6d28d9;

  /* Elevations */
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-paper: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-modal: 0 20px 50px -8px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
}

/* --- Global Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--canvas-white);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 13.5px;
}

/* Custom Scrollbars */
* {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
*::-webkit-scrollbar { width: 5px; height: 5px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 9999px; }
*::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ==========================================================================
   TIER 1: GLOBAL CORPORATE NETWORK HEADER
   ========================================================================== */
.tier1-corporate-bar {
  width: 100%;
  height: 38px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  position: relative;
}

.tier1-inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tier1-left, .tier1-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.giri-brand-corp-badge {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 3px 6px;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.giri-brand-corp-badge:hover {
  background: var(--panel-alt);
}

.giri-corp-badge-img {
  height: 24px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.tier1-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tier1-link {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.tier1-link:hover {
  color: var(--text-primary);
}

.dropdown-arrow {
  cursor: pointer;
}

.tier1-icon-btn {
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.tier1-icon-btn:hover {
  color: var(--text-primary);
}

.tier1-lang-select {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.tier1-lang-select:hover {
  background: var(--panel-alt);
  color: var(--text-primary);
}

.tier1-status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #2563eb;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tier1-status-pill:hover {
  background: rgba(37, 99, 235, 0.12);
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Tier 1 Ecosystem Dropdown Menu */
.tier1-dropdown-wrap {
  position: relative;
}

.tier1-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  box-shadow: var(--shadow-modal);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 2000;
}

.tier1-dropdown-wrap:hover .tier1-dropdown-menu,
.tier1-dropdown-menu.open {
  display: flex;
}

.ecosystem-menu-item {
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.ecosystem-menu-item:hover {
  background: var(--panel-bg);
}

.ecosystem-menu-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-primary);
}

.ecosystem-menu-item p {
  margin: 0;
  font-size: 10.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   TIER 2: GIRI OFFICE SUITE SUB-HEADER
   ========================================================================== */
.tier2-suite-header {
  width: 100%;
  height: 54px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  position: relative;
  transition: height 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.tier2-inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tier2-left, .tier2-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.suite-product-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.suite-product-brand:hover {
  background: var(--panel-bg);
}

.orbit-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.orbit-group-symbol-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-fast);
}

.suite-product-brand:hover .orbit-group-symbol-img {
  transform: scale(1.08);
}

.suite-brand-titles {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.suite-brand-sub {
  font-size: 10.5px;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.suite-brand-main {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.tier2-nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
}

.tier2-menu-item {
  position: relative;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.tier2-menu-item:hover {
  color: var(--text-primary);
}

.tier2-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  box-shadow: var(--shadow-modal);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 2000;
}

.tier2-menu-item:hover .tier2-dropdown {
  display: flex;
}

.dropdown-product-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.dropdown-product-row:hover {
  background: var(--panel-bg);
}

.icon-sq {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
}

.sq-blue { background: #2563eb; }
.sq-green { background: #16a34a; }
.sq-red { background: #dc2626; }
.sq-orange { background: #ea580c; }

.dropdown-product-row strong {
  display: block;
  font-size: 12px;
  color: var(--text-primary);
}

.dropdown-product-row p {
  font-size: 10.5px;
  color: var(--text-muted);
}

/* Tier 2 Switcher Pills */
.suite-switcher-pill-bar {
  display: flex;
  align-items: center;
  background: var(--panel-bg);
  padding: 2px;
  border-radius: 9999px;
  border: 1px solid var(--border-subtle);
}

.suite-nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.suite-nav-pill:hover {
  color: var(--text-primary);
}

.suite-nav-pill.active {
  background: #ffffff;
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.suite-nav-pill .pill-full-label {
  display: inline;
}

.suite-nav-pill .pill-short-label {
  display: none;
}

body.in-tool .suite-nav-pill .pill-full-label {
  display: none;
}
body.in-tool .suite-nav-pill .pill-short-label {
  display: inline;
}

@media (max-width: 900px) {
  .suite-nav-pill .pill-full-label {
    display: none;
  }
  .suite-nav-pill .pill-short-label {
    display: inline;
  }
}

.tier2-divider {
  width: 1px;
  height: 20px;
  background: var(--border-subtle);
}

.header-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: var(--panel-bg);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header-action-pill:hover {
  color: var(--text-primary);
  border-color: var(--border-crisp);
  background: var(--panel-bg);
}

.header-cmd-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--panel-bg);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
}

.kbd-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 1px 4px;
  border-radius: 3px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* ==========================================================================
   PRIMARY WORKSPACE VIEWPORT
   ========================================================================== */
.orbit-workspace {
  width: 100vw;
  height: calc(100vh - 92px);
  overflow-y: auto;
  position: relative;
  background-color: var(--canvas-white);
}

/* ==========================================================================
   FULL-SCREEN TOOL IMMERSION (ACTIVE WHEN IN ANY TOOL)
   Completely removes the suite headers so tools occupy 100vh with their own ribbons
   ========================================================================== */
body.in-tool .tier1-corporate-bar,
body.in-tool .tier2-suite-header,
.tier2-suite-header.in-tool {
  display: none !important;
}

body.in-tool .orbit-workspace {
  height: 100vh !important;
  max-height: 100vh !important;
  margin-top: 0 !important;
  padding: 0 !important;
  top: 0 !important;
}

/* ==========================================================================
   ZOHO OFFICE-STYLE SUITE LANDING HUB
   ========================================================================== */
.zoho-suite-landing {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

/* Hero Section */
.zoho-hero-section {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.zoho-hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zoho-hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.zoho-hero-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  max-width: 580px;
}

/* Executive Giri Orbit Primary Button */
.btn-giri-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-fast);
}

.btn-giri-primary:hover {
  background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

/* Accent Button */
.btn-zoho-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: all var(--transition-fast);
}

.btn-zoho-red:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

/* 4 Product Cards Horizontal Strip */
.zoho-product-cards-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
  max-width: 620px;
}

.zoho-app-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.zoho-app-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-crisp);
  box-shadow: var(--shadow-hover);
}

.app-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-card-meta {
  display: flex;
  flex-direction: column;
}

.app-card-prefix {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1;
}

.app-card-title {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
}

/* Hero Right Illustration */
.zoho-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-vector-art {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

/* Zero-G Orbital Document Matrix Section */
.orbital-matrix-section {
  width: 100%;
  border-top: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 50% 10%, rgba(248, 250, 252, 0.8) 0%, #ffffff 70%);
  padding: 24px 32px 48px;
  display: flex;
  flex-direction: column;
  height: 520px;
}

.orbital-section-header {
  max-width: 1360px;
  margin: 0 auto 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.orbital-title-group h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.orbital-title-group p {
  font-size: 12px;
  color: var(--text-secondary);
}

.orbital-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.orbital-search-input {
  font-size: 12.5px;
  width: 220px;
}

.orbital-filter-btn {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
}

.orbital-filter-btn.active {
  background: var(--panel-alt);
  color: var(--text-primary);
  font-weight: 600;
}

.orbital-physics-canvas-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

/* Floating Recent Document Cards */
.floating-doc-card {
  position: absolute;
  width: 310px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 15px;
  cursor: grab;
  display: flex;
  flex-direction: column;
  gap: 10px;
  user-select: none;
  transform-origin: center center;
  transition: box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  will-change: transform;
}

.floating-doc-card:active { cursor: grabbing; }
.floating-doc-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-crisp);
  z-index: 100 !important;
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.badge-drift { background: rgba(37, 99, 235, 0.08); color: #1e40af; }
.badge-axis { background: rgba(22, 163, 74, 0.08); color: #15803d; }
.badge-kinetic { background: rgba(220, 38, 38, 0.08); color: #b91c1c; }
.badge-pdf { background: rgba(234, 88, 12, 0.08); color: #c2410c; }

.card-timestamp {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.card-preview-text {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
  font-size: 10.5px;
  color: var(--text-muted);
}

.card-action-cue {
  color: var(--zoho-red);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

.card-launching {
  transition: transform 0.45s var(--ease-out), opacity 0.45s ease-out !important;
  transform: scale(2.4) !important;
  opacity: 0 !important;
  pointer-events: none;
}

/* ==========================================================================
   GIRI PDF STUDIO WORKSPACE
   ========================================================================== */
.pdf-studio-shell {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--panel-bg);
}

.pdf-top-bar {
  height: 44px;
  min-height: 44px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.pdf-tool-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdf-split-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.pdf-pages-sidebar {
  width: 220px;
  min-width: 220px;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border-subtle);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.pdf-page-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pdf-page-thumb:hover { background: var(--panel-alt); }
.pdf-page-thumb.active {
  background: #ffffff;
  border-color: var(--zoho-red);
  box-shadow: var(--shadow-card);
}

.pdf-thumb-canvas {
  width: 90px;
  height: 110px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  padding: 8px;
  display: flex;
  flex-direction: column;
}

.pdf-canvas-viewport {
  flex: 1;
  overflow: auto;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background: #e2e8f0;
}

.pdf-rendered-sheet {
  width: 800px;
  min-height: 1020px;
  background: #ffffff;
  box-shadow: var(--shadow-paper);
  padding: 64px 72px;
  position: relative;
  outline: none;
  transform-origin: top center;
  transition: transform 0.2s;
}

.pdf-watermark-overlay {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(228, 37, 40, 0.08);
  pointer-events: none;
  white-space: nowrap;
}

.pdf-approved-stamp {
  padding: 6px 14px;
  border: 2px solid var(--zoho-red);
  border-radius: 4px;
  color: var(--zoho-red);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transform: rotate(-12deg);
}

/* ==========================================================================
   DRIFT, AXIS, KINETIC STYLES (PRESERVED)
   ========================================================================== */
.drift-app-shell, .axis-app-shell, .kinetic-app-shell {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.drift-ribbon, .kinetic-top-bar, .axis-formula-bar {
  height: 44px;
  min-height: 44px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.drift-split-body, .axis-split-body, .kinetic-split-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.drift-left-sidebar, .axis-left-sidebar, .kinetic-slide-nav {
  width: 240px;
  min-width: 240px;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border-subtle);
  padding: 16px;
  overflow-y: auto;
}

.drift-center-viewport {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 20px 80px 20px;
  background: #edebe9;
  width: 100%;
  box-sizing: border-box;
}

.kinetic-stage-viewport {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: #f1f5f9;
  position: relative;
}

.paper-sheet-container {
  width: 816px;
  min-width: 816px;
  max-width: 816px;
  min-height: 1056px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d1d5db;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.15);
  padding: 72px 80px;
  outline: none;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 11pt;
  line-height: 1.25;
  color: #000000;
  box-sizing: border-box;
}

/* Axis Grid & Table */
.axis-grid-viewport { flex: 1; overflow: auto; background: #ffffff; position: relative; }
.axis-table { border-collapse: collapse; table-layout: fixed; font-family: var(--font-mono); font-size: 12px; }
.axis-corner-cell { width: 48px !important; min-width: 48px !important; max-width: 48px !important; height: 26px !important; background: #e2e8f0 !important; border: 1px solid #cbd5e1 !important; position: sticky !important; top: 0 !important; left: 0 !important; z-index: 35 !important; box-sizing: border-box !important; }
.axis-col-header { height: 26px !important; min-width: 95px !important; background: #f8fafc !important; color: #334155 !important; border: 1px solid #cbd5e1 !important; font-weight: 600 !important; text-align: center !important; position: sticky !important; top: 0 !important; z-index: 20 !important; box-sizing: border-box !important; }
.axis-row-header { width: 48px !important; min-width: 48px !important; max-width: 48px !important; background: #f8fafc !important; color: #334155 !important; border: 1px solid #cbd5e1 !important; font-weight: 600 !important; text-align: center !important; position: sticky !important; left: 0 !important; z-index: 25 !important; box-sizing: border-box !important; }
.axis-col-header.active-col-header, .axis-col-header.in-col-selection { background: #dcfce7 !important; color: #166534 !important; font-weight: 700 !important; border-bottom: 2.5px solid #107c41 !important; }
.axis-row-header.active-row-header, .axis-row-header.in-row-selection { background: #dcfce7 !important; color: #166534 !important; font-weight: 700 !important; border-right: 2.5px solid #107c41 !important; }
.axis-cell { height: 26px; border: 1px solid #cbd5e1; padding: 0 8px; outline: none; white-space: nowrap; overflow: hidden; box-sizing: border-box; }
.axis-cell.active-cell, .axis-cell:focus, .axis-cell:focus-visible { outline: 2px solid #000000 !important; outline-offset: -1px !important; box-shadow: inset 0 0 0 2px #000000, 0 0 0 1px #000000 !important; background-color: #ffffff !important; z-index: 30 !important; position: relative !important; }
.axis-cell.num-cell { text-align: right; font-variant-numeric: tabular-nums; }

/* ==========================================================================
   KINETIC SLIDE CANVAS & EXECUTIVE THEME ENGINE
   ========================================================================== */
.kinetic-slide-frame {
  width: 920px;
  max-width: 92%;
  aspect-ratio: 16 / 9;
  background: #090d16;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 38px 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, color 0.25s ease;
  box-sizing: border-box;
}

/* Background Decorative Artwork Layer (SVG curves, bursts, gradients) */
.slide-canvas-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  border-radius: inherit;
}
.slide-canvas-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Slide Header & Content Elements (Layered above artwork) */
.slide-header-zone {
  position: relative;
  z-index: 2;
}

.slide-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 10px;
  outline: none;
  position: relative;
  z-index: 2;
  transition: all 0.15s ease;
}
.slide-tag-pill:focus {
  box-shadow: 0 0 0 2px #38bdf8;
  background: rgba(255, 255, 255, 0.15);
}

.slide-h1-editable {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 8px 0;
  outline: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}
.slide-h1-editable:focus {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.slide-p-editable {
  font-size: 14px;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
  max-width: 820px;
  outline: none;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.slide-p-editable:focus {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

/* Feature Nodes Cards Grid */
.slide-cards-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  width: 100%;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.slide-feature-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 18px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  box-sizing: border-box;
}
.slide-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 28px -6px rgba(0, 0, 0, 0.55);
}

.feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--slide-accent, #38bdf8);
  margin-bottom: 8px;
  outline: none;
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.35;
  margin-bottom: 6px;
  outline: none;
}

.feature-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #cbd5e1;
  outline: none;
}

/* ==========================================================================
   PRESENTATIONGO AUTHENTIC VISUAL DIAGRAMS STYLES
   ========================================================================== */
.pgo-diagram-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-top: 14px;
  min-height: 250px;
}

/* 1. Circular Loop Process */
.pgo-circular-layout {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: 100%;
  height: 100%;
  align-items: center;
}

.pgo-circular-center-hub {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pgo-circular-center-hub svg {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.pgo-loop-node-card {
  background: var(--panel-bg, #f8fafc);
  border: 1.5px solid var(--border-subtle, #e2e8f0);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: all 0.2s ease;
  position: relative;
}

.pgo-loop-node-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.pgo-node-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 800;
  color: #ffffff;
  width: fit-content;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pgo-node-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  outline: none;
}

.pgo-node-desc {
  font-size: 10px;
  color: var(--text-secondary, #64748b);
  line-height: 1.35;
  outline: none;
}

/* 2. Zigzag Diamond Process */
.pgo-zigzag-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  position: relative;
}

.pgo-zigzag-track {
  width: 100%;
  height: 48px;
  margin: 10px 0;
}

.pgo-zigzag-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
}

.pgo-zigzag-card {
  background: var(--panel-bg, #f8fafc);
  border: 1px solid var(--border-subtle, #e2e8f0);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.pgo-diamond-num {
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin: 0 auto 6px auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.pgo-diamond-num span {
  transform: rotate(-45deg);
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
}

/* 3. Chevron Arrow Process */
.pgo-chevron-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
}

.pgo-chevron-card {
  background: #f1f5f9;
  border-left: 4px solid #2563eb;
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  transition: all 0.2s ease;
}

.pgo-chevron-card:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

/* 4. Strategic 2x2 SWOT Matrix */
.pgo-swot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  width: 100%;
  height: 100%;
  position: relative;
}

.pgo-swot-quadrant {
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1.5px solid;
}

.pgo-swot-s { background: #ecfdf5; border-color: #059669; }
.pgo-swot-w { background: #fef2f2; border-color: #dc2626; }
.pgo-swot-o { background: #eff6ff; border-color: #2563eb; }
.pgo-swot-t { background: #fffbeb; border-color: #d97706; }

.pgo-swot-watermark {
  position: absolute;
  right: 12px;
  bottom: -4px;
  font-size: 54px;
  font-weight: 900;
  opacity: 0.12;
  user-select: none;
  pointer-events: none;
}

.pgo-swot-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pgo-swot-badge {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
}

.pgo-swot-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0f172a;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 2;
}

/* 5. Winding Milestone Road Journey */
.pgo-milestone-road-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pgo-milestone-cards-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}

.pgo-milestone-card {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}

.pgo-milestone-flag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  color: #d97706;
}

/* 6. Maslow 5-Tier Pyramid */
.pgo-pyramid-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  width: 100%;
  align-items: center;
}

.pgo-pyramid-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pgo-pyramid-tiers-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.pgo-pyramid-tier-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 12px;
}

/* 7. Conversion Funnel */
.pgo-funnel-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  width: 100%;
  align-items: center;
}

.pgo-funnel-stages-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.pgo-funnel-stage-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 12px;
}

/* 8. Radial Hub & Spoke */
.pgo-radial-layout {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 14px;
  width: 100%;
  align-items: center;
}

.pgo-radial-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  color: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.35);
  text-align: center;
  padding: 10px;
}

/* 9. 3-Tier Pricing Table */
.pgo-pricing-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  align-items: stretch;
}

.pgo-pricing-col {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.pgo-pricing-col.popular {
  border: 2px solid #2563eb;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
  transform: scale(1.02);
}

.pgo-pricing-tag {
  position: absolute;
  top: -10px;
  right: 14px;
  background: #2563eb;
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}


/* ==========================================================================
   PROFESSIONAL EXPORT FORMAT MODAL DIALOG
   ========================================================================== */
.export-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10005;
  display: none;
  align-items: center;
  justify-content: center;
}

.export-modal-backdrop.open {
  display: flex;
}

.export-modal-card {
  width: 520px;
  max-width: 92vw;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  box-shadow: var(--shadow-modal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalPop 0.25s var(--ease-out);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.export-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  background: #ffffff;
}

.export-header-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.export-modal-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.export-modal-sub {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

.export-modal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.export-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.export-field-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.export-filename-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.export-filename-wrap:focus-within {
  border-color: var(--zoho-red);
}

.export-filename-input {
  flex: 1;
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--text-primary);
}

.export-ext-badge {
  padding: 4px 10px;
  background: var(--panel-alt);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  border-left: 1px solid var(--border-subtle);
}

/* Format Option Cards Grid */
.export-formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.format-option-card {
  padding: 10px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.format-option-card:hover {
  border-color: var(--border-crisp);
  background: var(--panel-bg);
}

.format-option-card.selected {
  border-color: var(--zoho-red);
  background: rgba(228, 37, 40, 0.04);
  box-shadow: 0 0 0 1px var(--zoho-red);
}

.format-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
}

.format-meta {
  display: flex;
  flex-direction: column;
}

.format-name {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.format-desc {
  font-size: 10.5px;
  color: var(--text-muted);
}

.export-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--border-subtle);
  background: var(--panel-bg);
}

.export-cancel-btn {
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.export-cancel-btn:hover {
  background: var(--panel-alt);
  color: var(--text-primary);
}

/* ==========================================================================
   MODALS, TOASTS & UTILITIES
   ========================================================================== */
.cmd-palette-backdrop, .ai-copilot-backdrop, .sovereign-modal-backdrop {
  position: fixed; inset: 0; background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 10005; display: none; align-items: flex-start; justify-content: center; padding-top: 10vh;
}
.cmd-palette-backdrop.open, .ai-copilot-backdrop.open, .sovereign-modal-backdrop.open { display: flex; }
.cmd-palette-card, .ai-copilot-card, .sovereign-modal-card {
  width: 600px; max-width: 92vw; background: #ffffff; border: 1px solid var(--border-subtle); border-radius: 12px; box-shadow: var(--shadow-modal); overflow: hidden; display: flex; flex-direction: column; animation: modalPop 0.25s var(--ease-out);
}
.cmd-search-row { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border-subtle); }
.cmd-search-row input, .ai-prompt-input { flex: 1; font-size: 14.5px; }
.cmd-results-list { max-height: 320px; overflow-y: auto; padding: 6px; display: flex; flex-direction: column; gap: 2px; }
.cmd-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-radius: 6px; cursor: pointer; }
.cmd-item:hover, .cmd-item.selected { background: var(--panel-alt); }
.cmd-footer-hints { display: flex; justify-content: space-between; padding: 8px 16px; border-top: 1px solid var(--border-subtle); background: var(--panel-bg); font-size: 11px; color: var(--text-muted); }

.orbit-toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 10000; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.orbit-toast { pointer-events: auto; display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: #ffffff; border: 1px solid var(--border-crisp); border-radius: 8px; box-shadow: var(--shadow-hover); font-size: 12.5px; font-weight: 500; animation: toastUp 0.3s var(--ease-out) forwards; }
@keyframes toastUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   ENTERPRISE MULTI-TAB OFFICE RIBBON SYSTEM
   ========================================================================== */
.office-ribbon-bar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.office-ribbon-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 12px;
  height: 32px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
}

.office-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 14px;
  height: 100%;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.office-tab-btn:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.03);
}

.office-tab-btn.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
  background: #ffffff;
}

.office-ribbon-panes {
  min-height: 46px;
  display: flex;
  align-items: center;
  background: #ffffff;
}

.office-ribbon-pane {
  display: none;
  width: 100%;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  overflow-x: auto;
}

.office-ribbon-pane.active {
  display: flex;
}

.ribbon-tool-group {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 4px;
  position: relative;
}

.ribbon-group-sep {
  width: 1px;
  height: 24px;
  background: var(--border-subtle);
  margin: 0 4px;
}

.ribbon-color-picker-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ribbon-color-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.ribbon-color-indicator {
  width: 14px;
  height: 3px;
  border-radius: 1px;
  margin-top: 2px;
}

/* Modal Dialogs (Find & Replace, Link, Symbols, Equations, Signatures) */
.office-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10020;
  display: none;
  align-items: center;
  justify-content: center;
}

.office-modal-backdrop.open {
  display: flex;
}

.office-dialog-card {
  width: 480px;
  max-width: 92vw;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-modal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalPop 0.22s var(--ease-out);
}

.office-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-subtle);
  background: #f8fafc;
}

.office-dialog-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.office-dialog-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: #334155;
}

.office-dialog-footer {
  padding: 12px 18px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid var(--border-subtle);
  background: #f8fafc;
}

.dialog-input-field {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.dialog-input-field:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

/* Interactive Signature Pad */
.signature-canvas-container {
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  background: #fafafa;
  position: relative;
  cursor: crosshair;
}

.signature-draw-canvas {
  width: 100%;
  height: 180px;
  display: block;
}

.signature-guide-line {
  position: absolute;
  bottom: 40px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #cbd5e1;
  pointer-events: none;
}

.signature-type-preview {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Brush Script MT', cursive, sans-serif;
  font-size: 38px;
  color: #1e3a8a;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px;
}

/* Table Picker Grid */
.table-grid-picker {
  display: grid;
  grid-template-columns: repeat(8, 18px);
  gap: 3px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  box-shadow: var(--shadow-hover);
}

.table-grid-cell {
  width: 18px;
  height: 18px;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
  cursor: pointer;
}

.table-grid-cell.highlight {
  background: rgba(37, 99, 235, 0.25);
  border-color: #2563eb;
}

/* Special Symbols Grid */
.symbols-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  max-height: 220px;
  overflow-y: auto;
  padding: 4px;
}

.symbol-item-btn {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.symbol-item-btn:hover {
  background: #eff6ff;
  border-color: #3b82f6;
  transform: scale(1.1);
}

/* Callout Banners in Drift */
.drift-callout-box {
  margin: 18px 0;
  padding: 14px 18px;
  border-radius: 6px;
  border-left: 4px solid #2563eb;
  background: #eff6ff;
  font-size: 13.5px;
  line-height: 1.6;
}

.drift-callout-tip { border-left-color: #10b981; background: #ecfdf5; color: #065f46; }
.drift-callout-warning { border-left-color: #f59e0b; background: #fffbeb; color: #92400e; }
.drift-callout-alert { border-left-color: #ef4444; background: #fef2f2; color: #991b1b; }

/* Interactive Checklists in Drift */
.drift-todo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}

.drift-todo-check {
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
  cursor: pointer;
}

/* Multi-Column Layouts in Drift */
.paper-sheet-container.cols-2 {
  column-count: 2;
  column-gap: 36px;
  column-rule: 1px solid #e2e8f0;
}

.paper-sheet-container.cols-3 {
  column-count: 3;
  column-gap: 28px;
  column-rule: 1px solid #e2e8f0;
}

.paper-sheet-container.landscape-page {
  width: 1050px !important;
  min-height: 720px !important;
}

/* Axis Bottom Workbook Sheet Tabs */
.axis-bottom-workbook-bar {
  height: 32px;
  min-height: 32px;
  background: #f1f5f9;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 11.5px;
  z-index: 20;
}

.axis-sheet-tabs-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2px;
}

.axis-sheet-tab-item {
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-top: 2px solid transparent;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.axis-sheet-tab-item.active {
  background: #ffffff;
  color: #16a34a;
  border-top-color: #16a34a;
}

.axis-add-sheet-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  color: var(--text-secondary);
}

.axis-add-sheet-btn:hover {
  background: #e2e8f0;
  color: var(--text-primary);
}

.axis-live-calc-status {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
}

/* Kinetic Presenter Station & Notes Drawer */
.kinetic-speaker-notes-drawer {
  height: 120px;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kinetic-speaker-notes-drawer textarea {
  width: 100%;
  flex: 1;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  background: #ffffff;
  padding: 6px 10px;
  font-size: 12px;
  resize: none;
  outline: none;
}

.presenter-fullscreen-overlay {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 20000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.presenter-fullscreen-overlay.active {
  display: flex;
}

.presenter-hud-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  z-index: 100;
}

.presenter-laser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 12px #ef4444;
  position: fixed;
  pointer-events: none;
  display: none;
  z-index: 20001;
  transform: translate(-50%, -50%);
}

/* PDF Studio Fillable Forms & Annotations */
.pdf-fillable-input {
  border: 1px dashed #3b82f6;
  background: rgba(239, 246, 255, 0.6);
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 12px;
  color: #0f172a;
  outline: none;
}

.pdf-fillable-check {
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
  cursor: pointer;
}

.pdf-sticky-note-pin {
  position: absolute;
  background: #fef08a;
  border: 1px solid #facc15;
  box-shadow: var(--shadow-hover);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 11.5px;
  color: #713f12;
  cursor: move;
  max-width: 180px;
}

.pdf-stamp-watermark-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 900;
  color: rgba(220, 38, 38, 0.08);
  transform: rotate(-35deg);
  user-select: none;
}

/* ==========================================================================
   WORD ON THE WEB STYLE TEMPLATE HUB FOR GIRI DRIFT
   ========================================================================== */
.drift-hub-shell {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Top App Brand Bar in Hub Mode */
.drift-hub-top-bar {
  height: 48px;
  background: #18181b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  flex-shrink: 0;
}

.drift-hub-brand-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drift-app-icon-badge {
  width: 28px;
  height: 28px;
  background: #2563eb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
}

.drift-hub-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 16px;
}

.drift-hub-nav-link {
  font-size: 12.5px;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.drift-hub-nav-link:hover {
  color: #ffffff;
}

/* Sleek Dark Hero Banner */
.drift-hub-hero {
  background: linear-gradient(135deg, #18181b 0%, #09090b 60%, #1e1b4b 100%);
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 220px;
  flex-shrink: 0;
}

.drift-hero-left {
  max-width: 620px;
  z-index: 2;
}

.drift-hero-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.drift-hero-subtitle {
  font-size: 14.5px;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 24px;
}

.drift-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-drift-create-blank {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  border: 1px solid transparent;
}

.btn-drift-create-blank:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

.btn-drift-upload-file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.btn-drift-upload-file:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-drift-new-template-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.25);
  color: #c4b5fd;
  padding: 10px 18px;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(167, 139, 250, 0.4);
  transition: all var(--transition-fast);
}

.btn-drift-new-template-cta:hover {
  background: rgba(124, 58, 237, 0.4);
  color: #ffffff;
  border-color: #a78bfa;
}

/* 3D Modern Desk Graphic Right Side */
.drift-hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.drift-hero-visual-svg {
  width: 280px;
  height: 180px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

/* "Create with templates" Section */
.drift-templates-section {
  padding: 28px 48px 60px;
  background: #ffffff;
  flex: 1;
}

.drift-templates-section-header {
  margin-bottom: 20px;
}

.drift-templates-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.drift-category-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
}

.drift-category-pill-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.drift-category-pill {
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.drift-category-pill:hover {
  background: #f1f5f9;
  color: var(--text-primary);
}

.drift-category-pill.active {
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.drift-category-pill .pill-counter-badge {
  background: rgba(255, 255, 255, 0.25);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 9999px;
  font-weight: 700;
}

.drift-category-pill:not(.active) .pill-counter-badge {
  background: #e2e8f0;
  color: #475569;
}

/* Search templates input */
.drift-search-templates-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 220px;
}

.drift-search-templates-input {
  width: 100%;
  padding: 7px 12px 7px 32px;
  border: 1px solid var(--border-crisp);
  border-radius: 9999px;
  font-size: 12.5px;
  background: #f8fafc;
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-fast);
}

.drift-search-templates-input:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.drift-search-templates-icon {
  position: absolute;
  left: 10px;
  color: var(--text-muted);
  pointer-events: none;
}

/* Templates Grid */
.drift-templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.drift-template-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.drift-template-card:hover {
  transform: translateY(-5px);
}

.drift-template-preview-frame {
  width: 100%;
  height: 250px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.22s var(--ease-out);
}

.drift-template-card:hover .drift-template-preview-frame {
  box-shadow: 0 14px 28px -4px rgba(0, 0, 0, 0.12), 0 0 0 1.5px #2563eb;
}

.drift-template-meta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drift-template-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drift-template-cat-label {
  font-size: 11px;
  color: #64748b;
  text-transform: capitalize;
}

/* Custom Template Delete Button */
.custom-template-del-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.9);
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: none;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-fast);
}

.drift-template-card:hover .custom-template-del-btn {
  display: flex;
}

.custom-template-del-btn:hover {
  background: #dc2626;
  transform: scale(1.1);
}

/* Special "New Custom Template" Card */
.drift-template-card.create-custom-card .drift-template-preview-frame {
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.drift-template-card.create-custom-card:hover .drift-template-preview-frame {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}

/* Back to Templates & Save as Template Buttons inside Editor Ribbon */
.btn-back-to-templates-hub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-crisp);
  background: #f8fafc;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-back-to-templates-hub:hover {
  background: #ffffff;
  color: #2563eb;
  border-color: #2563eb;
}

.btn-save-as-custom-template {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-violet, #7c3aed);
  border-color: rgba(124, 58, 237, 0.3);
}

.btn-save-as-custom-template:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: #7c3aed;
}

/* ==========================================================================
   MICROSOFT 365 / FLUENT OFFICE RIBBON & MODERN FILE MENU STYLING
   ========================================================================== */

/* Dark Modern Office Ribbon Shell */
.fluent-ribbon-bar {
  width: 100%;
  background: #18181b;
  color: #f1f5f9;
  border-bottom: 1px solid #27272a;
  display: flex;
  flex-direction: column;
  z-index: 60;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-family: var(--font-sans);
  position: relative;
}

/* Ribbon Tab Strip */
.fluent-ribbon-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 16px;
  height: 34px;
  background: #121214;
  border-bottom: 1px solid #27272a;
  position: relative;
}

.fluent-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2.5px solid transparent;
  padding: 0 13px;
  height: 100%;
  font-size: 12.5px;
  font-weight: 500;
  color: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  position: relative;
}

.fluent-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.fluent-tab-btn.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
  font-weight: 600;
}

/* Office 365 File Tab Button */
.fluent-tab-file-btn, .fluent-tab-file-trigger {
  background: transparent;
  color: #ffffff !important;
  font-weight: 600;
  padding: 0 13px;
}

.fluent-tab-file-btn:hover, .fluent-tab-file-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Modern Office 365 File Dropdown Menu (Exact match to screenshot) */
.office-file-menu-dropdown {
  position: absolute;
  top: 34px;
  left: 16px;
  width: 230px;
  background: #202023;
  border: 1px solid #333338;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 10060;
  padding: 6px 0;
  display: none;
  flex-direction: column;
  animation: modalPop 0.18s var(--ease-out);
}

.office-file-menu-dropdown.open {
  display: flex;
}

.file-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 16px;
  font-size: 12.5px;
  color: #e2e8f0;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  user-select: none;
}

.file-menu-item:hover {
  background: #2d2d32;
  color: #ffffff;
}

.file-menu-item.danger {
  color: #f87171;
}

.file-menu-item.danger:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.file-menu-item.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.file-menu-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.file-menu-arrow {
  margin-left: auto;
  font-size: 11px;
  color: #71717a;
}

.file-menu-sep {
  height: 1px;
  background: #333338;
  margin: 5px 0;
}

/* Top Right Action Strip (Comments, Catch up, Editing, Share) */
.fluent-top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fluent-top-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 500;
  background: #252529;
  color: #e2e8f0;
  border: 1px solid #3f3f46;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fluent-top-action-pill:hover {
  background: #2e2e34;
  color: #ffffff;
  border-color: #52525b;
}

.fluent-top-action-pill.share-btn {
  background: #0078d4 !important;
  color: #ffffff !important;
  border: 1px solid #0078d4 !important;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.fluent-top-action-pill.share-btn:hover {
  background: #106ebe !important;
  border-color: #106ebe !important;
}

/* Fluent Ribbon Panes */
.fluent-ribbon-panes {
  min-height: 88px;
  background: #1c1c1f;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: visible !important;
  padding: 3px 8px;
  border-bottom: 1px solid #2e2e33;
}

.fluent-ribbon-pane {
  display: none;
  align-items: stretch;
  gap: 2px;
  width: 100%;
}

.fluent-ribbon-pane.active {
  display: flex;
}

/* Ribbon Group (Container with vertical divider and bottom label) */
.fluent-ribbon-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3px 7px;
  border-right: 1px solid #2e2e33;
  position: relative;
  min-height: 80px;
  flex-shrink: 0;
}

.fluent-group-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.fluent-group-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fluent-group-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.fluent-group-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 2px;
  min-height: 14px;
}

.fluent-group-label {
  font-size: 10px;
  font-weight: 500;
  color: #8a8a8e;
  text-align: center;
  letter-spacing: 0.02em;
  user-select: none;
}

.fluent-group-launcher {
  position: absolute;
  right: -2px;
  bottom: -1px;
  width: 13px;
  height: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #71717a;
  cursor: pointer;
  border-radius: 2px;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  transition: all var(--transition-fast);
}

.fluent-group-launcher:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

/* Fluent Buttons (Small, Large, Row Command) */
.fluent-btn-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 7px;
  height: 54px;
  min-width: 44px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #e2e8f0;
  font-size: 11px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fluent-btn-large:hover, .fluent-btn-small:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.fluent-btn-large.active, .fluent-btn-small.active {
  background: rgba(0, 120, 212, 0.2);
  color: #60a5fa;
  border-color: rgba(0, 120, 212, 0.4);
}

.fluent-btn-small {
  width: 26px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  color: #cbd5e1;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fluent-btn-row-cmd {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 19px;
  padding: 0 5px;
  font-size: 11px;
  border: 1px solid transparent;
  background: transparent;
  color: #cbd5e1;
  cursor: pointer;
  border-radius: 3px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.fluent-btn-row-cmd:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.fluent-btn-row-cmd.active {
  background: rgba(0, 120, 212, 0.2);
  color: #60a5fa;
  border-color: rgba(0, 120, 212, 0.4);
}

.fluent-select-dark {
  background: #27272a;
  color: #f1f5f9;
  border: 1px solid #3f3f46;
  border-radius: 4px;
  padding: 2px 6px;
  height: 24px;
  font-size: 11.5px;
  outline: none;
  cursor: pointer;
}

.fluent-select-dark option {
  background: #18181b;
  color: #ffffff;
}

/* Visual Styles Gallery Cards (Exact match to Image 2) */
.fluent-styles-gallery {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 2px 2px;
}

.fluent-style-card {
  width: 78px;
  height: 52px;
  border: 1px solid #38383e;
  border-radius: 4px;
  background: #222226;
  padding: 3px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.fluent-style-card:hover {
  border-color: #52525b;
  background: #29292e;
}

.fluent-style-card.active {
  border: 1.5px solid #ffffff;
  background: #27272c;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.fluent-style-card-title {
  font-size: 11.5px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 1.2;
}

.fluent-style-card-sub {
  font-size: 8.5px;
  color: #8a8a8e;
  margin-top: 2px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub-blue, .sup-blue {
  color: #38bdf8;
  font-weight: 700;
}
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.fluent-style-card-sub {
  font-size: 8.5px;
  color: #a1a1aa;
  margin-top: 2px;
}

/* Stepper Controls (Paragraph Indent & Spacing) */
.fluent-stepper-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #cbd5e1;
}

.fluent-stepper-input {
  width: 44px;
  padding: 2px 4px;
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 3px;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
}

/* Right-Side Comments & Review Sidebar Panel */
.drift-comments-sidebar, .pdf-comments-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: #ffffff;
  border-left: 1px solid var(--border-subtle);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  z-index: 80;
  display: none;
  flex-direction: column;
  animation: slideInRight 0.22s var(--ease-out);
}

.drift-comments-sidebar.open, .pdf-comments-sidebar.open {
  display: flex;
}

/* PDF Studio Ink Drawing Canvas Overlay */
.pdf-ink-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.pdf-ink-canvas.drawing-active {
  pointer-events: auto;
  cursor: crosshair;
}

/* PDF Floating Search Bar */
.pdf-search-bar {
  position: absolute;
  top: 85px;
  right: 32px;
  background: #1e1e24;
  border: 1px solid #3f3f46;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 6px 10px;
  display: none;
  align-items: center;
  gap: 6px;
  z-index: 100;
}
.pdf-search-bar.open {
  display: flex;
}

/* Dark Reader Mode for PDF */
.pdf-rendered-sheet.dark-reader-mode {
  background: #18181b !important;
  color: #e4e4e7 !important;
}
.pdf-rendered-sheet.dark-reader-mode p,
.pdf-rendered-sheet.dark-reader-mode h1,
.pdf-rendered-sheet.dark-reader-mode h2,
.pdf-rendered-sheet.dark-reader-mode h3,
.pdf-rendered-sheet.dark-reader-mode td,
.pdf-rendered-sheet.dark-reader-mode th,
.pdf-rendered-sheet.dark-reader-mode span,
.pdf-rendered-sheet.dark-reader-mode div:not(.pdf-approved-stamp):not(.pdf-stamp-watermark-overlay) {
  color: #e4e4e7 !important;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.comments-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
}

.comments-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-card {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #f8fafc;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #64748b;
}

.comment-author {
  font-weight: 700;
  color: #0f172a;
}

.comment-text {
  color: #334155;
  line-height: 1.5;
}

.comments-footer-add {
  padding: 12px 16px;
  border-top: 1px solid var(--border-subtle);
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Emoji Picker Dropdown */
.fluent-emoji-picker-dropdown {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border-crisp);
  border-radius: 8px;
  box-shadow: var(--shadow-modal);
  padding: 8px;
  display: none;
  grid-template-columns: repeat(8, 28px);
  gap: 4px;
  z-index: 10070;
}

.fluent-emoji-picker-dropdown.open {
  display: grid;
}

.emoji-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: transform 0.1s ease;
}

.emoji-btn:hover {
  background: #eff6ff;
  transform: scale(1.2);
}

/* Track Changes Markup */
.track-change-insert {
  color: #16a34a;
  text-decoration: underline;
  background: rgba(22, 163, 74, 0.1);
}

.track-change-delete {
  color: #dc2626;
  text-decoration: line-through;
  background: rgba(220, 38, 38, 0.1);
}

/* Table of Contents Generated Block */
.toc-generated-box {
  margin: 20px 0;
  padding: 18px 22px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
}

.toc-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 6px;
}

.toc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 12.5px;
  color: #2563eb;
  cursor: pointer;
}

.toc-item:hover {
  text-decoration: underline;
}

/* Footnotes Container */
.footnotes-container {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #cbd5e1;
  font-size: 11px;
  color: #64748b;
  line-height: 1.6;
}




/* ==========================================================================
   PERFECTED MICROSOFT 365 FLUENT RIBBON BAR & FILE MENU
   ========================================================================== */
.fluent-ribbon-bar {
  width: 100%;
  background: #1f1f24 !important;
  color: #f1f5f9;
  border-bottom: 1px solid #2d2d32;
  display: flex;
  flex-direction: column;
  z-index: 60;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-family: var(--font-sans);
  position: relative;
}

.fluent-ribbon-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 12px;
  height: 36px;
  background: #18181c !important;
  border-bottom: 1px solid #2d2d32;
  position: relative;
}

.fluent-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 12px;
  height: 100%;
  font-size: 12.5px;
  font-weight: 500;
  color: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  user-select: none;
}

.fluent-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.fluent-tab-btn.active {
  color: #ffffff !important;
  border-bottom-color: #2563eb !important;
  font-weight: 600 !important;
  background: transparent !important;
}

/* File button in tabs strip: plain text tab matching screenshot */
.fluent-tab-file-trigger {
  color: #e2e8f0 !important;
  font-weight: 500 !important;
  background: transparent !important;
  border-radius: 4px !important;
  height: 28px !important;
  margin-right: 4px !important;
}

.fluent-tab-file-trigger:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

/* Right Top Action Pills (Comments, Catch up, Editing, Share) */
.fluent-top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fluent-top-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fluent-top-action-pill:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

.fluent-top-action-pill.share-btn {
  background: #0078d4 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 600 !important;
}

.fluent-top-action-pill.share-btn:hover {
  background: #006abc !important;
}

/* Ribbon Panes Area */
.fluent-ribbon-panes {
  min-height: 86px;
  background: #202024 !important;
  display: flex;
  align-items: stretch;
  overflow: visible !important;
  padding: 4px 10px;
}

.fluent-ribbon-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
  border-right: 1px solid #2d2d33 !important;
  position: relative;
  min-height: 76px;
  flex-shrink: 0;
}

.fluent-group-label {
  font-size: 10px;
  font-weight: 500;
  color: #8a8a93;
  text-align: center;
  margin-top: 3px;
  letter-spacing: 0.02em;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.fluent-popout-icon {
  font-size: 8px;
  opacity: 0.6;
}

/* Instagram Social Card */
.giri-instagram-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: #0f172a;
  transition: all var(--transition-fast);
}

.giri-instagram-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.giri-instagram-card-dark {
  background: #202024 !important;
  border: 1px solid #333338 !important;
  color: #ffffff !important;
}

.giri-instagram-card-dark:hover {
  background: #27272d !important;
  border-color: #3f3f46 !important;
}

/* Ensure all ribbon containers allow floating dropdowns to display without clipping */
.fluent-ribbon-bar,
.fluent-ribbon-panes,
.fluent-ribbon-pane,
.fluent-ribbon-group,
.fluent-group-controls,
.fluent-group-col,
.fluent-group-row,
.fluent-font-mount,
.fluent-font-picker-wrap {
  overflow: visible !important;
}

/* 10. Pentagon Hanging Flags Process */
.pgo-flags-layout {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 10px 0;
}

.pgo-flag-card {
  flex: 1;
  max-width: 220px;
  background: #ffffff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.pgo-flag-header {
  padding: 16px 12px;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.pgo-flag-circle {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.pgo-flag-body {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  text-align: center;
}

/* 11. Hand-Drawn Speech Bubbles */
.pgo-bubbles-layout {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 10px 0;
}

.pgo-bubble-card {
  flex: 1;
  max-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pgo-bubble-bubble {
  background: #ffffff;
  border: 2px dashed #ca8a04;
  border-radius: 14px;
  padding: 16px 14px;
  position: relative;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.pgo-bubble-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
}

.pgo-bubble-quote {
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
  color: #ca8a04;
  margin-bottom: -6px;
}

.pgo-bubble-author-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding-left: 16px;
}

.pgo-bubble-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}

/* 12. Interlocking Gears Process */
.pgo-gears-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 10px 0;
}

.pgo-gear-card {
  flex: 1;
  max-width: 220px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pgo-gear-svg-wrap {
  width: 60px;
  height: 60px;
  margin-bottom: 4px;
}

/* 13. Hexagon Honeycomb Matrix */
.pgo-honeycomb-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 10px 0;
}

.pgo-honeycomb-cell {
  width: 180px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}



/* ==========================================================================
   EXECUTIVE GLASSMORPHISM OVERRIDES FOR ALL PRESENTATIONGO DIAGRAMS
   Applies high-contrast dark luxury cards and typography across all diagrams
   ========================================================================== */
.kinetic-slide-frame .pgo-loop-node-card,
.kinetic-slide-frame .pgo-zigzag-card,
.kinetic-slide-frame .pgo-chevron-card,
.kinetic-slide-frame .pgo-milestone-card,
.kinetic-slide-frame .pgo-flag-card,
.kinetic-slide-frame .pgo-flag-body,
.kinetic-slide-frame .pgo-bubble-bubble,
.kinetic-slide-frame .pgo-gear-card,
.kinetic-slide-frame .pgo-honeycomb-cell,
.kinetic-slide-frame .pgo-pyramid-tier-row,
.kinetic-slide-frame .pgo-funnel-stage-row,
.kinetic-slide-frame .pgo-pricing-col {
  background: rgba(15, 23, 42, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.45) !important;
}

.kinetic-slide-frame .pgo-node-title {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
}

.kinetic-slide-frame .pgo-node-desc {
  color: #cbd5e1 !important;
  line-height: 1.4 !important;
}

.kinetic-slide-frame .pgo-pricing-col.popular {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3) !important;
}

/* SWOT Analysis Quadrants High-Contrast Glow */
.kinetic-slide-frame .pgo-swot-quadrant {
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-radius: 10px !important;
}
.kinetic-slide-frame .pgo-swot-s {
  background: rgba(6, 78, 59, 0.55) !important;
  border: 1px solid rgba(16, 185, 129, 0.45) !important;
}
.kinetic-slide-frame .pgo-swot-w {
  background: rgba(127, 29, 29, 0.55) !important;
  border: 1px solid rgba(239, 68, 68, 0.45) !important;
}
.kinetic-slide-frame .pgo-swot-o {
  background: rgba(30, 58, 138, 0.55) !important;
  border: 1px solid rgba(59, 130, 246, 0.45) !important;
}
.kinetic-slide-frame .pgo-swot-t {
  background: rgba(120, 53, 15, 0.55) !important;
  border: 1px solid rgba(245, 158, 11, 0.45) !important;
}
.kinetic-slide-frame .pgo-swot-quadrant .pgo-node-desc {
  color: #f1f5f9 !important;
}
