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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .phone-float,
    .hero-glow {
        animation: none !important;
    }

    .feature-card:hover {
        transform: none;
    }

    .screen-card:hover {
        transform: none;
    }

    .value-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    .btn:active {
        transform: none;
    }

    .hero .btn:active {
        transform: none;
    }

    .skip-link {
        transition: none;
    }
}

body {
    font-family: var(--font-sans);
    font-weight: 500;
    line-height: 1.65;
    color: var(--text-color);
    background: var(--bg-page);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.skip-link {
    position: absolute;
    top: 0;
    left: 16px;
    z-index: 400;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--bg-white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transform: translateY(-120%);
    transition: transform 0.22s var(--ease-out), outline-color 0.15s ease;
}

.skip-link:focus {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
    transform: translateY(16px);
}

.skip-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: rgba(240, 92, 7, 0.22);
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration-skip-ink: auto;
}

a:hover {
    color: var(--primary-dark);
}

:focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset, 0 8px 28px rgba(44, 62, 80, 0.06);
}

.header-inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary-color);
    text-decoration: none;
}

.brand:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.brand-logo {
    height: 34px;
    width: auto;
    max-width: 140px;
    display: block;
    object-fit: contain;
}

.brand--footer .brand-logo {
    height: 30px;
    max-width: 120px;
}

.brand--footer {
    color: var(--ink-hero);
}

.brand--footer:hover {
    color: var(--ink-hero);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
}

.site-nav a {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.site-nav a:hover {
    color: var(--text-color);
    background: rgba(44, 62, 80, 0.06);
    text-decoration: none;
}

.site-nav .nav-cta {
    background: var(--gradient-primary);
    color: var(--bg-white);
    margin-left: 4px;
    box-shadow: 0 4px 16px rgba(240, 92, 7, 0.35);
}

.site-nav .nav-cta:hover {
    background: var(--gradient-primary-soft);
    color: var(--bg-white);
    box-shadow: 0 6px 20px rgba(240, 92, 7, 0.42);
}

.site-footer a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.95);
    outline-offset: 3px;
}

.site-footer .brand:focus-visible {
    outline-color: #fff;
}

.hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4.5rem) 24px clamp(3rem, 8vw, 5rem);
    background: var(--gradient-hero-mesh);
    color: var(--ink-hero);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: -25% -15% auto auto;
    width: min(75vw, 560px);
    height: min(75vw, 560px);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.38) 0%, rgba(255, 200, 160, 0.12) 38%, transparent 68%);
    opacity: 0.75;
    pointer-events: none;
    animation: pulse-glow 10s var(--ease-out) infinite alternate;
}

@keyframes pulse-glow {
    from {
        transform: translate(0, 0) scale(1);
        opacity: 0.65;
    }
    to {
        transform: translate(-8%, 6%) scale(1.08);
        opacity: 0.95;
    }
}

.hero-grid {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-copy {
    max-width: 560px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 1.1rem;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 0.85rem;
    text-shadow: 0 1px 2px rgba(140, 50, 0, 0.18);
    text-wrap: balance;
}

.hero-kicker {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.45;
    color: rgba(255, 248, 243, 0.96);
    margin-bottom: 1rem;
    max-width: 520px;
}

.hero-lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(248, 250, 252, 0.82);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin-bottom: 1.75rem;
}

.hero-pills li {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
    border: none;
    cursor: pointer;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.hero .btn {
    border-radius: 999px;
    padding: 15px 26px;
    min-height: 48px;
}

.hero .btn:active {
    transform: translateY(0) scale(0.99);
}

.btn-icon {
    flex-shrink: 0;
    opacity: 0.95;
}

.btn-primary {
    background: var(--gradient-primary-soft);
    color: white;
    box-shadow: 0 12px 32px rgba(240, 92, 7, 0.38);
}

.btn-primary:hover {
    color: white;
    box-shadow: 0 16px 40px rgba(240, 92, 7, 0.48);
}

.hero .btn-primary {
    background: var(--bg-white);
    color: var(--primary-dark);
    box-shadow: 0 12px 36px rgba(80, 30, 0, 0.22);
}

.hero .btn-primary:hover {
    background: #fff8f3;
    color: #b84400;
    box-shadow: 0 16px 44px rgba(80, 30, 0, 0.28);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--ink-hero);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.hero .btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.42);
}

