/* ═══════════════════════════════════════════════════════════════════════
   Boring Order Tracker – Modern App Landing Page
   Professional, clean design inspired by App Store product pages
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    --bg: #fafafa;
    --bg-warm: #f8f6f3;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-dark: #111318;
    --text: #111318;
    --text-secondary: #555d6b;
    --muted: #6b7280;
    --line: rgba(0, 0, 0, 0.06);
    --accent: #0a7d71;
    --accent-hover: #065f56;
    --accent-soft: rgba(10, 125, 113, 0.08);
    --accent-glow: rgba(10, 125, 113, 0.15);
    --blue: #2563eb;
    --blue-soft: rgba(37, 99, 235, 0.08);
    --warm: #e27d3f;
    --warm-soft: rgba(226, 125, 63, 0.1);
    --red: #dc2626;
    --green: #16a34a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.06), 0 20px 50px -12px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 50px -10px rgba(0,0,0,0.1);
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --container: 1240px;
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

/* ─── Protected VIN Ship Finder ────────────────────────────────────── */
.vin-finder-page {
    background:
        radial-gradient(circle at 18% 5%, rgba(10, 125, 113, 0.07), transparent 30%),
        var(--bg);
}

.vin-finder-skip {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    background: var(--surface-dark);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 0.15s ease;
}

.vin-finder-skip:focus {
    transform: translateY(0);
}

.vin-finder-main {
    min-height: 70vh;
    outline: none;
}

.container.vin-finder-shell {
    width: min(calc(100% - 40px), 1040px);
    margin: 0 auto;
}

.vin-finder-hero {
    padding: 76px 0 66px;
    border-bottom: 1px solid rgba(10, 125, 113, 0.1);
    background:
        radial-gradient(circle at 85% 20%, rgba(10, 125, 113, 0.17), transparent 26%),
        linear-gradient(145deg, #f8fbfa 0%, #f6f7f4 100%);
}

.vin-finder-hero .eyebrow {
    margin-bottom: 18px;
}

.vin-finder-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 760;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.vin-finder-lead {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--text-secondary);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.65;
}

.vin-finder-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 760px;
    margin-top: 30px;
    padding: 18px 20px;
    border: 1px solid rgba(10, 125, 113, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

.vin-finder-lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 900;
}

.vin-finder-privacy-note strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
}

.vin-finder-privacy-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.vin-finder-content {
    padding: 56px 0 88px;
}

.vin-finder-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
    align-items: start;
    gap: 22px;
}

.vin-finder-card,
.vin-finder-result,
.vin-finder-vehicle-card,
.vin-finder-notice {
    border: 1px solid var(--line);
    border-radius: var(--radius-2xl);
    background: var(--surface-strong);
    box-shadow: var(--shadow-md);
}

.vin-finder-vehicle-card {
    margin-bottom: 24px;
    padding: 25px 30px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(243, 248, 255, 0.98), rgba(232, 246, 242, 0.98));
    box-shadow: var(--shadow-sm);
}

.vin-finder-vehicle-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.vin-finder-vehicle-details > div {
    min-width: 0;
}

.vin-finder-vehicle-details dt {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 780;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vin-finder-vehicle-details dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-size: 15px;
    font-weight: 760;
}

.vin-finder-card {
    padding: 32px;
}

