:root {
    --oracle-red: #c74634;
    --oracle-red-dark: #9e2d22;
    --oracle-red-soft: rgba(199, 70, 52, 0.12);
    --oracle-ink: #111111;
    --oracle-text: #2b2b2b;
    --oracle-muted: #626262;
    --oracle-surface: #ffffff;
    --oracle-surface-alt: #f7f7f7;
    --oracle-line: rgba(17, 17, 17, 0.10);
    --oracle-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);

    --site-azure: var(--oracle-red);
    --site-azure-dark: var(--oracle-red-dark);
    --site-azure-soft: var(--oracle-red-soft);
    --site-bg: #f4f4f4;
    --site-surface: var(--oracle-surface);
    --site-surface-alt: var(--oracle-surface-alt);
    --site-line: var(--oracle-line);
    --site-text: var(--oracle-text);
    --site-muted: var(--oracle-muted);
    --site-dark: var(--oracle-ink);
    --site-shadow: var(--oracle-shadow);
    --site-navbar-start: #111111;
    --site-navbar-end: #222222;
    --site-footer-start: #111111;
    --site-footer-end: #1b1b1b;

    --home-accent: var(--oracle-red);
    --home-accent-dark: var(--oracle-red-dark);
    --home-accent-soft: var(--oracle-red-soft);
    --home-bg: #111111;
    --home-bg-soft: #1a1a1a;
    --home-surface: var(--oracle-surface);
    --home-surface-alt: var(--oracle-surface-alt);
    --home-line: var(--oracle-line);
    --home-text: var(--oracle-text);
    --home-muted: var(--oracle-muted);
    --home-shadow: var(--oracle-shadow);
}

html {
    scroll-behavior: smooth;
    background: #f4f4f4;
}

html body {
    min-height: 100%;
    color: var(--site-text);
    background:
        radial-gradient(circle at top left, rgba(199, 70, 52, 0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
    font-family: "Inter", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(17, 17, 17, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 52%);
}

html body a {
    color: var(--oracle-red);
    text-underline-offset: 0.16em;
    text-decoration-thickness: 0.08em;
}

html body a:hover {
    color: var(--oracle-red-dark);
}

html body .site-topbar {
    background: linear-gradient(135deg, #111111 0%, #252525 100%);
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html body .site-navbar {
    background: linear-gradient(135deg, #111111 0%, #1f1f1f 100%);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(199, 70, 52, 0.18);
}

html body .site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

html body .site-navbar .nav-link:hover,
html body .site-navbar .nav-link.active {
    color: #ffffff;
    background: rgba(199, 70, 52, 0.14);
    box-shadow: inset 0 0 0 1px rgba(199, 70, 52, 0.16);
    transform: translateY(-1px);
}

html body .site-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

html body .site-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(199, 70, 52, 0.12);
}

html body .site-navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

html body .brand-logo-frame {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: 0 14px 26px rgba(17, 17, 17, 0.18);
}

html body .brand-mark {
    background: linear-gradient(135deg, #c74634 0%, #8c261c 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.24);
}

html body .brand-title {
    color: #ffffff;
}

html body .brand-title small {
    color: rgba(255, 255, 255, 0.72);
}

html body .section {
    padding: 5rem 0;
}

html body .section-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    color: var(--oracle-red);
    font-weight: 700;
}

html body .section-title {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--site-text);
}

html body .section-copy {
    color: var(--site-muted);
    max-width: 48rem;
    line-height: 1.75;
}

html body .pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    background: var(--oracle-red-soft);
    color: var(--oracle-red);
    font-size: 0.88rem;
    font-weight: 600;
}

html body .feature-card,
html body .info-card,
html body .story-card,
html body .product-card,
html body .news-card,
html body .cta-card,
html body .timeline-card,
html body .ratio-legend-item,
html body .hero-panel {
    background: var(--site-surface);
    border: 1px solid var(--site-line);
    border-radius: 18px;
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(10px);
}

html body .feature-card {
    padding: 1.25rem;
    height: 100%;
}

html body .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--oracle-red-soft);
    color: var(--oracle-red);
    font-weight: 800;
    margin-bottom: 1rem;
}

html body .info-card {
    padding: 1.5rem;
}

html body .story-card {
    overflow: hidden;
}

html body .story-visual {
    min-height: 100%;
    background:
        linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(199, 70, 52, 0.74)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.20), transparent 24%);
    color: #ffffff;
    padding: 1.75rem;
}

html body .story-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem;
    margin-top: 1rem;
}

html body .card-media {
    height: 190px;
    background:
        linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(34, 34, 34, 0.72)),
        radial-gradient(circle at 30% 20%, rgba(199, 70, 52, 0.34), transparent 28%);
    position: relative;
    overflow: hidden;
}

html body .card-media::after {
    content: "";
    position: absolute;
    inset: auto -15% -35% auto;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

html body .card-media .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

html body .badge-home-azure {
    background: rgba(199, 70, 52, 0.14);
    color: #fff1ee;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

html body .btn-cms,
html body .btn-home-primary {
    background: var(--oracle-red);
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.35rem;
    font-weight: 600;
    box-shadow: 0 18px 32px rgba(199, 70, 52, 0.24);
}

html body .btn-cms:hover,
html body .btn-home-primary:hover {
    background: var(--oracle-red-dark);
    color: #ffffff;
}

html body .btn-home-ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.9rem 1.35rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
}

html body .btn-home-ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

html body .btn-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.68rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.10);
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-text);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

