:root {
    --navy: #102a72;
    --navy-deep: #071438;
    --gold: #c69e57;
    --ink: #152035;
    --muted: #5d687c;
    --line: rgba(20, 32, 53, 0.12);
    --paper: #f8f6f1;
    --white: #ffffff;
    --teal: #227c88;
    --rose: #b94b63;
    --green: #3f7d58;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(248, 246, 241, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-mark {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-wordmark {
    height: 38px;
    width: auto;
    margin-left: -16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.nav-links a {
    padding: 10px 12px;
    border-radius: 999px;
}

.nav-links a:hover {
    background: rgba(16, 42, 114, 0.08);
    color: var(--navy);
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 65px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 72px) clamp(30px, 5vw, 60px);
    overflow: hidden;
    isolation: isolate;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(248, 246, 241, 0.96) 0%, rgba(248, 246, 241, 0.82) 42%, rgba(248, 246, 241, 0.28) 100%),
        url("assets/onboarding-background.png") center bottom / cover no-repeat;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 32%;
    background: linear-gradient(0deg, var(--paper), rgba(248, 246, 241, 0));
}

.version-pill,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 16px;
    padding: 8px 12px;
    border: 1px solid rgba(198, 158, 87, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 16px;
    color: var(--navy-deep);
    font-size: clamp(3.8rem, 8.5vw, 8.2rem);
    line-height: 0.86;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    color: var(--navy-deep);
    font-size: clamp(2rem, 4.4vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    color: var(--navy-deep);
    font-size: 1.16rem;
    line-height: 1.18;
}

.hero-copy {
    max-width: 660px;
    color: #354158;
    font-size: clamp(1.08rem, 2vw, 1.36rem);
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 14px;
    font-weight: 800;
}

.primary-button {
    background: var(--navy);
    color: white;
    box-shadow: 0 18px 36px rgba(16, 42, 114, 0.24);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.76);
    color: var(--navy);
    border: 1px solid rgba(16, 42, 114, 0.14);
}

.primary-button.disabled {
    opacity: 0.62;
    cursor: not-allowed;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 760px;
    margin: 0;
}

.hero-stats div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
}

.hero-stats dt {
    margin-bottom: 6px;
    color: var(--navy);
    font-weight: 800;
}

.hero-stats dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.hero-device {
    justify-self: center;
}

.phone-shell {
    width: min(360px, 78vw);
    aspect-ratio: 0.49;
    padding: 12px;
    border-radius: 46px;
    background: #111827;
    box-shadow: 0 34px 80px rgba(7, 20, 56, 0.28);
}

.phone-shell.slim {
    width: min(300px, 76vw);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 34px;
    background: #e7eef2;
}

.map-preview {
    background:
        radial-gradient(circle at 25% 38%, rgba(34, 124, 136, 0.48), transparent 19%),
        radial-gradient(circle at 78% 28%, rgba(63, 125, 88, 0.48), transparent 16%),
        radial-gradient(circle at 60% 70%, rgba(185, 75, 99, 0.36), transparent 20%),
        linear-gradient(145deg, #d8e5df, #eef1e8 45%, #d5e4ed);
}

.phone-top,
.tab-bar {
    position: absolute;
    left: 16px;
    right: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
}

.phone-top {
    top: 18px;
    border-radius: 18px;
    color: var(--navy);
    font-size: 0.84rem;
    font-weight: 800;
}

.phone-top img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tab-bar {
    bottom: 18px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
}

.tab-bar span {
    flex: 1;
    text-align: center;
}

.tab-bar .active {
    color: var(--navy);
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 42, 114, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 42, 114, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.52;
}

.pin {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid white;
    border-radius: 999px;
    background: var(--rose);
    box-shadow: 0 8px 18px rgba(7, 20, 56, 0.28);
}

.p1 { left: 25%; top: 33%; }
.p2 { left: 58%; top: 28%; background: var(--green); }
.p3 { left: 69%; top: 58%; background: var(--gold); }
.p4 { left: 39%; top: 67%; background: var(--teal); }

.travel-card {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 98px;
    z-index: 3;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 34px rgba(7, 20, 56, 0.18);
}

.travel-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 900;
}

.travel-card strong,
.travel-card small {
    display: block;
}

.travel-card strong {
    color: var(--navy-deep);
    line-height: 1.2;
}

.travel-card small {
    margin-top: 8px;
    color: var(--muted);
}

.section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(52px, 8vw, 92px) 0;
}

.intro-band,
.testflight {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: clamp(24px, 6vw, 80px);
    align-items: center;
}

