@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

.oml-homepage {
    --oml-primary: #3ca2c8;
    --oml-primary-active: #2181a3;
    --oml-secondary: #213183;
    --oml-canvas: #ffffff;
    --oml-canvas-soft: #f6f5f4;
    --oml-surface: #ffffff;
    --oml-ink: #000000;
    --oml-ink-secondary: #31302e;
    --oml-ink-muted: #615d59;
    --oml-ink-faint: #a39e98;
    --oml-hairline: #e6e6e6;
    --oml-sky: #62aef0;
    --oml-purple: #d6b6f6;
    --oml-purple-deep: #391c57;
    --oml-pink: #db4c77;
    --oml-orange: #dd5b00;
    --oml-orange-deep: #793400;
    --oml-teal: #2a9d99;
    --oml-green: #1aae39;
    --oml-brown: #523410;
    --oml-shadow-soft: 0 0.175px 1.041px rgba(0, 0, 0, 0.01), 0 0.8px 2.925px rgba(0, 0, 0, 0.02), 0 2.025px 7.847px rgba(0, 0, 0, 0.027), 0 4px 18px rgba(0, 0, 0, 0.04);
    --oml-shadow-elevated: 0 2px 4px rgba(0, 0, 0, 0.015), 0 5px 12px rgba(0, 0, 0, 0.02), 0 12px 28px rgba(0, 0, 0, 0.035), 0 23px 52px rgba(0, 0, 0, 0.05);
    margin: 0;
    background: var(--oml-canvas-soft);
    color: var(--oml-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-feature-settings: "lnum" 1, "locl" 1;
    -webkit-font-smoothing: antialiased;
}

.oml-homepage *,
.oml-homepage *::before,
.oml-homepage *::after {
    box-sizing: border-box;
}

.oml-homepage a { color: inherit; }
.oml-homepage a:hover { color: inherit; }
.oml-homepage button,
.oml-homepage input,
.oml-homepage select { font: inherit; }

.oml-homepage :focus-visible {
    outline: 3px solid rgba(60, 162, 200, 0.36);
    outline-offset: 3px;
}

.oml-container {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}

.oml-navigation-shell {
    position: sticky;
    top: 0;
    z-index: 1040;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--oml-hairline);
}

.oml-nav {
    min-height: 72px;
    padding: 0;
    background: var(--oml-canvas);
    color: var(--oml-ink);
}

.oml-nav-inner {
    display: flex;
    min-height: 72px;
    align-items: center;
}

.oml-wordmark {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 44px;
    color: var(--oml-ink) !important;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.6px;
    line-height: 1;
    text-decoration: none !important;
}

.oml-nav-collapse {
    align-items: center;
    min-width: 0;
}

.oml-nav-links {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    margin: 0 24px;
}

.oml-nav-link,
.oml-nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 12px;
    color: var(--oml-ink-secondary) !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.33;
    text-decoration: none !important;
}

.oml-nav-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.oml-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    border: 1px solid var(--oml-hairline);
    border-radius: 8px;
    background: var(--oml-surface);
}

.oml-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--oml-ink);
}

.oml-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none !important;
    transition: background-color 140ms ease, border-color 140ms ease, transform 100ms ease;
}

.oml-button:active { transform: scale(0.9); }

.oml-button-primary {
    border-color: var(--oml-primary);
    background: var(--oml-primary);
    color: #ffffff !important;
}

.oml-button-primary:active {
    border-color: var(--oml-primary-active);
    background: var(--oml-primary-active);
}

.oml-button-secondary {
    border-color: rgba(255, 255, 255, 0.64);
    background: var(--oml-surface);
    color: var(--oml-ink) !important;
    box-shadow: var(--oml-shadow-soft);
}

.oml-button-outline {
    border-color: var(--oml-hairline);
    background: var(--oml-surface);
    color: var(--oml-ink) !important;
}

.oml-button-utility {
    min-height: 44px;
    padding: 7px 14px;
    border-color: var(--oml-hairline);
    border-radius: 8px;
    background: var(--oml-surface);
    color: var(--oml-ink) !important;
    font-size: 15px;
}

.oml-main { overflow: hidden; }
.oml-home-shell { background: var(--oml-canvas-soft); }

.oml-hero {
    position: relative;
    isolation: isolate;
    min-height: 740px;
    overflow: hidden;
    background: var(--oml-secondary);
    color: #ffffff;
}

.oml-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    gap: 64px;
    align-items: center;
    min-height: 740px;
    padding-top: 72px;
    padding-bottom: 72px;
}

.oml-hero-copy { max-width: 585px; }
.oml-hero-copy .alert { border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 8px; background: #ffffff; color: var(--oml-ink-secondary); box-shadow: var(--oml-shadow-soft); }

.oml-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.125px;
    line-height: 1.33;
}

.oml-badge-on-dark {
    background: #ffffff;
    color: var(--oml-secondary);
    box-shadow: var(--oml-shadow-soft);
}

.oml-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--oml-primary);
}

.oml-hero h1 {
    max-width: 600px;
    margin: 24px 0 24px;
    color: #ffffff;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -2.125px;
    line-height: 1;
}

