:root {
    color-scheme: light;
    --apv2-ink: var(--anora-ink, #121316);
    --apv2-muted: var(--anora-muted, #646a73);
    --apv2-faint: var(--anora-faint, #8d939c);
    --apv2-canvas: var(--anora-canvas, #fbfcfd);
    --apv2-surface: var(--anora-surface, #ffffff);
    --apv2-line: var(--anora-line, rgba(18, 22, 29, .105));
    --apv2-mint: var(--anora-mint, #08a88d);
    --apv2-mint-dark: #078b76;
    --apv2-mint-soft: var(--anora-mint-soft, #eaf8f5);
    --apv2-blue: var(--anora-blue, #3867f3);
    --apv2-blue-soft: var(--anora-blue-soft, #eff2ff);
    --apv2-violet: var(--anora-violet, #7a61ed);
    --apv2-violet-soft: var(--anora-violet-soft, #f3f0ff);
    --apv2-coral: #ed755f;
    --apv2-coral-soft: #fff1ee;
    --apv2-shadow: 0 18px 50px rgba(42, 50, 63, .065), 0 2px 8px rgba(42, 50, 63, .035);
    --apv2-shadow-hover: 0 26px 68px rgba(42, 50, 63, .115), 0 6px 18px rgba(42, 50, 63, .05);
    --apv2-radius-control: 14px;
    --apv2-radius-card: 24px;
    --apv2-radius-stage: 30px;
    --apv2-font: var(--anora-font, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif);
    --apv2-readable-min: 12px;
    --apv2-header-height: 78px;
}

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

html {
    min-width: 320px;
    min-height: 100%;
    background: var(--apv2-canvas);
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--apv2-header-height) + 28px);
}

body.apv2-body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--apv2-ink);
    background: var(--apv2-canvas);
    font-family: var(--apv2-font);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.apv2-menu-open { overflow: hidden; }

button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img, svg { display: block; }

.apv2-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.apv2-symbols symbol,
.apv2-body svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.apv2-skip-link {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 200;
    padding: 11px 15px;
    border-radius: 11px;
    color: #fff;
    background: var(--apv2-ink);
    font-size: 14px;
    font-weight: 680;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform .18s ease;
}

.apv2-skip-link:focus { transform: translateY(0); }

.apv2-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 90;
    height: calc(var(--apv2-header-height) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    border-bottom: 1px solid transparent;
    background: rgba(251, 252, 253, .74);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.apv2-header.is-scrolled,
body.apv2-menu-open .apv2-header {
    border-color: rgba(18, 22, 29, .085);
    background: rgba(251, 252, 253, .94);
    box-shadow: 0 8px 30px rgba(40, 47, 58, .045);
}

.apv2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 48px, 1400px);
    height: var(--apv2-header-height);
    margin-inline: auto;
}

.apv2-brand {
    display: inline-flex;
    align-items: center;
    min-width: 170px;
    color: var(--apv2-ink);
    text-decoration: none;
}

.apv2-brand-logo {
    display: block;
    width: 148px;
    height: auto;
}

.apv2-desktop-nav {
    position: absolute;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 4px;
    transform: translateX(-50%);
}

.apv2-desktop-nav a,
.apv2-login-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 13px;
    color: #34383f;
    font-size: 13px;
    font-weight: 570;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.apv2-desktop-nav a:hover,
.apv2-login-link:hover { color: var(--apv2-ink); background: rgba(18, 22, 29, .045); }
.apv2-desktop-nav a:active,
.apv2-login-link:active { transform: scale(.97); }
.apv2-desktop-nav a[aria-current="page"] { color: var(--apv2-mint-dark); background: var(--apv2-mint-soft); }

.apv2-header-actions { display: flex; align-items: center; gap: 7px; }

.apv2-preview-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-right: 5px;
    padding: 0 10px;
    border: 1px solid rgba(122, 97, 237, .15);
    border-radius: 999px;
    color: #6952d1;
    background: rgba(243, 240, 255, .78);
    font-size: 11px;
    font-weight: 740;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.apv2-header-cta,
.apv2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--apv2-radius-control);
    font-size: 14px;
    font-weight: 660;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}

.apv2-header-cta { min-height: 44px; color: #fff; background: var(--apv2-ink); }
.apv2-header-cta svg,
.apv2-button svg { width: 18px; height: 18px; transition: transform .22s ease; }
.apv2-header-cta:hover,
.apv2-button-primary:hover { box-shadow: 0 10px 24px rgba(18, 22, 29, .15); transform: translateY(-1px); }
.apv2-header-cta:hover svg,
.apv2-button:hover svg { transform: translateX(3px); }
.apv2-header-cta:active,
.apv2-button:active { transform: scale(.98); }

.apv2-button-primary { color: #fff; background: var(--apv2-ink); }
.apv2-button-mint { color: #fff; background: var(--apv2-mint-dark); }
.apv2-button-secondary { border-color: var(--apv2-line); color: var(--apv2-ink); background: rgba(255,255,255,.78); }
.apv2-button-secondary:hover { border-color: rgba(18, 22, 29, .18); background: #fff; box-shadow: 0 8px 22px rgba(42, 50, 63, .07); transform: translateY(-1px); }
.apv2-button-ghost { color: var(--apv2-muted); background: transparent; }
.apv2-button-ghost:hover { color: var(--apv2-ink); background: rgba(18, 22, 29, .045); }

.apv2-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(18, 22, 29, .09);
    border-radius: 14px;
    color: var(--apv2-ink);
    background: rgba(255,255,255,.78);
    cursor: pointer;
}
.apv2-menu-toggle svg { width: 23px; height: 23px; margin: auto; }
.apv2-menu-toggle .is-close { display: none; }
.apv2-menu-toggle[aria-expanded="true"] .is-menu { display: none; }
.apv2-menu-toggle[aria-expanded="true"] .is-close { display: block; }

.apv2-mobile-menu {
    position: fixed;
    inset: calc(var(--apv2-header-height) + env(safe-area-inset-top)) 0 0;
    z-index: 85;
    overflow-y: auto;
    visibility: hidden;
    background: var(--apv2-canvas);
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility .28s ease, opacity .28s ease, transform .28s ease;
}

.apv2-mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }

.apv2-mobile-menu-inner {
    display: flex;
    width: min(100% - 40px, 620px);
    min-height: 100%;
    margin-inline: auto;
    padding: 12px 0 max(20px, env(safe-area-inset-bottom));
    flex-direction: column;
}

.apv2-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--apv2-mint-dark);
    font-size: 12px;
    font-weight: 740;
    letter-spacing: .105em;
    text-transform: uppercase;
}
.apv2-kicker svg { width: 16px; height: 16px; }

.apv2-mobile-menu nav { display: grid; }
.apv2-mobile-menu nav a {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr) 22px;
    align-items: center;
    min-height: 64px;
    border-bottom: 1px solid var(--apv2-line);
    color: var(--apv2-ink);
    text-decoration: none;
}
.apv2-mobile-menu nav a span { color: var(--apv2-faint); font-size: 11px; font-weight: 720; letter-spacing: .08em; }
.apv2-mobile-menu nav a strong {
    display: flex;
    min-width: 0;
    flex-direction: column;
    font-size: clamp(18px, 4.9vw, 24px);
    font-weight: 670;
    letter-spacing: -.035em;
    line-height: 1.05;
}
.apv2-mobile-menu nav a strong small {
    margin-top: 3px;
    color: var(--apv2-muted);
    font-size: 12px;
    font-weight: 540;
    letter-spacing: 0;
    line-height: 1.25;
}
.apv2-mobile-menu nav a svg { width: 21px; height: 21px; color: var(--apv2-faint); }
.apv2-mobile-actions { display: grid; gap: 10px; margin-top: auto; padding-top: 20px; }
.apv2-mobile-actions .apv2-button { min-height: 54px; }
.apv2-mobile-meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 18px; color: var(--apv2-faint); font-size: 11px; font-weight: 640; letter-spacing: .04em; text-transform: uppercase; }

.apv2-main { padding-top: calc(var(--apv2-header-height) + env(safe-area-inset-top)); }

.apv2-section { position: relative; padding: 112px 0; }
.apv2-section-compact { padding: 80px 0; }
.apv2-section-tint { background: rgba(242, 245, 246, .72); }
.apv2-section-ink { overflow: hidden; color: #fff; background: #14171b; }

.apv2-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 44px;
}
.apv2-section-head > div { max-width: 760px; }
.apv2-section-head h2 {
    max-width: 740px;
    margin: 12px 0 0;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 690;
    letter-spacing: -.055em;
    line-height: .99;
}
.apv2-section-head > p {
    max-width: 420px;
    margin: 0;
    color: var(--apv2-muted);
    font-size: 16px;
    line-height: 1.65;
}
.apv2-section-ink .apv2-section-head > p { color: rgba(255,255,255,.64); }

.apv2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--apv2-mint-dark);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.apv2-eyebrow::before { width: 22px; height: 1px; background: currentColor; content: ""; }

.apv2-display {
    margin: 0;
    font-size: clamp(52px, 7.2vw, 98px);
    font-weight: 680;
    letter-spacing: -.066em;
    line-height: .91;
}

.apv2-gradient-text {
    color: currentColor;
    background: none;
}

.apv2-lead {
    max-width: 700px;
    margin: 24px 0 0;
    color: var(--apv2-muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.apv2-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.apv2-actions .apv2-button { min-height: 54px; padding-inline: 21px; }

.apv2-card {
    border: 1px solid var(--apv2-line);
    border-radius: var(--apv2-radius-card);
    background: rgba(255,255,255,.78);
    box-shadow: var(--apv2-shadow);
}

.apv2-preview-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 20px;
    border-bottom: 1px solid rgba(122, 97, 237, .1);
    color: #6852c9;
    background: #f5f2ff;
    font-size: 12px;
    font-weight: 650;
    text-align: center;
}
.apv2-preview-note svg { width: 16px; height: 16px; }

.apv2-reveal {
    opacity: 1;
    transform: none;
}

.apv2-js .apv2-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.2,1);
}
.apv2-js .apv2-reveal.is-visible { opacity: 1; transform: translateY(0); }

.apv2-footer {
    position: relative;
    z-index: 2;
    padding: 72px max(24px, calc((100vw - 1216px) / 2)) 28px;
    border-top: 1px solid var(--apv2-line);
    background: #f4f6f7;
}

.apv2-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(500px, 1.3fr);
    gap: 80px;
    padding-bottom: 54px;
}
.apv2-footer-brand > p { max-width: 360px; margin: 22px 0 0; color: var(--apv2-muted); font-size: 14px; line-height: 1.65; }
.apv2-footer-links { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 30px; }
.apv2-footer-links > div { display: flex; flex-direction: column; gap: 11px; }
.apv2-footer-links strong { margin-bottom: 4px; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.apv2-footer-links a { color: var(--apv2-muted); font-size: 14px; text-decoration: none; transition: color .2s ease; }
.apv2-footer-links a:hover { color: var(--apv2-mint-dark); }
.apv2-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--apv2-line); color: var(--apv2-faint); font-size: 12px; }

