/* =========================================================
   Outcome Reach strategy call page
   Matched to homepage visual system
   ========================================================= */

:root {
    --bg: #090a0d;
    --bg-elev: #101218;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-hover: rgba(255, 255, 255, 0.07);
    --line: rgba(255, 255, 255, 0.12);
    --line-soft: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.2);
    --text: #f7f8fb;
    --text-muted: #b4bac8;
    --text-subtle: #7f8798;
    --accent: #00e8b0;
    --accent-hover: #28f5c3;
    --accent-subtle: rgba(0, 232, 176, 0.12);
    --accent-on-dark: #05100d;
    --violet: #8e7bff;
    --grad-text: linear-gradient(90deg, #00e8b0 0%, #8e7bff 100%);
    --max: 1120px;
    --header-h: 72px;
    --radius: 8px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--bg);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(180deg, #11131a 0%, var(--bg) 28%, #08090c 100%),
    var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    font-feature-settings: "ss01", "ss02", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
    opacity: 0.42;
}

::selection {
    background: var(--accent-subtle);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg,
iframe {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

.skip {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-160%);
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-elev);
    color: var(--text);
    transition: transform 160ms var(--ease);
}

.skip:focus {
    transform: translateY(0);
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin-inline: auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.h1 {
    max-width: 760px;
    color: var(--text);
    font-size: 3.65rem;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.05;
    text-wrap: balance;
}

.h2 {
    max-width: 760px;
    color: var(--text);
    font-size: 2.2rem;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.15;
    text-wrap: balance;
}

.gradient-text {
    background: var(--grad-text);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 12px 20px;
    color: inherit;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transition: background 160ms var(--ease),
    border-color 160ms var(--ease),
    color 160ms var(--ease),
    transform 160ms var(--ease),
    box-shadow 200ms var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.btn--sm {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 0.875rem;
}

.btn--primary {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--accent-on-dark);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.btn--primary:hover,
.btn--primary:focus-visible {
    border-color: var(--accent-hover);
    background: var(--accent-hover);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 34px rgba(0, 232, 176, 0.22);
    transform: translateY(-1px);
}

.btn:focus-visible,
.brand:focus-visible,
.footer__brand:focus-visible,
.footer__links a:focus-visible,
.or-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    background: rgba(9, 10, 13, 0.78);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    transition: background 200ms var(--ease), border-color 200ms var(--ease);
}

.header.is-scrolled {
    border-bottom-color: var(--line-soft);
    background: rgba(9, 10, 13, 0.94);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--max), calc(100% - 32px));
    height: var(--header-h);
    margin-inline: auto;
    gap: 16px;
}

.brand,
.footer__brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    max-width: 70%;
    flex: 0 1 auto;
}

.brand__logo {
    display: block;
    width: auto;
    height: 30px;
    max-width: 240px;
    max-height: 32px;
    object-fit: contain;
    object-position: left center;
    flex: 0 1 auto;
}

.footer__logo {
    display: block;
    width: auto;
    height: 26px;
    max-width: 220px;
    max-height: 28px;
    object-fit: contain;
    object-position: left center;
    flex: 0 1 auto;
}

.or-page {
    isolation: isolate;
}

.or-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px;
}

.or-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0, 232, 176, 0.11) 0%, transparent 28%),
    linear-gradient(225deg, rgba(142, 123, 255, 0.09) 0%, transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, transparent 52%);
}

.or-hero .container {
    position: relative;
    z-index: 1;
}

.or-hero__wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 48px;
    align-items: start;
}

.or-hero__copy {
    padding-top: 28px;
}

.or-hero__title {
    max-width: 660px;
}

.or-hero__title .gradient-text {
    display: block;
}