.oml-hero-lead {
    max-width: 550px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.56;
}

.oml-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.oml-claim-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    max-width: 590px;
    margin-top: 32px;
}

.oml-claim-field {
    display: flex;
    min-width: 0;
    min-height: 52px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 4px;
    background: #ffffff;
    box-shadow: var(--oml-shadow-soft);
}

.oml-claim-domain {
    flex: 0 1 190px;
    max-width: 190px;
    min-width: 128px;
    padding: 0 10px;
    overflow: hidden;
    border: 0;
    border-right: 1px solid var(--oml-hairline);
    border-radius: 0;
    background: var(--oml-canvas-soft);
    color: var(--oml-ink-secondary);
    font-size: 14px;
    text-overflow: ellipsis;
}

.oml-claim-domain-static {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.oml-claim-field input {
    min-width: 80px;
    flex: 1 1 auto;
    padding: 12px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    color: var(--oml-ink);
    font-size: 15px;
    outline: none;
}

.oml-claim-field input::placeholder { color: var(--oml-ink-faint); }
.oml-claim-field:focus-within { box-shadow: 0 0 0 3px rgba(60, 162, 200, 0.28), var(--oml-shadow-soft); }

.oml-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.43;
}

.oml-hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.oml-hero-proof i { color: var(--oml-primary); font-size: 11px; }

.oml-hero-constellation {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.oml-constellation-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    box-shadow: var(--oml-shadow-soft);
    transform: rotate(-8deg);
}

.oml-constellation-item-1 { top: 15%; left: 4%; background: var(--oml-pink); }
.oml-constellation-item-2 { right: 3.5%; bottom: 17%; background: var(--oml-orange); transform: rotate(9deg); }
.oml-constellation-item-3 { top: 10%; right: 16%; background: var(--oml-purple); color: var(--oml-purple-deep); transform: rotate(6deg); }

.oml-constellation-star {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.64);
}

.oml-constellation-star-1 { top: 24%; left: 38%; }
.oml-constellation-star-2 { bottom: 18%; left: 11%; width: 3px; height: 3px; }
.oml-constellation-star-3 { top: 40%; right: 4%; width: 3px; height: 3px; }
.oml-constellation-star-4 { bottom: 9%; right: 39%; }

.oml-product-preview {
    position: relative;
    width: 730px;
    max-width: 100%;
    transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
    transform-origin: center right;
}

.oml-preview-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    background: var(--oml-surface);
    color: var(--oml-ink);
    box-shadow: var(--oml-shadow-elevated);
}

.oml-preview-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 46px;
    padding: 0 14px;
    border-bottom: 1px solid var(--oml-hairline);
    background: var(--oml-canvas-soft);
}

.oml-preview-dots { display: flex; gap: 5px; }
.oml-preview-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--oml-ink-faint); }
.oml-preview-dots span:nth-child(2) { opacity: 0.65; }
.oml-preview-dots span:nth-child(3) { opacity: 0.35; }

.oml-preview-address {
    padding: 5px 28px;
    border: 1px solid var(--oml-hairline);
    border-radius: 5px;
    background: #ffffff;
    color: var(--oml-ink-muted);
    font-size: 11px;
}

.oml-preview-avatar {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--oml-secondary);
    color: #ffffff;
    font-size: 8px;
    font-weight: 700;
}

.oml-preview-body { display: grid; grid-template-columns: 58px 1fr; min-height: 440px; }

.oml-preview-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding: 16px 9px;
    border-right: 1px solid var(--oml-hairline);
    background: #ffffff;
}

.oml-preview-sidebar > span,
.oml-preview-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    color: var(--oml-ink-faint);
    font-size: 12px;
}

