/* ==========================================================================
   Okenti — Corporate Website Styles
   Static site. No build step. Overrides Bootstrap 5 via CDN.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --okenti-navy: #06183F;
  --okenti-blue: #1769FF;
  --okenti-cyan: #22C7E8;
  --okenti-indigo: #5546E8;
  --okenti-light: #F5F8FC;
  --okenti-dark: #050B18;
  --okenti-white: #FFFFFF;
  --okenti-border: #E3EAF4;
  --okenti-text: #1C2B4A;
  --okenti-text-soft: #55627D;
  --okenti-radius: 14px;
  --okenti-shadow: 0 10px 30px rgba(6, 24, 63, 0.08);
  --okenti-shadow-lg: 0 20px 50px rgba(6, 24, 63, 0.14);
  --okenti-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* sticky navbar offset */
}

body {
  font-family: var(--okenti-font);
  color: var(--okenti-text);
  background-color: var(--okenti-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--okenti-navy);
}

p {
  color: var(--okenti-text-soft);
  line-height: 1.65;
}

a { text-decoration: none; }

::selection {
  background: var(--okenti-blue);
  color: #fff;
}

/* ---------- Shared helpers ---------- */
.okenti-text-gradient {
  background: linear-gradient(100deg, var(--okenti-blue) 0%, var(--okenti-indigo) 60%, var(--okenti-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.okenti-text-cyan {
  color: var(--okenti-cyan);
}

/* ---------- Buttons ---------- */
.okenti-btn-primary {
  --bs-btn-font-weight: 600;
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--okenti-blue);
  --bs-btn-border-color: var(--okenti-blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d56d6;
  --bs-btn-hover-border-color: #0d56d6;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0b4bbd;
  --bs-btn-active-border-color: #0b4bbd;
  --bs-btn-border-radius: 10px;
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-padding-y: 0.65rem;
  box-shadow: 0 8px 22px rgba(23, 105, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.okenti-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 105, 255, 0.36);
}

.okenti-btn-outline {
  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--okenti-navy);
  --bs-btn-border-color: #C7D4EA;
  --bs-btn-hover-color: var(--okenti-blue);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: var(--okenti-blue);
  --bs-btn-border-radius: 10px;
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-padding-y: 0.65rem;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.okenti-btn-outline:hover { transform: translateY(-2px); }

.okenti-btn-ghost {
  --bs-btn-font-weight: 600;
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.4);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.08);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-border-radius: 10px;
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-padding-y: 0.65rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.okenti-btn-ghost:hover { transform: translateY(-2px); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.okenti-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  padding: 0.85rem 0;
}

.okenti-navbar.scrolled {
  border-bottom-color: var(--okenti-border);
  box-shadow: 0 6px 24px rgba(6, 24, 63, 0.07);
}

.okenti-brand { padding: 0; }

.okenti-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* Text fallback shown by script.js only if a logo image fails to load */
.okenti-logo-fallback {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--okenti-navy);
  display: inline-flex;
  align-items: center;
  line-height: 36px;
}

.okenti-logo-fallback-dark { color: #fff; }

.okenti-nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--okenti-navy);
  padding: 0.55rem 0.95rem !important;
  position: relative;
}

.okenti-nav-link:hover,
.okenti-nav-link:focus {
  color: var(--okenti-blue);
}

.okenti-nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--okenti-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.okenti-nav-link:hover::after { transform: scaleX(1); }

.dropdown-toggle.okenti-nav-link::after { margin-left: 0.4rem; }

.okenti-nav-cta {
  padding: 0.55rem 1.35rem;
}

/* Dropdowns */
.okenti-dropdown {
  border: 1px solid var(--okenti-border);
  border-radius: 12px;
  box-shadow: var(--okenti-shadow-lg);
  padding: 0.5rem;
  margin-top: 0.6rem !important;
  --bs-dropdown-link-active-bg: var(--okenti-blue);
  --bs-dropdown-link-hover-bg: var(--okenti-light);
  --bs-dropdown-link-color: var(--okenti-navy);
  --bs-dropdown-link-hover-color: var(--okenti-blue);
}

.okenti-dropdown .dropdown-item {
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
}

.okenti-dropdown .dropdown-divider { margin: 0.35rem 0.6rem; }

.okenti-muted-item {
  color: var(--okenti-text-soft) !important;
  opacity: 0.75;
}