.vin-finder-card h2 {
    margin: 0 0 22px;
    font-size: 25px;
    font-weight: 740;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.vin-finder-form-card form {
    display: grid;
    gap: 22px;
}

.vin-finder-field {
    display: grid;
    gap: 7px;
}

.vin-finder-field label {
    color: var(--text);
    font-size: 14px;
    font-weight: 720;
}

.vin-finder-field input,
.vin-finder-field select {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid rgba(17, 19, 24, 0.16);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 16px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vin-finder-field input {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vin-finder-field input:focus,
.vin-finder-field select:focus {
    border-color: var(--accent);
    outline: 0;
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.vin-finder-field small,
.vin-finder-protection,
.vin-finder-turnstile noscript p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.vin-finder-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.vin-finder-turnstile {
    min-height: 67px;
    max-width: 100%;
    overflow: hidden;
}

.vin-finder-turnstile .cf-turnstile {
    max-width: 100%;
}

.vin-finder-turnstile noscript p {
    padding: 10px 12px;
    border-radius: var(--radius-xs);
    background: var(--warm-soft);
    color: #824318;
}

.vin-finder-submit {
    width: 100%;
    min-height: 52px;
}

.vin-finder-protection {
    text-align: center;
}

.vin-finder-about {
    background:
        radial-gradient(circle at top right, rgba(10, 125, 113, 0.1), transparent 40%),
        #fff;
}

.vin-finder-about p {
    margin: 0 0 18px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.vin-finder-about a {
    color: var(--accent);
    font-size: 14px;
    font-weight: 720;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.vin-finder-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    padding: 24px 26px;
}

.vin-finder-notice--error {
    border-color: rgba(220, 38, 38, 0.18);
    background: #fffafa;
}

.vin-finder-notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
    font-weight: 900;
}

.vin-finder-notice h2 {
    margin: 1px 0 5px;
    font-size: 19px;
    line-height: 1.3;
}

.vin-finder-notice p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.vin-finder-notice .vin-finder-retry {
    margin-top: 6px;
    font-weight: 700;
}

.vin-finder-result {
    position: relative;
    margin-bottom: 24px;
    padding: 34px;
    overflow: hidden;
}

.vin-finder-result::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: var(--accent);
}

.vin-finder-result--conflict::before {
    background: var(--warm);
}

.vin-finder-result--none::before {
    background: var(--blue);
}

.vin-finder-result-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.vin-finder-result-kicker {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vin-finder-result--conflict .vin-finder-result-kicker {
    color: #a45220;
}

.vin-finder-result--none .vin-finder-result-kicker {
    color: var(--blue);
}

.vin-finder-result h2 {
    margin: 0;
    font-size: clamp(27px, 4vw, 40px);
    font-weight: 760;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.vin-finder-result > p:not(.vin-finder-result-kicker):not(.vin-finder-disclaimer):not(.vin-finder-updated) {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--text-secondary);
}

.vin-finder-result > .vin-finder-vehicle-ship-summary {
    padding: 13px 15px;
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    background: var(--accent-soft);
    color: var(--text);
    font-weight: 720;
}

.vin-finder-estimated-badge {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--warm-soft);
    color: #9a4f20;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vin-finder-confidence {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--accent-soft);
}

.vin-finder-confidence-copy {
    display: grid;
    gap: 2px;
}

.vin-finder-confidence-copy span {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vin-finder-confidence-copy strong {
    font-size: 30px;
    line-height: 1;
}

.vin-finder-confidence-copy small {
    margin-top: 3px;
    color: var(--accent-hover);
    font-size: 12px;
    font-weight: 700;
}

.vin-finder-confidence progress {
    width: 100%;
    height: 13px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: rgba(10, 125, 113, 0.14);
    color: var(--accent);
}

.vin-finder-confidence progress::-webkit-progress-bar {
    border-radius: 999px;
    background: rgba(10, 125, 113, 0.14);
}

.vin-finder-confidence progress::-webkit-progress-value {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #27a695);
}

.vin-finder-confidence progress::-moz-progress-bar {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #27a695);
}

/* Public, server-rendered fleet compass. No map provider or client data feed. */
.vin-fleet-compass {
    position: relative;
    margin: 0 0 28px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(10, 125, 113, 0.14);
    border-radius: var(--radius-2xl);
    background:
        radial-gradient(circle at 8% 4%, rgba(10, 125, 113, 0.11), transparent 30%),
        linear-gradient(145deg, #f9fcfa 0%, #f4f8f6 100%);
    box-shadow: var(--shadow-lg);
}

.vin-fleet-compass::after {
    position: absolute;
    top: -90px;
    right: -70px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(10, 125, 113, 0.08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.vin-fleet-compass-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.vin-fleet-compass-header > div {
    max-width: 690px;
}

.vin-fleet-compass-header h2 {
    margin: 0;
    font-size: clamp(27px, 4vw, 40px);
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.vin-fleet-compass-header p:not(.vin-finder-result-kicker) {
    margin: 10px 0 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.55;
}

.vin-fleet-compass-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    min-height: 46px;
    white-space: nowrap;
}

.vin-fleet-compass-cta span {
    font-size: 22px;
    line-height: 1;
}

.vin-fleet-compass-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: stretch;
    gap: 18px;
}

.vin-fleet-map {
    display: flex;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(10, 125, 113, 0.16);
    border-radius: var(--radius-xl);
    background: #dcece8;
    box-shadow: var(--shadow-sm);
}

.vin-fleet-map-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 52px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(10, 125, 113, 0.13);
    background: rgba(255, 255, 255, 0.9);
}

.vin-fleet-map-bar strong {
    font-size: 14px;
}

.vin-fleet-map-bar span {
    color: var(--accent-hover);
    font-size: 12px;
    font-weight: 760;
}

.vin-fleet-map-viewport {
    position: relative;
    display: flex;
    min-height: 350px;
    overflow: hidden;
    flex: 1 1 auto;
    background: #dcece8;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.vin-fleet-map-viewport.is-interactive {
    cursor: grab;
}

.vin-fleet-map-viewport.is-dragging {
    cursor: grabbing;
}

.vin-fleet-map-viewport:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.48);
    outline-offset: -4px;
}

.vin-fleet-map svg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #dcece8;
}

.vin-fleet-map-controls {
    position: absolute;
    z-index: 4;
    top: 12px;
    right: 12px;
    display: grid;
    overflow: hidden;
    grid-template-columns: 44px minmax(56px, auto) 44px 44px;
    min-height: 44px;
    border: 1px solid rgba(10, 74, 69, 0.2);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 22px rgba(16, 62, 59, 0.15);
    backdrop-filter: blur(8px);
}

.vin-fleet-map-controls[hidden],
.vin-fleet-map-help[hidden] {
    display: none;
}

.vin-fleet-map-controls button,
.vin-fleet-map-controls output {
    display: inline-flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 9px;
    border: 0;
    border-right: 1px solid rgba(10, 74, 69, 0.13);
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    line-height: 1;
}

.vin-fleet-map-controls button {
    cursor: pointer;
    font-size: 21px;
    font-weight: 760;
}

.vin-fleet-map-controls output {
    color: var(--accent-hover);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.vin-fleet-map-controls button:last-child {
    border-right: 0;
}

.vin-fleet-map-controls button:hover:not(:disabled) {
    background: var(--accent-soft);
    color: var(--accent-hover);
}

.vin-fleet-map-controls button:disabled {
    cursor: default;
    opacity: 0.4;
}

.vin-fleet-map-controls button:focus-visible {
    position: relative;
    z-index: 1;
    outline: 3px solid rgba(37, 99, 235, 0.46);
    outline-offset: -4px;
}

.vin-fleet-map-reset span {
    display: block;
    transform: translateY(-1px);
}

.vin-fleet-map-help {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 10px;
    left: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
    margin: 0;
    padding: 7px 10px;
    border: 1px solid rgba(10, 74, 69, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #315854;
    font-size: 10px;
    font-weight: 650;
    line-height: 1.35;
    pointer-events: none;
    backdrop-filter: blur(7px);
}

.vin-fleet-map-route {
    display: none;
}

.vin-fleet-map-route.is-selected {
    display: inline;
}

.vin-fleet-map-route-actual,
.vin-fleet-map-route-planned {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.vin-fleet-map-route-actual {
    stroke: var(--accent);
    stroke-width: 2.25;
    stroke-dasharray: 7 5;
}

.vin-fleet-map-route-planned {
    stroke: var(--warm);
    stroke-width: 2.25;
    stroke-dasharray: 3 8;
}

.vin-fleet-map-port {
    fill: #fff;
    vector-effect: non-scaling-stroke;
}

.vin-fleet-map-port--actual {
    stroke: var(--accent);
    stroke-width: 2;
}

.vin-fleet-map-port--planned {
    stroke: var(--warm);
    stroke-width: 2;
}

.vin-fleet-map-marker-halo {
    fill: rgba(10, 125, 113, 0.09);
    stroke: rgba(10, 125, 113, 0.34);
    stroke-width: 1.5;
    vector-effect: non-scaling-stroke;
}

.vin-fleet-map-marker-core {
    fill: #fff;
    stroke: var(--accent);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.vin-fleet-map-marker-ship {
    fill: var(--accent);
    stroke: #fff;
    stroke-width: 1.2;
    vector-effect: non-scaling-stroke;
}

.vin-fleet-map-marker--suspected .vin-fleet-map-marker-halo {
    fill: rgba(226, 125, 63, 0.1);
    stroke: rgba(226, 125, 63, 0.5);
    stroke-dasharray: 3 3;
}

.vin-fleet-map-marker--suspected .vin-fleet-map-marker-core {
    stroke: var(--warm);
}

.vin-fleet-map-marker--suspected .vin-fleet-map-marker-ship {
    fill: var(--warm);
}

.vin-fleet-map-marker:not(.is-selected) {
    opacity: 0.68;
}

.vin-fleet-map-marker.is-selected .vin-fleet-map-marker-halo {
    stroke-width: 3;
}

.vin-fleet-map-marker text {
    fill: var(--text);
    font-family: var(--font);
    font-size: 17px;
    font-weight: 800;
    paint-order: stroke;
    stroke: #dcece8;
    stroke-linejoin: round;
    stroke-width: 5px;
}

.vin-fleet-map figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px 16px;
    padding: 11px 14px;
    border-top: 1px solid rgba(10, 125, 113, 0.13);
    background: rgba(255, 255, 255, 0.88);
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.vin-fleet-map figcaption > span:first-child {
    max-width: 60ch;
}

.vin-fleet-map-legend {
    display: inline-flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 5px 11px;
    color: #315854;
    font-size: 9px;
    font-weight: 700;
}

.vin-fleet-map-legend > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.vin-fleet-map-legend-line {
    display: inline-block;
    width: 23px;
    height: 0;
    border-top: 3px solid var(--accent);
    border-radius: 999px;
}

.vin-fleet-map-legend-line--actual {
    border-top-style: dashed;
}

.vin-fleet-map-legend-line--planned {
    border-top-color: var(--warm);
    border-top-style: dashed;
}

.vin-fleet-compass-side {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
}

.vin-fleet-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.vin-fleet-selector-button {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 8px 9px;
    border: 1px solid rgba(10, 125, 113, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.vin-fleet-selector-button:hover {
    border-color: rgba(10, 125, 113, 0.32);
    background: #fff;
}

.vin-fleet-selector-button.is-selected,
.vin-fleet-selector-button[aria-pressed="true"] {
    border-color: rgba(10, 125, 113, 0.4);
    background: var(--accent-soft);
    box-shadow: inset 0 0 0 1px rgba(10, 125, 113, 0.08);
}

.vin-fleet-selector-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-hover);
    font-size: 11px;
    font-weight: 850;
}

.vin-fleet-selector-copy {
    display: grid;
    min-width: 0;
}

.vin-fleet-selector-copy strong,
.vin-fleet-selector-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vin-fleet-selector-copy strong {
    font-size: 11px;
    letter-spacing: 0.015em;
}

.vin-fleet-selector-copy small {
    color: var(--muted);
    font-size: 10px;
}

.vin-fleet-selector-match {
    grid-column: 1 / -1;
    color: var(--accent-hover);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vin-fleet-panels {
    flex: 1 1 auto;
}

.vin-fleet-a11y-status {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.vin-fleet-panel {
    height: 100%;
    padding: 20px;
    border: 1px solid rgba(10, 125, 113, 0.13);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.vin-fleet-panel + .vin-fleet-panel {
    margin-top: 12px;
}

.vin-fleet-compass.is-enhanced .vin-fleet-panel:not(.is-selected) {
    display: none;
}

.vin-fleet-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}

.vin-fleet-panel-heading h3 {
    margin: 9px 0 0;
    overflow-wrap: anywhere;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.vin-fleet-panel-heading p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.vin-fleet-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-hover);
    font-size: 10px;
    font-weight: 780;
}

.vin-fleet-status > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.vin-fleet-status--suspected {
    background: var(--warm-soft);
    color: #9a4f20;
}

.vin-fleet-status--suspected > span {
    border-radius: 1px;
    transform: rotate(45deg);
}

.vin-fleet-match-badge {
    flex: 0 0 auto;
    padding: 5px 8px;
    border: 1px solid rgba(10, 125, 113, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--accent-hover);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vin-fleet-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 15px;
    margin: 17px 0 0;
}

.vin-fleet-facts > div {
    min-width: 0;
}

.vin-fleet-facts dt {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 780;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.vin-fleet-facts dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.vin-fleet-facts small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.35;
}

.vin-fleet-voyage {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.vin-fleet-voyage h4 {
    margin: 0 0 12px;
    font-size: 12px;
}

.vin-fleet-voyage ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vin-fleet-voyage li {
    position: relative;
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr);
    gap: 9px;
    min-height: 48px;
}

.vin-fleet-voyage li:not(:last-child)::after {
    position: absolute;
    top: 13px;
    bottom: 1px;
    left: 5px;
    width: 1px;
    content: "";
    background: rgba(10, 125, 113, 0.28);
}

.vin-fleet-voyage li.is-planned:not(:last-child)::after {
    background: repeating-linear-gradient(to bottom, var(--warm) 0 3px, transparent 3px 6px);
}

.vin-fleet-voyage-mark {
    position: relative;
    z-index: 1;
    width: 11px;
    height: 11px;
    margin-top: 2px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    background: #fff;
}

.vin-fleet-voyage .is-current .vin-fleet-voyage-mark {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(10, 125, 113, 0.12);
}

.vin-fleet-voyage .is-planned .vin-fleet-voyage-mark {
    border-color: var(--warm);
    border-radius: 2px;
    transform: rotate(45deg);
}

.vin-fleet-voyage small,
.vin-fleet-voyage strong,
.vin-fleet-voyage time {
    display: block;
}

.vin-fleet-voyage small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 740;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.vin-fleet-voyage strong {
    margin-top: 1px;
    overflow-wrap: anywhere;
    font-size: 12px;
}

.vin-fleet-voyage time {
    margin-top: 2px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.35;
}

.vin-fleet-updated {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 11px;
    text-align: right;
}

.vin-finder-ship-details,
.vin-finder-route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 0;
}

.vin-finder-ship-details > div,
.vin-finder-route-grid > div {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.vin-finder-ship-details dt,
.vin-finder-route-grid dt {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 780;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vin-finder-ship-details dd,
.vin-finder-route-grid dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-size: 15px;
    font-weight: 700;
}

.vin-finder-route-grid small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.vin-finder-reasons,
.vin-finder-route {
    margin-top: 26px;
}

.vin-finder-reasons h3,
.vin-finder-route h3 {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.3;
}

.vin-finder-reasons ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vin-finder-reasons li {
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 14px;
}

.vin-finder-reasons li::before {
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    content: "✓";
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
}

.vin-finder-muted {
    margin: 0;
    padding: 15px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-warm);
    color: var(--muted);
    font-size: 13px;
}

.vin-finder-updated {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.vin-finder-disclaimer {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-left: 3px solid var(--warm);
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    background: var(--warm-soft);
    color: #74411f;
    font-size: 13px;
}

.vin-finder-candidates {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: vin-candidate;
}

.vin-finder-candidates li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(226, 125, 63, 0.2);
    border-radius: var(--radius-md);
    background: #fffcf9;
    counter-increment: vin-candidate;
}

.vin-finder-candidates li > div {
    display: grid;
    gap: 2px;
}

.vin-finder-candidates span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vin-finder-candidates strong {
    overflow-wrap: anywhere;
    font-size: 16px;
}

.vin-finder-candidates b {
    flex: 0 0 auto;
    color: #9a4f20;
    font-size: 18px;
}

.vin-finder-page .site-footer {
    background: rgba(255, 255, 255, 0.64);
}

.vin-finder-page .footer-bottom p {
    margin: 0;
}

.vin-finder-page a:focus-visible,
.vin-finder-page button:focus-visible,
.vin-finder-page input:focus-visible,
.vin-finder-page select:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.38);
    outline-offset: 3px;
}

.vin-finder-home-button {
    white-space: nowrap;
}

.vin-finder-home-arrow {
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 820px) {
    .vin-fleet-compass-layout {
        grid-template-columns: 1fr;
    }

    .vin-fleet-map-viewport {
        min-height: 0;
        aspect-ratio: 2 / 1;
    }

    .vin-fleet-selector {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vin-finder-layout {
        grid-template-columns: 1fr;
    }

    .vin-finder-about {
        order: 2;
    }
}

@media (max-width: 680px) {
    .vin-fleet-compass {
        padding: 22px 17px;
        border-radius: var(--radius-xl);
    }

    .vin-fleet-compass-header {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
    }

    .vin-fleet-compass-header h2 {
        font-size: clamp(28px, 9vw, 36px);
    }

    .vin-fleet-compass-cta {
        width: 100%;
    }

    .vin-fleet-map-viewport {
        aspect-ratio: 16 / 10;
    }

    .vin-fleet-map-controls {
        top: 9px;
        right: 9px;
        grid-template-columns: 44px minmax(52px, auto) 44px 44px;
    }

    .vin-fleet-map-help {
        right: 9px;
        bottom: 8px;
        left: 9px;
        max-width: calc(100% - 18px);
        font-size: 9px;
    }

    .vin-fleet-map figcaption {
        align-items: flex-start;
        flex-direction: column;
    }

    .vin-fleet-map-legend {
        justify-content: flex-start;
    }

    .vin-fleet-map-marker-halo {
        r: 25px;
    }

    .vin-fleet-map-marker-core {
        r: 13px;
    }

    .vin-fleet-map-marker text {
        font-size: 30px;
        stroke-width: 7px;
    }

    .vin-fleet-map-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .vin-fleet-selector {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vin-fleet-selector-copy strong {
        font-size: 12px;
    }

    .vin-fleet-selector-copy small,
    .vin-fleet-facts dt,
    .vin-fleet-facts small,
    .vin-fleet-voyage small,
    .vin-fleet-voyage time {
        font-size: 10px;
    }

    .vin-fleet-panel {
        padding: 18px 16px;
    }

    .vin-fleet-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .vin-fleet-facts {
        gap: 13px 12px;
    }

    .vin-fleet-updated {
        text-align: left;
    }

    .vin-finder-page .header-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .vin-finder-page .header-actions {
        display: flex;
        width: 100%;
        margin: 0;
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .vin-finder-page .header-cta {
        display: inline-flex;
        width: 100%;
        min-height: 46px;
        justify-content: center;
        padding: 11px 18px;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
        font-size: 15px;
        font-weight: 760;
        box-shadow: 0 12px 28px rgba(10, 125, 113, 0.22);
        order: 1;
    }

    .vin-finder-page .lang-switch {
        width: 100%;
        order: 2;
    }

    .vin-finder-page .lang-pill {
        flex: 1 1 25%;
        min-width: 0;
        padding-inline: 7px;
    }

    .container.vin-finder-shell {
        width: min(calc(100% - 24px), 1040px);
    }

    .vin-finder-hero {
        padding: 46px 0 42px;
    }

    .vin-finder-hero h1 {
        font-size: clamp(34px, 12vw, 48px);
    }

    .vin-finder-content {
        padding: 28px 0 60px;
    }

    .vin-finder-card,
    .vin-finder-result,
    .vin-finder-vehicle-card {
        padding: 23px 18px;
        border-radius: var(--radius-xl);
    }

    .vin-finder-notice {
        padding: 20px 17px;
        border-radius: var(--radius-xl);
    }

    .vin-finder-result-heading {
        display: grid;
    }

    .vin-finder-estimated-badge {
        justify-self: start;
    }

    .vin-finder-confidence {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .vin-finder-ship-details,
    .vin-finder-route-grid,
    .vin-finder-vehicle-details {
        grid-template-columns: 1fr;
    }

    .vin-finder-turnstile {
        overflow-x: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vin-finder-skip,
    .vin-finder-page * {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, ul, ol { margin-top: 0; }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

section[id] {
    scroll-margin-top: 98px;
}

/* ─── Free Banner ──────────────────────────────────────────────────── */
.free-banner {
    background: linear-gradient(135deg, #0a7d71 0%, #065f56 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}
.free-banner-inner {
    padding: 12px 0;
    text-align: center;
}
.free-banner strong {
    display: inline;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ─── Platform Store Banner ────────────────────────────────────────── */
.platform-store-banner {
    background:
        radial-gradient(circle at left center, rgba(10, 125, 113, 0.18), transparent 30%),
        linear-gradient(135deg, #101318 0%, #16222b 100%);
    color: #f8fafc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.platform-store-banner[hidden] {
    display: none;
}
.platform-store-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 0;
    text-align: center;
}
.platform-store-banner span {
    color: rgba(248, 250, 252, 0.78);
    font-size: 13px;
    font-weight: 650;
}
.platform-store-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #101318;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.platform-store-cta:hover,
.platform-store-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

/* ─── Rename Popup ─────────────────────────────────────────────────── */
.rename-popup-open {
    overflow: hidden;
}

.rename-popup {
    position: fixed;
    inset: 0;
    z-index: 260;
    display: grid;
    place-items: center;
    padding: 24px;
}

.rename-popup.is-hidden {
    display: none;
}

.rename-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rename-popup-card {
    position: relative;
    z-index: 1;
    width: min(460px, calc(100vw - 32px));
    padding: 26px 26px 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at top right, rgba(91, 229, 214, 0.14), transparent 32%),
        radial-gradient(circle at left center, rgba(37, 99, 235, 0.14), transparent 36%),
        linear-gradient(160deg, #111318 0%, #162329 100%);
    color: #f8fafc;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.34);
    text-align: center;
}

.rename-popup-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(10, 125, 113, 0.18);
    border: 1px solid rgba(94, 234, 212, 0.18);
    color: #ccfbf1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rename-popup-card h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(24px, 5vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.rename-popup-name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #0f172a;
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.rename-popup-copy {
    margin: 0 0 18px;
    color: rgba(226, 232, 240, 0.86);
    font-size: 15px;
    line-height: 1.55;
}

.rename-popup-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 13px 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #13b8a6 0%, #0a7d71 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(10, 125, 113, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.rename-popup-action:hover,
.rename-popup-action:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 42px rgba(10, 125, 113, 0.28);
}

.rename-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.rename-popup-close:hover,
.rename-popup-close:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.04);
}

.rename-popup-close span {
    font-size: 26px;
    line-height: 1;
}

/* ─── Partner Popup ─────────────────────────────────────────────────── */
.partner-popup {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 240;
    width: min(370px, calc(100vw - 32px));
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: #101820;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.partner-popup.is-hidden {
    transform: translateY(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.partner-popup-launcher {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 239;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: #0a7d71;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(10, 125, 113, 0.24);
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.partner-popup-launcher.is-hidden {
    display: none;
}

.partner-popup-launcher:hover,
.partner-popup-launcher:focus-visible {
    background: #086b61;
    transform: translateY(-1px);
}

.partner-popup-launcher span {
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
}

.partner-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #2f3b43;
    cursor: pointer;
}

.partner-popup-close:hover,
.partner-popup-close:focus-visible {
    background: rgba(15, 23, 42, 0.1);
}

.partner-popup-close span {
    font-size: 20px;
    line-height: 1;
}

.partner-popup-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 36px 8px 0;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(10, 125, 113, 0.1);
    color: #0a7d71;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-popup-title {
    display: block;
    margin: 0 28px 6px 0;
    color: #101820;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
}

.partner-popup p {
    margin: 0 0 10px;
    color: #5d6b72;
    font-size: 13px;
    line-height: 1.45;
}

.partner-popup-codes {
    display: grid;
    gap: 8px;
    margin: 0 0 12px;
}

.partner-popup-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
    padding: 10px;
    border: 1px solid rgba(10, 125, 113, 0.12);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(10, 125, 113, 0.075), rgba(15, 23, 42, 0.035));
    color: #101820;
    font-size: 12px;
}

.partner-popup-code-copy {
    min-width: 0;
}

.partner-popup-code-copy span {
    display: block;
    margin-bottom: 1px;
    color: #6c7a80;
    font-weight: 800;
}

.partner-popup-code-copy small {
    display: block;
    margin-bottom: 5px;
    color: #0a7d71;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 800;
}

.partner-popup-code-copy b {
    display: block;
    color: #101820;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.01em;
    overflow-wrap: anywhere;
}

.partner-popup-copy {
    flex: 0 0 auto;
    min-width: 78px;
    min-height: 36px;
    padding: 8px 10px;
    border: 0;
    border-radius: 999px;
    background: #101820;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.partner-popup-copy:hover,
.partner-popup-copy:focus-visible {
    background: #0a7d71;
    transform: translateY(-1px);
}

.partner-popup-copy.is-copied {
    background: #0a7d71;
}

.partner-popup-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #0a7d71;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(10, 125, 113, 0.22);
}

.partner-popup-action:hover,
.partner-popup-action:focus-visible {
    background: #086b61;
    transform: translateY(-1px);
}

.partner-popup > small {
    display: block;
    margin-top: 6px;
    color: #7a878d;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
}

/* ─── Topbar ────────────────────────────────────────────────────────── */
.topbar {
    background: var(--surface-dark);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner { padding: 8px 0; text-align: center; }
.topbar p { margin: 0; }

/* ─── Header ────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.78));
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.site-header.simple {
    position: relative;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 10px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 248px;
}
.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0a7d71 0%, #065f56 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(10,125,113,0.3);
}
/* Backward compat: old .brand-mark still works */
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0a7d71 0%, #065f56 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(10,125,113,0.3);
}
.brand-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(10,125,113,0.3);
}
.brand-copy { display: grid; gap: 2px; min-width: 0; }
.brand-copy strong {
    font-size: 20px;
    font-weight: 750;
    letter-spacing: -0.02em;
    line-height: 1.05;
    white-space: nowrap;
}
.brand-copy span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
}
.site-nav a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}
.site-nav a:hover {
    color: var(--text);
    background: rgba(0,0,0,0.04);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border-radius: 999px;
    background: rgba(0,0,0,0.04);
    border: 1px solid var(--line);
}
.lang-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.2s ease;
}
.lang-pill.is-active {
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--text) 0%, #1d2733 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(17, 19, 24, 0.14);
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}
.header-cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(17, 19, 24, 0.18);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background 0.15s ease, box-shadow 0.15s ease;
    flex-direction: column;
    gap: 0;
}
.nav-toggle:hover {
    background: var(--bg-warm);
    box-shadow: var(--shadow-md);
}
.nav-toggle:active {
    transform: scale(0.95);
}
.nav-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    margin: 2.5px auto;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header.is-open .nav-toggle span:first-child {
    transform: translateY(6.5px) rotate(45deg);
}
.site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Buttons ───────────────────────────────────────────────────────── */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    border: none;
    cursor: pointer;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(10,125,113,0.25);
}
.button-primary:hover { background: var(--accent-hover); box-shadow: 0 6px 20px rgba(10,125,113,0.3); }
.button-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.button-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}
.button-outline:hover {
    background: var(--accent);
    color: #fff;
}
.button-dark {
    background: var(--text);
    color: #fff;
}
.button-dark:hover { opacity: 0.85; }

/* App Store Badge */
.app-store-badge {
    display: inline-block;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.app-store-badge:hover { transform: translateY(-1px); opacity: 0.85; }
.app-store-badge img, .app-store-badge svg {
    height: 48px;
    width: auto;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

a.store-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.store-button.is-disabled {
    opacity: 0.7;
    cursor: default;
}

.store-button.is-coming-soon {
    position: relative;
    overflow: hidden;
    opacity: 1;
    border-color: rgba(37, 99, 235, 0.16);
    background: linear-gradient(135deg, rgba(243, 248, 255, 0.98), rgba(232, 246, 242, 0.98));
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}

.is-android-prelaunch .store-button--play.is-coming-soon {
    animation: playPulse 3.4s ease-in-out infinite;
}

.store-button.is-coming-soon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.68) 46%, transparent 72%);
    transform: translateX(-135%);
    animation: androidShimmer 3.8s ease-in-out infinite;
}

.store-button-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.store-button-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.store-button-logo--apple {
    color: var(--text);
    font-size: 26px;
    line-height: 1;
}

.store-button-logo--play svg {
    width: 26px;
    height: 26px;
    display: block;
}

.store-button-copy {
    display: grid;
    gap: 2px;
    text-align: left;
}

.store-button-copy strong {
    font-size: 16px;
    line-height: 1.15;
}

.store-button-copy small {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.25;
}

.store-buttons--dark .store-button {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    color: #fff;
}

.store-buttons--dark .store-button-copy small {
    color: rgba(255, 255, 255, 0.7);
}

.store-buttons--dark .store-button-logo--apple {
    color: #fff;
}

.store-button.is-coming-soon .store-button-copy strong,
.store-button.is-coming-soon .store-button-copy small {
    color: #155dfc;
}

.android-launch-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 24px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(232, 246, 242, 0.95), rgba(243, 248, 255, 0.96));
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.android-launch-pill-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(10, 125, 113, 0.12);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-launch-pill-copy {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

html.has-android-launch-modal-open,
body.has-android-launch-modal-open {
    overflow: hidden;
}

.store-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.store-brand-chip--large {
    align-self: flex-start;
    margin-bottom: 12px;
}

.store-brand-chip--apple {
    background: rgba(255, 255, 255, 0.96);
}

.store-brand-chip--play {
    background: linear-gradient(135deg, rgba(243, 248, 255, 0.98), rgba(232, 246, 242, 0.98));
}

.store-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
}

