@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
    --bg: #eff2f8;
    --panel: rgba(255, 255, 255, 0.8);
    --panel-strong: rgba(255, 255, 255, 0.92);
    --panel-dark: #05070d;
    --panel-dark-soft: #0d111a;
    --text: #090d18;
    --muted: #697388;
    --line: rgba(19, 28, 47, 0.1);
    --accent: #3e79f1;
    --accent-soft: rgba(62, 121, 241, 0.13);
    --green: #24b56b;
    --green-soft: rgba(36, 181, 107, 0.14);
    --shadow: 0 32px 80px rgba(17, 28, 50, 0.14);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --max-width: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Instrument Sans", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(62, 121, 241, 0.12), transparent 24rem),
        radial-gradient(circle at 90% 12%, rgba(36, 181, 107, 0.08), transparent 18rem),
        linear-gradient(180deg, #f8f9fc 0%, #edf1f7 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle at 1px 1px, rgba(16, 25, 43, 0.045) 1px, transparent 0);
    background-size: 26px 26px;
    opacity: 0.28;
}

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

.site-shell,
.simple-shell {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px;
}

.site-header,
.simple-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(62, 121, 241, 0.18);
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 14px 36px rgba(17, 28, 50, 0.08);
    backdrop-filter: blur(18px);
}

.site-nav a {
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    color: var(--muted);
    transition: 0.22s ease;
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--accent);
    background: var(--accent-soft);
}

.hero,
.metadata-panel,
.appstore-panel,
.legal-card,
.support-card {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    padding: 34px;
    margin-bottom: 34px;
}

.hero-copy {
    padding: 12px 6px 12px 6px;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero h1,
.legal-intro h1,
.section-heading h2 {
    margin: 0;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    letter-spacing: -0.055em;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5.4rem);
    line-height: 0.93;
}

.hero-text,
.metadata-copy p,
.appstore-copy p,
.legal-intro p,
.showcase-copy,
.support-head p {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.78;
    font-size: 1.03rem;
}

.hero-proof {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.hero-proof-item {
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(19, 28, 47, 0.08);
}

.hero-proof-item span {
    display: block;
    margin-bottom: 7px;
    font-size: 0.77rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 800;
}

.hero-proof-item strong {
    display: block;
    font-size: 0.96rem;
    line-height: 1.45;
}

.hero-actions,
.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #6d97ff);
    box-shadow: 0 16px 34px rgba(62, 121, 241, 0.24);
}

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

.url-matrix {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.url-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(19, 28, 47, 0.08);
}

.url-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.url-card strong {
    display: block;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: 0.96rem;
    line-height: 1.45;
    word-break: break-word;
}

.preview-stack {
    position: relative;
    min-height: 760px;
    padding: 18px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 18% 18%, rgba(62, 121, 241, 0.22), transparent 18rem),
        radial-gradient(circle at 80% 72%, rgba(36, 181, 107, 0.12), transparent 16rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08));
    overflow: hidden;
}

.preview-stack::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.14)), radial-gradient(circle at 1px 1px, rgba(12, 18, 34, 0.06) 1px, transparent 0);
    background-size: auto, 24px 24px;
    opacity: 0.48;
}

.preview-stack::after {
    content: "";
    position: absolute;
    inset: 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    pointer-events: none;
}

.device-card {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 34px 90px rgba(12, 18, 34, 0.26);
}

.premium-frame {
    padding: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
        linear-gradient(180deg, #0a0f17 0%, #111926 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
}

.light-frame {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 252, 0.94)),
        #ffffff;
    border: 1px solid rgba(19, 28, 47, 0.08);
}

.premium-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.12));
    pointer-events: none;
}

