/*! Open House 2026 - Complete Standalone CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --oh26-primary: #383566;
  --oh26-primary-rgb: 56, 53, 102;
  --oh26-primary-light: #4a4780;
  --oh26-primary-dark: #2a2850;
  --oh26-primary-darker: #1a1833;
  --oh26-accent: #fa6400;
  --oh26-accent-hover: #ff7b1a;
  --oh26-gold: #d4af37;
  --oh26-text: #2d2b54;
  --oh26-text-light: #5a5875;
  --oh26-text-muted: #8a8a9a;
  --oh26-bg: #f7f8fc;
  --oh26-white: #ffffff;
  --oh26-border: rgba(56, 53, 102, 0.08);
  --oh26-shadow-sm: 0 2px 8px rgba(56, 53, 102, 0.06);
  --oh26-shadow: 0 8px 32px rgba(56, 53, 102, 0.12);
  --oh26-shadow-lg: 0 20px 60px rgba(56, 53, 102, 0.15);
  --oh26-shadow-xl: 0 32px 80px rgba(56, 53, 102, 0.18);
  --oh26-radius-sm: 8px;
  --oh26-radius: 16px;
  --oh26-radius-lg: 24px;
  --oh26-radius-xl: 32px;
  --oh26-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --oh26-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --oh26-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --oh26-duration: 0.4s;
  --oh26-duration-fast: 0.25s;
  --oh26-duration-slow: 0.6s;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--oh26-text);
  background: var(--oh26-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.oh26-menu-open {
  overflow: hidden;
}

.oh26-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TOP BAR ========== */
.oh26-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  background: rgba(var(--oh26-primary-rgb), 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1001;
  transform: translateY(0);
  transition: transform var(--oh26-duration-slow) var(--oh26-ease);
}

.oh26-topbar.oh26-hidden {
  transform: translateY(-100%);
}

.oh26-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.oh26-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.oh26-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.oh26-meta-item i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.oh26-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.oh26-topbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.oh26-topbar-link {
  padding: 6px 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-topbar-link:hover {
  color: var(--oh26-white);
  background: rgba(255, 255, 255, 0.1);
}

.oh26-lang {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 3px;
}

.oh26-lang a {
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
  letter-spacing: 0.02em;
}

.oh26-lang a.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--oh26-white);
}

.oh26-lang a:hover:not(.active) {
  color: var(--oh26-white);
}

/* ========== MAIN NAV ========== */
.oh26-nav {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--oh26-primary-darker) 0%,
    var(--oh26-primary) 100%
  );
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: top var(--oh26-duration-slow) var(--oh26-ease);
}

.oh26-nav.oh26-nav-top {
  top: 0;
}

.oh26-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.oh26-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.oh26-logo img {
  height: 42px;
  width: auto;
  transition: opacity var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-logo:hover img {
  opacity: 0.85;
}

.oh26-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.oh26-menu-link {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 16px;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  position: relative;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--oh26-accent);
  transform: scaleX(0);
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-menu-link:hover {
  color: var(--oh26-white);
}

.oh26-menu-link:hover::after {
  transform: scaleX(1);
}

.oh26-menu-link.active {
  color: var(--oh26-white);
  font-weight: 500;
}

.oh26-menu-link.active::after {
  transform: scaleX(1);
}

.oh26-menu-link.disabled {
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.oh26-menu-link.disabled::after {
  display: none;
}

.oh26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oh26-white);
  background: var(--oh26-accent);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(250, 100, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-btn:hover {
  background: var(--oh26-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 100, 0, 0.45);
  color: var(--oh26-white);
}

.oh26-btn:active {
  transform: translateY(0);
}

/* ========== MOBILE NAV ========== */
.oh26-mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--oh26-primary-darker) 0%,
    var(--oh26-primary) 100%
  );
  z-index: 1001;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
}

.oh26-mobile-logo img {
  height: 36px;
  width: auto;
}

.oh26-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.oh26-hamburger-box {
  position: relative;
  width: 24px;
  height: 18px;
  margin: auto;
}