.store-brand-icon--apple {
    color: #111318;
    font-size: 24px;
    line-height: 1;
}

.store-brand-icon--play svg {
    width: 24px;
    height: 24px;
    display: block;
}

.store-brand-label {
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.android-launch-status-ribbon {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 4px 0 24px;
    padding: 16px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(232, 246, 242, 0.96), rgba(243, 248, 255, 0.98));
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.08);
}

.android-launch-mini-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.android-launch-mini-card--ios {
    border-color: rgba(10, 125, 113, 0.12);
}

.android-launch-mini-card--android {
    border-color: rgba(37, 99, 235, 0.12);
}

.android-launch-mini-copy {
    display: grid;
    gap: 4px;
}

.android-launch-mini-copy small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-launch-mini-copy strong {
    color: var(--text);
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.android-launch-mini-card--link,
.android-launch-platform-card--link {
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.android-launch-mini-card--link:hover,
.android-launch-mini-card--link:focus-visible,
.android-launch-platform-card--link:hover,
.android-launch-platform-card--link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    border-color: rgba(10, 125, 113, 0.24);
    outline: none;
}

.android-launch-status-chip {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.android-launch-status-chip--ios {
    background: rgba(10, 125, 113, 0.12);
    color: var(--accent);
}

.android-launch-status-chip--android {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue);
}

.android-launch-status-open-button {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--blue);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.android-launch-status-open-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
}