.oml-preview-logo { margin-bottom: 9px; background: var(--oml-secondary); color: #ffffff; font-weight: 700; }
.oml-preview-sidebar > span.active { position: relative; background: var(--oml-canvas-soft); color: var(--oml-primary); }
.oml-preview-sidebar > span.active::before { content: ""; position: absolute; left: -9px; width: 3px; height: 18px; border-radius: 0 3px 3px 0; background: var(--oml-primary); }

.oml-preview-content { min-width: 0; padding: 24px; background: #ffffff; }
.oml-preview-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.oml-preview-heading > div { display: flex; flex-direction: column; gap: 3px; }
.oml-preview-heading small { color: var(--oml-ink-faint); font-size: 10px; }
.oml-preview-heading strong { font-size: 20px; font-weight: 600; letter-spacing: -0.125px; }
.oml-preview-heading > span { display: inline-flex; align-items: center; gap: 5px; padding: 7px 10px; border-radius: 8px; background: var(--oml-primary); color: #ffffff; font-size: 10px; font-weight: 500; }

.oml-preview-metrics {
    display: grid;
    grid-template-columns: 0.62fr 0.62fr 1.76fr;
    gap: 10px;
    margin-top: 20px;
}

.oml-preview-metrics > div {
    min-height: 91px;
    padding: 13px;
    border: 1px solid var(--oml-hairline);
    border-radius: 8px;
    background: var(--oml-surface);
}

.oml-preview-metrics small,
.oml-preview-metrics strong,
.oml-preview-metrics em { display: block; }
.oml-preview-metrics small { color: var(--oml-ink-muted); font-size: 9px; }
.oml-preview-metrics strong { margin-top: 7px; font-size: 19px; font-weight: 600; }
.oml-preview-metrics em { margin-top: 2px; color: var(--oml-green); font-size: 9px; font-style: normal; }
.oml-preview-chart { display: flex; align-items: flex-end; gap: 7px; padding: 14px !important; }
.oml-preview-chart span { flex: 1 1 0; min-height: 8px; border-radius: 3px 3px 0 0; background: var(--oml-primary); opacity: 0.82; }

.oml-preview-table { margin-top: 14px; overflow: hidden; border: 1px solid var(--oml-hairline); border-radius: 8px; }
.oml-preview-table-header,
.oml-preview-row { display: grid; grid-template-columns: minmax(0, 1.65fr) 0.65fr 0.55fr; align-items: center; }
.oml-preview-table-header { min-height: 34px; padding: 0 12px; background: var(--oml-canvas-soft); color: var(--oml-ink-muted); font-size: 8px; font-weight: 600; letter-spacing: 0.125px; text-transform: uppercase; }
.oml-preview-row { min-height: 65px; padding: 9px 12px; border-top: 1px solid var(--oml-hairline); color: var(--oml-ink-muted); font-size: 9px; }
.oml-preview-row > span { min-width: 0; }
.oml-preview-row > span:first-child { display: flex; align-items: center; gap: 9px; }
.oml-preview-row > span:first-child > span { min-width: 0; }
.oml-preview-row strong,
.oml-preview-row small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.oml-preview-row strong { color: var(--oml-ink-secondary); font-size: 9px; font-weight: 600; }
.oml-preview-row small { margin-top: 3px; color: var(--oml-ink-faint); font-size: 8px; }
.oml-preview-row > span:last-child small { color: var(--oml-green); }
.oml-row-icon { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 29px; height: 29px; border-radius: 8px; }
.oml-row-purple { background: var(--oml-purple); color: var(--oml-purple-deep); }
.oml-row-pink { background: rgba(219, 76, 119, 0.16); color: var(--oml-pink); }
.oml-row-orange { background: rgba(221, 91, 0, 0.15); color: var(--oml-orange-deep); }

.oml-section { padding: 104px 0; scroll-margin-top: 72px; }
.oml-section-paper { background: var(--oml-canvas-soft); }
.oml-insights-section,
.oml-tools-section,
.oml-faq-section { background: var(--oml-canvas); }

.oml-section-heading { max-width: 600px; }
.oml-section-heading-centered { margin: 0 auto 48px; text-align: center; }
.oml-eyebrow { display: inline-block; margin-bottom: 12px; color: var(--oml-primary); font-size: 12px; font-weight: 600; letter-spacing: 0.125px; line-height: 1.33; text-transform: uppercase; }
.oml-section-heading h2,
.oml-final-cta h2 { margin: 0; color: var(--oml-ink); font-size: clamp(38px, 4vw, 50px); font-weight: 700; letter-spacing: -1.625px; line-height: 1.08; }
.oml-section-heading p,
.oml-final-cta p { margin: 20px 0 0; color: var(--oml-ink-muted); font-size: 16px; font-weight: 400; line-height: 1.5; }

.oml-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.oml-feature-card { display: flex; height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--oml-hairline); border-radius: 14px; background: var(--oml-surface); box-shadow: var(--oml-shadow-soft); }
.oml-feature-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 220px; overflow: hidden; }
.oml-sticker-purple { background: var(--oml-purple); color: var(--oml-purple-deep); }
.oml-sticker-pink { background: rgba(219, 76, 119, 0.14); color: var(--oml-pink); }
.oml-sticker-orange { background: rgba(221, 91, 0, 0.14); color: var(--oml-orange-deep); }
.oml-feature-icon { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; width: 86px; height: 86px; border: 1px solid rgba(255, 255, 255, 0.64); border-radius: 16px; background: rgba(255, 255, 255, 0.84); box-shadow: var(--oml-shadow-soft); font-size: 34px; transform: rotate(-5deg); }
.oml-feature-card:nth-child(2) .oml-feature-icon { transform: rotate(5deg); }
.oml-feature-orbit { position: absolute; border: 1px solid currentColor; border-radius: 50%; opacity: 0.18; }
.oml-feature-orbit-one { width: 170px; height: 170px; }
.oml-feature-orbit-two { width: 270px; height: 270px; }
.oml-feature-spark { position: absolute; top: 34px; right: 34px; width: 13px; height: 13px; border-radius: 4px; background: currentColor; transform: rotate(18deg); opacity: 0.64; }
.oml-feature-content { display: flex; flex: 1 1 auto; flex-direction: column; padding: 28px 26px 26px; }
.oml-feature-content h3 { margin: 0; color: var(--oml-ink); font-size: 24px; font-weight: 700; letter-spacing: -0.5px; line-height: 1.25; }
.oml-feature-content p { margin: 12px 0 20px; color: var(--oml-ink-muted); font-size: 16px; line-height: 1.5; }
.oml-feature-detail { display: flex; align-items: flex-start; gap: 8px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--oml-hairline); color: var(--oml-ink-secondary); font-size: 14px; line-height: 1.43; }
.oml-feature-detail i { margin-top: 3px; color: var(--oml-green); }