.oh26-hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--oh26-white);
  border-radius: 2px;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-hamburger-line:nth-child(1) {
  top: 0;
}
.oh26-hamburger-line:nth-child(2) {
  top: 8px;
}
.oh26-hamburger-line:nth-child(3) {
  top: 16px;
}

.oh26-menu-open .oh26-hamburger-line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.oh26-menu-open .oh26-hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.oh26-menu-open .oh26-hamburger-line:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.oh26-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--oh26-primary-darker);
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-menu-open .oh26-mobile-menu {
  transform: translateX(0);
}

.oh26-mobile-menu-inner {
  padding: 24px 20px 100px;
}

.oh26-mobile-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.oh26-mobile-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.oh26-mobile-meta-item i {
  width: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.oh26-mobile-nav {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.oh26-mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-mobile-nav-link.active {
  color: var(--oh26-white);
  font-weight: 500;
}
.oh26-mobile-nav-link.disabled {
  color: rgba(255, 255, 255, 0.3);
}
.oh26-mobile-nav-link small {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-left: 8px;
}

.oh26-mobile-secondary {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.oh26-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.oh26-mobile-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-mobile-link:hover {
  color: var(--oh26-white);
}

.oh26-mobile-lang {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}

.oh26-mobile-lang a {
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-mobile-lang a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--oh26-white);
}

.oh26-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--oh26-white);
  background: var(--oh26-accent);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.oh26-floating-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 32px);
  max-width: 360px;
  padding: 16px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--oh26-white);
  background: var(--oh26-accent);
  border: none;
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 30px rgba(250, 100, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.oh26-floating-btn i {
  margin-right: 8px;
}

/* ========== HERO ========== */
/* ========== HERO ========== */
.oh26-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.oh26-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.oh26-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.oh26-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 24, 51, 0.7) 0%,
    rgba(56, 53, 102, 0.6) 100%
  );
  z-index: -1;
}

/* Bottom fade to white */
.oh26-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--oh26-white), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Hide default video controls and play button */
.oh26-hero-video video::-webkit-media-controls {
  display: none !important;
}

.oh26-hero-video video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.oh26-hero-video video::-webkit-media-controls-play-button {
  display: none !important;
}

.oh26-hero-video video::--webkit-media-controls-enclosure {
  display: none !important;
}

/* Firefox */
.oh26-hero-video video::-moz-media-controls {
  display: none !important;
}

/* General - prevent controls from showing */
.oh26-hero-video video {
  pointer-events: none;
}

.oh26-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.oh26-hero-content {
  flex: 1;
  max-width: 600px;
}

.oh26-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--oh26-white);
  margin-bottom: 24px;
  animation: oh26FadeUp 0.6s var(--oh26-ease-out) both;
}

.oh26-badge i {
  color: var(--oh26-gold);
}

.oh26-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--oh26-white);
  line-height: 1.1;
  margin: 0 0 16px;
  animation: oh26FadeUp 0.6s var(--oh26-ease-out) 0.1s both;
}

.oh26-hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  animation: oh26FadeUp 0.6s var(--oh26-ease-out) 0.2s both;
}

.oh26-hero-info {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  animation: oh26FadeUp 0.6s var(--oh26-ease-out) 0.3s both;
}

.oh26-hero-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--oh26-white);
}

.oh26-hero-info-item i {
  opacity: 0.75;
}

/* Hero Countdown */

@media (max-width: 1024px) {
  .oh26-hero-countdown {
    width: 100%;
  }

  .oh26-countdown-card {
    padding: 24px;
    text-align: center;
  }

  .oh26-countdown {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .oh26-countdown {
    justify-content: center;
  }

  .oh26-countdown-card {
    text-align: center;
  }

  .oh26-countdown-label {
    text-align: center;
  }
}

.oh26-hero-countdown {
  flex-shrink: 0;
  animation: oh26FadeUp 0.6s var(--oh26-ease-out) 0.4s both;
}

.oh26-countdown-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--oh26-radius-lg);
  padding: 32px 40px;
  text-align: center;
}