.android-launch-modal {
    position: fixed;
    inset: 0;
    z-index: 160;
}

.android-launch-modal[hidden] {
    display: none;
}

.android-launch-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(15, 23, 42, 0.54);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
}

.android-launch-dialog {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), 1040px);
    max-height: min(calc(100vh - 40px), 960px);
    margin: 20px auto;
    overflow: auto;
    display: grid;
    gap: 22px;
    padding: 30px;
    border-radius: 34px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 26%),
        radial-gradient(circle at bottom right, rgba(10, 125, 113, 0.16), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.985), rgba(247, 250, 255, 0.97) 48%, rgba(244, 251, 248, 0.98) 100%);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
    animation: launchPanelEnter 0.32s ease;
}

.android-launch-dialog-head,
.android-launch-dialog-grid,
.android-launch-progress,
.android-launch-highlight-grid,
.android-launch-timeline {
    position: relative;
    z-index: 1;
}

.android-launch-dialog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.android-launch-dialog-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.android-launch-dialog-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.android-launch-dialog-copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.68;
}

.android-launch-store-wrap {
    margin-top: 24px;
}

.android-launch-platform-grid {
    display: grid;
    gap: 16px;
}

.android-launch-platform-card {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.android-launch-platform-main {
    display: block;
}

.android-launch-platform-copy {
    min-width: 0;
}

.android-launch-platform-copy small {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-launch-platform-copy h3 {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.android-launch-platform-copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

.android-launch-platform-chip {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-launch-platform-chip--ios {
    background: rgba(10, 125, 113, 0.12);
    color: var(--accent);
}

.android-launch-platform-chip--android {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue);
}

.eyebrow--launch {
    background: rgba(255, 255, 255, 0.58);
    color: #155dfc;
}

.android-launch-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 26px;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(37, 99, 235, 0.14);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(10, 125, 113, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96) 42%, rgba(244, 251, 248, 0.98) 100%);
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.1);
}