.hero .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero-visual {
    position: relative;
    min-height: 380px;
    justify-self: end;
    width: 100%;
    max-width: 380px;
}

.phone-float {
    position: absolute;
    transition: transform 0.3s var(--ease-out);
}

.phone-float--back {
    left: 0;
    top: 12%;
    transform: rotate(-7deg);
    z-index: 1;
    animation: float-a 7s ease-in-out infinite;
}

.phone-float--front {
    right: 0;
    bottom: 0;
    transform: rotate(5deg);
    z-index: 2;
    animation: float-b 8s ease-in-out infinite;
}

@keyframes float-a {
    0%, 100% { transform: rotate(-7deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-10px); }
}

@keyframes float-b {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(7deg) translateY(-14px); }
}

.phone-frame {
    padding: 10px;
    border-radius: 36px;
    background: linear-gradient(160deg, #3d424d 0%, #1a1d24 100%);
    box-shadow: var(--shadow-phone);
}

.phone-frame img {
    display: block;
    width: 200px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.35);
}

.phone-float--front .phone-frame img {
    width: 215px;
}

.story-moment {
    padding: clamp(3rem, 7vw, 4.5rem) 24px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-white) 100%);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}

.story-moment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(240, 92, 7, 0.35) 50%, transparent 100%);
    opacity: 0.9;
    pointer-events: none;
}

.story-moment-intro {
    margin-bottom: 2rem;
}

.story-moment-figure {
    margin: 0 auto;
    max-width: 920px;
}

.story-moment-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
    line-height: 0;
    background: var(--bg-brand-tint);
}

.story-moment-media img {
    width: 100%;
    height: auto;
    display: block;
}

.story-moment-caption {
    margin-top: 1.15rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.55;
    padding: 0 0.5rem;
    letter-spacing: 0.01em;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.app-gallery {
    padding: clamp(3rem, 7vw, 5rem) 24px;
    background: var(--bg-page);
}

.app-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 2.75rem);
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

.screen-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
}

.screen-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.11);
    border-color: rgba(240, 92, 7, 0.14);
}

.screen-card-stage {
    background: linear-gradient(180deg, #fff8f3 0%, #ffe8d9 100%);
    padding: clamp(1.5rem, 4vw, 2.25rem) 1.25rem 0;
    display: flex;
    justify-content: center;
}

.screen-card-stage img {
    width: min(200px, 42vw);
    height: auto;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -6px 28px rgba(44, 62, 80, 0.12);
    border: 1px solid var(--border-strong);
    border-bottom: none;
    display: block;
}

.screen-card-cap {
    padding: 1rem 1.15rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.45;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.65rem;
}

.section-label--dark {
    color: var(--primary-dark);
}

.main {
    padding-bottom: 2rem;
}

#main-content:focus {
    outline: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-block {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-block--tight {
    padding-top: clamp(1.25rem, 3vw, 2rem);
}

.section-head {
    max-width: 640px;
    margin-bottom: 2rem;
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head--center .section-title {
    text-wrap: balance;
}

.section-lead--narrow {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-color);
    margin-bottom: 0.65rem;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 2.5rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.65rem 1.55rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, transparent, rgba(240, 92, 7, 0.45), transparent);
    opacity: 0;
    transition: opacity 0.25s var(--ease-out);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 92, 7, 0.18);
    transform: translateY(-3px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(240, 92, 7, 0.14) 0%, rgba(255, 122, 46, 0.1) 100%);
    color: var(--primary-dark);
    margin-bottom: 1.1rem;
}

.feature-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.65;
}