.oh26-countdown-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.oh26-countdown {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.oh26-countdown-item {
  text-align: center;
  min-width: 60px;
}

.oh26-countdown-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--oh26-white);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.oh26-countdown-unit {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.oh26-countdown-sep {
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  padding-top: 2px;
}

/* ========== INVITATION ========== */
.oh26-invitation {
  padding: 100px 0;
  background: var(--oh26-white);
}

.oh26-invitation-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.oh26-invitation-main {
  max-width: 720px;
}

.oh26-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(
    135deg,
    rgba(var(--oh26-primary-rgb), 0.06),
    rgba(var(--oh26-primary-rgb), 0.1)
  );
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--oh26-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.oh26-eyebrow i {
  font-size: 0.8125rem;
}

.oh26-invitation-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 32px;
  line-height: 1.25;
}

.oh26-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--oh26-text);
  margin: 0 0 20px;
}

.oh26-lead em {
  color: var(--oh26-primary);
  font-style: italic;
}
.oh26-lead strong {
  font-weight: 600;
}

.oh26-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--oh26-text-light);
  margin: 0 0 20px;
}

.oh26-body:last-child {
  margin-bottom: 0;
}

/* Sidebar */
.oh26-sidebar {
  position: sticky;
  top: 140px;
}

.oh26-ceo-card {
  background: linear-gradient(145deg, var(--oh26-bg), #f0eef7);
  border-radius: var(--oh26-radius-lg);
  padding: 28px;
  border: 1px solid var(--oh26-border);
}

.oh26-ceo-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--oh26-border);
}

.oh26-ceo-avatar {
  position: relative;
  flex-shrink: 0;
}

.oh26-ceo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--oh26-white);
  box-shadow: var(--oh26-shadow);
}

.oh26-ceo-sig {
  position: absolute;
  bottom: -6px;
  right: -10px;
  width: 48px;
  filter: brightness(0) opacity(0.5);
  transform: rotate(-8deg);
}

.oh26-ceo-info h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 4px;
}

.oh26-ceo-info p {
  font-size: 0.875rem;
  color: var(--oh26-text-muted);
  margin: 0;
  line-height: 1.4;
}

.oh26-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oh26-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--oh26-white);
  border-radius: var(--oh26-radius-sm);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-highlight:hover {
  transform: translateX(4px);
  box-shadow: var(--oh26-shadow-sm);
}

.oh26-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-white);
  font-size: 1rem;
  flex-shrink: 0;
}

.oh26-highlight-text h5 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 2px;
}

.oh26-highlight-text p {
  font-size: 0.8125rem;
  color: var(--oh26-text-muted);
  margin: 0;
}

/* ========== VIDEO ========== */
.oh26-video-section {
  padding: 80px 0 100px;
  background: var(--oh26-bg);
}

.oh26-video-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--oh26-white);
  border-radius: var(--oh26-radius-xl);
  overflow: hidden;
  box-shadow: var(--oh26-shadow-lg);
  position: relative;
}

.oh26-video-info {
  padding: 56px;
  background: linear-gradient(
    135deg,
    var(--oh26-primary) 0%,
    var(--oh26-primary-light) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.oh26-video-info::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.oh26-video-label {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.oh26-video-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--oh26-white);
  line-height: 1.3;
  margin: 0 0 20px;
}

.oh26-video-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.oh26-video-thumb {
  position: relative;
  background: var(--oh26-primary-darker);
  overflow: hidden;
  min-height: 400px;
}

.oh26-video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: all var(--oh26-duration-slow) var(--oh26-ease);
}

.oh26-video-card:hover .oh26-video-thumb img {
  opacity: 1;
  transform: scale(1.05);
}

.oh26-video-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--oh26-white);
  z-index: 2;
}

.oh26-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  background: var(--oh26-primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-play::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-play:hover {
  background: var(--oh26-primary-light);
  transform: translate(-50%, -50%) scale(1.08);
}

.oh26-play:hover::before {
  inset: -8px;
  border-color: rgba(255, 255, 255, 0.3);
}

.oh26-play i {
  color: var(--oh26-white);
  font-size: 1.75rem;
  margin-left: 4px;
}

/* Modal */
.oh26-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--oh26-duration) var(--oh26-ease);
}