/* Toggler (custom hamburger) */
.okenti-toggler {
  border: 1px solid var(--okenti-border);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.okenti-toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--okenti-navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.okenti-toggler[aria-expanded="true"] .okenti-toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.okenti-toggler[aria-expanded="true"] .okenti-toggler-bar:nth-child(2) { opacity: 0; }
.okenti-toggler[aria-expanded="true"] .okenti-toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile collapse panel */
@media (max-width: 991.98px) {
  .okenti-nav-collapse {
    background: var(--okenti-white);
    border: 1px solid var(--okenti-border);
    border-radius: 14px;
    box-shadow: var(--okenti-shadow-lg);
    margin-top: 0.9rem;
    padding: 1rem;
  }

  .okenti-navbar .navbar-nav { width: 100%; }

  .okenti-nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.6rem;
  }

  .okenti-dropdown {
    margin-top: 0.2rem !important;
    box-shadow: none;
    border: none;
    background: var(--okenti-light);
    border-radius: 10px;
  }

  .okenti-nav-link::after { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.okenti-hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(23, 105, 255, 0.10), transparent 65%),
    radial-gradient(700px 420px at -10% 110%, rgba(85, 70, 232, 0.08), transparent 65%),
    var(--okenti-light);
  overflow: hidden;
}

.okenti-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--okenti-blue);
  background: rgba(23, 105, 255, 0.08);
  border: 1px solid rgba(23, 105, 255, 0.18);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.4rem;
}

.okenti-hero-title {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.3rem;
}

.okenti-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 34rem;
  color: var(--okenti-text-soft);
}

.okenti-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--okenti-text-soft);
}

.okenti-hero-meta .okenti-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--okenti-cyan);
  flex: 0 0 auto;
}

/* ---------- Hero visual (pure HTML/CSS) ---------- */
.okenti-hero-visual {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  background: linear-gradient(160deg, #ffffff 0%, #f0f5fd 100%);
  border: 1px solid var(--okenti-border);
  border-radius: 20px;
  box-shadow: var(--okenti-shadow-lg);
}

.ohv-layer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ohv-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 9px;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--okenti-border);
  background: #fff;
  color: var(--okenti-navy);
  box-shadow: 0 4px 12px rgba(6, 24, 63, 0.06);
}

.ohv-chip svg {
  width: 15px;
  height: 15px;
  color: var(--okenti-blue);
  flex: 0 0 auto;
}

.ohv-chip-system { animation: okenti-float 6s ease-in-out infinite; }
.ohv-chip-system:nth-child(2) { animation-delay: 0.6s; }
.ohv-chip-system:nth-child(3) { animation-delay: 1.2s; }
.ohv-chip-system:nth-child(4) { animation-delay: 1.8s; }

/* Connectors between layers */
.ohv-connectors {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  height: 30px;
  align-items: stretch;
  margin: 0.45rem 0;
}

.ohv-line {
  width: 2px;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--okenti-blue), var(--okenti-cyan));
  position: relative;
  overflow: hidden;
  opacity: 0.65;
}

.ohv-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, 0.85);
  animation: okenti-flow 2.6s linear infinite;
}

.ohv-line-single { height: 100%; }
.ohv-connectors-down .ohv-line { background: linear-gradient(180deg, var(--okenti-indigo), var(--okenti-blue)); }

/* Core node */
.ohv-core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.1rem 1rem;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  background: linear-gradient(120deg, var(--okenti-navy) 0%, var(--okenti-indigo) 70%, var(--okenti-blue) 120%);
  box-shadow: 0 14px 34px rgba(6, 24, 63, 0.35);
}

.ohv-core-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 2px solid rgba(23, 105, 255, 0.35);
  animation: okenti-pulse 2.8s ease-out infinite;
  pointer-events: none;
}

.ohv-chip-cap {
  color: #fff;
  background: linear-gradient(120deg, var(--okenti-blue), var(--okenti-indigo));
  border-color: transparent;
  animation: okenti-float 5s ease-in-out infinite;
}
.ohv-chip-cap:nth-child(2) { animation-delay: 0.4s; }
.ohv-chip-cap:nth-child(3) { animation-delay: 0.8s; }
.ohv-chip-cap:nth-child(4) { animation-delay: 1.2s; }

/* Outcome */
.ohv-outcome {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--okenti-navy);
  background: rgba(34, 199, 232, 0.12);
  border: 1px solid rgba(34, 199, 232, 0.45);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
}

.ohv-outcome svg { width: 16px; height: 16px; color: #0e9dbd; }

@keyframes okenti-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes okenti-pulse {
  0% { transform: scale(0.98); opacity: 0.9; }
  70% { transform: scale(1.04); opacity: 0; }
  100% { transform: scale(1.04); opacity: 0; }
}

@keyframes okenti-flow {
  0% { top: -40%; }
  100% { top: 110%; }
}

/* Hero visual responsive safety */
@media (max-width: 575.98px) {
  .okenti-hero-visual { padding: 1.5rem 0.9rem; }
  .ohv-connectors { gap: 1.1rem; height: 24px; }
  .ohv-chip { font-size: 0.72rem; padding: 0.42rem 0.6rem; }
  .ohv-capabilities { gap: 0.35rem; }
}

/* ==========================================================================
   SECTIONS (generic)
   ========================================================================== */
.okenti-section { padding: 5.5rem 0; }

.okenti-section-light { background: var(--okenti-light); }

.okenti-section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.okenti-section-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 44rem;
  margin: 1.1rem auto 0;
}