.screen-render {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.preview-label {
    position: absolute;
    left: 26px;
    bottom: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(8, 13, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.dark-shot {
    background: linear-gradient(180deg, #05070d 0%, #111621 100%);
    color: #f8faff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.light-shot {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    border: 1px solid rgba(19, 28, 47, 0.08);
}

.tablet-shot {
    top: 26px;
    right: 0;
    width: min(100%, 680px);
    aspect-ratio: 16 / 10;
}

.phone-shot {
    left: 26px;
    bottom: 56px;
    width: 290px;
    aspect-ratio: 9 / 18;
    border-radius: 38px;
}

.globe-shot {
    right: 24px;
    bottom: 18px;
    width: 420px;
    aspect-ratio: 14 / 10;
}

.shot-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.shot-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.shot-pills {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
}

.shot-pills span {
    padding: 7px 10px;
    border-radius: 999px;
}

.shot-pills .active {
    color: #79a9ff;
    background: rgba(62, 121, 241, 0.16);
}

.shot-pills.wide {
    width: 100%;
    justify-content: center;
}

.shot-map {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.shot-map-ocean {
    min-height: 180px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22)),
        linear-gradient(120deg, #476f49 0%, #628452 16%, #32536c 40%, #224b67 66%, #6a8a4f 100%);
}

.shot-map-city {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18)),
        linear-gradient(135deg, #6e8d50 0%, #88a65e 18%, #466b72 38%, #2a4b65 64%, #b6ab7c 100%);
}

.shot-map-runway {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.14)),
        linear-gradient(135deg, #4f6d3f 0%, #708f53 20%, #33442d 36%, #1d2518 42%, #465d37 56%, #a19876 100%);
}

.shot-map-harbor {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16)),
        linear-gradient(135deg, #6f9458 0%, #4d7848 18%, #264f66 42%, #173347 64%, #799564 100%);
}

.shot-map-island {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16)),
        linear-gradient(135deg, #98724d 0%, #8d9e5b 18%, #5a794b 34%, #3a5d4f 44%, #204768 64%, #b58c48 100%);
}

.shot-map-coast {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16)),
        linear-gradient(135deg, #668a56 0%, #4f7648 18%, #375b63 36%, #214864 58%, #a29d72 100%);
}

.shot-map-bay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16)),
        linear-gradient(135deg, #617b51 0%, #7e9d55 18%, #244e67 44%, #18374c 62%, #b3a85d 100%);
}

.route-summary {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px 12px 12px;
    text-align: center;
}

.route-summary small {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
}

.route-summary strong {
    display: block;
    margin-top: 4px;
    font-size: 1.35rem;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
}

.route-arrow {
    width: 84px;
    height: 1px;
    background: linear-gradient(90deg, rgba(121, 169, 255, 0.16), rgba(121, 169, 255, 0.8), rgba(121, 169, 255, 0.16));
    position: relative;
}

.route-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid rgba(121, 169, 255, 0.8);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.stats-strip span {
    text-align: center;
    font-size: 0.95rem;
}

.cta-strip {
    margin-top: 14px;
    padding: 14px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #467fe8, #6b9dff);
    color: #fff;
    font-weight: 700;
}

.phone-island {
    width: 112px;
    height: 24px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: #090d18;
}

.phone-search {
    height: 52px;
    border-radius: 999px;
    background: rgba(116, 126, 151, 0.14);
    margin-bottom: 18px;
}

.phone-copy strong {
    display: block;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.phone-copy span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(116, 126, 151, 0.14);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.chip-active {
    background: var(--accent);
    color: #fff;
}

.mini-card {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(19, 28, 47, 0.08);
    box-shadow: 0 18px 36px rgba(17, 28, 50, 0.08);
}

.mini-map {
    min-height: 204px;
}

.mini-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    padding: 18px;
    align-items: center;
}

.mini-bottom strong {
    display: block;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: 1.1rem;
}

.mini-bottom span {
    color: var(--muted);
    font-size: 0.86rem;
}

.mini-route-line {
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, rgba(120, 130, 150, 0.2), rgba(120, 130, 150, 0.8), rgba(120, 130, 150, 0.2));
}

.align-right {
    text-align: right;
}

.globe-stage {
    position: relative;
    min-height: 214px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.05), transparent 10rem),
        linear-gradient(180deg, #020409 0%, #0a1018 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.globe-planet,
.globe-arc {
    position: absolute;
    border-radius: 50%;
}

.globe-planet {
    width: 210px;
    height: 210px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -48%);
    background:
        radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), rgba(104, 151, 255, 0.32) 24%, rgba(8, 14, 26, 0.96) 68%),
        radial-gradient(circle at 44% 64%, rgba(39, 195, 126, 0.18), transparent 24%);
    box-shadow: inset -44px -30px 76px rgba(0, 0, 0, 0.58);
}