.intro-band p,
.split-section p,
.showcase p,
.testflight p,
.section-heading p {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

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

.feature-grid article {
    min-height: 250px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.feature-grid article:nth-child(2) .feature-icon { background: rgba(34, 124, 136, 0.12); color: var(--teal); }
.feature-grid article:nth-child(3) .feature-icon { background: rgba(185, 75, 99, 0.12); color: var(--rose); }
.feature-grid article:nth-child(4) .feature-icon { background: rgba(198, 158, 87, 0.16); color: #846329; }
.feature-grid article:nth-child(5) .feature-icon { background: rgba(63, 125, 88, 0.12); color: var(--green); }
.feature-grid article:nth-child(6) .feature-icon { background: rgba(16, 42, 114, 0.1); color: var(--navy); }

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(16, 42, 114, 0.1);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 900;
}

.feature-grid p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.split-section,
.showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
}

.privacy-card {
    padding: 28px;
    border-radius: 8px;
    background: var(--navy-deep);
    color: white;
}

.privacy-card img {
    width: 88px;
    height: 88px;
    margin-bottom: 32px;
    border-radius: 24px;
}

.privacy-card h3 {
    color: white;
    font-size: 1.6rem;
}

.privacy-card p {
    color: rgba(255, 255, 255, 0.76);
}

.check-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: #344057;
    line-height: 1.5;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--green);
}

.screen-section {
    width: 100%;
    max-width: none;
    padding-left: clamp(18px, 5vw, 72px);
    padding-right: clamp(18px, 5vw, 72px);
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    max-width: 860px;
    margin-bottom: 28px;
}

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

.screen-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfaf7;
}

.screen-shot {
    height: 430px;
    margin-bottom: 18px;
    border-radius: 8px;
    background:
        var(--shot) center / cover no-repeat,
        linear-gradient(145deg, rgba(16, 42, 114, 0.88), rgba(34, 124, 136, 0.54)),
        url("assets/onboarding-welcome.png") center / cover no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.screen-card p {
    color: var(--muted);
    line-height: 1.58;
}

.showcase {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.showcase-phone {
    justify-self: center;
}

.memo-preview {
    padding: 22px 16px;
    background: #fbfbfd;
}

.memo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    font-weight: 800;
}

.memo-head img {
    width: 42px;
    height: 42px;
}

.bubble {
    width: fit-content;
    max-width: 86%;
    padding: 12px 14px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.bubble.buddy {
    background: #eef0f4;
}

.bubble.user {
    margin-left: auto;
    background: var(--navy);
    color: white;
}

.testflight {
    padding-bottom: clamp(64px, 10vw, 120px);
}

.testflight .primary-button {
    justify-self: end;
    white-space: nowrap;
}

.newsletter-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    gap: clamp(24px, 6vw, 80px);
    align-items: center;
    padding-top: 0;
}

.newsletter-section p {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

.newsletter-form {
    display: grid;
    gap: 12px;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
}

.newsletter-form label {
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 800;
}

.newsletter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.newsletter-row input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(20, 32, 53, 0.16);
    border-radius: 14px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
}

.newsletter-row input:focus {
    outline: 3px solid rgba(16, 42, 114, 0.14);
    border-color: var(--navy);
}

.newsletter-message {
    min-height: 22px;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.newsletter-message.is-success {
    color: var(--green);
}

.newsletter-message.is-error {
    color: var(--rose);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line);
    background: #ffffff;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-brand .brand-wordmark {
    height: 34px;
}

@media (max-width: 980px) {
    .hero-section,
    .intro-band,
    .split-section,
    .showcase,
    .testflight,
    .newsletter-section {
        grid-template-columns: 1fr;
    }

    .hero-device,
    .showcase-phone {
        justify-self: center;
    }

    .feature-grid,
    .screen-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testflight .primary-button {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 28px;
    }

    .hero-stats,
    .feature-grid,
    .screen-grid {
        grid-template-columns: 1fr;
    }

    .screen-shot {
        height: 360px;
    }

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

    .newsletter-row {
        grid-template-columns: 1fr;
    }

    .newsletter-row .primary-button {
        width: 100%;
    }
}

.screenshot-screen img,
.screen-card img,
.story-card img,
.social-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.screenshot-screen {
    background: #02050c;
}

.route-video-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.64fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: center;
}

.route-copy p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.video-phone {
    justify-self: center;
    width: min(360px, 78vw);
    aspect-ratio: 0.49;
    padding: 12px;
    border-radius: 46px;
    background: #111827;
    box-shadow: 0 34px 80px rgba(7, 20, 56, 0.28);
}

.video-phone video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 34px;
    background: #000;
}

.memo-video-phone {
    width: min(340px, 78vw);
}

.visual-story-section,
.social-section {
    width: min(1280px, calc(100% - 36px));
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.story-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.story-card.large {
    grid-column: span 2;
}

.story-grid.experience-grid {
    grid-template-columns: minmax(0, 1fr);
}

.story-card.experience-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    padding: clamp(18px, 3vw, 34px);
}

.story-card img {
    height: 520px;
    border-bottom: 1px solid var(--line);
}

.story-card div {
    padding: 18px;
}

.story-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.story-card p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.6;
}

.screen-card img {
    height: 460px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: #eef0f4;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.social-grid article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.social-grid img {
    height: 430px;
    border-bottom: 1px solid var(--line);
}

