@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg-page: #07131f;
    --bg-surface: #0c1f31;
    --bg-surface-strong: #11283b;
    --bg-panel: rgba(10, 25, 39, 0.8);
    --bg-panel-soft: rgba(12, 30, 46, 0.62);
    --bg-accent: rgba(61, 169, 255, 0.1);
    --border-subtle: rgba(179, 212, 255, 0.12);
    --border-strong: rgba(179, 212, 255, 0.24);
    --text-main: #f5f7fb;
    --text-soft: #dde9f7;
    --text-muted: #9db3c7;
    --text-faint: #7891a8;
    --primary: #5ab7ff;
    --primary-strong: #1594f2;
    --primary-light: #98d6ff;
    --accent: #d9b66f;
    --accent-soft: rgba(217, 182, 111, 0.14);
    --success: #7bd7a1;
    --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.2);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --nav-height: 86px;
    --container-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Manrope', 'Inter', sans-serif;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background:
        radial-gradient(circle at top left, rgba(33, 104, 170, 0.2), transparent 34%),
        radial-gradient(circle at 80% 15%, rgba(217, 182, 111, 0.12), transparent 26%),
        linear-gradient(180deg, #07131f 0%, #091a2a 38%, #06111a 100%);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.16;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.75), transparent 90%);
}

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

a {
    color: inherit;
}

p {
    margin-top: 0;
}

main {
    position: relative;
    z-index: 1;
}

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

.section-padding {
    padding: 92px 0;
}

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

.text-white {
    color: var(--text-main);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-light {
    color: var(--text-main);
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(20px);
    background: rgba(7, 19, 31, 0.72);
    border-bottom: 1px solid rgba(179, 212, 255, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
    background: rgba(7, 19, 31, 0.9);
    border-color: rgba(179, 212, 255, 0.14);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.header-container {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo,
.logo a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.nav a {
    padding: 11px 16px;
    color: var(--text-muted);
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    color: #04111d !important;
    background: linear-gradient(135deg, var(--accent) 0%, #efcf90 100%);
    box-shadow: 0 12px 28px rgba(217, 182, 111, 0.2);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #e4c27f 0%, #f5d79b 100%) !important;
    transform: translateY(-1px);
}

.hero,
.page-hero {
    position: relative;
    padding: 72px 0 40px;
}

.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center top, rgba(61, 169, 255, 0.12), transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 34px;
}

.hero-content,
.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-kicker,
.badge-new,
.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(179, 212, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--primary-light);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-title {
    margin: 0 0 22px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.9rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.page-hero .hero-title {
    max-width: 11ch;
    margin-inline: auto;
    line-height: 1;
}

.hero-subtitle {
    max-width: 680px;
    font-size: clamp(1.02rem, 1.4vw, 1.2rem);
    line-height: 1.68;
    color: var(--text-muted);
}

.hero-actions,
.hero-cta-wrapper,
.report-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.app-store-btn,
.button,
.button-secondary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.app-store-btn {
    padding: 0;
    min-height: auto;
}

.button {
    color: #04111d;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: 0 18px 34px rgba(21, 148, 242, 0.16);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.app-store-btn:hover {
    transform: translateY(-2px);
}

.button-secondary {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(179, 212, 255, 0.18);
}

.button-ghost {
    color: var(--primary-light);
    background: transparent;
    border-color: rgba(90, 183, 255, 0.22);
}

.btn-caption {
    width: 100%;
    margin: -2px 0 0;
    color: var(--text-faint);
    font-size: 0.95rem;
}

.hero-media {
    position: relative;
    display: grid;
    gap: 18px;
}

.hero-photo-panel,
.media-card,
.glass-panel,
.showcase-item,
.cta-banner,
.metric-card,
.workflow-card,
.resource-card,
.article-card,
.faq-item,
.report-preview-frame,
.embed-frame,
.bento-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        var(--bg-panel);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow-soft);
}

.glass-panel,
.hero-photo-panel,
.media-card,
.metric-card,
.workflow-card,
.resource-card,
.article-card,
.faq-item,
.report-preview-frame,
.embed-frame,
.bento-item {
    border-radius: var(--radius-lg);
}

.hero-photo-panel {
    padding: 20px;
}

.hero-photo {
    width: 100%;
    aspect-ratio: 1.15;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 8px);
}

.floating-note {
    position: absolute;
    right: -12px;
    bottom: 22px;
    width: min(290px, 72%);
    padding: 18px 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(217, 182, 111, 0.24);
    background: rgba(7, 19, 31, 0.9);
    box-shadow: var(--shadow-soft);
}

.floating-note-label {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

.floating-note p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.96rem;
}

.hero-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-stack .media-card {
    padding: 14px;
}

.hero-stack img {
    width: 100%;
    border-radius: calc(var(--radius-md) - 4px);
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-header h2,
.section-title {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.02;
    text-wrap: balance;
}

.section-header p {
    max-width: 620px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.metrics-grid,
.workflow-grid,
.mini-grid,
.resource-grid,
.article-grid,
.faq-grid {
    display: grid;
    gap: 22px;
}

.metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.hero-metrics-grid {
    margin-top: 0;
}

.metric-card {
    padding: 24px;
}

.metric-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    max-width: 13ch;
    font-size: clamp(1.24rem, 1.35vw, 1.6rem);
    line-height: 1.04;
    text-wrap: pretty;
}

.metric-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-light);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.metric-card p {
    margin: 0;
    max-width: 34ch;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.97rem;
}

.metric-card p strong,
.metric-card p b {
    font-size: inherit;
}

.workflow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-card {
    padding: 20px;
}

.workflow-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(90, 183, 255, 0.12);
    color: var(--primary-light);
    font-weight: 800;
}

.workflow-card h3,
.resource-card h3,
.faq-question,
.bento-item h3 {
    margin: 0 0 12px;
    color: var(--text-main);
    font-size: 1.3rem;
    line-height: 1.25;
}

.workflow-card p,
.resource-card p,
.faq-answer {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.72;
}

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

.phone-card {
    display: grid;
    gap: 16px;
}

.phone-frame {
    position: relative;
    padding: 10px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    width: 34%;
    height: 26px;
    transform: translateX(-50%);
    border-radius: 0 0 16px 16px;
    background: rgba(6, 13, 21, 0.96);
    z-index: 2;
}

.phone-frame img {
    aspect-ratio: 1320 / 2868;
    object-fit: cover;
    border-radius: 26px;
}

.phone-card h3,
.showcase-copy h3 {
    margin: 0;
    font-size: 1.18rem;
    color: var(--text-main);
    text-wrap: balance;
}

.phone-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.68;
}