.oml-split-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr); gap: 88px; align-items: center; }
.oml-check-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.oml-check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--oml-ink-secondary); font-size: 15px; line-height: 1.45; }
.oml-check-list i { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: rgba(26, 174, 57, 0.1); color: var(--oml-green); font-size: 9px; }
.oml-text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--oml-primary) !important; font-size: 15px; font-weight: 500; line-height: 1.33; text-decoration: none !important; }

.oml-analytics-preview { padding: 28px; border: 1px solid var(--oml-hairline); border-radius: 16px; background: var(--oml-surface); box-shadow: var(--oml-shadow-soft); }
.oml-analytics-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.oml-analytics-header > div { display: flex; flex-direction: column; gap: 4px; }
.oml-analytics-header small { color: var(--oml-ink-faint); font-size: 12px; }
.oml-analytics-header strong { color: var(--oml-ink); font-size: 22px; font-weight: 700; letter-spacing: -0.25px; }
.oml-analytics-header > span { padding: 8px 11px; border: 1px solid var(--oml-hairline); border-radius: 8px; color: var(--oml-ink-muted); font-size: 12px; }
.oml-analytics-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.oml-analytics-summary > div { position: relative; padding: 16px; border: 1px solid var(--oml-hairline); border-radius: 8px; }
.oml-analytics-summary small,
.oml-analytics-summary strong { display: block; }
.oml-analytics-summary small { color: var(--oml-ink-muted); font-size: 12px; }
.oml-analytics-summary strong { margin-top: 6px; color: var(--oml-ink); font-size: 26px; font-weight: 600; letter-spacing: -0.625px; }
.oml-analytics-summary em { position: absolute; right: 16px; bottom: 18px; color: var(--oml-green); font-size: 11px; font-style: normal; }
.oml-line-chart { position: relative; height: 210px; margin-top: 20px; padding: 18px 10px 0; overflow: hidden; border: 1px solid var(--oml-hairline); border-radius: 8px; }
.oml-chart-grid { position: absolute; inset: 18px 10px 18px; display: flex; flex-direction: column; justify-content: space-between; }
.oml-chart-grid span { display: block; width: 100%; border-top: 1px solid var(--oml-hairline); }
.oml-chart-columns { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 8px; height: 100%; }
.oml-chart-columns span { flex: 1 1 0; min-height: 12px; border-radius: 4px 4px 0 0; background: var(--oml-primary); opacity: 0.78; }
.oml-analytics-breakdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.oml-analytics-breakdown span { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 7px; color: var(--oml-ink-muted); font-size: 12px; }
.oml-analytics-breakdown strong { color: var(--oml-ink-secondary); font-weight: 600; }
.oml-dot { width: 7px; height: 7px; border-radius: 50%; }
.oml-dot-sky { background: var(--oml-sky); }
.oml-dot-purple { background: var(--oml-purple-deep); }
.oml-dot-orange { background: var(--oml-orange); }

.oml-capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.oml-capability-card { display: flex; height: 100%; align-items: flex-start; gap: 18px; min-height: 164px; padding: 26px; border: 1px solid var(--oml-hairline); border-radius: 14px; background: var(--oml-surface); box-shadow: var(--oml-shadow-soft); }
.oml-capability-icon { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 10px; background: var(--oml-canvas-soft); color: var(--oml-ink-secondary); }
.oml-capability-card:nth-child(6n + 1) .oml-capability-icon { background: rgba(98, 174, 240, 0.15); color: var(--oml-secondary); }
.oml-capability-card:nth-child(6n + 2) .oml-capability-icon { background: rgba(214, 182, 246, 0.45); color: var(--oml-purple-deep); }
.oml-capability-card:nth-child(6n + 3) .oml-capability-icon { background: rgba(219, 76, 119, 0.12); color: var(--oml-pink); }
.oml-capability-card:nth-child(6n + 4) .oml-capability-icon { background: rgba(221, 91, 0, 0.12); color: var(--oml-orange-deep); }
.oml-capability-card:nth-child(6n + 5) .oml-capability-icon { background: rgba(42, 157, 153, 0.13); color: var(--oml-teal); }
.oml-capability-card:nth-child(6n + 6) .oml-capability-icon { background: rgba(26, 174, 57, 0.11); color: var(--oml-green); }
.oml-capability-card > div { min-width: 0; }
.oml-capability-card h3 { margin: 0; color: var(--oml-ink); font-size: 19px; font-weight: 600; letter-spacing: -0.125px; line-height: 1.35; }
.oml-capability-card p { margin: 8px 0 0; color: var(--oml-ink-muted); font-size: 14px; line-height: 1.5; }

