:root {
    --primary: #2C9F95;
    --primary-dark: #217e77;
    --secondary: #FF4D8D;
    --background: #ffffff;
    --surface: #161A22;
    --surface-strong: #1F2430;
    --surface-soft: #232A3A;
    --text-primary: #000000;
    --text-secondary: #A7B0C0;
    --success: #2EE59D;
    --warning: #FFB020;
    --error: #FF5C5C;
    --radius: 32px;
    --radius-sm: 20px;
    --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.24);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text-primary);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
.button {
    font: inherit;
}

.page-shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.site-header {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 64px;
    min-height: 164px;
}

.owner-link {
    position: absolute;
    top: 64px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--primary);
    color: var(--text-primary);
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.owner-link:hover {
    transform: translateY(-1px);
    background: var(--primary);
    color: #ffffff;
}

.back-link {
    position: absolute;
    top: 64px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--primary);
    color: var(--text-primary);
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.back-link:hover {
    transform: translateY(-1px);
    background: var(--primary);
    color: #ffffff;
}

.brand-logo {
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
}

.brand-logo img {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
}

.hero-section,
.site-footer {
    margin-top: 64px;
}

main > section + section {
    margin-top: 64px;
}

.hero-section {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0 0 32px;
}

.hero-content {
    max-width: 760px;
    display: grid;
    gap: 32px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(91, 108, 255, 0.14);
    color: var(--primary);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 760px;
}

.hero-copy {
    font-size: 1.07rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
}

.hero-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 18px 50px rgba(44, 159, 149, 0.28);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.button:hover {
    transform: translateY(-1px);
}

.carousel-section {
    position: relative;
}

.carousel-shell {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    margin: 0 auto;
    cursor: default;
}

.carousel-card {
    flex: none;
    width: 280px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.carousel-card img {
    display: block;
    width: 100%;
    height: auto;
}

.phone-mockup {
    width: 100%;
    aspect-ratio: 393 / 852;
    border-radius: 36px;
    background: #111318;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    position: relative;
}

.phone-mockup::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 8px solid #111318;
    border-radius: inherit;
    pointer-events: none;
}

.carousel-card .phone-screen {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    margin: 8px;
    border-radius: 24px;
    object-fit: cover;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
}

.section-heading {
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.section-description {
    font-size: 1.07rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
}

.why-section h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.02;
}

.crewsider-map-section {
    display: grid;
    justify-items: center;
}

.crewsider-map-heading {
    margin-bottom: 32px;
}

.map-eyebrow {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.crewsider-map-card {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgba(44, 159, 149, 0.18);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 50% 40%, rgba(44, 159, 149, 0.12), transparent 52%),
        linear-gradient(145deg, #111b23, #0b1219);
    box-shadow: 0 30px 80px rgba(16, 29, 36, 0.2);
}

.crewsider-map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.32;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 0.7px, transparent 0.7px);
    background-size: 18px 18px;
    mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.crewsider-map-canvas {
    position: absolute;
    inset: 30px 20px 54px;
    display: grid;
    place-items: center;
}

.crewsider-map-canvas svg {
    width: 100%;
    height: auto;
    max-height: 100%;
    overflow: visible;
}

.map-locked {
    opacity: 1;
}

.map-cloud {
    fill: #ffffff;
    pointer-events: none;
}

.map-cloud-one {
    opacity: 0.9;
    animation: mapCloudDrift 32s ease-in-out infinite alternate;
}

.map-cloud-two {
    opacity: 0.62;
    animation: mapCloudDriftReverse 41s ease-in-out infinite alternate;
}

.map-neighbor-countries path {
    fill: rgba(24, 41, 48, 0.82);
    stroke: rgba(162, 195, 197, 0.52);
    stroke-width: 1.8;
    vector-effect: non-scaling-stroke;
}

.map-neighbor-lines path {
    fill: none;
    stroke: rgba(117, 170, 171, 0.1);
    stroke-width: 2;
}

.map-region-cloud {
    opacity: 1;
    animation: mapCloudDriftReverse 48s ease-in-out infinite alternate;
}

.city-light {
    pointer-events: none;
    transform-box: fill-box;
    transform-origin: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.crewsider-map-card.is-location-active .city-light {
    opacity: 1;
    transform: scale(1.08);
}

.map-border-reference {
    filter: grayscale(1) invert(1) brightness(0.56) contrast(2.5) sepia(0.12) hue-rotate(120deg);
}

.home-body .crewsider-map-canvas {
    inset: 0;
}

.map-focus {
    filter: none;
}

.map-terrain-lines path,
.map-live-lines path {
    fill: none;
    stroke-linecap: round;
}

.map-live {
    transition: filter 0.25s ease;
}

.crewsider-map-card.is-location-active .map-live {
    filter: brightness(1.16) saturate(1.12);
}

.map-terrain-lines path {
    stroke: rgba(166, 191, 194, 0.13);
    stroke-width: 4;
}

.map-live-lines path {
    stroke: rgba(103, 208, 197, 0.24);
    stroke-width: 3;
}

.map-outline {
    fill: none;
    stroke: rgba(132, 205, 197, 0.35);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
    pointer-events: none;
}

.map-location {
    color: var(--primary-soft);
    cursor: pointer;
    outline: none;
}

.location-halo,
.location-pulse {
    fill: rgba(46, 229, 157, 0.13);
    stroke: rgba(84, 234, 186, 0.58);
    stroke-width: 1.5;
}

.location-pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: mapPulse 3.6s ease-out infinite;
}

