:root {
    --ink: #1b2a38;
    --muted: #5c6774;
    --subtle: #73808c;
    --paper: #f6f4ee;
    --surface: #fff;
    --sand: #f0ede4;
    --line: #e6e3d9;
    --accent: #f0a44d;
    --accent-ink: #9a5813;
    --teal: #1e7d99;
    --radius: 14px;
    --header-height: 78px;
}
* {
    box-sizing: border-box;
}
body.ocid-site {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}
h1, h2, h3, p {
    margin: 0;
}
.ocid-site h1, .ocid-site h2, .ocid-site h3 {
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -.025em;
}
.ocid-site h1 {
    font-size: clamp(30px, 3.5vw, 40px);
    font-weight: 800;
}
.ocid-site h2 {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
}
.ocid-site h3 {
    font-size: 19px;
    font-weight: 750;
}
.ocid-site a {
    color: var(--teal);
    text-decoration: none;
}
.ocid-site a:hover {
    text-decoration: underline;
}
button, input, select {
    font: inherit;
}
.ocid-site button, .ocid-site summary {
    cursor: pointer;
}
.ocid-site button {
    color: inherit;
}
.ocid-site img {
    max-width: 100%;
}
.ocid-site [hidden] {
    display: none !important;
}
.ocid-site :focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 4px;
}
::selection {
    background: #f0a44d55;
}
.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 1000;
    padding: 12px 20px;
    background: white;
}
.skip-link:focus {
    top: 8px;
}
.site-header {
    position: relative;
    z-index: 20;
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #0000000f;
}
.site-brand {
    justify-self: start;
    display: flex;
}
.site-brand img {
    height: 42px;
    width: auto;
}
.site-nav, .site-account {
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-nav a, .site-account > a {
    color: var(--ink);
    font-weight: 650;
    white-space: nowrap;
}
.site-nav a[aria-current] {
    color: var(--accent-ink);
}
.site-account {
    justify-self: end;
    gap: 16px;
}
.ocid-site .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    text-decoration: none;
}
.ocid-site .button:hover {
    background: #2e4457;
}
.ocid-site .button-small {
    padding: 9px 19px;
}
.ocid-site .button-accent {
    color: var(--ink);
    background: var(--accent);
}
.ocid-site .button-accent:hover {
    background: #eeb366;
}
.ocid-site .button-outline {
    color: var(--ink);
    background: transparent;
    border-color: #cbd1d7;
}
.ocid-site .button-outline:hover {
    background: #fff;
}
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.content-width, .page-content {
    width: min(1080px, calc(100% - 64px));
    margin: 0 auto;
}
.page-content {
    padding: 56px 0 88px;
}
.page-heading {
    max-width: 820px;
    text-align: center;
    margin: 0 auto 36px;
}
.page-heading h1 {
    margin-bottom: 14px;
}
.page-heading p {
    color: var(--muted);
    font-size: 16px;
    margin-top: 8px;
}
.page-heading .fine-print {
    color: var(--subtle);
    font-size: 14px;
}
.section {
    padding: 80px 0;
}
.centered {
    text-align: center;
}
.eyebrow {
    display: block;
    color: var(--accent-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    margin: 18px auto 0 !important;
}
.intro-section .content-width {
    max-width: 800px;
}
.facts-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 48px max(32px, calc((100% - 1080px) / 2));
    background: var(--ink);
    color: white;
    text-align: center;
}
.facts-strip strong {
    display: block;
    color: var(--accent);
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 800;
    line-height: 1.2;
}
.facts-strip span {
    display: block;
    color: #c3cbd3;
    margin-top: 8px;
    font-size: 13px;
}
.facts-strip strong span {
    display: inline;
    color: inherit;
    font-size: inherit;
}
.facts-strip a {
    align-self: center;
}
.facts-strip a strong {
    font-size: 22px;
}
.homepage-facts {
    padding-block: 56px;
}
.homepage-facts strong {
    font-size: clamp(32px, 3vw, 38px);
    font-variant-numeric: tabular-nums;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 44px;
}
.steps-grid p {
    color: var(--muted);
    margin-top: 10px;
}
.step-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fdeedb;
    color: var(--accent-ink);
    margin-bottom: 18px;
    font-weight: 800;
}
.steps-grid article:nth-child(2) .step-icon {
    color: var(--teal);
    background: #dff1f4;
}
.steps-grid article:nth-child(3) .step-icon {
    color: var(--ink);
    background: #e8eef2;
}
.developer-section {
    background: var(--sand);
}
.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
}
.split-grid p {
    color: var(--muted);
    margin: 16px 0 24px;
    font-size: 16px;
}
.data-options {
    padding: 26px;
    background: var(--ink);
    color: #c3cbd3;
    border-radius: var(--radius);
}
.data-options article + article {
    border-top: 1px solid #ffffff26;
    margin-top: 24px;
    padding-top: 24px;
}
.ocid-site .data-options h3 {
    color: var(--surface);
}
.data-options p {
    color: inherit;
    margin: 10px 0 16px;
}
.ocid-site .data-options a {
    color: var(--accent);
    font-weight: 700;
}
.data-options :focus-visible {
    outline-color: var(--accent);
}
.community-section .section-lead {
    max-width: 580px;
    margin-bottom: 28px !important;
}
.site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding: 30px 32px;
}
.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.site-footer a {
    color: var(--muted);
    font-size: 13px;
}
.site-footer .footer-brand {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
}
.footer-brand span {
    font-size: 12px;
    color: var(--subtle);
    font-weight: 400;
    margin-left: 6px;
}
.site-footer small {
    color: var(--subtle);
    font-size: 12px;
}
.panel {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    margin-bottom: 24px;
}
.panel h2 {
    font-size: 20px;
    margin-bottom: 12px;
}
.panel p {
    color: var(--muted);
    margin: 10px 0;
}
.notice {
    padding: 22px 26px;
    border: 1px solid #ecd5b1;
    border-radius: 12px;
    background: #fff7e9;
    margin-bottom: 30px;
}
.notice h2 {
    font-size: 19px;
    margin-bottom: 10px;
}
.notice p {
    margin-top: 8px;
    color: #4b5260;
}
.error-notice {
    border-color: #e7b5b0;
    background: #fff2ef;
}
.token-form {
    display: flex;
    gap: 12px;
    margin: 0 auto 32px;
    max-width: 650px;
}
.token-field {
    flex: 1;
    min-width: 0;
}
.token-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}
.token-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd1d7;
    border-radius: 8px;
    background: white;
    color: var(--ink);
}
.token-form button {
    align-self: end;
}
.table-scroll {
    overflow-x: auto;
}
.ocid-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ocid-table th {
    font-weight: 750;
    color: var(--ink);
    text-align: left;
    white-space: nowrap;
}
.ocid-table th, .ocid-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
}
.ocid-table td {
    color: var(--muted);
}
.ocid-table td:first-child {
    color: var(--ink);
}
.ocid-table .numeric {
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.ocid-table tbody tr:hover {
    background: #faf9f5;
}
.dataTables_wrapper {
    display: flow-root;
}
.dataTables_length {
    float: left;
    margin-bottom: 18px;
}
.dataTables_filter {
    float: right;
    margin-bottom: 18px;
}
.dataTables_wrapper label {
    font-size: 13px;
    color: var(--muted);
}
.dataTables_wrapper input, .dataTables_wrapper select {
    border: 1px solid #cbd1d7;
    border-radius: 6px;
    padding: 6px 8px;
    margin: 0 6px;
    background: white;
    max-width: 180px;
}
.dataTables_info {
    float: left;
    font-size: 13px;
    color: var(--subtle);
    padding-top: 20px;
}
.dataTables_paginate {
    float: right;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 14px;
}
.dataTables_paginate .paginate_button {
    display: inline-block;
    padding: 5px 11px;
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
    color: var(--ink);
}
.dataTables_paginate .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.dataTables_paginate .current, .dataTables_paginate .active {
    background: var(--ink);
    color: white;
}
.dataTables_paginate .paginate_button a {
    display: block;
    color: inherit;
}
.dataTables_paginate .disabled {
    opacity: .45;
    cursor: default;
}
.ocid-table th.sorting, .ocid-table th.sorting_desc, .ocid-table th.sorting_asc {
    cursor: pointer;
}
.ocid-table th.sorting_desc::after {
    content: ' \2193';
}
.ocid-table th.sorting_asc::after {
    content: ' \2191';
}
.faq-list {
    margin-top: 44px;
}
.faq-list > h2 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 28px;
}
.disclosure {
    border: 1px solid var(--line);
    background: white;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}