.social-grid h3,
.social-grid p {
    padding-inline: 18px;
}

.social-grid h3 {
    padding-top: 18px;
}

.social-grid p {
    padding-bottom: 18px;
    color: var(--muted);
    line-height: 1.58;
}

@media (max-width: 1100px) {
    .story-grid,
    .social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .route-video-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .story-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .story-card.large {
        grid-column: auto;
    }

    .story-card img,
    .screen-card img,
    .social-grid img {
        height: 420px;
    }
}

.phone-gallery {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-gallery {
    margin-bottom: 0;
}

.story-card .phone-gallery,
.story-card .phone-gallery div,
.screen-card .phone-gallery,
.screen-card .phone-gallery div,
.social-grid .phone-gallery,
.social-grid .phone-gallery div {
    padding: 0;
}

.gallery-phone {
    width: min(255px, 100%);
    padding: 10px;
    border-radius: 38px;
    box-shadow: 0 24px 56px rgba(7, 20, 56, 0.24);
}

.story-card.large .gallery-phone {
    width: min(315px, 100%);
}

.privacy-gallery-card {
    display: grid;
    align-content: start;
    background: var(--navy-deep);
}

.privacy-gallery-card .phone-gallery {
    margin-bottom: 24px;
}

.gallery-screen {
    background: #050814;
}

.phone-gallery .gallery-screen img,
.story-card .phone-gallery .gallery-screen img,
.screen-card .phone-gallery .gallery-screen img,
.social-grid .phone-gallery .gallery-screen img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    box-shadow: none;
}

.phone-gallery .gallery-screen img.is-active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-control {
    position: absolute;
    top: calc(50% - 28px);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(20, 32, 53, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--navy);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(7, 20, 56, 0.14);
}

.gallery-control.previous {
    left: 8px;
}

.gallery-control.next {
    right: 8px;
}

.gallery-control:hover {
    background: #ffffff;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    min-height: 10px;
}

.gallery-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 42, 114, 0.22);
    cursor: pointer;
}

.gallery-dot.is-active {
    width: 18px;
    background: var(--navy);
}

.privacy-gallery-card .gallery-dot {
    background: rgba(255, 255, 255, 0.34);
}

.privacy-gallery-card .gallery-dot.is-active {
    background: #ffffff;
}

.story-card .phone-gallery,
.screen-card .phone-gallery,
.social-grid .phone-gallery {
    padding-top: 12px;
}

.story-card .phone-gallery,
.social-grid .phone-gallery {
    border-bottom: 1px solid var(--line);
}

.story-card .phone-gallery + div {
    padding-top: 0;
}

.screen-card .phone-gallery {
    margin-bottom: 20px;
}

.story-card.experience-card .phone-gallery {
    width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    border-bottom: 0;
}

.story-card.experience-card .gallery-phone {
    width: min(360px, 100%);
}

.story-card.experience-card .gallery-copy {
    padding: 0;
}

.story-card.experience-card .gallery-caption-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border: 1px solid rgba(198, 158, 87, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.story-card.experience-card .gallery-caption-title {
    max-width: 620px;
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.story-card.experience-card .gallery-caption-body {
    max-width: 640px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.screen-grid.discovery-grid,
.social-grid.social-single-grid {
    grid-template-columns: minmax(0, 1fr);
}

.screen-card.discovery-card,
.social-grid .social-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    padding: clamp(18px, 3vw, 34px);
}

.screen-card.discovery-card .phone-gallery,
.social-grid .social-card .phone-gallery {
    width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    border-bottom: 0;
}

.screen-card.discovery-card .gallery-phone,
.social-grid .social-card .gallery-phone {
    width: min(360px, 100%);
}

.screen-card.discovery-card .gallery-copy,
.social-grid .social-card .gallery-copy {
    padding: 0;
}

.screen-card.discovery-card .gallery-caption-kicker,
.social-grid .social-card .gallery-caption-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border: 1px solid rgba(198, 158, 87, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.screen-card.discovery-card .gallery-caption-title,
.social-grid .social-card .gallery-caption-title {
    max-width: 620px;
    padding: 0;
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.screen-card.discovery-card .gallery-caption-body,
.social-grid .social-card .gallery-caption-body {
    max-width: 640px;
    padding: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

@media (max-width: 720px) {
    .gallery-phone,
    .story-card.large .gallery-phone {
        width: min(300px, 100%);
    }

    .gallery-control.previous {
        left: 4px;
    }

    .gallery-control.next {
        right: 4px;
    }

    .story-card.experience-card {
        grid-template-columns: 1fr;
    }

    .story-card.experience-card .gallery-phone {
        width: min(300px, 100%);
    }

    .screen-card.discovery-card,
    .social-grid .social-card {
        grid-template-columns: 1fr;
    }

    .screen-card.discovery-card .gallery-phone,
    .social-grid .social-card .gallery-phone {
        width: min(300px, 100%);
    }
}