.oml-tools-heading,
.oml-blog-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.oml-tools-heading .oml-section-heading,
.oml-blog-heading .oml-section-heading { max-width: 620px; }
.oml-tool-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.oml-tool-card { display: grid; height: 100%; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; min-height: 110px; padding: 20px 22px; border: 1px solid var(--oml-hairline); border-radius: 14px; background: var(--oml-surface); color: var(--oml-ink) !important; text-decoration: none !important; box-shadow: var(--oml-shadow-soft); }
.oml-tool-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 12px; }
.oml-tool-card-1 .oml-tool-icon { background: rgba(219, 76, 119, 0.12); color: var(--oml-pink); }
.oml-tool-card-2 .oml-tool-icon { background: var(--oml-canvas-soft); color: var(--oml-ink-muted); }
.oml-tool-card-3 .oml-tool-icon { background: rgba(26, 174, 57, 0.11); color: var(--oml-green); }
.oml-tool-card-4 .oml-tool-icon { background: rgba(98, 174, 240, 0.14); color: var(--oml-secondary); }
.oml-tool-card-5 .oml-tool-icon { background: rgba(214, 182, 246, 0.45); color: var(--oml-purple-deep); }
.oml-tool-card-6 .oml-tool-icon { background: rgba(221, 91, 0, 0.12); color: var(--oml-orange-deep); }
.oml-tool-card > span:nth-child(2) { min-width: 0; }
.oml-tool-card strong,
.oml-tool-card small { display: block; }
.oml-tool-card strong { font-size: 19px; font-weight: 600; letter-spacing: -0.125px; line-height: 1.4; }
.oml-tool-card small { margin-top: 3px; overflow: hidden; color: var(--oml-ink-muted); font-size: 14px; line-height: 1.43; text-overflow: ellipsis; white-space: nowrap; }
.oml-tool-arrow { color: var(--oml-primary); font-size: 12px; }