/* ---------- Cards (Section 3) ---------- */
.okenti-card {
  background: #fff;
  border: 1px solid var(--okenti-border);
  border-radius: var(--okenti-radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--okenti-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.okenti-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--okenti-shadow-lg);
  border-color: rgba(23, 105, 255, 0.35);
}

.okenti-card h3 {
  font-size: 1.12rem;
  margin: 1.1rem 0 0.55rem;
}

.okenti-card p { font-size: 0.94rem; margin: 0; }

.okenti-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--okenti-blue);
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.10), rgba(85, 70, 232, 0.10));
  border: 1px solid rgba(23, 105, 255, 0.16);
  flex: 0 0 auto;
}

.okenti-icon svg { width: 22px; height: 22px; }

.okenti-icon-navy {
  color: var(--okenti-navy);
  background: rgba(6, 24, 63, 0.06);
  border-color: rgba(6, 24, 63, 0.12);
}

/* ---------- Bridge statement (Section 2) ---------- */
.okenti-bridge {
  background: linear-gradient(120deg, var(--okenti-navy), var(--okenti-indigo));
  border-radius: var(--okenti-radius);
  padding: 2rem 2.2rem;
  text-align: center;
  box-shadow: var(--okenti-shadow-lg);
}

.okenti-bridge p {
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ---------- Dark sections (4 & 9) ---------- */
.okenti-section-dark {
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(85, 70, 232, 0.25), transparent 60%),
    radial-gradient(800px 400px at 90% 100%, rgba(23, 105, 255, 0.18), transparent 60%),
    var(--okenti-dark);
  color: #fff;
}

.okenti-section-title-dark { color: #fff; }

.okenti-section-sub-dark { color: rgba(255, 255, 255, 0.72); }

/* Agent cards */
.okenti-agent-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--okenti-radius);
  padding: 2.1rem 1.8rem;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.okenti-agent-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 199, 232, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.okenti-agent-card h3 { color: #fff; font-size: 1.2rem; margin: 1.2rem 0 0.6rem; }

.okenti-agent-card p { color: rgba(255, 255, 255, 0.68); font-size: 0.96rem; margin: 0; }

.okenti-agent-badge {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--okenti-cyan);
  background: rgba(34, 199, 232, 0.10);
  border: 1px solid rgba(34, 199, 232, 0.28);
}

.okenti-agent-badge svg { width: 23px; height: 23px; }

.okenti-agents-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 2.2rem;
}

/* ---------- Capabilities grid (Section 5) ---------- */
.okenti-cap {
  background: #fff;
  border: 1px solid var(--okenti-border);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  height: 100%;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.okenti-cap:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 105, 255, 0.35);
  box-shadow: var(--okenti-shadow);
}

.okenti-cap h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.okenti-cap h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--okenti-blue), var(--okenti-cyan));
  flex: 0 0 auto;
}

.okenti-cap p { font-size: 0.88rem; margin: 0; }

/* ---------- Industry cards (Section 6) ---------- */
.okenti-card-industry { display: flex; flex-direction: column; }

.okenti-card-industry p { flex: 1 1 auto; }

.okenti-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--okenti-blue);
}

.okenti-card-link:hover { color: #0d56d6; }

.okenti-card-more {
  background: linear-gradient(160deg, #fff, var(--okenti-light));
  border-style: dashed;
}

/* ---------- Timeline (Section 7) ---------- */
.okenti-timeline { position: relative; }

.okenti-timeline-track {
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--okenti-blue), var(--okenti-indigo), var(--okenti-cyan));
  border-radius: 2px;
  opacity: 0.35;
}

.okenti-step { text-align: center; padding: 0 0.5rem; position: relative; }

.okenti-step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--okenti-blue);
  margin: 1.1rem auto;
  box-shadow: 0 0 0 5px rgba(23, 105, 255, 0.12);
}

.okenti-step-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--okenti-blue);
  background: rgba(23, 105, 255, 0.08);
  border: 1px solid rgba(23, 105, 255, 0.18);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}

.okenti-step h3 { font-size: 1.1rem; margin: 0.4rem 0 0.5rem; }

.okenti-step p { font-size: 0.9rem; margin: 0; }

/* Mobile: vertical timeline */
@media (max-width: 767.98px) {
  .okenti-timeline { padding-left: 2.2rem; }

  .okenti-timeline .row > [class*="col-"] { margin-bottom: 0.25rem; }

  .okenti-timeline-track {
    top: 4%;
    bottom: 4%;
    left: 10px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--okenti-blue), var(--okenti-cyan));
  }

  .okenti-step { text-align: left; position: relative; }

  .okenti-step-dot {
    position: absolute;
    left: -2.05rem;
    top: 0.25rem;
    margin: 0;
  }
}