.feature-card a {
    font-weight: 700;
}

.steps-band {
    padding: clamp(2.75rem, 6vw, 4.25rem) 24px;
    background: var(--bg-brand-band);
    border-top: 1px solid rgba(240, 92, 7, 0.12);
    border-bottom: 1px solid rgba(240, 92, 7, 0.1);
}

.steps-list {
    list-style: none;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 3vw, 1.5rem);
}

.step-item {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.25rem 1.4rem;
    border: 1px solid rgba(240, 92, 7, 0.14);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.step-item:hover {
    border-color: rgba(240, 92, 7, 0.28);
    box-shadow: 0 8px 28px rgba(240, 92, 7, 0.1);
}

.step-num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    background: rgba(240, 92, 7, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.step-title {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-color);
    margin-bottom: 0.45rem;
}

.step-desc {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.value-card {
    padding: 1.5rem 1.35rem;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--primary-color);
    transition: box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 92, 7, 0.12);
    transform: translateY(-2px);
}

.value-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.value-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.65;
}

.value-card a {
    font-weight: 700;
}

.disclosure-panel {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(240, 92, 7, 0.2);
    background: linear-gradient(145deg, #fff8f3 0%, #fff 42%, #fffaf5 100%);
    padding: 1.85rem 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 24px rgba(240, 92, 7, 0.08), var(--shadow-sm);
}

.disclosure-panel-head {
    margin-bottom: 1rem;
}

.disclosure-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    background: var(--gradient-primary);
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(240, 92, 7, 0.35);
}

.disclosure-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.disclosure-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.85rem;
    line-height: 1.65;
}

.disclosure-body p:last-child {
    margin-bottom: 0;
}

.disclosure-links {
    margin-top: 0.25rem !important;
    font-weight: 600;
}

.disclosure-links a {
    font-weight: 700;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2.15rem 2.15rem;
    background:
        radial-gradient(ellipse 120% 80% at 100% 0%, rgba(255, 154, 82, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 90% 70% at 0% 100%, rgba(240, 92, 7, 0.06) 0%, transparent 50%),
        var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
}

.contact-heading {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0.5rem 0 0.65rem;
}

.contact-lead {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.65;
}

.contact-list {
    list-style: none;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.35rem;
}

.contact-list li {
    margin-bottom: 1.15rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-key {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-detail {
    display: block;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.55;
}

.contact-detail--address {
    font-weight: 600;
    color: var(--text-muted);
    max-width: 30rem;
}

.contact-list a {
    font-size: 1rem;
    font-weight: 700;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.contact-list a:hover {
    color: var(--primary-dark);
}

.site-footer {
    background: linear-gradient(168deg, #ff9a52 0%, var(--primary-color) 38%, var(--primary-dark) 72%, #a63a00 100%);
    color: rgba(255, 252, 248, 0.92);
    padding: 3rem 24px 2rem;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 -12px 40px rgba(240, 92, 7, 0.18);
}

.site-footer-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: 1.5rem;
}

.footer-tagline {
    margin-top: 0.65rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    max-width: 280px;
    line-height: 1.55;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.65rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-note {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 500;
    max-width: 900px;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-pills,
    .hero-actions {
        justify-content: center;
    }

    .hero-kicker {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        justify-self: center;
        min-height: 340px;
        max-width: 360px;
        margin-top: 1rem;
    }

    .phone-float--back {
        left: 5%;
    }

    .phone-float--front {
        right: 5%;
    }

    .app-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .screen-card-stage img {
        width: min(220px, 55vw);
    }

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

    .steps-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .site-nav a {
        padding: 6px 10px;
        font-size: 0.82rem;
    }

    .site-nav .nav-cta {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 4px;
    }

    .header-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        justify-content: center;
    }

    .phone-frame img {
        width: 168px;
    }

    .phone-float--front .phone-frame img {
        width: 180px;
    }

    .hero-visual {
        min-height: 300px;
    }

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

    .steps-list {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