.oml-pricing .oml-section-heading { max-width: 720px; }
.oml-pricing .oml-section-heading p { max-width: 570px; margin-inline: auto; }
.oml-pricing-content { margin-top: -8px; }
.oml-pricing .oml-pricing-grid { align-items: stretch; margin-inline: -10px; }
.oml-pricing .oml-pricing-column { display: flex; padding: 10px !important; }
.oml-pricing .pricing-plan { display: flex !important; width: 100%; height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--oml-hairline) !important; border-radius: 16px !important; background: var(--oml-surface); box-shadow: var(--oml-shadow-elevated); }
.oml-pricing .oml-pricing-card-featured { border-color: rgba(60, 162, 200, 0.62) !important; }
.oml-pricing .pricing-header { display: flex !important; min-height: 196px !important; flex: 0 0 auto; flex-direction: column; padding: 30px 28px 24px !important; border-bottom: 1px solid var(--oml-hairline); background: var(--oml-surface) !important; }
.oml-pricing .pricing-header > :first-child { order: 1; }
.oml-pricing .pricing-name { order: 1; margin: 0 0 18px !important; color: var(--oml-ink-secondary) !important; font-size: 13px !important; font-weight: 600; letter-spacing: 0.08em; line-height: 1.35; text-transform: uppercase; }
.oml-pricing .pricing-price { display: flex; order: 2; min-height: 50px; align-items: baseline; margin: 0 0 14px !important; color: var(--oml-ink); line-height: 1; }
.oml-pricing .pricing-price-amount { color: var(--oml-ink); font-size: 40px !important; font-weight: 700; letter-spacing: -1.4px; line-height: 1.05; }
.oml-pricing .pricing-price-currency,
.oml-pricing .pricing-price-currency-symbol { color: var(--oml-ink); font-size: 20px !important; font-weight: 600; }
.oml-pricing .pricing-details { order: 3; min-height: 40px !important; margin: 0 !important; color: var(--oml-ink-muted); font-size: 14px !important; line-height: 1.5; }
.oml-pricing .pricing-body { display: flex !important; height: 100%; flex: 1 1 auto; flex-direction: column; justify-content: flex-start !important; padding: 24px 28px 28px !important; background: var(--oml-surface) !important; }
.oml-pricing-features-summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; color: var(--oml-ink-secondary); font-size: 13px; font-weight: 600; line-height: 1.4; }
.oml-pricing-features-summary > span:last-child { flex: 0 0 auto; padding: 5px 9px; border-radius: 9999px; background: var(--oml-canvas-soft); color: var(--oml-ink-muted); font-size: 11px; font-weight: 500; }
.oml-pricing .oml-pricing-feature-list { margin: 0 !important; padding: 0 !important; }
.oml-pricing .oml-pricing-feature-list li { display: flex; min-height: 40px; align-items: center; justify-content: space-between; gap: 12px; margin: 0 !important; padding: 8px 0; color: var(--oml-ink-secondary); font-size: 14px; line-height: 1.4; }
.oml-pricing .oml-pricing-feature-list li + li { border-top: 1px solid rgba(230, 230, 230, 0.72); }
.oml-pricing .oml-pricing-feature-list li > div { min-width: 0; }
.oml-pricing .oml-pricing-feature-list li strong { color: var(--oml-ink); font-weight: 600; }
.oml-pricing .oml-pricing-feature-list li > i.fa-check,
.oml-pricing .oml-pricing-feature-list li > svg.fa-check { box-sizing: content-box; flex: 0 0 auto; width: 9px; height: 9px; padding: 5px; border-radius: 50%; background: rgba(26, 174, 57, 0.1); color: var(--oml-green) !important; }
.oml-pricing .oml-pricing-feature-list-more { border-top: 1px solid rgba(230, 230, 230, 0.72); }
.oml-pricing-more-button { display: flex; width: 100%; min-height: 44px; align-items: center; justify-content: center; gap: 8px; margin: 14px 0 18px; padding: 9px 14px; border: 1px solid var(--oml-hairline); border-radius: 10px; background: var(--oml-canvas-soft); color: var(--oml-ink-secondary); font-size: 13px; font-weight: 600; line-height: 1.4; transition: border-color 140ms ease, background-color 140ms ease; }
.oml-pricing-more-button i,
.oml-pricing-more-button svg { width: 10px; font-size: 10px; transition: transform 160ms ease; }
.oml-pricing-more-button[aria-expanded="true"] i,
.oml-pricing-more-button[aria-expanded="true"] svg { transform: rotate(180deg); }
.oml-pricing-more-button .oml-pricing-less-label { display: none; }
.oml-pricing-more-button[aria-expanded="true"] .oml-pricing-more-label { display: none; }
.oml-pricing-more-button[aria-expanded="true"] .oml-pricing-less-label { display: inline; }
.oml-pricing .pricing-tag { top: 22px; right: 24px; left: auto; padding: 5px 11px; border: 1px solid var(--oml-hairline); border-radius: 9999px; background: var(--oml-surface) !important; color: var(--oml-primary-active) !important; font-size: 11px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; transform: none; }
.oml-pricing .pricing-body .btn-primary,
.oml-pricing .pricing-body .btn-block { min-height: 46px; margin-top: auto; padding: 10px 18px; border: 1px solid var(--oml-primary) !important; border-radius: 9999px !important; background: var(--oml-primary) !important; color: #ffffff !important; font-size: 15px; font-weight: 500; box-shadow: none !important; }
.oml-pricing .pricing-body .btn-primary:active,
.oml-pricing .pricing-body .btn-block:active { background: var(--oml-primary-active) !important; transform: scale(0.96); }
.oml-pricing .btn-group-custom { padding: 4px; border: 1px solid var(--oml-hairline); border-radius: 9999px; background: var(--oml-surface); }
.oml-pricing .btn-group-custom .btn { border: 0; border-radius: 9999px !important; color: var(--oml-ink-muted); font-size: 14px; }
.oml-pricing .btn-group-custom .btn.active { background: var(--oml-canvas-soft); color: var(--oml-ink); box-shadow: none; }
.oml-pricing .badge-success { background: var(--oml-canvas-soft); color: var(--oml-green); }
.oml-pricing .text-success { color: var(--oml-green) !important; }

.oml-faq-layout { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1.28fr); gap: 96px; align-items: start; }
.oml-faq-list { border-top: 1px solid var(--oml-hairline); }
.oml-faq-item { border-bottom: 1px solid var(--oml-hairline); }
.oml-faq-item h3 { margin: 0; }
.oml-faq-button { display: flex; width: 100%; min-height: 76px; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; border: 0; background: transparent; color: var(--oml-ink); font-size: 20px; font-weight: 600; letter-spacing: -0.125px; line-height: 1.4; text-align: left; }
.oml-faq-chevron { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--oml-canvas-soft); color: var(--oml-ink-secondary); font-size: 11px; transition: transform 160ms ease; }
.oml-faq-button[aria-expanded="true"] .oml-faq-chevron { transform: rotate(180deg); color: var(--oml-primary); }
.oml-faq-answer { max-width: 640px; padding: 0 48px 24px 0; color: var(--oml-ink-muted); font-size: 16px; line-height: 1.5; }

.oml-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.oml-blog-card { display: flex; height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--oml-hairline); border-radius: 14px; background: var(--oml-surface); box-shadow: var(--oml-shadow-soft); }
.oml-blog-image-link,
.oml-blog-placeholder { display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: var(--oml-canvas-soft); }
.oml-blog-image-link img { width: 100%; height: 100%; object-fit: cover; }
.oml-blog-placeholder { display: flex; align-items: center; justify-content: center; color: var(--oml-purple-deep); font-size: 28px; }
.oml-blog-content { display: flex; flex: 1 1 auto; flex-direction: column; padding: 24px; }
.oml-blog-content h3 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.25px; line-height: 1.27; }
.oml-blog-content h3 a { color: var(--oml-ink) !important; text-decoration: none !important; }
.oml-blog-content p { display: -webkit-box; margin: 12px 0 0; overflow: hidden; color: var(--oml-ink-muted); font-size: 15px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.oml-blog-content .oml-text-link { margin-top: auto; padding-top: 22px; }

.oml-final-cta { padding: 72px 0; border-top: 1px solid var(--oml-hairline); background: var(--oml-surface); }
.oml-final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; padding: 48px; border: 1px solid var(--oml-hairline); border-radius: 16px; background: var(--oml-canvas-soft); }
.oml-final-cta-inner > div { max-width: 750px; }
.oml-final-cta h2 { font-size: 40px; letter-spacing: -1px; line-height: 1.1; }
.oml-final-cta p { margin-top: 12px; }