.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
}

.feature-row.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.feature-row.reverse .feature-text {
    order: 2;
}

.feature-row.reverse .feature-image-wrapper {
    order: 1;
}

.feature-text {
    padding: 18px 6px;
}

.feature-text h2 {
    margin: 0 0 18px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.03;
    text-wrap: balance;
}

.feature-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.06rem;
    line-height: 1.78;
}

.feature-image-wrapper,
.showcase-item,
.report-preview-frame {
    padding: 16px;
}

.feature-image,
.showcase-item img,
.report-preview-frame img {
    width: 100%;
    border-radius: calc(var(--radius-md) - 4px);
}

.showcase-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

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

.showcase-item {
    min-height: 100%;
}

.report-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 28px;
    align-items: stretch;
}

.report-preview-frame {
    display: grid;
    gap: 18px;
}

.report-preview-frame h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--text-main);
}

.report-preview-frame p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.72;
}

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

.report-page-grid img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(179, 212, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.sales-points {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.sales-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-soft);
    line-height: 1.6;
}

.sales-point::before {
    content: '';
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    margin-top: 0.5em;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    box-shadow: 0 0 0 5px rgba(217, 182, 111, 0.08);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.trust-pill {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(179, 212, 255, 0.1);
    color: var(--text-soft);
    font-weight: 700;
    text-align: center;
}

.inline-cta {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.inline-cta:hover {
    text-decoration: underline;
}

.mobile-only {
    display: none;
}

.report-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag-pill,
.meta-pill,
.article-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(179, 212, 255, 0.12);
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 700;
}

.embed-frame {
    padding: 12px;
}

.pdf-embed {
    display: block;
    width: 100%;
    min-height: 720px;
    border: 0;
    border-radius: calc(var(--radius-lg) - 6px);
    background: #d4dde7;
}

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

.mini-panel {
    padding: 24px;
}

.mini-panel h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
}

.mini-panel p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.resource-card,
.faq-item {
    padding: 26px;
}

.resource-card ul,
.bento-item ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.resource-card li,
.bento-item li {
    margin-bottom: 14px;
}

.resource-card a,
.bento-item a,
.article-content a,
.legal-content a {
    color: var(--primary-light);
    text-decoration: none;
}