.android-launch-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.55;
    animation: floatOrb 7s ease-in-out infinite;
}

.android-launch-orb--one {
    top: -38px;
    right: 12%;
    width: 124px;
    height: 124px;
    background: rgba(59, 130, 246, 0.24);
}

.android-launch-orb--two {
    bottom: 18px;
    left: -18px;
    width: 96px;
    height: 96px;
    background: rgba(10, 125, 113, 0.18);
    animation-delay: -1.8s;
}

.android-launch-orb--three {
    top: 42%;
    right: -20px;
    width: 82px;
    height: 82px;
    background: rgba(14, 165, 233, 0.2);
    animation-delay: -3.1s;
}

.android-launch-panel-head,
.android-launch-progress,
.android-launch-highlight-grid,
.android-launch-inline-actions {
    position: relative;
    z-index: 1;
}

.android-launch-panel-head h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.android-launch-panel-head p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.android-launch-progress {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(12px);
}

.android-launch-progress-copy {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}

.android-launch-progress-copy strong {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}

.android-launch-progress-copy span {
    color: var(--muted);
    font-size: 13px;
}

.android-launch-progress-track {
    position: relative;
    height: 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.android-launch-progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 72%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 50%, #0a7d71 100%);
    box-shadow: 0 6px 18px rgba(29, 78, 216, 0.3);
}

.android-launch-progress-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.74) 48%, transparent 78%);
    animation: androidShimmer 2.6s linear infinite;
}

.android-launch-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.android-launch-highlight {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.android-launch-highlight small {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-launch-highlight strong {
    display: block;
    font-size: 18px;
    line-height: 1.3;
    color: var(--text);
}

.android-launch-panel--inline {
    align-self: start;
    animation: launchPanelEnter 0.7s cubic-bezier(.2,.8,.2,1);
}

.android-launch-inline-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.android-launch-toggle {
    min-width: 190px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 255, 0.94));
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.08);
}

.android-launch-inline-note {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.android-launch-inline-popup {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 4;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.98));
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
    animation: launchPanelEnter 0.28s ease;
}

.android-launch-inline-popup[hidden] {
    display: none;
}

.android-launch-inline-popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.android-launch-inline-popup h3 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.android-launch-inline-popup > p {
    margin: 0 0 22px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.68;
}

.android-launch-panel.is-open .android-launch-panel-head,
.android-launch-panel.is-open .android-launch-inline-actions {
    opacity: 0.16;
    filter: blur(1px);
    pointer-events: none;
}

.android-launch-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.android-launch-close:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.android-launch-close span {
    font-size: 26px;
    line-height: 1;
}

.android-launch-timeline {
    position: relative;
    display: grid;
    gap: 14px;
}

.android-launch-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 16px;
    width: 2px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.22), rgba(10, 125, 113, 0.2));
}

.android-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 18px 18px 0;
}

.android-timeline-dot {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
    z-index: 1;
}

.android-timeline-copy {
    padding: 18px 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-sm);
}

.android-timeline-copy small {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-timeline-copy h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.15;
}

.android-timeline-copy p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.android-timeline-item--done .android-timeline-dot {
    background: rgba(10, 125, 113, 0.14);
    border-color: rgba(10, 125, 113, 0.32);
}

.android-timeline-item--active .android-timeline-dot {
    background: rgba(37, 99, 235, 0.16);
    border-color: rgba(37, 99, 235, 0.46);
    animation: playPulse 2.8s ease-in-out infinite;
}

.android-timeline-item--active .android-timeline-copy {
    border-color: rgba(37, 99, 235, 0.16);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.1);
}

.android-timeline-item--upcoming .android-timeline-dot {
    background: rgba(148, 163, 184, 0.14);
    border-color: rgba(148, 163, 184, 0.28);
}