.or-sub {
    max-width: 680px;
    margin: 24px 0 28px;
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.or-sub strong {
    color: var(--text);
    font-weight: 700;
}

.or-points {
    display: grid;
    gap: 14px;
    max-width: 650px;
    margin-bottom: 28px;
}

.or-points li {
    position: relative;
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.or-check {
    position: relative;
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 3px;
    border: 1px solid rgba(0, 232, 176, 0.34);
    border-radius: 999px;
    background: var(--accent-subtle);
}

.or-check::after {
    position: absolute;
    left: 5px;
    top: 6px;
    width: 7px;
    height: 4px;
    border-left: 1.5px solid var(--accent);
    border-bottom: 1.5px solid var(--accent);
    content: "";
    transform: rotate(-45deg);
}

.or-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kpi,
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: var(--radius);
    padding: 8px 14px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.kpi {
    border: 1px solid rgba(0, 232, 176, 0.22);
    background: var(--accent-subtle);
    color: var(--text);
}

.pill {
    gap: 8px;
    border: 1px solid rgba(142, 123, 255, 0.28);
    background: rgba(142, 123, 255, 0.11);
    color: var(--text);
}

.pill::before {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--violet);
    box-shadow: 0 0 8px rgba(142, 123, 255, 0.7);
    content: "";
}

.or-cal-card {
    display: grid;
    grid-template-rows: auto minmax(520px, 1fr) auto;
    min-height: 720px;
    max-height: calc(100vh - var(--header-h) - 48px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--bg-elev);
    box-shadow: var(--shadow);
}

.or-cal-head {
    padding: 26px 28px 22px;
    border-bottom: 1px solid var(--line-soft);
}

.or-cal-eyebrow {
    margin-bottom: 10px;
}

.or-cal-title {
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.or-cal-head p:last-child {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.or-cal-scroll {
    position: relative;
    min-height: 0;
    overflow-y: auto;
    padding: 12px;
    -webkit-overflow-scrolling: touch;
}

.or-cal-scroll iframe {
    width: 100%;
    height: 1180px;
    border: 0;
    border-radius: var(--radius);
    background: #ffffff;
}

.or-cal-scroll::after {
    position: sticky;
    bottom: 0;
    display: block;
    height: 36px;
    margin-top: -36px;
    pointer-events: none;
    background: linear-gradient(to top, rgba(16, 18, 24, 0.98), rgba(16, 18, 24, 0));
    content: "";
}

.or-safe {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
    border-top: 1px solid var(--line-soft);
    color: var(--text-subtle);
    font-size: 0.8125rem;
    line-height: 1.55;
}

.or-lock {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    color: var(--accent);
}

.section {
    position: relative;
    padding: 96px 0;
}

.section--muted {
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.018);
}

.section-head {
    max-width: 760px;
    margin-bottom: 56px;
}

.or-steps__wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.or-step,
.or-info__item {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border-color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}

.or-step {
    min-height: 250px;
    padding: 28px;
}

.or-step:hover,
.or-info__item:hover {
    border-color: var(--line);
    background: var(--surface-hover);
    transform: translateY(-2px);
}

.or-step__num {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0;
}

.or-step h3,
.or-info__item h3 {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
}

.or-step p,
.or-info__item p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.or-step strong,
.or-info__item strong {
    color: var(--text);
    font-weight: 700;
}

.or-info__head {
    margin-bottom: 40px;
}

.or-info__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.or-info__item {
    padding: 24px;
}

.or-note {
    max-width: 760px;
    margin: 40px auto 0;
    text-align: center;
}

.or-tagline {
    position: relative;
    margin-bottom: 20px;
    padding-top: 22px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.or-tagline::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 72px;
    height: 1px;
    background: var(--grad-text);
    content: "";
    transform: translateX(-50%);
}

.or-legal {
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
    color: var(--text-subtle);
    font-size: 0.8125rem;
    line-height: 1.65;
}

.or-link {
    color: var(--accent);
    font-weight: 700;
    transition: color 160ms var(--ease);
}

.or-link:hover {
    color: var(--accent-hover);
}

.footer {
    border-top: 1px solid var(--line-soft);
    background: #08090c;
    padding: 48px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__meta {
    flex: 1 1 320px;
    color: var(--text-subtle);
    font-size: 0.8125rem;
    line-height: 1.65;
    text-align: center;
}

.footer__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer__links a {
    color: var(--text-muted);
    font-size: 0.8125rem;
    transition: color 160ms var(--ease);
}

.footer__links a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .h1 {
        font-size: 3.1rem;
    }

    .or-hero {
        padding: 72px 0 80px;
    }

    .or-hero__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .or-hero__copy {
        padding-top: 0;
    }

    .or-cal-card {
        max-height: none;
    }

    .section {
        padding: 80px 0;
    }

    .or-steps__wrap,
  .or-info__grid {
        grid-template-columns: 1fr;
    }

    .or-step {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .h1 {
        font-size: 2.55rem;
    }

    .h2 {
        font-size: 1.85rem;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .or-sub {
        font-size: 1rem;
    }

    .or-cal-card {
        min-height: 680px;
    }

    .or-cal-scroll iframe {
        height: 960px;
    }
}

@media (max-width: 580px) {
    :root {
        --header-h: 64px;
    }

    .container {
        width: min(var(--max), calc(100% - 32px));
    }

    .header__inner {
        width: min(var(--max), calc(100% - 24px));
        gap: 10px;
    }

    .brand {
        max-width: calc(100% - 132px);
    }

    .brand__logo {
        height: 24px;
        max-width: 180px;
        max-height: 26px;
    }

    .footer__logo {
        height: 22px;
        max-width: 170px;
        max-height: 24px;
    }

    .btn--sm {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 0.8125rem;
    }

    .or-hero {
        padding: 52px 0 64px;
    }

    .section {
        padding: 64px 0;
    }

    .h1 {
        font-size: 2.15rem;
    }

    .h2 {
        font-size: 1.65rem;
    }

    .or-points {
        gap: 12px;
    }

    .or-trust {
        align-items: stretch;
        flex-direction: column;
    }

    .kpi,
  .pill {
        justify-content: center;
        text-align: center;
    }

    .or-cal-card {
        min-height: 640px;
    }

    .or-cal-head {
        padding: 22px 20px 18px;
    }

    .or-cal-scroll {
        padding: 8px;
    }

    .or-cal-scroll iframe {
        height: 880px;
    }

    .or-safe {
        padding: 14px;
    }

    .or-step,
  .or-info__item {
        padding: 22px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .footer__brand {
        justify-content: center;
        max-width: 100%;
    }

    .footer__meta {
        flex-basis: auto;
        min-width: 0;
    }

    .footer__links {
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .h1 {
        font-size: 1.9rem;
    }

    .h2 {
        font-size: 1.45rem;
    }

    .brand {
        max-width: calc(100% - 118px);
    }

    .brand__logo {
        max-width: 150px;
    }

    .or-cal-head,
  .or-step,
  .or-info__item {
        padding-inline: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
  *::before,
  *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
