:root {
    --primary: #00f2ff;
    --secondary: #7000ff;
    --accent: #ff00e5;
    --bg-main: #03000a;
    --surface: #0a0a0f;
    --surface-elevated: #14141d;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);
    --font-main: "Inter", system-ui, sans-serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --neon-flow: linear-gradient(90deg, #00f2ff, #7000ff, #ff00e5);
    --button-gradient: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%)
}

.site-body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em
}

.text-muted {
    color: var(--text-muted) !important
}

.g-glow-border {
    border: 1px solid transparent;
    background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--neon-flow) border-box
}

.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%
}

.blog-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.blog-card .card-body .flex-grow-1 {
    flex-grow: 1
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--bg-main)
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px
}

/* ===== header ===== */
.orbit-header-block {
    background-color: #03000a !important;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(112, 0, 255, 0.3);
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.orbit-header-block .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.5));
}

.orbit-header-block .brand-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

.orbit-header-block .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.orbit-header-block .nav-link:hover,
.orbit-header-block .nav-link:focus {
    color: #00f2ff;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
}

.orbit-header-block .dropdown-menu {
    background-color: #0a0a0f;
    border: 1px solid rgba(112, 0, 255, 0.5);
    border-radius: 12px;
    padding: 0.75rem;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.orbit-header-block .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.orbit-header-block .dropdown-item:hover {
    background-color: rgba(112, 0, 255, 0.2);
    color: #ffffff;
    transform: translateX(5px);
}

.orbit-header-block .contact-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
}

.orbit-header-block .contact-link:hover {
    opacity: 0.8;
}

.orbit-header-block .text-primary {
    color: #00f2ff !important;
}

.orbit-header-block .text-accent {
    color: #ff00e5 !important;
}

.orbit-header-block .custom-toggler {
    border: none;
    color: #00f2ff;
    font-size: 1.5rem;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
}

@media (max-width: 991.98px) {
    .orbit-header-block .navbar-collapse {
        background-color: #03000a;
        margin: 1rem -1rem -1rem -1rem;
        padding: 1.5rem;
        border-top: 1px solid rgba(112, 0, 255, 0.2);
    }

    .orbit-header-block .nav-link {
        font-size: 0.8rem;
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .orbit-header-block .dropdown-menu {
        background-color: #14141d;
        border: none;
        margin-top: 0;
        padding-left: 1rem;
    }

    .orbit-header-block .header-contacts {
        padding-top: 1rem;
    }
}

/* ===== hero ===== */
.orbit-hero {
    position: relative;
    background-color: #03000a;
    padding: clamp(5rem, 15vh, 10rem) 0;
    overflow: hidden;
    color: #ffffff;
}

.orbit-hero-ambient-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.orbit-hero .hero-display-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.orbit-hero .text-gradient-neon {
    background: linear-gradient(90deg, #00f2ff, #7000ff, #ff00e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orbit-hero .hero-lead-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
}

.orbit-hero .btn-orbit-primary {
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 500px;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.orbit-hero .btn-orbit-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 242, 255, 0.5);
    color: #ffffff;
}

.orbit-hero .btn-orbit-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(0, 242, 255, 0.4);
    border-radius: 500px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.orbit-hero .btn-orbit-outline:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: #00f2ff;
    color: #ffffff;
}

.orbit-hero .hero-visual-stack {
    position: relative;
    z-index: 1;
}

.orbit-hero .orbit-hero-image {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.orbit-hero .hero-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.1), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .orbit-hero {
        padding: 4rem 0;
        text-align: center;
    }

    .orbit-hero .hero-lead-text {
        margin-left: auto;
        margin-right: auto;
    }

    .orbit-hero .hero-button-group {
        align-items: center;
    }
}

/* ===== subheadline ===== */
#orbit-design-ledger-info {
    background-color: #03000a;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

#orbit-design-ledger-info .orbit-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
}

#orbit-design-ledger-info .text-primary-glow {
    color: #00f2ff;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

#orbit-design-ledger-info .text-warning-glow {
    color: #ffbd00;
}

#orbit-design-ledger-info .orbit-text-secondary {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

#orbit-design-ledger-info .orbit-text-muted {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
}

#orbit-design-ledger-info .orbit-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid rgba(112, 0, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7000ff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