/* ─── Section Utilities ─────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-warm); }
.section-light {
    background: var(--bg-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section-heading { max-width: 680px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.compact { margin-bottom: 32px; }
.section-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.section-heading p { color: var(--muted); font-size: 17px; margin: 0; line-height: 1.6; }

/* ─── Partner Spotlight ─────────────────────────────────────────────── */
.partner-spotlight {
    padding: 18px 0;
    background:
        radial-gradient(circle at left center, rgba(20, 184, 166, 0.18), transparent 34%),
        linear-gradient(135deg, #101318 0%, #17232c 100%);
    color: #f8fafc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-spotlight-inner {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(420px, 560px) auto;
    align-items: center;
    gap: 20px;
}

.partner-spotlight-copy {
    display: grid;
    gap: 5px;
}

.partner-spotlight-copy span {
    color: #5eead4;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.partner-spotlight-copy strong {
    color: #ffffff;
    font-size: clamp(20px, 2.2vw, 30px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.partner-spotlight-copy p {
    max-width: 520px;
    margin: 0;
    color: rgba(248, 250, 252, 0.75);
    font-size: 14px;
    line-height: 1.45;
}

.partner-spotlight-codes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.partner-spotlight-code {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 76px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.partner-spotlight-code-copy {
    min-width: 0;
}

.partner-spotlight-code-copy span {
    display: block;
    color: rgba(248, 250, 252, 0.68);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.partner-spotlight-code-copy small {
    display: block;
    margin: 2px 0 6px;
    color: #5eead4;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
}

.partner-spotlight-code-copy b {
    display: block;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0.01em;
    overflow-wrap: anywhere;
}

.partner-spotlight-copy-button {
    min-width: 74px;
    min-height: 36px;
    padding: 8px 10px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #101318;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.partner-spotlight-copy-button:hover,
.partner-spotlight-copy-button:focus-visible,
.partner-spotlight-copy-button.is-copied {
    background: #5eead4;
    color: #063b36;
    transform: translateY(-1px);
}

.partner-spotlight-actions {
    display: grid;
    gap: 6px;
    justify-items: end;
}

.partner-spotlight-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #5eead4;
    color: #063b36;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 14px 34px rgba(20, 184, 166, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.partner-spotlight-action:hover,
.partner-spotlight-action:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(20, 184, 166, 0.3);
}

.partner-spotlight-actions small {
    color: rgba(248, 250, 252, 0.56);
    font-size: 10px;
    line-height: 1.2;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero-section { padding: 44px 0 40px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 28px;
    align-items: start;
}
.hero-download-spotlight {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    align-items: center;
    gap: 24px;
    margin: 4px 0 0;
    padding: 18px 22px;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(10, 125, 113, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.97) 52%, rgba(241, 250, 247, 0.98) 100%);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-download-copy {
    display: grid;
    gap: 8px;
}
.hero-download-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-download-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.hero-download-pill--ios {
    background: rgba(10, 125, 113, 0.12);
    color: var(--accent);
}
.hero-download-pill--android {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue);
}
.hero-download-copy small {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.hero-download-copy strong {
    color: var(--text);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.hero-download-copy span {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}
.hero-download-buttons {
    display: grid;
    gap: 12px;
    justify-items: end;
}
.hero-download-buttons .store-buttons {
    gap: 14px;
    justify-content: flex-end;
}
.hero-download-buttons .store-button {
    min-width: 210px;
    padding: 13px 16px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.hero-download-buttons .store-button-copy strong {
    font-size: 17px;
}
.hero-download-buttons .store-button-copy small {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.hero-download-launch-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hero-download-launch-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.12);
}
.hero-copy h1 {
    margin: 0 0 20px;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text);
}
.hero-body {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 0;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin: 28px 0 20px;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}
.hero-badges li {
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.hero-disclaimer {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}
.hero-disclaimer strong {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.hero-disclaimer p { margin: 0; color: inherit; font-size: inherit; }

/* Hero Visual – Showcase Panel */
.hero-visual {
    position: relative;
    align-self: start;
}
.hero-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-2xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}
.showcase-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-warm);
    border: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.showcase-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.showcase-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.showcase-card h2 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.showcase-value {
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.showcase-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ─── Metrics ───────────────────────────────────────────────────────── */
.metric-section { padding: 20px 0 80px; }
.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.metric-card {
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.metric-value {
    margin-bottom: 8px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}
.metric-card h3 { margin: 0 0 6px; font-size: 15px; font-weight: 600; }
.metric-card p { margin: 0; color: var(--muted); font-size: 13px; }
.metric-meta {
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
}
.metric-meta strong { font-weight: 600; }

/* ─── Stats Preview ─────────────────────────────────────────────────── */
.stats-preview-section {
    padding: 68px 0 88px;
    background:
        linear-gradient(180deg, #f5f8f7 0%, #ffffff 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stats-preview-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.32fr);
    gap: 34px;
    align-items: center;
}
.stats-preview-copy {
    max-width: 520px;
}
.stats-preview-copy h2 {
    margin: 0 0 16px;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: 0;
}
.stats-preview-copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.65;
}
.stats-preview-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 22px;
    padding: 9px 12px;
    border: 1px solid rgba(10, 125, 113, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.74);
    color: var(--muted);
    font-size: 13px;
}
.stats-preview-meta strong {
    color: var(--text);
    font-weight: 700;
}
.stats-preview-board {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(10, 125, 113, 0.14);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg);
}
.stats-preview-board:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 44%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96) 62%, #ffffff 100%);
    pointer-events: none;
}
.stats-peek-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.stats-peek-card {
    min-height: 154px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fbfcfc;
    box-shadow: var(--shadow-sm);
}
.stats-peek-card span,
.stats-issue-peek span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}
.stats-peek-value {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: var(--text);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.stats-peek-card small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}
.stats-bar-peek {
    display: grid;
    gap: 12px;
    margin-top: 20px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #f8faf9;
}
.stats-bar-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 22px;
}
.stats-bar-row > span {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
}
.stats-bar-track {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(10, 125, 113, 0.1);
}
.stats-bar-track span {
    display: block;
    width: 18%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), var(--blue));
    transition: width 0.5s ease;
}
.stats-teaser-shell {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}
.stats-teaser-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: end;
}
.stats-teaser-head span,
.stats-mini-panel-head span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.stats-teaser-head strong {
    color: var(--text);
    font-size: 14px;
    line-height: 1.25;
    text-align: right;
}
.stats-mini-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.stats-mini-metric {
    min-height: 126px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}
.stats-mini-metric span {
    display: block;
    min-height: 30px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}
.stats-mini-metric strong {
    display: block;
    margin-top: 8px;
    color: var(--text);
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}
.stats-mini-metric small {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.3;
}
.stats-teaser-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.stats-teaser-columns--soft {
    margin-top: -2px;
}
.stats-mini-panel {
    min-width: 0;
    max-height: 178px;
    overflow: hidden;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f8faf9;
    -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
}
.stats-mini-panel--list {
    max-height: 142px;
    background: #ffffff;
}
.stats-mini-panel--wide {
    max-height: 124px;
    background: #f7fbfb;
}
.stats-mini-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.stats-mini-panel-head small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-align: right;
}
.stats-mini-bars {
    display: grid;
    gap: 10px;
}
.stats-mini-bars--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
}
.stats-mini-row {
    display: grid;
    gap: 5px;
}
.stats-mini-row-copy {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}
.stats-mini-row-copy small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.stats-mini-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(10, 125, 113, 0.1);
}
.stats-mini-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), var(--blue));
}
.stats-chip-list {
    display: grid;
    gap: 8px;
}
.stats-chip-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(10, 125, 113, 0.06);
}
.stats-chip-line span {
    min-width: 0;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.stats-chip-line strong {
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}
.stats-chip-line small {
    grid-column: 1 / -1;
    margin-top: -4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.stats-issue-peek-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-height: 162px;
    margin-top: 20px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, #000 58%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 58%, transparent 100%);
}
.stats-issue-peek {
    min-height: 158px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}
.stats-issue-peek h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.25;
}
.stats-issue-peek p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.stats-preview-gate {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(17, 19, 24, 0.94);
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(17, 19, 24, 0.24);
    backdrop-filter: blur(18px);
}
.stats-preview-gate small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}
.stats-preview-gate strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
}
.stats-preview-gate .store-buttons {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 10px;
}
.stats-preview-gate .store-button {
    min-width: 156px;
    background: #ffffff;
    color: #111318;
}
.stats-preview-gate .store-button-badge {
    gap: 10px;
}
.stats-preview-gate .store-button-logo--apple {
    color: #111318;
}
.stats-preview-gate .store-button-copy strong {
    color: #111318;
    font-size: 14px;
    line-height: 1.15;
}
.stats-preview-gate .store-button-copy small {
    margin: 0;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
}

/* ─── Feature Grid ──────────────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.feature-card {
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
}
.feature-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 600; line-height: 1.2; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ─── Feature Sections (alternating) ────────────────────────────────── */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.feature-section.reverse { direction: rtl; }
.feature-section.reverse > * { direction: ltr; }
.feature-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.section-body { color: var(--text-secondary); font-size: 16px; line-height: 1.65; }