html body .btn-filter-pill:hover,
html body .btn-filter-pill.active {
    transform: translateY(-1px);
    color: #ffffff;
    background: linear-gradient(135deg, var(--oracle-red), var(--oracle-red-dark));
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(199, 70, 52, 0.22);
}

html body .btn-filter-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--oracle-red);
}

html body .btn-action-soft {
    border-radius: 999px;
    padding: 0.58rem 0.92rem;
    font-weight: 700;
    border-color: rgba(199, 70, 52, 0.18);
    color: var(--oracle-red-dark);
    background: rgba(199, 70, 52, 0.08);
}

html body .btn-action-soft:hover {
    background: rgba(199, 70, 52, 0.14);
    color: var(--oracle-red-dark);
}

html body .btn-action-danger {
    border-radius: 999px;
    padding: 0.58rem 0.92rem;
    font-weight: 700;
    border-color: rgba(185, 28, 28, 0.18);
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.08);
}

html body .btn-action-danger:hover {
    background: rgba(185, 28, 28, 0.14);
    color: #b91c1c;
}

html body .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.16);
}

html body .site-footer {
    background: linear-gradient(180deg, var(--site-footer-start) 0%, var(--site-footer-end) 100%);
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

html body .footer-link {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
}

html body .footer-link:hover {
    color: #ffffff;
}

html body .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    background: rgba(199, 70, 52, 0.14);
    color: #fff1ee;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

html body .hero-title {
    letter-spacing: -0.045em;
    font-weight: 700;
    color: #ffffff;
}

html body .hero-copy {
    color: rgba(255, 255, 255, 0.78);
}

html body .hero-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

html body .hero-panel-header {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

html body .hero-panel-body {
    padding: 1.2rem;
}

html body .metric {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    height: 100%;
}

html body .metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

html body .metric-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

html body .career-slider,
html body .product-hero {
    background: #111111;
    box-shadow: 0 30px 80px rgba(17, 17, 17, 0.20);
}

html body .career-slide,
html body .hero-slide {
    color: #ffffff;
}

html body .career-slide .slide-overlay,
html body .hero-slide .slide-overlay {
    background:
        linear-gradient(90deg, rgba(5, 10, 18, 0.94) 0%, rgba(5, 10, 18, 0.78) 45%, rgba(5, 10, 18, 0.34) 100%),
        radial-gradient(circle at left center, rgba(199, 70, 52, 0.18), transparent 34%);
}

html body .product-image-frame {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
}

html body .product-group-badge {
    background: rgba(255, 255, 255, 0.94);
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.12);
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.12);
}

html body .product-group-badge::before {
    background: var(--oracle-red);
    box-shadow: 0 0 0 4px rgba(199, 70, 52, 0.12);
}

html body .product-description {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
}

html body .timeline-wrap {
    border-left: 2px solid rgba(199, 70, 52, 0.18);
}

html body .timeline-item::before {
    background: var(--oracle-red);
    box-shadow: 0 0 0 6px rgba(199, 70, 52, 0.10);
}

html body .timeline-year {
    color: var(--oracle-red);
}

html body .about-richtext {
    color: #334155;
    line-height: 1.8;
}

html body .about-richtext a {
    color: var(--oracle-red);
    text-decoration: none;
}

html body .about-richtext a:hover {
    text-decoration: underline;
}

html body .overview-table {
    background:
        linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(199, 70, 52, 0.70)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 24%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    color: #ffffff;
}

html body .overview-table thead th {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.90);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

html body .overview-table td {
    vertical-align: middle;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
    color: rgba(255, 255, 255, 0.90);
    border-color: rgba(255, 255, 255, 0.10);
}

html body .overview-table .table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
}

html body .overview-table .table {
    --bs-table-bg: transparent;
    --bs-table-color: rgba(255, 255, 255, 0.92);
    --bs-table-border-color: rgba(255, 255, 255, 0.10);
}

html body .ratio-chart {
    width: min(320px, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--ratio-gradient, linear-gradient(135deg, #f2d8d3, #f8c9c0));
    position: relative;
    margin-inline: auto;
    box-shadow: var(--site-shadow);
}

html body .ratio-chart::after {
    content: "";
    position: absolute;
    inset: 23%;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

html body .ratio-center {
    position: absolute;
    inset: 23%;
    display: grid;
    place-items: center;
    text-align: center;
    z-index: 1;
    padding: 1rem;
}

html body .ratio-center strong {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1;
    color: #111111;
}

html body .ratio-center span {
    color: #626262;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

html body .ratio-legend {
    display: grid;
    gap: 0.85rem;
}

html body .ratio-color {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(199, 70, 52, 0.08);
}

html body .form-control,
html body .form-select {
    border-radius: 14px;
    border-color: rgba(17, 17, 17, 0.12);
    padding: 0.85rem 1rem;
}

html body .form-control:focus,
html body .form-select:focus {
    border-color: rgba(199, 70, 52, 0.50);
    box-shadow: 0 0 0 0.2rem rgba(199, 70, 52, 0.12);
}

html body .alert {
    border-radius: 14px;
}

html body .page-link {
    color: var(--oracle-red);
}

html body .page-item.active .page-link {
    background: var(--oracle-red);
    border-color: var(--oracle-red);
}

html body .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.55);
    border: 0;
}

html body .carousel-indicators .active {
    background-color: var(--oracle-red);
}

html body .text-secondary {
    color: #6b7280 !important;
}