.oml-footer-shell { border-top: 1px solid var(--oml-hairline); background: var(--oml-canvas-soft); }
.oml-footer { padding: 64px 0 32px; color: var(--oml-ink-secondary); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; }
.oml-footer-grid { display: grid; grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.75fr)); gap: 48px; }
.oml-footer-brand p { max-width: 310px; margin: 12px 0 0; color: var(--oml-ink-muted); font-size: 14px; line-height: 1.55; }
.oml-footer-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.oml-footer-socials a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--oml-hairline); border-radius: 50%; background: var(--oml-surface); color: var(--oml-ink-secondary) !important; text-decoration: none !important; }
.oml-footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.oml-footer-column h2 { margin: 0 0 6px; color: var(--oml-ink); font-size: 14px; font-weight: 600; line-height: 1.43; }
.oml-footer-column a { color: var(--oml-ink-muted) !important; font-size: 14px; line-height: 1.43; text-decoration: none !important; }
.oml-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--oml-hairline); color: var(--oml-ink-faint); font-size: 13px; }
.oml-language-button { display: inline-flex; align-items: center; gap: 7px; min-height: 44px; padding: 7px 10px; border: 1px solid var(--oml-hairline); border-radius: 8px; background: var(--oml-surface); color: var(--oml-ink-secondary); font-size: 13px; }
.oml-footer .dropdown-menu { border: 1px solid var(--oml-hairline); border-radius: 8px; background: var(--oml-surface); box-shadow: var(--oml-shadow-soft); }
.oml-footer .dropdown-item { color: var(--oml-ink-secondary) !important; font-size: 14px; }

[dir="rtl"] .oml-claim-domain { border-right: 0; border-left: 1px solid var(--oml-hairline); }
[dir="rtl"] .oml-preview-sidebar { border-right: 0; border-left: 1px solid var(--oml-hairline); }
[dir="rtl"] .oml-preview-sidebar > span.active::before { right: -9px; left: auto; border-radius: 3px 0 0 3px; }
[dir="rtl"] .oml-faq-button { text-align: right; }
[dir="rtl"] .oml-faq-answer { padding-right: 0; padding-left: 48px; }