.oh26-modal.oh26-show {
  display: flex;
  opacity: 1;
}

.oh26-modal-box {
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--oh26-radius);
  overflow: hidden;
  position: relative;
}

.oh26-modal-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.oh26-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--oh26-white);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========== INNOVATION SPARK ========== */
.oh26-spark {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--oh26-bg) 0%,
    var(--oh26-white) 100%
  );
  position: relative;
  overflow: hidden;
}

.oh26-spark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(var(--oh26-primary-rgb), 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.oh26-spark-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.oh26-spark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.oh26-spark-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--oh26-white);
  border: 1px solid var(--oh26-border);
  border-radius: var(--oh26-radius);
  position: relative;
  overflow: hidden;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-spark-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--oh26-primary), var(--oh26-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-spark-card:hover {
  border-color: transparent;
  box-shadow: var(--oh26-shadow-lg);
  transform: translateY(-4px);
}

.oh26-spark-card:hover::before {
  transform: scaleX(1);
}

.oh26-spark-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(var(--oh26-primary-rgb), 0.08),
    rgba(var(--oh26-primary-rgb), 0.04)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh26-primary);
  font-size: 1.25rem;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-spark-card:hover .oh26-spark-icon {
  background: linear-gradient(
    135deg,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  color: var(--oh26-white);
  transform: scale(1.05);
}

.oh26-spark-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.oh26-spark-content p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--oh26-text-light);
  margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .oh26-spark {
    padding: 60px 0;
  }

  .oh26-spark-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .oh26-spark-card {
    padding: 24px;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .oh26-spark-grid {
    grid-template-columns: 1fr;
  }

  .oh26-spark-card {
    padding: 20px;
    gap: 16px;
  }

  .oh26-spark-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    font-size: 1.125rem;
  }

  .oh26-spark-content h3 {
    font-size: 1rem;
  }

  .oh26-spark-content p {
    font-size: 0.875rem;
  }
}

/* ========== ACCESS ========== */
.oh26-access {
  padding: 100px 0;
  background: var(--oh26-white);
}

.oh26-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.oh26-section-header .oh26-eyebrow {
  background: linear-gradient(
    135deg,
    rgba(250, 100, 0, 0.08),
    rgba(250, 100, 0, 0.12)
  );
  color: var(--oh26-accent);
}

.oh26-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--oh26-text);
  margin: 0 0 12px;
}

.oh26-section-subtitle {
  font-size: 1.0625rem;
  color: var(--oh26-text-light);
  max-width: 560px;
  margin: 0 auto;
}

.oh26-access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.oh26-access-card {
  background: var(--oh26-white);
  border: 1px solid var(--oh26-border);
  border-radius: var(--oh26-radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-access-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  opacity: 0;
  transition: opacity var(--oh26-duration) var(--oh26-ease);
}

.oh26-access-card:hover {
  border-color: transparent;
  box-shadow: var(--oh26-shadow-lg);
  transform: translateY(-6px);
}

.oh26-access-card:hover::before {
  opacity: 1;
}

.oh26-access-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(var(--oh26-primary-rgb), 0.08),
    rgba(var(--oh26-primary-rgb), 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--oh26-primary);
  font-size: 1.5rem;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-access-card:hover .oh26-access-icon {
  background: linear-gradient(
    135deg,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  color: var(--oh26-white);
}

.oh26-access-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 10px;
}

.oh26-access-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--oh26-text-light);
  margin: 0;
}

/* CTA Box */
.oh26-cta {
  background: linear-gradient(
    135deg,
    var(--oh26-primary) 0%,
    var(--oh26-primary-light) 100%
  );
  border-radius: var(--oh26-radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.oh26-cta::before,
.oh26-cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.oh26-cta::before {
  top: -150px;
  right: -150px;
}
.oh26-cta::after {
  bottom: -150px;
  left: -150px;
  width: 250px;
  height: 250px;
}

.oh26-cta-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--oh26-white);
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.oh26-cta-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 32px;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.oh26-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--oh26-white);
  color: var(--oh26-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  color: var(--oh26-primary);
}