.globe-arc {
    border: 1.5px solid;
    opacity: 0.82;
}

.arc-a {
    width: 320px;
    height: 96px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%) rotate(14deg);
    border-color: rgba(255, 91, 91, 0.8);
}

.arc-b {
    width: 168px;
    height: 312px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    border-color: rgba(62, 121, 241, 0.72);
}

.arc-c {
    width: 244px;
    height: 244px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(36, 181, 107, 0.62);
}

.globe-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}

.section-heading {
    max-width: 880px;
    margin: 0 0 22px;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 0.98;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 32px;
}

.showcase-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.showcase-light {
    background: var(--panel-strong);
    border: 1px solid rgba(19, 28, 47, 0.08);
}

.showcase-dark {
    background: linear-gradient(180deg, #05070d 0%, #111621 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f7fbff;
}

.showcase-card:nth-child(1),
.showcase-card:nth-child(2) {
    grid-column: span 6;
}

.wide-showcase {
    grid-column: span 12;
}

.showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
}

.showcase-head span {
    font-size: 1.1rem;
    font-weight: 700;
}

.showcase-head small {
    color: var(--muted);
}

.showcase-dark .showcase-head small,
.showcase-dark .showcase-copy {
    color: rgba(255, 255, 255, 0.68);
}

.showcase-screen {
    border-radius: 24px;
    overflow: hidden;
}

.image-screen {
    border: 1px solid rgba(19, 28, 47, 0.08);
    background: rgba(255, 255, 255, 0.76);
}

.showcase-dark .image-screen {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.showcase-render {
    display: block;
    width: 100%;
    height: auto;
}

.sightseeing-grid-shot {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    padding: 16px;
}

.scenic-panel {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.scenic-map {
    min-height: 180px;
}

.scenic-map-canyon {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.16)),
        linear-gradient(135deg, #846640 0%, #b3935d 22%, #6e8555 46%, #39524f 70%, #2b4136 100%);
}

.scenic-map-bali {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.16)),
        linear-gradient(135deg, #2c6580 0%, #1a4b65 20%, #59865a 48%, #8ba15f 74%, #d2b278 100%);
}

.scenic-meta {
    padding: 14px 16px 18px;
}

.scenic-meta strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

.scenic-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.scenic-badges span {
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(36, 181, 107, 0.12);
    color: #5cdf99;
}

.airport-mobile-shot {
    padding: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(19, 28, 47, 0.08);
}

.airport-hero-map {
    min-height: 220px;
}

.airport-mobile-meta {
    padding: 18px 8px 10px;
}

.airport-mobile-meta strong {
    display: block;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.airport-mobile-meta span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.airport-action {
    margin: 0 8px 14px;
    padding: 14px;
    text-align: center;
    border-radius: 18px;
    background: rgba(62, 121, 241, 0.12);
    color: var(--accent);
    font-weight: 700;
}

.freq-stack {
    display: grid;
    gap: 10px;
    padding: 0 8px 8px;
}

.freq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(19, 28, 47, 0.08);
}

.freq-item strong {
    color: var(--accent);
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
}

.discover-desktop-shot {
    padding: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(19, 28, 47, 0.08);
}

.discover-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.discover-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.discover-tabs span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(116, 126, 151, 0.14);
    color: var(--muted);
    font-weight: 700;
    font-size: 0.84rem;
}

.discover-tabs .active {
    background: var(--accent);
    color: #fff;
}

.discover-search {
    min-width: 240px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(116, 126, 151, 0.12);
    color: var(--muted);
    text-align: right;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.route-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(19, 28, 47, 0.08);
    box-shadow: 0 16px 32px rgba(17, 28, 50, 0.08);
}

.route-card-map {
    min-height: 190px;
}

.route-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.metadata-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 22px;
    padding: 30px;
    margin-bottom: 28px;
}

.appstore-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 22px;
    align-items: center;
    padding: 34px 30px;
    margin-bottom: 28px;
}