.location-pin {
    fill: #f4fffc;
    filter: url(#live-glow);
}

.map-location.is-live .location-pin {
    fill: #ffffff;
    stroke: #8affe0;
    stroke-width: 1.5;
}

.map-location.is-live .location-halo {
    fill: rgba(46, 229, 157, 0.3);
    stroke: rgba(121, 255, 215, 0.9);
}

.map-location.is-locked {
    color: #9aa9b0;
    opacity: 0.72;
}

.map-location.is-locked .location-halo,
.map-location.is-locked .location-pulse {
    fill: rgba(175, 190, 198, 0.12);
    stroke: rgba(190, 205, 211, 0.42);
}

.location-label rect {
    fill: rgba(8, 19, 24, 0.88);
    stroke: rgba(103, 208, 197, 0.5);
}

.location-label text {
    fill: #fff;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.02em;
}

.map-location:hover .location-halo,
.map-location:focus-visible .location-halo {
    fill: rgba(46, 229, 157, 0.28);
    stroke: #8affda;
}

.map-location:focus-visible .location-label rect {
    stroke: #fff;
    stroke-width: 2;
}

.map-country-label {
    position: absolute;
    top: 24px;
    left: 28px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.map-legend {
    position: absolute;
    right: 24px;
    bottom: 20px;
    display: flex;
    gap: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 650;
}

.map-legend span { display: inline-flex; align-items: center; gap: 7px; }
.map-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; }
.legend-live { background: var(--success); box-shadow: 0 0 12px rgba(46, 229, 157, 0.8); }
.legend-fog { background: #84949c; filter: blur(1px); }

.map-info-card {
    position: absolute;
    top: clamp(68px, var(--info-y, 28%), 245px);
    left: clamp(20px, var(--info-x, 50%), calc(100% - 20px));
    z-index: 4;
    width: max-content;
    max-width: 220px;
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(92, 228, 184, 0.34);
    border-radius: 16px;
    background: rgba(9, 19, 25, 0.92);
    color: white;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -115%);
    backdrop-filter: blur(12px);
}

.map-info-card[hidden] { display: none; }
.map-info-status { color: var(--success); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.map-info-title { font-size: 1rem; }
.map-info-copy { color: rgba(255, 255, 255, 0.65); font-size: 0.76rem; }
.map-info-card.is-locked .map-info-status { color: #b9c5cb; }

.map-afterword {
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

@keyframes mapCloudDrift {
    to { transform: translate3d(55px, -8px, 0) scale(1.03); }
}

@keyframes mapCloudDriftReverse {
    to { transform: translate3d(-45px, 6px, 0) scale(1.025); }
}

@keyframes mapPulse {
    0% { opacity: 0.7; transform: scale(0.55); }
    70%, 100% { opacity: 0; transform: scale(1.35); }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    justify-items: center;
}

.feature-card {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 2rem;
    display: grid;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
    color: white;
}

.owner-benefits-section .feature-card {
    text-align: center;
    place-items: center;
}

.why-section .feature-card {
    text-align: center;
    place-items: center;
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.2rem;
}

.feature-card p {
    color: white;
    line-height: 1.75;
}

.analytics-section {
    margin-top: 64px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.analytics-card {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 2rem;
    display: grid;
    gap: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
    text-align: center;
    color: white;
}

.analytics-card h3 {
    font-size: 1.2rem;
    color: white;
}

.analytics-card p {
    color: white;
    line-height: 1.75;
    font-size: 0.95rem;
}

.contact-section {
    display: grid;
    place-items: center;
}

.contact-card {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 2rem;
    display: grid;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
    text-align: center;
    max-width: 400px;
    color: white;
}

.contact-card h2 {
    font-size: 1.5rem;
    color: white;
}

.contact-card p {
    color: white;
    line-height: 1.75;
}

.contact-email {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.contact-email:hover {
    text-decoration: underline;
}

.legal-section {
    display: grid;
    gap: 64px;
}

.legal-heading {
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
}

.legal-heading h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 0.95;
}

.legal-heading p {
    color: var(--text-secondary);
    font-size: 1.07rem;
}

.legal-content {
    display: grid;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.legal-card {
    display: grid;
    gap: 16px;
    padding: 2rem;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.legal-card h2 {
    font-size: 1.5rem;
}

.legal-card h3 {
    margin-top: 8px;
    font-size: 1rem;
}

.legal-card p {
    line-height: 1.75;
}

.legal-card a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Standalone app policies: generated verbatim from the files in legal/. */
.app-legal-body {
    background: #f4f8f7;
}

.app-legal-page {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0;
}

.app-legal-document {
    padding: clamp(24px, 5vw, 56px);
    border: 1px solid rgba(22, 53, 50, 0.1);
    border-radius: var(--radius-sm);
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(22, 53, 50, 0.08);
}

.app-legal-document {
    color: var(--text-primary);
}

.app-legal-document h1 {
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
}

.app-legal-document h2 {
    margin: 48px 0 16px;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.app-legal-document h3 {
    margin: 32px 0 12px;
    font-size: 1.15rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.app-legal-document p,
.app-legal-address,
.app-legal-list {
    margin: 0 0 20px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.app-legal-date {
    color: var(--text-secondary);
    font-weight: 700;
}

.app-legal-list {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.app-legal-list li {
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    gap: 8px;
}

.app-legal-marker {
    color: var(--primary-dark);
    font-weight: 800;
}

.app-legal-address {
    font-style: normal;
}

.app-legal-document a {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 520px) {
    .app-legal-page {
        width: min(100% - 20px, 900px);
        padding: 10px 0;
    }

    .app-legal-document h1 {
        font-size: 2rem;
    }
}

.cta-section {
    padding: 2rem 0;
    display: grid;
    gap: 32px;
    justify-items: center;
    text-align: center;
}

.cta-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    max-width: 800px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.game-body {
    min-height: 100dvh;
    overflow: hidden;
    background: #ffffff;
}

.game-screen {
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
    color: var(--text-primary);
}

.game-intro {
    position: fixed;
    top: max(22px, env(safe-area-inset-top));
    left: 50%;
    z-index: 4;
    width: min(calc(100% - 96px), 720px);
    display: grid;
    gap: 8px;
    text-align: center;
    transform: translateX(-50%);
    pointer-events: none;
}

.game-intro h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
}

.game-intro p {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    line-height: 1.45;
}

.game-website-link,
.game-restart {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    z-index: 7;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(44, 159, 149, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary-dark);
    cursor: pointer;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.game-website-link {
    left: max(18px, env(safe-area-inset-left));
}

.game-website-link svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.game-restart {
    right: max(18px, env(safe-area-inset-right));
}

.game-touch-surface {
    position: fixed;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: #ffffff;
    touch-action: none;
    user-select: none;
}

.game-background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(54vw, 310px);
    max-width: 70%;
    opacity: 0.1;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.game-countdown {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 5;
    color: var(--primary);
    font-size: clamp(6rem, 24vw, 13rem);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.game-countdown[hidden] {
    display: none;
}

.game-powered {
    position: fixed;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 50%;
    z-index: 4;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    transform: translateX(-50%);
    pointer-events: none;
}

.finger-marker {
    position: absolute;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(44, 159, 149, 0.16);
    border: 3px solid rgba(44, 159, 149, 0.72);
    box-shadow: 0 0 0 12px rgba(44, 159, 149, 0.08);
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    pointer-events: none;
}

.finger-marker span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: inset 0 0 0 6px var(--primary);
}

.finger-marker.is-winner {
    z-index: 3;
    background: rgba(255, 77, 141, 0.2);
    border-color: var(--secondary);
    box-shadow: 0 0 0 18px rgba(255, 77, 141, 0.16), 0 22px 55px rgba(255, 77, 141, 0.24);
    transform: translate(-50%, -50%) scale(1.22);
}

.finger-marker.is-winner span {
    box-shadow: inset 0 0 0 6px var(--secondary);
}

.game-result {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: grid;
    gap: 14px;
    justify-items: center;
    padding: 2rem 1.5rem calc(2rem + env(safe-area-inset-bottom));
    border-radius: 28px 28px 0 0;
    background: #ffffff;
    color: var(--text-primary);
    text-align: center;
    box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.18);
    animation: gameSheetIn 0.28s ease-out;
}

.game-result[hidden] {
    display: none;
}

.game-result h2 {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
    line-height: 1;
}

.game-result-kicker {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
}

.game-result p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.5;
}

.game-result p strong {
    color: var(--primary);
    font-weight: 900;
}

.game-result .button {
    width: min(100%, 320px);
    margin-top: 6px;
}

@keyframes gameSheetIn {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.site-footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 64px;
    color: var(--text-secondary);
}

.site-footer a {
    color: var(--text-secondary);
}

.site-footer a:hover {
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .page-shell {
        padding: 0 1.5rem 3.5rem;
    }

    .hero-content h1,
    .legal-heading h1 {
        font-size: 3rem;
    }

    .feature-grid,
    .analytics-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .analytics-card {
        width: 100%;
    }

    .section-heading {
        margin-bottom: 48px;
    }

    .carousel-shell {
        width: 100%;
    }

    .carousel-track {
        gap: 16px;
        margin: 0;
        padding: 0 0.25rem;
    }

    .carousel-card {
        width: min(280px, 78vw);
        min-width: min(280px, 78vw);
        flex: 0 0 min(280px, 78vw);
    }

    .legal-content {
        max-width: 100%;
    }

    .touch-zone {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .page-shell {
        padding: 0 1rem 3rem;
    }

    .site-header {
        min-height: 148px;
        padding-top: 64px;
    }

    .owner-link,
    .back-link {
        top: 64px;
        padding: 0.65rem 0.9rem;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .owner-link {
        right: 0;
    }

    .back-link {
        left: 0;
    }

    .brand-logo {
        top: 64px;
    }

    .brand-logo img {
        max-width: 140px;
    }

    .hero-section,
    .site-footer {
        margin-top: 48px;
    }

    main > section + section {
        margin-top: 48px;
    }

    .hero-section {
        padding-bottom: 16px;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-content h1 {
        font-size: 2.45rem;
        line-height: 1;
    }

    .hero-copy {
        font-size: 1rem;
        line-height: 1.65;
    }

    .button {
        width: 100%;
        min-height: 52px;
        padding: 0.9rem 1.25rem;
    }

    .hero-buttons,
    .cta-buttons {
        width: 100%;
        display: grid;
        gap: 12px;
    }

    .carousel-track {
        gap: 12px;
    }

    .carousel-card {
        width: min(260px, 76vw);
        min-width: min(260px, 76vw);
        flex-basis: min(260px, 76vw);
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
        border-color: rgba(44, 159, 149, 0.28);
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2,
    .why-section h2,
    .cta-copy h2 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .feature-card,
    .analytics-card,
    .contact-card,
    .legal-card {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .crewsider-map-card {
        min-height: 320px;
        border-radius: 20px;
    }

    .crewsider-map-canvas {
        inset: 42px 8px 60px;
    }

    .map-country-label { top: 18px; left: 18px; }
    .map-legend { right: 16px; bottom: 16px; gap: 12px; }
    .map-info-card { transform: translate(-50%, -108%); }

    .feature-card p,
    .analytics-card p,
    .contact-card p,
    .legal-card p {
        line-height: 1.6;
    }

    .legal-section {
        gap: 48px;
    }

    .legal-heading h1 {
        font-size: 2.45rem;
        line-height: 1;
    }

    .legal-heading p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-section {
        padding: 1rem 0;
        gap: 24px;
    }

    .game-countdown {
        font-size: clamp(5rem, 28vw, 9rem);
    }

    .finger-marker {
        width: 76px;
        height: 76px;
    }

    .game-result {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .site-footer {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding-top: 48px;
        text-align: center;
    }

    .site-footer a {
        display: inline-flex;
        min-height: 36px;
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .map-cloud-one,
    .map-cloud-two,
    .map-region-cloud,
    .location-pulse {
        animation: none;
    }
}

/* Home — Crewsider night-map story */
.home-body {
    --night: #071116;
    --night-soft: #0b1c22;
    --night-card: rgba(14, 35, 41, 0.72);
    --story-text: #f2f8f7;
    --story-muted: #98aaa9;
    overflow-x: hidden;
    background: var(--night);
    color: var(--story-text);
}

.home-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 22%, rgba(44, 159, 149, 0.12), transparent 25%),
        radial-gradient(circle at 87% 55%, rgba(255, 77, 141, 0.065), transparent 21%),
        linear-gradient(155deg, #08151a 0%, #050c11 55%, #071419 100%);
}

.home-body .page-shell {
    width: 100%;
    min-width: 0;
    max-width: 1240px;
    padding: 0 2rem 3rem;
}

.home-body .site-header {
    z-index: 20;
    min-height: 128px;
    padding-top: 34px;
}

.home-body .brand-logo { top: 32px; }
.home-body .brand-logo img {
    max-width: 142px;
}

.home-body .owner-link {
    top: 37px;
    right: 0;
    min-width: 108px;
    border-color: rgba(95, 205, 194, 0.26);
    background: rgba(8, 24, 29, 0.62);
    color: var(--story-text);
    backdrop-filter: blur(16px);
}

.home-body .owner-link:hover {
    border-color: var(--primary);
    background: rgba(44, 159, 149, 0.16);
}

.map-story { position: relative; }
.home-body main > section + section { margin-top: 0; }

.story-hero {
    position: relative;
    min-width: 0;
    display: grid;
    place-items: start center;
    gap: 36px;
    padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
    overflow: hidden;
    border: 1px solid rgba(106, 198, 190, 0.12);
    border-radius: 38px;
    background: linear-gradient(160deg, rgba(14, 37, 43, 0.88), rgba(5, 13, 18, 0.82));
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.32);
}

.story-hero-content {
    position: relative;
    z-index: 4;
    width: min(760px, calc(100% - 40px));
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 26px;
    text-align: center;
}

.story-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #75d8ce;
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.story-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 14px rgba(46, 229, 157, 0.85);
}

.story-hero h1 {
    max-width: 850px;
    font-size: clamp(4rem, 8vw, 6.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.story-hero h1 span {
    color: transparent;
    background: linear-gradient(100deg, #fff 8%, #62cec4 72%);
    background-clip: text;
    -webkit-background-clip: text;
}

.story-hero-content > p {
    max-width: 570px;
    color: var(--story-muted);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.7;
}

.home-body .hero-buttons { align-items: center; }
.home-body .button-primary {
    background: linear-gradient(135deg, #3abdb2, #217e77);
    box-shadow: 0 18px 50px rgba(44, 159, 149, 0.26), inset 0 1px rgba(255, 255, 255, 0.18);
}

.story-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.2rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    font-weight: 700;
}

.story-text-link:hover { color: #fff; }

.hero-location-card {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(7, 20, 25, 0.78);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

.location-card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--primary);
}

.location-card-icon img { width: 21px; height: 21px; }
.hero-location-card > span:nth-child(2) { display: grid; gap: 3px; }
.hero-location-card small { color: var(--story-muted); font-size: 0.66rem; }
.hero-location-card strong { font-size: 0.81rem; }
.hero-location-card > i { color: #73d4cb; font-size: 0.7rem; font-style: normal; }

.cloud-bank,
.cta-cloud {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.68;
    filter: blur(22px);
    background: rgba(240, 247, 247, 0.94);
    box-shadow:
        80px -18px 0 12px rgba(240, 247, 247, 0.86),
        160px 20px 0 25px rgba(240, 247, 247, 0.75),
        240px -7px 0 4px rgba(240, 247, 247, 0.85),
        320px 17px 0 25px rgba(240, 247, 247, 0.76);
}

.cloud-bank { width: 170px; height: 75px; animation: storyCloud 28s ease-in-out infinite alternate; }
.discovery-section {
    position: relative;
    padding: clamp(72px, 8vw, 112px) 0 0;
}

.story-section-heading {
    max-width: 680px;
    margin: 0 auto 150px;
    display: grid;
    justify-items: center;
    gap: 22px;
    text-align: center;
}

.story-section-heading h2,
.home-body .crewsider-map-heading h2,
.story-cta h2 {
    color: var(--story-text);
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.story-section-heading p {
    max-width: 560px;
    color: var(--story-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.story-stop {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    padding: clamp(32px, 5vw, 64px);
    border-radius: 32px;
    background: #f4f9f7;
}

.story-stop + .story-stop { margin-top: 32px; }
.story-stop:nth-of-type(even) { background: #faf8f4; }
.story-stop:nth-of-type(even) .story-stop-copy { order: 2; }

.story-stop-copy {
    position: relative;
    display: grid;
    justify-items: start;
    gap: 20px;
}

.stop-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #e0eee7;
    color: #217e77;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1;
}

.story-stop h3 {
    max-width: 500px;
    font-size: clamp(2.15rem, 3.7vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.story-stop-copy > p {
    max-width: 480px;
    color: var(--story-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.stop-detail {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #d7e8e6;
    font-size: 0.82rem;
    font-weight: 750;
}

.stop-detail img {
    width: 19px;
    height: 19px;
}

.story-phone {
    position: relative;
    width: min(260px, 85%);
    justify-self: center;
    border: 8px solid #10181c;
    border-radius: 42px;
    background: #111;
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.story-phone > img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: 33px;
}

.phone-glow {
    position: absolute;
    inset: 14% -28%;
    background: radial-gradient(ellipse, rgba(44, 159, 149, 0.3), transparent 65%);
    filter: blur(22px);
}

.phone-tilt-right { transform: rotate(3.5deg); }
.phone-tilt-left { transform: rotate(-3.5deg); }

.home-body .crewsider-map-section {
    padding: clamp(72px, 8vw, 112px) 0;
}

.home-body .crewsider-map-heading {
    gap: 20px;
    margin-bottom: 46px;
}

.home-body .crewsider-map-heading h2 { font-size: clamp(3rem, 6vw, 5.3rem); }
.home-body .section-description { color: var(--story-muted); }
.home-body .crewsider-map-card { border-color: rgba(89, 196, 185, 0.19); }
.home-body .map-afterword { color: var(--story-muted); }

.story-cta {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(106, 198, 190, 0.12);
    border-radius: 38px;
    background:
        radial-gradient(circle at center, rgba(44, 159, 149, 0.19), transparent 48%),
        #08161b;
}

.story-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 24px;
    padding: clamp(56px, 7vw, 88px) 24px;
    text-align: center;
}

.story-cta-content > p { color: var(--story-muted); }
.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
}

.button-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.cta-cloud { width: 220px; height: 90px; opacity: 0.21; filter: blur(30px); }
.cta-cloud-left { left: -180px; bottom: 100px; transform: scale(2.4); }
.cta-cloud-right { top: 100px; right: 50px; transform: scale(1.8); }

.home-body .site-footer {
    margin-top: 0;
    padding: 48px 0 8px;
    color: var(--story-muted);
}

.home-body .site-footer a { color: var(--story-muted); }
.home-body .site-footer a:hover { color: #fff; }

.story-reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-reveal.reveal-pending {
    opacity: 0;
    transform: translateY(30px);
}

@keyframes storyCloud {
    to { translate: 52px 5px; }
}

@media (max-width: 800px) {
    .home-body .page-shell { padding: 0 1rem 2rem; }
    .story-hero { border-radius: 28px; }
    .story-hero h1 { font-size: clamp(3.7rem, 15vw, 5.4rem); }
    .story-stop {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-stop:nth-of-type(even) .story-stop-copy { order: initial; }
    .story-phone { width: min(260px, 82%); }
    .story-stop-copy { justify-items: start; }
    .story-cta { border-radius: 28px; }
}

@media (max-width: 520px) {
    .home-body .site-header { min-height: 112px; padding-top: 28px; }
    .home-body .brand-logo { top: 29px; left: 0; transform: none; }
    .home-body .brand-logo img { max-width: 112px; }
    .home-body .owner-link { top: 28px; font-size: 0.82rem; min-width: 94px; }
    .story-hero { gap: 0; }
    .story-hero-content { gap: 22px; }
    .story-hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(2.1rem, 12vw, 3.5rem);
    }
    .story-hero-content > p { font-size: 0.95rem; line-height: 1.6; }
    .home-body .hero-buttons { width: 100%; gap: 8px; }
    .story-text-link { justify-content: center; width: 100%; }
    .hero-location-card { display: none; }
    .story-section-heading h2,
    .home-body .crewsider-map-heading h2,
    .story-cta h2 { font-size: 2.7rem; }
    .story-section-heading p { font-size: 0.95rem; }
    .discovery-section { padding-inline: 0; }
    .story-stop { padding: 28px 24px 40px; border-radius: 24px; }
    .story-stop-copy > p { font-size: 0.94rem; }
    .story-phone { width: min(255px, 82%); border-width: 6px; border-radius: 35px; }
    .story-phone > img { border-radius: 28px; }
    .story-cta-content { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .story-reveal,
    .story-reveal.reveal-pending {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cloud-bank { animation: none; }

}

.button[aria-disabled="true"] {
    cursor: default;
    box-shadow: none;
    transform: none;
}

/* Business — the same light layout and spacing as the user journey. */
.business-body {
    --business-muted: #536b68;
    --business-text: #163532;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--business-text);
}

.business-body .page-shell {
    width: 100%;
    min-width: 0;
    max-width: 1240px;
    padding: 0 2rem 3rem;
}

.business-body .site-header {
    z-index: 20;
    min-height: 128px;
    padding-top: 34px;
}

.business-body .back-link {
    top: 37px;
    min-width: 108px;
    border-color: #d4e6e1;
    background: rgba(255, 255, 255, 0.92);
    color: var(--business-text);
    backdrop-filter: blur(16px);
}

.business-body .back-link:hover {
    border-color: var(--primary);
    background: rgba(44, 159, 149, 0.16);
}

.business-body main > section + section { margin-top: 0; }
.business-story { position: relative; }

.business-hero {
    position: relative;
    min-width: 0;
    display: grid;
    place-items: start center;
    gap: 36px;
    padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
    overflow: hidden;
    border: 1px solid #dcebe7;
    border-radius: 38px;
}

.business-hero-copy {
    position: relative;
    min-width: 0;
    width: min(960px, calc(100% - 40px));
    display: grid;
    justify-items: center;
    gap: 26px;
    text-align: center;
}

.business-hero h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 8vw, 6.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.business-hero h1 span {
    color: transparent;
    background: linear-gradient(100deg, #155d57 8%, #258b80 75%);
    background-clip: text;
    -webkit-background-clip: text;
}

.business-hero-copy > p {
    max-width: 620px;
    color: var(--business-muted);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.7;
    text-wrap: pretty;
}

.business-body .hero-buttons { align-items: center; }
.business-hero-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

.metric-chip {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    border: 1px solid #d4e6e1;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
}

.metric-chip img { width: 20px; height: 20px; filter: brightness(0); opacity: 0.55; }
.metric-chip > span { display: grid; gap: 3px; }
.metric-chip small { color: var(--business-muted); font-size: 0.66rem; }
.metric-chip strong { color: var(--business-text); font-size: 0.81rem; }
.metric-live i { width: 9px; height: 9px; border-radius: 50%; background: #217e77; }

.business-intro { padding: clamp(72px, 8vw, 112px) 0; }
.business-body .story-section-heading p { color: var(--business-muted); }
.business-journey { position: relative; }

.business-chapter {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    padding: clamp(32px, 5vw, 64px);
    border-radius: 32px;
    background: #f4f9f7;
}

.business-chapter + .business-chapter { margin-top: 32px; }
.business-chapter:nth-of-type(even) { background: #faf8f4; }
.business-chapter:nth-of-type(even) .business-chapter-copy { order: 2; }
.business-chapter-copy { min-width: 0; display: grid; justify-items: start; gap: 20px; }

.business-chapter h3 {
    max-width: 500px;
    font-size: clamp(2.15rem, 3.7vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.business-chapter-copy > p { max-width: 480px; color: var(--business-muted); line-height: 1.8; }
.business-checks { display: grid; gap: 12px; padding-top: 4px; list-style: none; }
.business-checks li {
    position: relative;
    padding-left: 24px;
    color: #345b55;
    font-size: 0.87rem;
    line-height: 1.5;
}

.business-checks li::before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 2px;
    width: 6px;
    height: 10px;
    border-right: 2px solid #217e77;
    border-bottom: 2px solid #217e77;
    transform: rotate(45deg);
}

.business-phone-wrap { position: relative; display: grid; place-items: center; }
.business-phone {
    position: relative;
    width: min(260px, 85%);
    border: 8px solid #10181c;
    border-radius: 42px;
    background: #111;
}

.business-phone img { width: 100%; height: auto; border-radius: 33px; }
.business-phone-right { transform: rotate(3.5deg); }
.business-phone-left { transform: rotate(-3.5deg); }

.business-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 6vw, 80px);
    padding: clamp(32px, 5vw, 64px);
    border: 1px solid #dcebe7;
    border-radius: 32px;
}

.proof-copy { min-width: 0; display: grid; align-content: center; justify-items: start; gap: 20px; }
.business-proof h2 {
    font-size: clamp(2.15rem, 3.7vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    text-wrap: balance;
}
.proof-copy > p { color: var(--business-muted); line-height: 1.75; }
.proof-points { display: grid; gap: 1px; overflow: hidden; border-radius: 20px; background: #dcebe7; }
.proof-points > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: #ffffff;
}
.proof-points strong { color: #217e77; font-size: 1.5rem; }
.proof-points span { color: #345b55; line-height: 1.45; }

.business-contact {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #dcebe7;
    border-radius: 38px;
}
.business-body .business-story > .business-contact { margin-top: clamp(72px, 8vw, 112px); }

.business-contact-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    display: grid;
    justify-items: center;
    gap: 24px;
    padding: clamp(56px, 7vw, 88px) 24px;
    text-align: center;
}

.business-contact-content > p { max-width: 560px; color: var(--business-muted); line-height: 1.7; }
.business-email { color: #217e77; font-size: 0.84rem; font-weight: 750; }
.business-email:hover { color: #155d57; }
.business-body .site-footer { margin-top: 0; padding: 48px 0 8px; color: var(--business-muted); }
.business-body .site-footer a { color: var(--business-muted); }
.business-body .site-footer a:hover { color: #155d57; }

@media (max-width: 800px) {
    .business-body .page-shell { padding: 0 1rem 2rem; }
    .business-hero,
    .business-contact { border-radius: 28px; }
    .business-chapter,
    .business-proof { grid-template-columns: 1fr; gap: 40px; }
    .business-chapter:nth-of-type(even) .business-chapter-copy { order: initial; }
}

@media (max-width: 640px) {
    .business-chapter h3,
    .business-proof h2 { font-size: clamp(2rem, 8vw, 2.65rem); }
    .business-phone { width: min(235px, 85%); }
    .business-body .hero-buttons,
    .business-body .cta-buttons { gap: 12px; }
}

@media (max-width: 520px) {
    .business-body .site-header { min-height: 112px; padding-top: 28px; }
    .business-body .back-link { top: 28px; min-width: 94px; font-size: 0.82rem; }
    .business-hero { gap: 0; }
    .business-hero-copy { gap: 22px; }
    .business-hero h1 { font-size: clamp(1.7rem, 9.5vw, 3.5rem); }
    .business-hero-copy > p { font-size: 0.95rem; line-height: 1.6; }
    .business-body .story-text-link { justify-content: center; width: 100%; }
    .business-hero-highlights { display: none; }
    .business-body .story-section-heading p { font-size: 0.95rem; }
    .business-chapter,
    .business-proof { padding: 28px 24px 40px; border-radius: 24px; }
    .business-chapter-copy > p { font-size: 0.94rem; }
    .business-phone { border-width: 6px; border-radius: 35px; }
    .business-phone img { border-radius: 28px; }
    .proof-points > div { grid-template-columns: 36px 1fr; gap: 10px; padding: 22px 18px; }
    .business-contact-content { padding-inline: 18px; }
}

/* Shared brand placement */
.home-body .brand-logo,
.business-body .brand-logo {
    top: 24px;
    right: auto;
    left: 8px;
    z-index: 2;
    width: 104px;
    display: grid;
    place-items: center;
    transform: none;
}


.home-body .brand-logo img,
.business-body .brand-logo img {
    position: relative;
    z-index: 1;
    width: 72px;
    max-width: none;
}

.business-body .back-link {
    right: 0;
    left: auto;
}

@media (max-width: 640px) {
    .home-body .brand-logo,
    .business-body .brand-logo {
        top: 23px;
        left: 0;
        width: 86px;
    }

    .home-body .brand-logo img,
    .business-body .brand-logo img {
        width: 60px;
    }


    .business-body .back-link {
        right: 0;
        left: auto;
    }
}

/* Light palette for the home and business journeys. */
.home-body,
.business-body {
    --night: #ffffff;
    --story-text: #163532;
    --story-muted: #536b68;
    --business-night: #ffffff;
    --business-text: #163532;
    --business-muted: #536b68;
    background: #ffffff;
    color: #163532;
}

.home-body::before,
.business-body::before {
    background: #ffffff;
}

.story-hero,
.business-hero,
.story-cta,
.business-contact,
.business-proof {
    border-color: #dcebe7;
    background: radial-gradient(ellipse at 70% 25%, rgba(44, 159, 149, 0.09), transparent 60%),
        linear-gradient(145deg, #ffffff, #f0f8f5);
    box-shadow: 0 24px 70px rgba(25, 79, 68, 0.07);
}

.home-body .owner-link,
.business-body .back-link,
.hero-location-card,
.metric-chip {
    border-color: #d4e6e1;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 35px rgba(25, 79, 68, 0.08);
}

.story-hero h1 span,
.business-hero h1 span {
    background-image: linear-gradient(100deg, #155d57 8%, #258b80 75%);
}

.home-body .story-kicker,
.business-body .story-kicker,
.hero-location-card > i,
.business-email,
.proof-points strong {
    color: #217e77;
}

.story-text-link,
.stop-detail,
.business-checks li,
.proof-points span,
.metric-chip strong {
    color: #345b55;
}

.story-text-link:hover,
.business-email:hover,
.home-body .site-footer a:hover,
.business-body .site-footer a:hover {
    color: #155d57;
}


.home-body .button-primary,
.business-body .button-primary {
    background: linear-gradient(135deg, #217e77, #19645e);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(33, 126, 119, 0.18);
}

.home-body .button-primary:hover,
.business-body .button-primary:hover {
    background: #155d57;
}

.home-body .button-ghost,
.business-body .button-ghost {
    border-color: #b9d8cf;
    background: #ffffff;
    color: #217e77;
}

.home-body .button-ghost:hover,
.business-body .button-ghost:hover {
    background: #e5f2ed;
}

.story-phone,
.business-phone {
    box-shadow: 0 30px 65px rgba(25, 65, 57, 0.17), 0 0 0 1px rgba(25, 65, 57, 0.08);
}

.proof-points > div { background: #ffffff; }
.home-body .crewsider-map-card { box-shadow: 0 24px 65px rgba(25, 65, 57, 0.1); }
.business-body .site-footer { color: var(--business-muted); }

.home-body .story-kicker i {
    background: #217e77;
    box-shadow: 0 0 0 4px rgba(33, 126, 119, 0.1);
}

/* Shared surfaces, typography, and content-driven spacing. */

.home-body .story-hero,
.business-body .business-hero {
    background:
        radial-gradient(ellipse at 85% 12%, rgba(175, 214, 180, 0.23), transparent 58%),
        linear-gradient(135deg, #fbfdfb, #edf6ef);
    box-shadow: 0 16px 48px rgba(25, 79, 68, 0.05);
}

.home-body .story-hero-content > p,
.home-body .story-section-heading p,
.home-body .section-description,
.business-body .story-section-heading p {
    text-wrap: pretty;
}

.home-body .story-section-heading,
.business-body .story-section-heading {
    gap: 20px;
    margin-bottom: clamp(40px, 5vw, 64px);
    padding-inline: 12px;
}

.home-body .story-section-heading h2,
.home-body .crewsider-map-heading h2,
.home-body .story-cta h2,
.business-body .story-section-heading h2,
.business-body .business-contact h2 {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.home-body .hero-location-card,
.business-body .metric-chip {
    box-shadow: 0 8px 24px rgba(25, 79, 68, 0.06);
}

.home-body .stop-detail {
    padding-top: 4px;
    line-height: 1.5;
}

.home-body .stop-detail img {
    flex-shrink: 0;
    filter: brightness(0);
    opacity: 0.55;
}
.home-body .crewsider-map-card::before { content: none; }

.home-body .story-phone,
.business-body .business-phone {
    box-shadow: 0 22px 40px rgba(25, 65, 57, 0.14), 0 0 0 1px rgba(25, 65, 57, 0.06);
}

/* These images already include the complete device frame. */
.home-body .device-mockup,
.business-body .device-mockup {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.device-mockup > img {
    border-radius: 0;
    filter: drop-shadow(0 22px 20px rgba(25, 65, 57, 0.14));
}

.home-body .story-cta,
.business-body .business-contact {
    background: linear-gradient(125deg, #f5f9f2, #e6f2eb);
    box-shadow: none;
}

.home-body a:focus-visible,
.business-body a:focus-visible {
    outline: 3px solid #217e77;
    outline-offset: 5px;
}

@media (max-width: 640px) {

    .home-body .story-stop h3 { font-size: clamp(2rem, 8vw, 2.65rem); }
    .home-body .story-phone { width: min(235px, 85%); }
    .home-body .hero-buttons,
    .home-body .cta-buttons { gap: 12px; }
}