.oh26-cta-btn i {
  transition: transform var(--oh26-duration) var(--oh26-ease);
}
.oh26-cta-btn:hover i {
  transform: translateX(4px);
}

.oh26-cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 20px 0 0;
  position: relative;
  z-index: 1;
}

.oh26-cta-note i {
  margin-right: 6px;
  opacity: 0.8;
}

/* ========== TEASER ========== */
.oh26-teaser {
  padding: 100px 0;
  background: var(--oh26-bg);
}

.oh26-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.oh26-teaser-card {
  background: var(--oh26-white);
  border-radius: var(--oh26-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--oh26-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-teaser-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--oh26-duration) var(--oh26-ease);
}

.oh26-teaser-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--oh26-shadow-lg);
}

.oh26-teaser-card:hover::before {
  transform: scaleX(1);
}

.oh26-teaser-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(var(--oh26-primary-rgb), 0.06),
    rgba(var(--oh26-primary-rgb), 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--oh26-primary);
  font-size: 1.75rem;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-teaser-card:hover .oh26-teaser-icon {
  background: linear-gradient(
    135deg,
    var(--oh26-primary),
    var(--oh26-primary-light)
  );
  color: var(--oh26-white);
  transform: scale(1.1);
}

.oh26-teaser-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 12px;
}

.oh26-teaser-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--oh26-text-light);
  margin: 0 0 24px;
}

.oh26-teaser-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(var(--oh26-primary-rgb), 0.06);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh26-primary);
}

.oh26-teaser-badge i {
  font-size: 0.6875rem;
}

/* ========== VENUE ========== */
.oh26-venue {
  padding: 100px 0;
  background: var(--oh26-white);
}

.oh26-venue-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--oh26-bg);
  border-radius: var(--oh26-radius-xl);
  overflow: hidden;
  box-shadow: var(--oh26-shadow-lg);
}

.oh26-venue-img {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.oh26-venue-img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Hide video controls and play button */
.oh26-venue-img video::-webkit-media-controls {
  display: none !important;
}

.oh26-venue-img video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.oh26-venue-img video::-webkit-media-controls-play-button {
  display: none !important;
}

.oh26-venue-img video::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Firefox */
.oh26-venue-img video::-moz-media-controls {
  display: none !important;
}

/* Keep the gradient overlay */
.oh26-venue-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--oh26-primary-rgb), 0.15),
    transparent
  );
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .oh26-venue-img {
    min-height: 280px;
  }
}

.oh26-venue-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oh26-venue-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--oh26-text);
  margin: 0 0 24px;
}

.oh26-venue-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--oh26-text-light);
  margin: 0 0 20px;
}

.oh26-venue-address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--oh26-white);
  padding: 24px;
  border-radius: var(--oh26-radius);
  margin-bottom: 20px;
}

.oh26-venue-address i {
  color: var(--oh26-primary);
  font-size: 1.25rem;
  margin-top: 2px;
}

.oh26-venue-address-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--oh26-text);
}

.oh26-venue-address-text strong {
  display: block;
  margin-bottom: 4px;
}

.oh26-venue-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--oh26-primary);
  text-decoration: none;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-venue-link:hover {
  color: var(--oh26-primary-light);
}
.oh26-venue-link i {
  transition: transform var(--oh26-duration) var(--oh26-ease);
}
.oh26-venue-link:hover i {
  transform: translateX(5px);
}

/* ========== FOOTER ========== */
.oh26-footer {
  background: #0a0a0a;
  color: var(--oh26-white);
  padding: 48px 0;
}