@media (hover: hover) {
    .oml-feature-card,
    .oml-capability-card,
    .oml-tool-card,
    .oml-blog-card { transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
    .oml-feature-card:hover,
    .oml-capability-card:hover,
    .oml-blog-card:hover { border-color: #d8d8d8; box-shadow: var(--oml-shadow-elevated); transform: translateY(-2px); }
    .oml-tool-card:hover { border-color: rgba(60, 162, 200, 0.42); box-shadow: var(--oml-shadow-elevated); transform: translateY(-2px); }
    .oml-pricing-more-button:hover { border-color: rgba(60, 162, 200, 0.4); background: #ffffff; }
}

@media (max-width: 1199.98px) {
    .oml-nav-links { margin-inline: 12px; }
    .oml-nav-link { padding-inline: 8px; }
    .oml-hero-grid { grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr); gap: 38px; }
    .oml-product-preview { width: 650px; }
    .oml-split-layout { gap: 56px; }
}

@media (max-width: 991.98px) {
    .oml-container { width: min(100% - 40px, 820px); }
    .oml-nav-toggle { display: block; }
    .oml-nav-collapse { position: absolute; top: 72px; right: 0; left: 0; padding: 16px 20px 20px; border-bottom: 1px solid var(--oml-hairline); background: var(--oml-surface); box-shadow: var(--oml-shadow-soft); }
    .oml-nav-links { align-items: stretch; gap: 0; margin: 0; }
    .oml-nav-link { justify-content: flex-start; width: 100%; padding-inline: 8px; }
    .oml-nav-actions { align-items: stretch; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--oml-hairline); }
    .oml-nav-actions > * { flex: 1 1 0; }
    .oml-hero { min-height: auto; }
    .oml-hero-grid { grid-template-columns: 1fr; gap: 56px; min-height: auto; padding-top: 72px; padding-bottom: 72px; }
    .oml-hero-copy { max-width: 680px; }
    .oml-product-preview { width: 100%; max-width: 760px; transform: none; }
    .oml-section { padding: 88px 0; }
    .oml-feature-grid,
    .oml-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .oml-feature-grid .oml-feature-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
    .oml-split-layout,
    .oml-faq-layout { grid-template-columns: 1fr; gap: 52px; }
    .oml-split-layout .oml-section-heading,
    .oml-faq-layout .oml-section-heading { max-width: 650px; }
    .oml-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .oml-blog-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
    .oml-pricing .oml-pricing-column { max-width: 560px; margin-inline: auto; }
    .oml-footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
    .oml-container { width: min(100% - 32px, 600px); }
    .oml-hero-grid { padding-top: 56px; padding-bottom: 56px; }
    .oml-hero h1 { font-size: 48px; letter-spacing: -1.8px; }
    .oml-claim-form { grid-template-columns: 1fr; }
    .oml-claim-form .oml-button { width: 100%; }
    .oml-preview-window { border-radius: 12px; }
    .oml-preview-body { grid-template-columns: 46px 1fr; min-height: 390px; }
    .oml-preview-sidebar { padding-inline: 6px; }
    .oml-preview-sidebar > span,
    .oml-preview-logo { width: 32px; height: 32px; }
    .oml-preview-content { padding: 18px; }
    .oml-preview-metrics { grid-template-columns: 1fr 1fr; }
    .oml-preview-chart { display: none !important; }
    .oml-preview-table-header,
    .oml-preview-row { grid-template-columns: minmax(0, 1.5fr) 0.65fr; }
    .oml-preview-table-header > span:nth-child(2),
    .oml-preview-row > span:nth-child(2) { display: none; }
    .oml-section { padding: 76px 0; }
    .oml-section-heading-centered { margin-bottom: 40px; }
    .oml-feature-grid,
    .oml-capability-grid,
    .oml-tool-grid,
    .oml-blog-grid { grid-template-columns: 1fr; }
    .oml-feature-grid .oml-feature-card:last-child:nth-child(odd),
    .oml-blog-card:last-child:nth-child(odd) { grid-column: auto; }
    .oml-tools-heading,
    .oml-blog-heading { align-items: flex-start; flex-direction: column; margin-bottom: 36px; }
    .oml-analytics-breakdown { grid-template-columns: 1fr; }
    .oml-pricing .row > [class*="col-"] { padding: 8px !important; }
    .oml-pricing .pricing-header { min-height: 184px !important; padding: 26px 24px 22px !important; }
    .oml-pricing .pricing-body { padding: 22px 24px 24px !important; }
    .oml-final-cta-inner { align-items: flex-start; flex-direction: column; padding: 32px; }
    .oml-final-cta-inner .oml-button { width: 100%; }
    .oml-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
    .oml-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .oml-container { width: min(100% - 24px, 540px); }
    .oml-nav-inner { min-height: 64px; }
    .oml-nav-collapse { top: 64px; }
    .oml-hero h1 { font-size: 42px; letter-spacing: -1.5px; }
    .oml-hero-lead { font-size: 16px; }
    .oml-hero-actions { flex-direction: column; }
    .oml-hero-actions .oml-button { width: 100%; }
    .oml-hero-proof { flex-direction: column; }
    .oml-claim-field { flex-direction: column; }
    .oml-claim-domain { flex-basis: 44px; width: 100%; max-width: none; min-height: 44px; border-right: 0; border-bottom: 1px solid var(--oml-hairline); }
    [dir="rtl"] .oml-claim-domain { border-left: 0; }
    .oml-preview-address { padding-inline: 12px; }
    .oml-preview-avatar { display: none; }
    .oml-preview-topbar { grid-template-columns: auto 1fr; gap: 10px; }
    .oml-preview-address { justify-self: end; }
    .oml-preview-body { grid-template-columns: 1fr; }
    .oml-preview-sidebar { display: none; }
    .oml-preview-content { padding: 14px; }
    .oml-preview-heading > span { display: none; }
    .oml-section { padding: 64px 0; }
    .oml-section-heading h2 { font-size: 38px; letter-spacing: -1px; line-height: 1.1; }
    .oml-feature-visual { height: 190px; }
    .oml-analytics-preview { padding: 18px; }
    .oml-analytics-header { align-items: flex-start; }
    .oml-analytics-header > span { white-space: nowrap; }
    .oml-analytics-summary { grid-template-columns: 1fr; }
    .oml-line-chart { height: 170px; }
    .oml-chart-columns { gap: 5px; }
    .oml-capability-card { min-height: 0; }
    .oml-tool-card { padding: 16px; }
    .oml-tool-card small { white-space: normal; }
    .oml-pricing .pricing-price-amount { font-size: 36px !important; }
    .oml-pricing-features-summary { align-items: flex-start; flex-direction: column; gap: 8px; }
    .oml-pricing-more-button { margin-bottom: 16px; }
    .oml-faq-button { font-size: 18px; }
    .oml-final-cta { padding: 48px 0; }
    .oml-final-cta-inner { padding: 28px 24px; }
    .oml-final-cta h2 { font-size: 34px; }
    .oml-footer { padding-top: 48px; }
    .oml-footer-grid { grid-template-columns: 1fr; }
    .oml-footer-brand { grid-column: auto; }
    .oml-footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 380px) {
    .oml-preview-row { grid-template-columns: minmax(0, 1fr) auto; }
    .oml-preview-row > span:first-child .oml-row-icon { display: none; }
    .oml-preview-metrics strong { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
    .oml-homepage *,
    .oml-homepage *::before,
    .oml-homepage *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .oml-navigation-shell,
    .oml-footer-shell,
    .oml-hero-constellation { display: none !important; }
    .oml-hero { min-height: 0; background: #ffffff !important; color: #000000 !important; }
    .oml-hero h1,
    .oml-hero-lead { color: #000000 !important; }
    .oml-section { padding: 32px 0; }
}