.apv2-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

:where(.apv2-body) :focus-visible {
    outline: 3px solid rgba(56, 103, 243, .45);
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .apv2-desktop-nav { gap: 0; }
    .apv2-desktop-nav a { padding-inline: 9px; }
    .apv2-preview-pill { display: none; }
}

@media (max-width: 980px) {
    :root { --apv2-header-height: 72px; }
    .apv2-header-inner { width: min(100% - 32px, 1400px); }
    .apv2-desktop-nav,
    .apv2-header-cta { display: none; }
    .apv2-login-link {
        min-height: 44px;
        padding-inline: 14px;
        border: 1px solid rgba(18, 22, 29, .09);
        background: rgba(255,255,255,.78);
    }
    .apv2-menu-toggle { display: grid; }
    .apv2-section { padding: 88px 0; }
    .apv2-section-head { align-items: start; flex-direction: column; gap: 18px; }
    .apv2-footer-main { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 700px) {
    .apv2-container { width: calc(100% - 32px); }
    .apv2-header-inner { width: calc(100% - 28px); }
    .apv2-brand { min-width: 0; }
    .apv2-brand-logo { width: 136px; }
    .apv2-section { padding: 72px 0; }
    .apv2-section-compact { padding: 58px 0; }
    .apv2-section-head { margin-bottom: 30px; }
    .apv2-section-head h2 { overflow-wrap: normal; word-break: normal; font-size: clamp(32px, 9.8vw, 44px); hyphens: none; }
    .apv2-display { font-size: clamp(48px, 14vw, 66px); }
    .apv2-lead { font-size: 18px; }
    .apv2-actions { display: grid; grid-template-columns: 1fr; }
    .apv2-actions .apv2-button { width: 100%; }
    .apv2-footer { padding: 56px 16px 24px; }
    .apv2-footer-links { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .apv2-footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 390px) {
    .apv2-brand-logo { width: 128px; }
    .apv2-header-actions { gap: 5px; }
    .apv2-login-link { min-height: 42px; padding-inline: 11px; font-size: 13px; }
    .apv2-menu-toggle { width: 44px; height: 44px; }
    .apv2-mobile-menu-inner { width: calc(100% - 28px); padding-top: 10px; }
    .apv2-mobile-menu nav a { min-height: 60px; }
    .apv2-mobile-menu nav a strong { font-size: 18px; }
    .apv2-mobile-menu nav a strong small { font-size: 12px; }
    .apv2-footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .apv2-js .apv2-reveal { opacity: 1; transform: none; }
}