.detail-list {
    padding: 0;
    margin: 20px 0;
    list-style: none;
}
.detail-list.compact { margin: 12px 0 20px; }
.detail-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
}
.detail-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.callout-box {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--accent-soft);
    border: 1px solid rgba(10,125,113,0.1);
}
.callout-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}
.callout-box p { margin: 0; color: var(--text-secondary); font-size: 14px; }

/* Screenshot Cards */
.screenshot-card, .gallery-media {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #1a1d24;
    box-shadow: var(--shadow-lg);
}
.screenshot-card.has-image img, .gallery-media.has-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
/* Portrait screenshots in feature sections */
.feature-shot .screenshot-card.has-image {
    max-width: 320px;
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
}
.feature-shot .screenshot-card.has-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.screenshot-card.has-image figcaption {
    padding: 12px 16px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    background: rgba(0,0,0,0.6);
}
.screenshot-card.placeholder, .gallery-media.placeholder {
    display: grid;
    place-items: center;
    min-height: 320px;
}
.screenshot-card.placeholder { padding: 24px; }
.placeholder-screen {
    display: grid;
    place-items: center;
    min-height: 320px;
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(255,255,255,0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    color: rgba(255,255,255,0.6);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.placeholder-screen small, .gallery-media.placeholder small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.screenshot-card.placeholder p, .gallery-media.placeholder span {
    margin: 10px 0 0;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── Demo Report CTA Card ─────────────────────────────────────────── */
.demo-report-cta-card {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #0a7d71 0%, #065f56 100%);
    box-shadow: var(--shadow-lg);
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: 32px;
}
.demo-report-cta-inner {
    text-align: center;
    color: #fff;
}
.demo-report-cta-icon {
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}
.demo-report-cta-inner h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.demo-report-cta-inner p {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.5;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.demo-report-cta-inner .button-primary {
    background: #fff;
    color: var(--accent);
    box-shadow: none;
}
.demo-report-cta-inner .button-primary:hover {
    background: rgba(255,255,255,0.9);
}
.gallery-media.demo-report-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: linear-gradient(135deg, #0a7d71 0%, #065f56 100%);
}
.vehicle-report-cta-card {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #0f3b63 0%, #123c8a 48%, #0f766e 100%);
    box-shadow: var(--shadow-lg);
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: 32px;
}
.gallery-media.vehicle-report-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: linear-gradient(135deg, #0f3b63 0%, #123c8a 48%, #0f766e 100%);
}

/* ─── Community Issues Grid ─────────────────────────────────────────── */
.issue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.issue-card {
    padding: 24px 20px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}
.issue-card:hover { transform: translateY(-2px); }
.issue-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.issue-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; line-height: 1.2; }
.issue-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ─── Language Section ──────────────────────────────────────────────── */
.language-panel {
    padding: 40px;
    border-radius: var(--radius-2xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.language-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.language-box {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-warm);
    border: 1px solid var(--line);
}
.language-box h3 { margin: 0 0 12px; font-size: 16px; font-weight: 600; }
.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.language-tags li {
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
}

/* ─── Gallery Grid ──────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-card {
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gallery-media { min-height: 220px; }
.gallery-copy { padding: 16px 18px; }
.gallery-copy h3 { margin: 0 0 6px; font-size: 16px; font-weight: 600; line-height: 1.2; }
.gallery-copy p { margin: 0; color: var(--muted); font-size: 13px; }

/* ─── Guide Cards ───────────────────────────────────────────────────── */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.guide-card {
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}
.guide-card:hover { transform: translateY(-2px); }
.guide-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 700; line-height: 1.1; }
.guide-card h3 a { color: var(--text); }
.guide-card h3 a:hover { color: var(--accent); }
.guide-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.guide-link { color: var(--accent); font-weight: 600; font-size: 14px; }
.guide-link:hover { text-decoration: underline; }
.guide-card--vin-finder {
    border-color: rgba(10, 125, 113, 0.2);
    background:
        radial-gradient(circle at top right, rgba(10, 125, 113, 0.12), transparent 42%),
        var(--surface-strong);
}
.guide-card-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ─── Support Panel ─────────────────────────────────────────────────── */
.support-panel {
    padding: 40px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(10,125,113,0.03), rgba(37,99,235,0.02));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

/* ─── FAQ ────────────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 10px; }
.faq-item {
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.15s ease;
}
.faq-item summary:hover { background: rgba(0,0,0,0.015); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    font-size: 18px;
    font-weight: 400;
    color: var(--muted);
    transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item[open] summary::after {
    content: "\2212";
    background: var(--accent-soft);
    color: var(--accent);
}
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ─── CTA Section ───────────────────────────────────────────────────── */
.cta-section { padding-top: 40px; }
.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    border-radius: var(--radius-2xl);
    background: var(--surface-dark);
    color: #fff;
    box-shadow: var(--shadow-xl);
}
.cta-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}
.cta-copy .eyebrow {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
}
.cta-copy p { margin: 0; color: rgba(255,255,255,0.6); font-size: 15px; }
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}
.cta-actions .button-primary { background: #fff; color: var(--text); box-shadow: none; }
.cta-actions .button-primary:hover { background: rgba(255,255,255,0.9); }
.cta-actions .button-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); }
.cta-actions .store-buttons { justify-content: flex-start; }