.resource-card a:hover,
.bento-item a:hover,
.article-content a:hover,
.legal-content a:hover {
    color: var(--accent);
    text-decoration: underline;
}

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

.article-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(179, 212, 255, 0.2);
}

.article-card-meta {
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-card h3 {
    margin: 0;
    color: var(--text-main);
    font-size: 1.36rem;
    line-height: 1.32;
    text-wrap: balance;
}

.article-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.68;
    flex: 1;
}

.article-card-cta {
    color: var(--accent);
    font-weight: 800;
}

.article-content,
.legal-content {
    padding: 44px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.legal-content h2 {
    color: var(--text-main);
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.05;
}

.article-content h1 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 4vw, 3.6rem);
}

.article-content h2,
.legal-content h2 {
    margin-top: 44px;
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.article-content h3 {
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 1.45rem;
}

.article-content p,
.article-content li,
.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1.06rem;
}

.article-content ul,
.article-content ol,
.legal-content ul {
    padding-left: 22px;
}

.article-content blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 3px solid var(--accent);
    background: rgba(217, 182, 111, 0.08);
    border-radius: 0 18px 18px 0;
    color: var(--text-soft);
}

.article-content code,
.legal-content code {
    padding: 0.2em 0.45em;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-soft);
}

.bento-item {
    padding: 26px;
}

.bento-icon {
    margin-bottom: 16px;
}

.cta-banner {
    padding: 44px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top left, rgba(90, 183, 255, 0.14), transparent 38%),
        radial-gradient(circle at bottom right, rgba(217, 182, 111, 0.12), transparent 36%),
        linear-gradient(135deg, rgba(8, 23, 37, 0.92), rgba(13, 35, 54, 0.92));
    border-color: rgba(179, 212, 255, 0.16);
}

.cta-banner-content h2 {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.02;
    text-wrap: balance;
}

.cta-banner-content p {
    margin: 0 0 28px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.footer {
    padding: 28px 0 36px;
    border-top: 1px solid rgba(179, 212, 255, 0.08);
    background: rgba(4, 13, 21, 0.4);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.75fr));
    gap: 28px;
    padding-bottom: 24px;
}

.footer-desc {
    margin: 18px 0 0;
    max-width: 360px;
    color: var(--text-faint);
    line-height: 1.7;
}

.footer-links h4 {
    margin: 0 0 16px;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(179, 212, 255, 0.08);
    color: var(--text-faint);
    font-size: 0.95rem;
}

.ambient-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.ambient-orb {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
}

.orb-1 {
    top: -140px;
    right: -60px;
    background: rgba(90, 183, 255, 0.4);
}

.orb-2 {
    bottom: 18%;
    left: -140px;
    background: rgba(217, 182, 111, 0.28);
}

.orb-3 {
    top: 34%;
    right: 20%;
    background: rgba(82, 216, 176, 0.18);
}

.reveal-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

@media (max-width: 1120px) {
    .hero-grid,
    .report-showcase,
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
    }

    .feature-row.reverse .feature-text,
    .feature-row.reverse .feature-image-wrapper {
        order: initial;
    }

    .workflow-grid,
    .showcase-grid,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .report-page-grid,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .container {
        width: min(var(--container-width), calc(100% - 24px));
    }

    .section-padding {
        padding: 72px 0;
    }

    .header-container {
        align-items: center;
        min-height: auto;
        padding: 14px 0;
        flex-direction: row;
    }

    .nav {
        width: auto;
        justify-content: flex-end;
        gap: 8px;
        margin-left: auto;
    }

    .nav a {
        padding: 10px 14px;
    }

    .nav a:not(.nav-cta) {
        display: none;
    }

    .nav-cta {
        min-height: 44px;
        padding: 0 16px;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .hero,
    .page-hero {
        padding-top: 34px;
    }

    .hero-title {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
        line-height: 0.99;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-stack,
    .mini-grid,
    .resource-grid,
    .faq-grid,
    .phone-grid,
    .metrics-grid,
    .workflow-grid,
    .showcase-grid,
    .article-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-banner,
    .glass-panel,
    .article-content,
    .legal-content,
    .bento-item,
    .resource-card,
    .faq-item {
        padding: 24px;
    }

    .trust-strip,
    .report-page-grid {
        grid-template-columns: 1fr;
    }

    .hero-stack .media-card:last-child {
        display: none;
    }

    .floating-note {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }
}