/* ---------- Features (Section 8) ---------- */
.okenti-feature {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--okenti-border);
  border-radius: var(--okenti-radius);
  padding: 1.9rem 1.8rem;
  height: 100%;
  box-shadow: var(--okenti-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.okenti-feature:hover { transform: translateY(-5px); box-shadow: var(--okenti-shadow-lg); }

.okenti-feature-num {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--okenti-blue), var(--okenti-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  flex: 0 0 auto;
}

.okenti-feature h3 { font-size: 1.12rem; margin: 0 0 0.5rem; }

.okenti-feature p { font-size: 0.94rem; margin: 0; }

/* ---------- Platform / product cards (Section 9) ---------- */
.okenti-section-platform {
  background:
    radial-gradient(800px 420px at 85% 10%, rgba(85, 70, 232, 0.22), transparent 60%),
    var(--okenti-dark);
  color: #fff;
}

.okenti-product-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--okenti-radius);
  padding: 2rem 1.6rem;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.okenti-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 199, 232, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.okenti-product-card h3 { color: #fff; font-size: 1.12rem; margin: 1.15rem 0 0.5rem; }

.okenti-product-card p { color: rgba(255, 255, 255, 0.68); font-size: 0.92rem; margin: 0 0 1.2rem; }

.okenti-product-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--okenti-cyan);
  background: rgba(34, 199, 232, 0.10);
  border: 1px solid rgba(34, 199, 232, 0.28);
}

.okenti-product-badge svg { width: 24px; height: 24px; }

.okenti-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.32rem 0.9rem;
}

.okenti-status-live {
  color: var(--okenti-cyan);
  border-color: rgba(34, 199, 232, 0.5);
  background: rgba(34, 199, 232, 0.10);
}

/* ---------- Final CTA ---------- */
.okenti-cta {
  background:
    radial-gradient(700px 380px at 80% 0%, rgba(85, 70, 232, 0.28), transparent 60%),
    radial-gradient(700px 380px at 15% 100%, rgba(23, 105, 255, 0.22), transparent 60%),
    var(--okenti-navy);
  color: #fff;
  text-align: center;
  padding: 6.5rem 0;
}

.okenti-cta-logo { height: 40px; width: auto; }

.okenti-cta-title {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.okenti-cta-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin: 1rem auto 0;
  max-width: 30rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.okenti-footer {
  background: var(--okenti-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.okenti-footer-logo { height: 34px; width: auto; }

.okenti-footer-tag {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  max-width: 22rem;
}

.okenti-footer h4 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.okenti-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.okenti-footer-links li { margin-bottom: 0.65rem; }

.okenti-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.okenti-footer-links a:hover { color: var(--okenti-cyan); }

.okenti-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.okenti-footer-bottom p { color: inherit; margin: 0; }

.okenti-footer-legal { list-style: none; padding: 0; margin: 0; }

.okenti-footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.okenti-footer-legal a:hover { color: var(--okenti-cyan); }

/* ==========================================================================
   REVEAL ANIMATION (IntersectionObserver in script.js)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ohv-chip, .ohv-core-pulse, .ohv-line::after { animation: none; }
  .okenti-card, .okenti-agent-card, .okenti-feature,
  .okenti-product-card, .okenti-cap, .okenti-btn-primary,
  .okenti-btn-outline, .okenti-btn-ghost { transition: none; }
}

/* ==========================================================================
   RESPONSIVE FINE-TUNING
   ========================================================================== */
@media (max-width: 991.98px) {
  .okenti-hero { padding: 4rem 0; }
  .okenti-section { padding: 4.2rem 0; }
  .okenti-hero-visual { margin-top: 1rem; }
}

@media (max-width: 575.98px) {
  .okenti-hero { padding: 3rem 0 3.5rem; }
  .okenti-hero-title { font-size: 2.05rem; }
  .okenti-section { padding: 3.4rem 0; }
  .okenti-section-title { font-size: 1.65rem; }
  .okenti-bridge { padding: 1.5rem 1.2rem; }
  .okenti-feature { padding: 1.5rem 1.3rem; gap: 1rem; }
  .okenti-card, .okenti-agent-card, .okenti-product-card { padding: 1.5rem 1.3rem; }
  .okenti-cta { padding: 4.5rem 0; }
  .okenti-timeline { padding-left: 2rem; }
  .okenti-step-dot { left: -1.95rem; }
}

/* Ensure buttons never break layout on tiny screens */
@media (max-width: 374.98px) {
  .okenti-hero .d-flex { flex-direction: column; align-items: stretch; }
  .okenti-hero .btn { width: 100%; }
}