/* ─── Footer ────────────────────────────────────────────────────────── */
.site-footer {
    padding: 48px 0 28px;
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 0.75fr);
    gap: 24px;
}
.footer-brand p { max-width: 420px; color: var(--muted); font-size: 14px; margin-top: 12px; }
.footer-links h3 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.footer-links ul { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

/* ─── Legal Pages ───────────────────────────────────────────────────── */
.legal-page { background: var(--bg); }
.legal-page.is-embed { background: #ffffff; }
.legal-embed-shell { min-height: 100vh; }
.legal-box {
    max-width: 720px;
    margin: 40px auto;
    padding: 40px;
    border-radius: var(--radius-2xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.legal-box h1 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.legal-box.is-embed {
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 20px 36px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
}
.legal-box p,
.legal-box li { color: var(--muted); font-size: 16px; }
.legal-box h2 {
    margin: 28px 0 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.legal-box h3 {
    margin: 18px 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}
.legal-box ul,
.legal-box ol {
    margin: 12px 0 0;
    padding-left: 22px;
}
.legal-box li + li { margin-top: 8px; }
.legal-box a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-intro { margin-bottom: 8px; }
.legal-section + .legal-section { margin-top: 8px; }
.legal-box .button { margin-top: 20px; }

/* ─── Guide Pages ───────────────────────────────────────────────────── */
.guide-page-shell { display: grid; gap: 20px; }
.guide-hero, .guide-section-box, .related-links {
    padding: 32px;
    border-radius: var(--radius-2xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.guide-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.guide-hero p, .guide-section-box p, .related-links p {
    color: var(--muted);
    font-size: 16px;
}
.guide-bullets { padding-left: 20px; margin: 18px 0 0; }
.guide-bullets li { margin-bottom: 10px; color: var(--text-secondary); }
.guide-section-box h2, .related-links h2 { margin: 0 0 10px; font-size: 22px; font-weight: 700; }
.related-links ul { padding-left: 18px; margin: 0; }
.related-links li { margin-bottom: 10px; }

/* ─── Verify Page ───────────────────────────────────────────────────── */
.verify-section { padding: 60px 0 100px; }
.verify-container { max-width: 600px; margin: 0 auto; }
.verify-card {
    padding: 40px;
    border-radius: var(--radius-2xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}
.verify-header {
    text-align: center;
    margin-bottom: 32px;
}
.verify-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.verify-icon.success {
    background: rgba(22,163,74,0.1);
    color: var(--green);
}
.verify-icon.error {
    background: rgba(220,38,38,0.1);
    color: var(--red);
}
.verify-icon.pending {
    background: var(--accent-soft);
    color: var(--accent);
}
.verify-header h1 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
}
.verify-header p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}
.verify-details {
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.verify-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.verify-row:last-child { border-bottom: 0; }
.verify-label { color: var(--muted); font-weight: 500; }
.verify-value { font-weight: 600; text-align: right; }
.verify-value.positive { color: var(--green); }
.verify-value.negative { color: var(--red); }
.verify-value.neutral { color: var(--muted); }
.verify-footer {
    margin-top: 24px;
    text-align: center;
}
.verify-footer p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 12px;
}
.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.verify-badge.authentic {
    background: rgba(22,163,74,0.08);
    color: var(--green);
}
.verify-badge.invalid {
    background: rgba(220,38,38,0.08);
    color: var(--red);
}

/* ─── Animations ────────────────────────────────────────────────────── */
.reveal-target {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-target.is-revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Legacy compat */
.is-revealed {
    animation: none;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.metric-value.counting {
    animation: countUp 0.3s ease forwards;
}

@keyframes playPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12); }
    50% { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(37, 99, 235, 0.2); }
}

@keyframes androidShimmer {
    0% { transform: translateX(-135%); }
    100% { transform: translateX(135%); }
}

@keyframes floatOrb {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -12px, 0) scale(1.05); }
}

@keyframes launchPanelEnter {
    from { opacity: 0; transform: translateY(22px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
    .brand { min-width: 0; }
    .brand-copy strong { font-size: 18px; }
    .site-nav a { padding: 6px 8px; font-size: 13px; }
    .header-actions { gap: 8px; }
}

@media (max-width: 1080px) {
    .partner-spotlight-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .partner-spotlight-actions {
        justify-items: start;
    }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-copy { max-width: 100%; }
    .stats-preview-grid { grid-template-columns: 1fr; }
    .stats-preview-copy { max-width: 720px; }
    .hero-download-spotlight {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .hero-download-buttons {
        justify-items: start;
    }
    .hero-download-buttons .store-buttons { justify-content: flex-start; }
    .hero-download-buttons .store-button { min-width: 210px; }
    .feature-grid, .issue-grid, .gallery-grid, .metric-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-section, .feature-section.reverse { grid-template-columns: 1fr; direction: ltr; }
    .feature-section.reverse > * { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-panel { flex-direction: column; text-align: center; padding: 32px; }
    .cta-actions { justify-content: center; }
    .store-button { min-width: 180px; }
    .android-launch-dialog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .site-nav {
        position: absolute;
        top: calc(100% + 4px);
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
        border-radius: var(--radius-md);
        background: rgba(255,255,255,0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(20px);
    }
    .site-header.is-open .site-nav { display: flex; }
    .site-nav a { padding: 12px 16px; border-radius: var(--radius-xs); }
    .header-inner { flex-wrap: wrap; }
    .header-actions { margin-left: auto; }
    .brand-copy strong { white-space: normal; }
    .brand-copy span { white-space: normal; }
    .hero-panel { grid-template-columns: 1fr; }
    .android-launch-highlight-grid { grid-template-columns: 1fr; }
    .android-launch-status-ribbon { grid-template-columns: 1fr; }
    .language-columns { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .platform-store-banner-inner {
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
    }
    .platform-store-cta {
        width: 100%;
        max-width: 320px;
    }
    .partner-spotlight {
        padding: 14px 0;
    }
    .partner-spotlight-copy strong {
        font-size: 24px;
    }
    .partner-spotlight-codes {
        grid-template-columns: 1fr;
    }
    .partner-spotlight-code {
        min-height: 70px;
    }
    .partner-spotlight-action,
    .partner-spotlight-copy-button {
        width: 100%;
    }
    .partner-spotlight-actions {
        justify-items: stretch;
    }
    .rename-popup {
        padding: 14px;
    }
    .rename-popup-card {
        width: calc(100vw - 28px);
        padding: 22px 18px 18px;
        border-radius: 24px;
    }
    .rename-popup-name {
        width: 100%;
        font-size: 16px;
        padding: 13px 14px;
    }
    .rename-popup-action {
        width: 100%;
    }
    .partner-popup {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
        left: max(12px, env(safe-area-inset-left));
        width: auto;
        padding: 14px;
    }
    .partner-popup-title {
        font-size: 16px;
    }
    .partner-popup-code {
        align-items: center;
        flex-direction: row;
        gap: 10px;
        min-height: 68px;
    }
    .partner-popup-copy {
        min-width: 72px;
        padding-inline: 9px;
    }
    .partner-popup-code-copy b {
        font-size: 11.5px;
    }
    .partner-popup-launcher {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
    }
    .section { padding: 64px 0; }
    section[id] { scroll-margin-top: 126px; }
    .hero-section { padding: 40px 0 24px; }
    .metric-section { padding-bottom: 60px; }
    .stats-preview-section { padding: 56px 0 70px; }
    .stats-preview-copy h2 { font-size: 30px; }
    .stats-preview-copy p { font-size: 15px; }
    .stats-preview-board {
        min-height: 980px;
        padding: 16px;
        border-radius: 24px;
    }
    .stats-peek-grid,
    .stats-mini-metric-grid,
    .stats-teaser-columns,
    .stats-issue-peek-list {
        grid-template-columns: 1fr;
    }
    .stats-peek-card { min-height: 132px; }
    .stats-peek-value { font-size: 34px; }
    .stats-teaser-head {
        display: grid;
    }
    .stats-teaser-head strong {
        text-align: left;
    }
    .stats-mini-metric {
        min-height: 112px;
    }
    .stats-mini-bars--compact {
        grid-template-columns: 1fr;
    }
    .stats-mini-panel,
    .stats-mini-panel--list,
    .stats-mini-panel--wide {
        max-height: 154px;
    }
    .stats-bar-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .stats-issue-peek-list {
        max-height: 220px;
    }
    .stats-preview-gate {
        right: 14px;
        bottom: 14px;
        left: 14px;
        flex-direction: column;
        align-items: stretch;
    }
    .stats-preview-gate .store-buttons {
        justify-content: stretch;
    }
    .stats-preview-gate .store-button {
        width: 100%;
        min-width: 0;
    }
    .container { width: min(calc(100% - 24px), var(--container)); }
    .brand-copy strong { font-size: 18px; }
    .metric-grid, .feature-grid, .issue-grid, .gallery-grid, .guide-grid { grid-template-columns: 1fr; }
    .feature-card h3, .issue-card h3, .gallery-copy h3, .language-box h3, .faq-item summary { font-size: 17px; }
    .placeholder-screen, .gallery-media { min-height: 200px; }
    .cta-panel, .legal-box, .language-panel, .support-panel { padding: 24px; }
    .legal-box.is-embed { padding: 20px 16px 28px; }
    .hero-badges li, .language-tags li { width: 100%; justify-content: center; text-align: center; }
    .verify-card { padding: 24px; }
    .hero-copy h1 { font-size: 32px; }
    .hero-download-spotlight {
        padding: 18px;
        border-radius: 24px;
        margin-bottom: 0;
    }
    .hero-download-copy strong { font-size: 26px; }
    .hero-download-copy span { font-size: 14px; }
    .hero-download-status-row { gap: 8px; }
    .hero-download-buttons .store-button {
        width: 100%;
        min-width: 0;
    }
    .hero-download-launch-button {
        width: 100%;
    }
    .android-launch-pill { display: grid; justify-items: start; }
    .android-launch-status-ribbon { padding: 12px; gap: 12px; }
    .android-launch-mini-card { padding: 16px; }
    .android-launch-mini-copy strong { font-size: 17px; }
    .android-launch-status-open-button { min-height: 52px; font-size: 13px; }
    .android-launch-dialog {
        width: min(calc(100% - 24px), 1040px);
        max-height: min(calc(100vh - 24px), 960px);
        margin: 12px auto;
        padding: 22px;
        border-radius: 28px;
    }
    .android-launch-dialog-copy h2 { font-size: 34px; }
    .android-launch-dialog-copy p { font-size: 16px; }
    .android-launch-platform-copy h3 { font-size: 24px; }
    .android-launch-panel,
    .android-launch-inline-popup { padding: 24px; border-radius: 26px; }
    .android-launch-panel-head h2,
    .android-launch-inline-popup h3 { font-size: 28px; }
    .android-launch-progress-copy { flex-direction: column; align-items: flex-start; }
    .android-launch-inline-actions { align-items: flex-start; }
    .android-launch-toggle { width: 100%; }
    .android-launch-inline-popup {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
    }
    .android-launch-panel.is-open .android-launch-panel-head,
    .android-launch-panel.is-open .android-launch-inline-actions {
        opacity: 1;
        filter: none;
        pointer-events: auto;
    }
    .android-timeline-item { grid-template-columns: 24px 1fr; gap: 12px; }
    .android-launch-timeline::before { left: 11px; }
    .android-timeline-dot { width: 24px; height: 24px; }
    .android-timeline-copy { padding: 16px 16px 18px; }
}