.oh26-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.oh26-footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oh26-copyright {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.oh26-copyright a {
  color: #8080b0;
  text-decoration: none;
  transition: color var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-copyright a:hover {
  color: var(--oh26-white);
}

.oh26-footer-links {
  display: flex;
  gap: 24px;
}

.oh26-footer-link {
  font-size: 0.875rem;
  color: #8080b0;
  text-decoration: none;
  transition: color var(--oh26-duration-fast) var(--oh26-ease);
}

.oh26-footer-link:hover {
  color: var(--oh26-white);
}

.oh26-social {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.oh26-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--oh26-white);
  text-decoration: none;
  transition: all var(--oh26-duration) var(--oh26-ease);
}

.oh26-social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.oh26-social-link i {
  font-size: 1.125rem;
}

/* ========== ANIMATIONS ========== */
@keyframes oh26FadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 1024px) {
  .oh26-container {
    padding: 0 20px;
  }
  .oh26-topbar {
    display: none;
  }
  .oh26-nav {
    display: none;
  }
  .oh26-mobile-header {
    display: flex;
  }
  .oh26-hamburger {
    display: flex;
  }
  .oh26-floating-btn {
    display: block;
  }
  body {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .oh26-hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  .oh26-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .oh26-hero-content {
    max-width: 100%;
  }
  .oh26-hero-countdown {
    width: 100%;
  }
  .oh26-countdown-card {
    padding: 24px;
  }
  .oh26-countdown-num {
    font-size: 2rem;
  }

  .oh26-invitation {
    padding: 60px 0;
  }
  .oh26-invitation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .oh26-sidebar {
    position: static;
  }

  .oh26-video-section {
    padding: 60px 0 80px;
  }
  .oh26-video-card {
    grid-template-columns: 1fr;
  }
  .oh26-video-info {
    padding: 40px;
  }
  .oh26-video-thumb {
    min-height: 320px;
  }

  .oh26-access {
    padding: 60px 0;
  }
  .oh26-access-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .oh26-cta {
    padding: 40px 24px;
  }

  .oh26-teaser {
    padding: 60px 0;
  }
  .oh26-teaser-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .oh26-venue {
    padding: 60px 0;
  }
  .oh26-venue-card {
    grid-template-columns: 1fr;
  }
  .oh26-venue-img {
    min-height: 280px;
  }
  .oh26-venue-content {
    padding: 40px;
  }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 640px) {
  .oh26-container {
    padding: 0 16px;
  }
  .oh26-hero {
    padding: 60px 0 50px;
  }
  .oh26-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
  .oh26-hero-info {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }
  .oh26-countdown {
    gap: 6px;
  }
  .oh26-countdown-item {
    min-width: 50px;
  }
  .oh26-countdown-num {
    font-size: 1.5rem;
  }
  .oh26-countdown-unit {
    font-size: 0.625rem;
  }
  .oh26-countdown-sep {
    font-size: 1.25rem;
  }
  .oh26-section-header {
    margin-bottom: 40px;
  }
  .oh26-ceo-header {
    flex-direction: column;
    text-align: center;
  }
  .oh26-ceo-sig {
    right: 50%;
    transform: translateX(50%) rotate(-8deg);
  }
  .oh26-video-info {
    padding: 32px 24px;
  }
  .oh26-video-title {
    font-size: 1.375rem;
  }
  .oh26-play {
    width: 70px;
    height: 70px;
  }
  .oh26-play i {
    font-size: 1.375rem;
  }
  .oh26-access-card {
    padding: 24px;
  }
  .oh26-cta-btn {
    padding: 16px 32px;
    font-size: 1rem;
  }
  .oh26-teaser-card {
    padding: 32px 24px;
  }
  .oh26-venue-content {
    padding: 32px 24px;
  }
  .oh26-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .oh26-footer-left {
    align-items: center;
  }
  .oh26-footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .oh26-social {
    justify-content: center;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  .oh26-badge,
  .oh26-hero-title,
  .oh26-hero-subtitle,
  .oh26-hero-info,
  .oh26-hero-countdown {
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ========== FOCUS ========== */
.oh26-btn:focus-visible,
.oh26-cta-btn:focus-visible,
.oh26-menu-link:focus-visible,
.oh26-footer-link:focus-visible,
.oh26-social-link:focus-visible,
.oh26-play:focus-visible {
  outline: 2px solid var(--oh26-accent);
  outline-offset: 3px;
}