#orbit-design-ledger-info .orbit-disclaimer-card {
    background: #0a0a0f;
    border-left: 4px solid #7000ff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#orbit-design-ledger-info .orbit-btn-primary {
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

#orbit-design-ledger-info .orbit-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
    opacity: 0.95;
}

#orbit-design-ledger-info .orbit-image-glow-wrapper {
    position: relative;
    z-index: 1;
}

#orbit-design-ledger-info .orbit-image-glow-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.2) 0%, transparent 70%);
    z-index: -1;
}

#orbit-design-ledger-info .orbit-main-img {
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    min-height: 400px;
    width: 100%;
}

@media (max-width: 768px) {
    #orbit-design-ledger-info .display-5 {
        font-size: 1.75rem;
    }

    #orbit-design-ledger-info .orbit-btn-primary {
        width: 100%;
        text-align: center;
    }

    #orbit-design-ledger-info .orbit-image-container {
        padding-left: 0 !important;
        margin-top: 3rem;
    }
}

/* ===== features ===== */
.orbit-features {
    background-color: #03000a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.orbit-features .orbit-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.orbit-features .orbit-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
}

.orbit-features .orbit-feature-card {
    background: rgba(20, 20, 29, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.orbit-features .orbit-feature-card:hover {
    transform: translateY(-8px);
    border-color: #00f2ff;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.orbit-features .orbit-card-img-wrapper {
    height: 180px;
    width: 100%;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.orbit-features .orbit-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.orbit-features .orbit-feature-card:hover .orbit-card-img {
    transform: scale(1.1);
}

.orbit-features .orbit-card-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #00f2ff;
    margin-bottom: 1rem;
}

.orbit-features .orbit-card-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.orbit-features .orbit-card-link {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.orbit-features .orbit-card-link:hover {
    color: #ff00e5;
}

.orbit-features .orbit-btn-primary {
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    color: #ffffff;
    border-radius: 500px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-features .orbit-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(112, 0, 255, 0.5);
    color: #ffffff;
}

@media (max-width: 767px) {
    .orbit-features .orbit-title {
        font-size: 1.5rem;
    }

    .orbit-features .orbit-card-img-wrapper {
        height: 150px;
    }
}

/* ===== cta-section ===== */
.orbit-cta {
    background-color: #03000a;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.orbit-cta-glow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.orbit-cta-card {
    background: rgba(20, 20, 29, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 255, 0.1) !important;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.05);
    position: relative;
}

.orbit-cta-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    color: #ffffff;
    line-height: 1.2;
    max-width: 800px;
}

.orbit-cta-text {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 650px;
    line-height: 1.6;
}

.orbit-cta-btn {
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 500px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.orbit-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 242, 255, 0.5);
    color: #ffffff;
}