.disclosure > summary {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    padding: 18px 22px;
    font-weight: 700;
}
.disclosure > summary::-webkit-details-marker {
    display: none;
}
.disclosure > summary::after {
    content: '+';
    color: var(--subtle);
}
.disclosure[open] > summary::after {
    content: '-';
}
.disclosure-body {
    padding: 18px 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}
.disclosure-body p + p {
    margin-top: 12px;
}
.disclosure-body .panel {
    margin: 18px 0 0;
}
.download-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.download-columns ul {
    padding-left: 18px;
    overflow-wrap: anywhere;
}
.download-columns {
    margin-top: 18px;
}
.download-columns li {
    padding: 4px 0;
}
.summary-strip {
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 32px;
}
.summary-strip strong {
    font-size: clamp(22px, 2.4vw, 30px);
    overflow-wrap: anywhere;
}
.chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}
.chart-card {
    padding: 24px;
    margin: 0;
    min-width: 0;
}
.chart-card h2 {
    font-size: 16px;
    margin: 0;
}
.chart-card figcaption {
    color: var(--subtle);
    font-size: 13px;
    margin: 6px 0 20px;
    min-height: 3.2em;
}
.chart-plot {
    position: relative;
    height: 240px;
}
.timeline {
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #dedbd1;
}
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-bottom: 44px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(50% - 6px);
    top: 25px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--paper);
    background: var(--accent);
}
.timeline-card {
    grid-column: 1;
    padding: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.timeline-item:nth-child(even) .timeline-card {
    grid-column: 2;
}
.timeline-year {
    position: absolute;
    left: calc(50% + 25px);
    top: 22px;
    color: var(--accent-ink);
    font-weight: 800;
}
.timeline-item:nth-child(even) .timeline-year {
    left: auto;
    right: calc(50% + 25px);
}
.timeline-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.timeline-profile img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--line);
}
.timeline-profile .company-logo {
    border-radius: 8px;
    object-fit: contain;
}
.timeline-card .role {
    font-size: 13px;
    margin-top: 5px;
    color: var(--subtle);
}
.timeline-card p {
    margin-top: 12px;
    color: var(--muted);
}
.ocid-site .timeline-title {
    font-size: 19px;
}
@media (max-width: 900px) {
    :root {
        --header-height: 118px;
    }
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 12px 20px;
    }
    .site-brand img {
        height: 36px;
    }
    .site-nav {
        grid-row: 2;
        grid-column: 1 / -1;
        justify-content: center;
        gap: 28px;
        padding-top: 8px;
        border-top: 1px solid var(--line);
    }
    .site-account {
        grid-row: 1;
        grid-column: 2;
    }
    .site-nav a, .site-account > a {
        font-size: 13px;
    }
    .split-grid {
        gap: 28px;
    }
    .facts-strip {
        gap: 24px;
        padding: 32px 24px;
    }
    .site-footer {
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .site-header {
        padding: 12px 16px;
    }
    .site-nav {
        justify-content: space-between;
        gap: 10px;
    }
    .site-account {
        gap: 12px;
    }
    .ocid-site .button-small {
        padding: 8px 12px;
    }
    .content-width, .page-content {
        width: calc(100% - 32px);
    }
    .page-content {
        padding: 38px 0 56px;
    }
    .section {
        padding: 54px 0;
    }
    .steps-grid, .split-grid, .chart-grid, .download-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .facts-strip {
        grid-template-columns: 1fr 1fr;
    }
    .panel {
        padding: 18px;
    }
    .token-form {
        flex-direction: column;
    }
    .token-form button {
        align-self: stretch;
    }
    .token-form input {
        font-size: 16px;
    }
    .dataTables_length, .dataTables_filter, .dataTables_info, .dataTables_paginate {
        float: none;
        text-align: left;
    }
    .site-footer nav {
        justify-content: center;
        gap: 14px;
    }
    .timeline::before {
        left: 7px;
    }
    .timeline-item {
        display: block;
        padding: 36px 0 0 32px;
        margin-bottom: 24px;
    }
    .timeline-item::before {
        left: 1px;
        top: 7px;
    }
    .timeline-year, .timeline-item:nth-child(even) .timeline-year {
        left: 32px;
        right: auto;
        top: 0;
    }
    .timeline-card {
        padding: 22px;
    }
}
@media (prefers-reduced-motion: no-preference) {
    .page-heading, .search-body {
        animation: arrive .35s ease-out;
    }
    @keyframes arrive {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