.metadata-copy h2 {
    margin: 0;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.appstore-copy h2 {
    margin: 0;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.appstore-badge {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    justify-self: end;
    min-height: 122px;
    padding: 26px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, #0a0f17 0%, #111926 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 56px rgba(12, 18, 34, 0.22);
    color: #fff;
}

.appstore-badge-mark {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.appstore-badge-mark svg {
    width: 34px;
    height: 34px;
    display: block;
}

.appstore-badge-copy span,
.appstore-badge-copy strong {
    display: block;
}

.appstore-badge-copy span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.appstore-badge-copy strong {
    margin-top: 4px;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    letter-spacing: -0.05em;
}

.metadata-links {
    display: grid;
    gap: 14px;
}

.metadata-link {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(19, 28, 47, 0.08);
}

.metadata-link span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.metadata-link strong {
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    word-break: break-word;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 4px 6px;
    color: var(--muted);
}

.footer-links {
    display: inline-flex;
    gap: 18px;
}

.legal-layout {
    display: grid;
    gap: 18px;
}

.legal-intro {
    max-width: 58rem;
    margin-bottom: 6px;
}

.locale-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 4px;
}

.locale-label {
    margin: 22px 0 0;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.locale-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(19, 28, 47, 0.08);
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.locale-link.active {
    background: var(--accent);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 14px 30px rgba(62, 121, 241, 0.22);
}

.legal-intro h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 0.95;
}

.legal-card {
    padding: 26px 28px;
}

.legal-card h2 {
    margin: 0 0 10px;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.legal-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--muted);
}

.support-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.support-shell {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100% - 32px));
    margin: 32px auto;
}

.support-card {
    padding: 34px;
}

.support-head {
    margin-bottom: 22px;
}

.support-brand {
    margin-bottom: 22px;
}

.support-head h1 {
    margin: 0 0 8px;
    font-family: "Space Grotesk", "Instrument Sans", sans-serif;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.message-banner {
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 18px;
    font-weight: 600;
}

.message-banner.success {
    background: rgba(36, 181, 107, 0.12);
    color: #167145;
}

.message-banner.error {
    background: rgba(225, 72, 72, 0.12);
    color: #9d3030;
}

.support-form {
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--muted);
}

.field input,
.field textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(19, 28, 47, 0.12);
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(62, 121, 241, 0.46);
    box-shadow: 0 0 0 4px rgba(62, 121, 241, 0.12);
}

.field textarea {
    min-height: 180px;
    resize: vertical;
}

.field-full {
    grid-column: 1 / -1;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .hero,
    .metadata-panel,
    .appstore-panel {
        grid-template-columns: 1fr;
    }

    .preview-stack {
        min-height: 920px;
    }

    .tablet-shot {
        width: calc(100% - 12px);
        left: 6px;
        right: 6px;
    }

    .globe-shot {
        width: calc(100% - 52px);
    }
}

@media (max-width: 960px) {
    .showcase-card:nth-child(1),
    .showcase-card:nth-child(2),
    .wide-showcase {
        grid-column: span 12;
    }

    .site-header,
    .simple-header,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .sightseeing-grid-shot,
    .discover-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-shell,
    .simple-shell {
        padding: 18px;
    }

    .hero,
    .showcase-card,
    .metadata-panel,
    .appstore-panel,
    .support-card,
    .legal-card {
        padding: 22px;
    }

    .site-nav {
        width: 100%;
        flex-wrap: wrap;
        border-radius: 28px;
    }

    .site-nav a {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
    }

    .url-matrix,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .appstore-badge {
        justify-self: stretch;
    }

    .preview-stack {
        min-height: 1180px;
        padding: 10px;
    }

    .tablet-shot {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin-bottom: 18px;
    }

    .phone-shot,
    .globe-shot {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-bottom: 18px;
    }

    .phone-shot {
        max-width: 360px;
    }

    .preview-label {
        left: 20px;
        bottom: 20px;
    }

    .phone-shot,
    .globe-shot {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-bottom: 18px;
    }

    .phone-shot {
        min-height: 0;
    }

    .discover-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .discover-search {
        min-width: 0;
        text-align: left;
    }
}