.orbit-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.3), rgba(112, 0, 255, 0.3));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@media (max-width: 767px) {
    .orbit-cta-title {
        font-size: 1.5rem;
    }

    .orbit-cta-text {
        font-size: 0.95rem;
    }

    .orbit-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== footer ===== */
.orbit-footer {
    background-color: #03000a;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
}

.orbit-footer-notice {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid transparent;
    border-radius: 12px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(#0a0a0f, #0a0a0f), linear-gradient(135deg, #00f2ff, #7000ff);
    position: relative;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.05);
}

.orbit-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.orbit-footer-link:hover {
    color: #00f2ff;
    transform: translateX(5px);
}

.orbit-footer-copyright {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 767px) {
    .orbit-footer-link {
        font-size: 0.875rem;
    }

    .orbit-footer-title {
        font-size: 1rem !important;
    }

    .orbit-footer-notice {
        padding: 1.25rem !important;
    }
}

/* ===== PAGE: brand ===== */
.brand-details-section {
  background-color: #03000a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.brand-details-section .brand-details-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, #00f2ff, #7000ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-details-section .icon-wrapper {
  background: rgba(0, 242, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(0, 242, 255, 0.2);
  color: #00f2ff;
  flex-shrink: 0;
}

.brand-details-section .glow-border {
  border: 1px solid rgba(112, 0, 255, 0.3);
  box-shadow: 0 0 20px rgba(112, 0, 255, 0.1);
}

.brand-details-section .use-case-card {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.brand-details-section .use-case-card:hover {
  border-color: #00f2ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.brand-details-section .text-accent {
  color: #ff00e5;
}

.brand-details-section .limitations-box {
  background: radial-gradient(circle at top left, rgba(112, 0, 255, 0.1), #14141d);
  border: 1px solid rgba(112, 0, 255, 0.2);
}

.brand-details-section .limitations-list li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.brand-details-section .x-small {
  font-size: 0.75rem;
  line-height: 1.6;
}

.brand-details-section .section-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== PAGE: ledger-tools ===== */
.ledger-tools-intro h2 {
  background: linear-gradient(90deg, #00f2ff, #7000ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.ledger-tools-grid .tool-card {
  background: #0a0a0f;
  border: 1px solid rgba(112, 0, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.ledger-tools-grid .tool-card:hover {
  transform: translateY(-8px);
  border-color: #00f2ff;
  box-shadow: 0 12px 30px rgba(0, 242, 255, 0.15);
}

.ledger-tools-grid .card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.ledger-tools-grid .card-img-top {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ledger-tools-grid .tool-card:hover .card-img-top {
  transform: scale(1.1);
}

.ledger-tools-grid .tariff-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(3, 0, 10, 0.8);
  color: #00ff9d;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #00ff9d;
  backdrop-filter: blur(4px);
}

.ledger-tools-grid .btn-glow-primary {
  background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
  border: none;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  transition: box-shadow 0.3s ease;
}

.ledger-tools-grid .btn-glow-primary:hover {
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
  color: white;
}

.ledger-tools-grid .btn-outline-glow {
  background: transparent;
  border: 1px solid #7000ff;
  color: #7000ff;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ledger-tools-grid .btn-outline-glow:hover {
  background: rgba(112, 0, 255, 0.1);
  color: #00f2ff;
  border-color: #00f2ff;
}

.ledger-tools-grid #js-tool-search:focus {
  box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
  border-color: #00f2ff;
}

.ledger-tools-grid .btn-outline-info {
  color: #00f2ff;
  border-color: #00f2ff;
}

.ledger-tools-grid .btn-outline-info.active,
.ledger-tools-grid .btn-outline-info:hover {
  background-color: #00f2ff;
  color: #03000a;
}

/* ===== PAGE: implementation-scenarios ===== */
.scenarios-block {
  background-color: #03000a;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
}

.scenarios-block .breadcrumb-item a {
  color: #00f2ff;
  font-weight: 500;
}

.scenarios-block .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.45);
}

.scenarios-block .glow-text {
  background: linear-gradient(90deg, #ffffff, #00f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scenarios-block .search-wrapper {
  position: relative;
  background: #0a0a0f;
  border-radius: 50px;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.scenarios-block .search-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #00f2ff;
}

.scenarios-block .js-scenario-search {
  background: transparent;
  border: none;
  color: white;
  padding-left: 3.5rem;
  border-radius: 50px;
  height: 50px;
}

.scenarios-block .js-scenario-search::placeholder {
  color: #ffffff;
  opacity: 1;
}

.scenarios-block .scenario-card-item {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.scenarios-block .scenario-card-item:hover {
  transform: translateY(-10px);
  border-color: #00f2ff;
  box-shadow: 0 15px 40px rgba(0, 242, 255, 0.1);
}

.scenarios-block .card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.scenarios-block .card-img-top {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.scenarios-block .scenario-card-item:hover .card-img-top {
  transform: scale(1.1);
}

.scenarios-block .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(3, 0, 10, 0.8));
}

.scenarios-block .category-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(112, 0, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #7000ff;
  border: 1px solid rgba(112, 0, 255, 0.4);
  padding: 0.5rem 1.25rem;
  font-weight: 600;
}

.scenarios-block .consultation-box {
  background: #14141d;
  border: 1px solid rgba(0, 242, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.05);
}

.scenarios-block .btn-primary {
  background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.scenarios-block .btn-primary:hover {
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
  transform: scale(1.02);
}

.scenarios-block .max-width-600 {
  max-width: 600px;
}

.scenarios-block .max-width-700 {
  max-width: 700px;
}

@media (max-width: 768px) {
  .scenarios-block .display-3 {
    font-size: 2.25rem;
  }
  .scenarios-block .card-img-wrapper {
    height: 180px;
  }
}

/* ===== PAGE: design-blog ===== */
.design-blog-module {
  background-color: #03000a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.design-blog-module .gradient-text {
  background: linear-gradient(90deg, #00f2ff, #7000ff, #ff00e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.design-blog-module .bg-surface {
  background-color: #0a0a0f !important;
}

.design-blog-module .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
}

.design-blog-module .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.design-blog-module .breadcrumb-item a:hover {
  color: #00f2ff;
}

.design-blog-module .search-wrapper input {
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: 50px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.design-blog-module .search-wrapper input:focus {
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
  border-color: #00f2ff;
  outline: none;
}

.design-blog-module .blog-card {
  background: rgba(20, 20, 29, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important
}

.design-blog-module .blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.design-blog-module .card-body {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important
}

.design-blog-module .card-body .flex-grow-1 {
  flex-grow: 1 !important
}

.design-blog-module .blog-list-container {
  padding-left: 48px;
  padding-right: 32px
}

@media (max-width: 991px) {
  .design-blog-module .blog-list-container {
    padding-left: 32px;
    padding-right: 24px
  }
}

@media (max-width: 575px) {
  .design-blog-module .blog-list-container {
    padding-left: 24px;
    padding-right: 16px
  }
}

.design-blog-module .card-body {
  padding: 1.5rem !important
}

.design-blog-module .card-img-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.design-blog-module .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.design-blog-module .blog-card:hover .card-img-top {
  transform: scale(1.05);
}

.design-blog-module .btn-neon {
  background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.design-blog-module .btn-neon:hover {
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

.design-blog-module .btn-outline-share {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #ffffff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.design-blog-module .btn-outline-share:hover {
  border-color: #00f2ff;
  color: #00f2ff;
  background: rgba(0, 242, 255, 0.05);
}

.design-blog-module h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (max-width: 768px) {
  .design-blog-module .display-4 {
    font-size: 2rem;
  }
  .design-blog-module .lead {
    font-size: 1rem;
  }
}

/* ===== PAGE: help-info ===== */
.help-intro-section {
  padding: clamp(4rem, 10vh, 6rem) 0 2rem;
  background: radial-gradient(circle at top center, rgba(112, 0, 255, 0.15), transparent 70%);
}

.help-intro-section .badge {
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  border: 1px solid rgba(0, 242, 255, 0.3);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.help-intro-section .help-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  line-height: 1.1;
}

.help-intro-section .help-lead-text {
  font-size: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.7) !important;
}

.help-intro-section .search-container {
  max-width: 600px;
}

.help-intro-section .input-group {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 5px;
  transition: all 0.3s ease;
}

.help-intro-section .input-group:focus-within {
  border-color: #00f2ff;
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.help-intro-section .input-group-text {
  background: transparent;
  border: none;
  color: #00f2ff;
  padding-left: 1.5rem;
}

.help-intro-section .form-control {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 12px 15px;
  box-shadow: none;
}

.help-intro-section .form-control::placeholder {
  color: #ffffff;
  opacity: 1;
}

.help-list-section {
  background: #03000a;
}

.help-list-section .help-card {
  height: 100%;
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.help-list-section .card-link-wrapper {
  text-decoration: none;
  display: block;
  height: 100%;
}

.help-list-section .help-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 255, 0.4);
  box-shadow: 0 12px 30px rgba(0, 242, 255, 0.15);
}

.help-list-section .card-img-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.help-list-section .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.help-list-section .help-card:hover .card-img-top {
  transform: scale(1.05);
}

.help-list-section .card-overlay-glow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(3, 0, 10, 0.8));
}

.help-list-section .card-body-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.help-list-section .card-category {
  color: #7000ff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.help-list-section .card-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.help-list-section .card-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.help-list-section .card-footer-action {
  margin-top: auto;
}

.help-list-section .read-more-btn {
  color: #00f2ff;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease;
}

.help-list-section .help-card:hover .read-more-btn {
  gap: 0.75rem;
}

.help-list-section .contact-cta-block {
  padding-top: 4rem;
}

.help-list-section .cta-glow-box {
  background: #14141d;
  border: 1px solid rgba(112, 0, 255, 0.3);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(112, 0, 255, 0.1);
}

.help-list-section .cta-glow-box h2 {
  color: #ffffff;
  font-weight: 700;
}

.help-list-section .cta-glow-box p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.help-list-section .btn-glow-primary {
  background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 500px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.help-list-section .btn-glow-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
  color: #ffffff;
}

/* ===== PAGE: contact ===== */
.contact-details-section {
  padding: clamp(4rem, 10vh, 10rem) 0;
  background-color: #03000a;
  position: relative;
  overflow: hidden;
}
.contact-details-section .contact-title {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}
.contact-details-section .contact-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.6;
}
.contact-details-section .contact-card {
  background: rgba(20, 20, 29, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 242, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.contact-details-section .contact-card:hover {
  transform: translateY(-10px);
  border-color: #00f2ff;
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
}
.contact-details-section .contact-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(112, 0, 255, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.75rem;
  color: #00f2ff;
  border: 1px solid rgba(0, 242, 255, 0.2);
}
.contact-details-section h3 {
  color: #ffffff;
  font-weight: 700;
}
.contact-details-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.contact-details-section .contact-btn {
  background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 500px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}
.contact-details-section .contact-btn:hover {
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
  transform: scale(1.02);
  color: #ffffff;
}
.contact-details-section .office-badge {
  background: rgba(112, 0, 255, 0.1);
  color: #7000ff;
  border: 1px solid rgba(112, 0, 255, 0.3);
  padding: 0.6em 1.2em;
  border-radius: 50px;
  font-weight: 600;
}
.contact-details-section .contact-banner {
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* ===== PAGE: privacy ===== */
.privacy-content-section {
  background-color: #03000a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.privacy-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(112, 0, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.privacy-content-section .privacy-card {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 242, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.privacy-content-section .badge-update {
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(0, 242, 255, 0.3);
}

.privacy-content-section .status-indicator {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.privacy-content-section .status-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff9d;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff9d;
}

.privacy-content-section .policy-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.privacy-content-section .policy-subheading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #00f2ff;
  font-size: 1.25rem;
}

.privacy-content-section .policy-text {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.privacy-content-section .policy-list {
  list-style: none;
  padding-left: 0;
}

.privacy-content-section .policy-list li {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
}

.privacy-content-section .text-accent {
  color: #7000ff;
}

.privacy-content-section .contact-notice {
  background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), rgba(255, 0, 229, 0.05));
  border: 1px dashed rgba(0, 242, 255, 0.3);
}

@media (max-width: 768px) {
  .privacy-content-section .policy-heading {
    font-size: 1.25rem;
  }
  .privacy-content-section .policy-subheading {
    font-size: 1.1rem;
  }
  .privacy-content-section .policy-text {
    font-size: 1rem;
  }
}

/* ===== PAGE: terms ===== */
.terms-content {
  background-color: #03000a;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.terms-content h2, .terms-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.terms-intro-card {
  background: #0a0a0f;
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.terms-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(112, 0, 255, 0.1), transparent);
  pointer-events: none;
}

.terms-feature-card {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.terms-feature-card:hover {
  border-color: rgba(0, 242, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.05);
}

.terms-restriction-card {
  background: #14141d;
  border: 1px solid rgba(112, 0, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(112, 0, 255, 0.1);
}

.restriction-item {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #7000ff;
}

.text-primary {
  color: #00f2ff !important;
}

.text-accent {
  color: #ff00e5 !important;
}

.text-secondary {
  color: rgba(255, 255, 255, 0.7) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
  color: #ffffff;
}

.btn-outline-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: transparent;
}

.btn-outline-secondary:hover {
  border-color: #00f2ff;
  color: #00f2ff;
  background: rgba(0, 242, 255, 0.05);
}

@media (max-width: 768px) {
  .terms-content h2 { font-size: 1.5rem; }
  .terms-content h3 { font-size: 1.25rem; }
  .terms-intro-card, .terms-restriction-card {
    border-radius: 16px;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content {
  background-color: #03000a;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

.disclaimer-content .disclaimer-card {
  background: #0a0a0f;
  border: 1px solid rgba(0, 242, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.disclaimer-content .disclaimer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f2ff, #7000ff, #ff00e5);
}

.disclaimer-content .disclaimer-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.disclaimer-content .disclaimer-badge {
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 242, 255, 0.2);
}

.disclaimer-content .disclaimer-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #00f2ff;
  letter-spacing: -0.02em;
}

.disclaimer-content .disclaimer-text {
  line-height: 1.8;
  font-size: 1.1rem;
}

.disclaimer-content .disclaimer-text strong {
  color: #ffffff;
}

.disclaimer-content .alert-box {
  background: rgba(112, 0, 255, 0.05);
  border-left: 4px solid #7000ff;
  border-radius: 4px 12px 12px 4px;
  color: rgba(255, 255, 255, 0.9);
}

.disclaimer-content .accent-text {
  color: #ff00e5;
}

.disclaimer-content .btn-disclaimer-action {
  background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 500px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
  border: none;
}

.disclaimer-content .btn-disclaimer-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 242, 255, 0.5);
  color: #ffffff;
}

@media (max-width: 768px) {
  .disclaimer-content .disclaimer-card {
    padding: 2rem 1.5rem !important;
  }
  .disclaimer-content .disclaimer-section-title {
    font-size: 1.15rem;
  }
  .disclaimer-content .disclaimer-text {
    font-size: 1rem;
  }
}

.od-comment-card {
    background: #0a0a0f;
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.od-comment-card:hover {
    border-color: #00f2ff;
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.od-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #7000ff;
}

.od-user-name {
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.od-user-role {
    color: #00f2ff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.od-checkpoint-badge {
    background: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    border: 1px solid rgba(0, 255, 157, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.od-comment-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

.od-btn-action {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    transition: color 0.2s;
    padding: 0;
}

.od-btn-action:hover {
    color: #00f2ff;
}

.od-timestamp {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
}

.od-reply-wrapper {
    border-color: rgba(112, 0, 255, 0.2) !important;
}

.od-reply-card {
    background: rgba(20, 20, 29, 0.5);
    border-radius: 12px;
    padding: 1.25rem;
    border-left: 3px solid #7000ff;
}

.od-avatar-reply {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ff00e5;
}

.od-reply-author {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.od-reply-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    font-style: italic;
}

.od-reply-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
}


/* ===== PAGE TEMPLATE: ledger-tools ===== */
.orbit-detail-page {
    background-color: #03000a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.orbit-detail-hero {
    background: radial-gradient(circle at top left, rgba(112, 0, 255, 0.15), transparent);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.orbit-detail-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

.orbit-detail-hero a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.orbit-detail-hero a:hover {
    color: #00f2ff;
}

.orbit-featured-image-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.orbit-featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.orbit-article-body p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.orbit-spec-list li {
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
}

.orbit-sidebar-card {
    background-color: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.hover-primary:hover {
    color: #00f2ff !important;
}

.bg-surface {
    background-color: #0a0a0f !important;
}

.orbit-form .form-control {
    background-color: #14141d;
    border: 1px solid rgba(112, 0, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
}

.orbit-form .form-control:focus {
    border-color: #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    background-color: #1a1a25;
}

.orbit-btn-submit {
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    border: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.4);
}


.od-comment-card {
    background: rgba(20, 20, 29, 0.5);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.od-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #7000ff;
}

.od-user-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.od-user-role {
    color: #00f2ff;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.od-checkpoint-badge {
    background: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

.od-comment-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.od-btn-action {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.od-btn-action:hover {
    color: #ff00e5;
}

.od-timestamp {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.od-reply-wrapper {
    margin-left: 3rem;
    border-left: 2px solid rgba(112, 0, 255, 0.2);
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .orbit-featured-img {
        height: 250px;
    }

    .od-reply-wrapper {
        margin-left: 1rem;
        padding-left: 1rem;
    }

    .orbit-h1 {
        font-size: 1.8rem;
    }
}

/* ===== PAGE TEMPLATE: implementation-scenarios ===== */
.orbit-detail-page {
    background-color: #03000a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.orbit-detail-hero {
    background: radial-gradient(circle at top left, rgba(112, 0, 255, 0.15), transparent);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.orbit-detail-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

.orbit-detail-hero a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.orbit-detail-hero a:hover {
    color: #00f2ff;
}

.orbit-featured-image-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.orbit-featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.orbit-article-body p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.orbit-spec-list li {
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
}

.orbit-sidebar-card {
    background-color: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.hover-primary:hover {
    color: #00f2ff !important;
}

.bg-surface {
    background-color: #0a0a0f !important;
}

.orbit-form .form-control {
    background-color: #14141d;
    border: 1px solid rgba(112, 0, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
}

.orbit-form .form-control:focus {
    border-color: #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    background-color: #1a1a25;
}

.orbit-btn-submit {
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    border: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.4);
}


.od-comment-card {
    background: rgba(20, 20, 29, 0.5);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.od-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #7000ff;
}

.od-user-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.od-user-role {
    color: #00f2ff;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.od-checkpoint-badge {
    background: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

.od-comment-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.od-btn-action {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.od-btn-action:hover {
    color: #ff00e5;
}

.od-timestamp {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.od-reply-wrapper {
    margin-left: 3rem;
    border-left: 2px solid rgba(112, 0, 255, 0.2);
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .orbit-featured-img {
        height: 250px;
    }

    .od-reply-wrapper {
        margin-left: 1rem;
        padding-left: 1rem;
    }

    .orbit-h1 {
        font-size: 1.8rem;
    }
}

/* ===== PAGE TEMPLATE: design-blog ===== */
.orbit-detail-page {
    background-color: #03000a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.orbit-detail-hero {
    background: radial-gradient(circle at top left, rgba(112, 0, 255, 0.15), transparent);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.orbit-detail-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

.orbit-detail-hero a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.orbit-detail-hero a:hover {
    color: #00f2ff;
}

.orbit-featured-image-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.orbit-featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.orbit-article-body p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.orbit-spec-list li {
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
}

.orbit-sidebar-card {
    background-color: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.hover-primary:hover {
    color: #00f2ff !important;
}

.bg-surface {
    background-color: #0a0a0f !important;
}

.orbit-form .form-control {
    background-color: #14141d;
    border: 1px solid rgba(112, 0, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
}

.orbit-form .form-control:focus {
    border-color: #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    background-color: #1a1a25;
}

.orbit-btn-submit {
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    border: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.4);
}


.od-comment-card {
    background: rgba(20, 20, 29, 0.5);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.od-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #7000ff;
}

.od-user-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.od-user-role {
    color: #00f2ff;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.od-checkpoint-badge {
    background: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

.od-comment-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.od-btn-action {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.od-btn-action:hover {
    color: #ff00e5;
}

.od-timestamp {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.od-reply-wrapper {
    margin-left: 3rem;
    border-left: 2px solid rgba(112, 0, 255, 0.2);
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .orbit-featured-img {
        height: 250px;
    }

    .od-reply-wrapper {
        margin-left: 1rem;
        padding-left: 1rem;
    }

    .orbit-h1 {
        font-size: 1.8rem;
    }
}

/* ===== PAGE TEMPLATE: help-info ===== */
.orbit-detail-page {
    background-color: #03000a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.orbit-detail-hero {
    background: radial-gradient(circle at top left, rgba(112, 0, 255, 0.15), transparent);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.orbit-detail-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

.orbit-detail-hero a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.orbit-detail-hero a:hover {
    color: #00f2ff;
}

.orbit-featured-image-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.orbit-featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.orbit-article-body p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.orbit-spec-list li {
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
}

.orbit-sidebar-card {
    background-color: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.hover-primary:hover {
    color: #00f2ff !important;
}

.bg-surface {
    background-color: #0a0a0f !important;
}

.orbit-form .form-control {
    background-color: #14141d;
    border: 1px solid rgba(112, 0, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
}

.orbit-form .form-control:focus {
    border-color: #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    background-color: #1a1a25;
}

.orbit-btn-submit {
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    border: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.4);
}


.od-comment-card {
    background: rgba(20, 20, 29, 0.5);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.od-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #7000ff;
}

.od-user-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.od-user-role {
    color: #00f2ff;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.od-checkpoint-badge {
    background: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

.od-comment-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.od-btn-action {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.od-btn-action:hover {
    color: #ff00e5;
}

.od-timestamp {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.od-reply-wrapper {
    margin-left: 3rem;
    border-left: 2px solid rgba(112, 0, 255, 0.2);
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .orbit-featured-img {
        height: 250px;
    }

    .od-reply-wrapper {
        margin-left: 1rem;
        padding-left: 1rem;
    }

    .orbit-h1 {
        font-size: 1.8rem;
    }
}

/* White placeholders for all form fields across the site */
input::placeholder,
textarea::placeholder,
select::placeholder,
.form-control::placeholder {
  color: #ffffff;
  opacity: 1;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ffffff;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ffffff;
}
