﻿/* ===== Reset ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== Design tokens ===== */
:root {
    --brand-dark: #1d2547;
    --brand-mid: #2f3d71;
    --brand-blue: #2696eb;
    --brand-blue-hover: #1a82d4;
    --brand-blue-light: #60b8f8;
    --brand-blue-soft: #e8f4ff;
    --text-primary: #1d2547;
    --text-secondary: #4f5c7d;
    --text-muted: #8896b3;
    --surface: #ffffff;
    --surface-alt: #f5f8fc;
    --border: #dde8f4;
    --border-subtle: #eaf1f8;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 16px rgba(29, 37, 71, 0.06);
    --shadow-md: 0 10px 32px rgba(29, 37, 71, 0.09);
    --shadow-lg: 0 22px 52px rgba(29, 37, 71, 0.14);
    --section-gap: 6rem;
}

html { scroll-behavior: smooth; }

body {
    font-family: "Segoe UI", Roboto, -apple-system, Arial, sans-serif;
    color: var(--text-primary);
    background: var(--surface);
    line-height: 1.7;
    overflow-x: hidden;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1.15rem;
}
h1 em { font-style: normal; color: var(--brand-blue); }

h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.45rem; }

.lead { font-size: 1.08rem; color: var(--text-secondary); line-height: 1.8; max-width: 60ch; }

.eyebrow, .section-label {
    display: inline-block;
    color: var(--brand-blue);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    margin-bottom: 0.75rem;
}

.muted { color: var(--text-muted); font-size: 0.88rem; }

/* ===== Navigation ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.93);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { width: 168px; height: auto; display: block; }
.brand-fallback { display: none; }

.main-nav { display: flex; align-items: center; gap: 0.15rem; }

.main-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.93rem;
    padding: 0.45rem 0.7rem;
    border-radius: var(--radius-sm);
    transition: color 0.18s, background 0.18s;
}
.main-nav a:hover { color: var(--brand-dark); background: var(--brand-blue-soft); }

.nav-cta { background: var(--brand-blue) !important; color: #fff !important; font-weight: 700 !important; margin-left: 0.6rem; }
.nav-cta:hover { background: var(--brand-blue-hover) !important; }

.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--brand-dark);
    padding: 0.45rem 0.65rem;
    font-size: 1.1rem;
    cursor: pointer;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.93rem;
    padding: 0.65rem 1.15rem;
    border: 1.5px solid transparent;
    transition: background 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
}

.btn-primary { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.btn-primary:hover {
    background: var(--brand-blue-hover);
    border-color: var(--brand-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(38,150,235,0.32);
}

.btn-secondary { background: #fff; color: var(--brand-dark); border-color: var(--border); }
.btn-secondary:hover { background: var(--brand-blue-soft); border-color: rgba(38,150,235,0.4); }

.btn-white { background: #fff; color: var(--brand-dark); border-color: transparent; }
.btn-white:hover { background: var(--brand-blue-soft); }

.btn-outline-light { background: transparent; color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }

.btn-ghost { background: transparent; color: var(--text-primary); border-color: var(--border); }
.btn-ghost:hover { background: var(--brand-blue-soft); border-color: rgba(38,150,235,0.35); }

/* ===== Pills ===== */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.pill {
    border-radius: 999px;
    padding: 0.28rem 0.75rem;
    border: 1px solid var(--border);
    background: var(--brand-blue-soft);
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--brand-dark);
}

.inline-link { color: var(--brand-blue); text-decoration: none; font-weight: 600; }
.inline-link:hover { text-decoration: underline; }

/* ===================================================================
   CORPORATE HOMEPAGE
   =================================================================== */

.js-jarallax,
.js-jarallax-soft {
    position: relative;
    overflow: hidden;
}

.jarallax-img {
    pointer-events: none;
}

.hero-jarallax-img {
    background:
        radial-gradient(1200px 600px at 82% 12%, rgba(29, 60, 155, 0.18), transparent 72%),
        radial-gradient(900px 500px at 16% 85%, rgba(38, 130, 220, 0.14), transparent 70%),
        linear-gradient(150deg, #eaf5ff 0%, #f6faff 45%, #ffffff 100%);
}

.products-jarallax-img {
    background:
        linear-gradient(180deg, rgba(232, 244, 255, 0.62) 0%, rgba(255, 255, 255, 0.45) 100%),
        url('../images/message-mate-bg.png') center / cover no-repeat;
}

.mm-hero-jarallax-img {
    background:
        radial-gradient(1000px 520px at 82% 14%, rgba(29, 60, 155, 0.13), transparent 72%),
        radial-gradient(760px 420px at 18% 82%, rgba(38, 130, 220, 0.11), transparent 70%),
        linear-gradient(150deg, #eaf5ff 0%, #f5faff 45%, #ffffff 100%);
}

.corp-hero {
    position: relative;
    padding: 6.5rem 0 5.5rem;
    background: linear-gradient(150deg, #eaf5ff 0%, #f6faff 45%, #fff 100%);
}

.corp-hero-bg { position: absolute; inset: -120px; pointer-events: none; z-index: 1;}

/* ===== Background layer system ===== */
.bg-layer {
    position: absolute;
    pointer-events: none;
}

/* Subtle dot grid — moves at near-zero parallax depth */
.bg-dot-grid {
    inset: -20px;
    background-image: radial-gradient(circle, rgba(29, 60, 150, 0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: bgLayerFadeIn 1.2s ease-out both;
}

/* Blob shared base */
.bg-blob {
    border-radius: 50%;
}

/* Large ambient — top-right, deep navy-blue */
.bg-blob-1 {
    width: 680px; height: 680px;
    background: radial-gradient(circle at 38% 38%, rgba(29, 60, 155, 0.14) 0%, transparent 62%);
    filter: blur(80px);
    top: -60px; right: -60px;
    animation: bgLayerFadeIn 1.4s ease-out 0.15s both;
}

/* Medium fill — left-centre, brand blue */
.bg-blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle at 55% 55%, rgba(38, 130, 220, 0.12) 0%, transparent 62%);
    filter: blur(70px);
    top: 25%; left: -60px;
    animation: bgLayerFadeIn 1.4s ease-out 0.3s both;
}

/* Small accent — centre, light sky blue */
.bg-blob-3 {
    width: 360px; height: 360px;
    background: radial-gradient(circle at 50% 50%, rgba(80, 168, 248, 0.13) 0%, transparent 62%);
    filter: blur(60px);
    top: 18%; left: 32%;
    animation: bgLayerFadeIn 1.4s ease-out 0.45s both;
}

/* Depth accent — upper-left, dark navy */
.bg-blob-4 {
    width: 300px; height: 300px;
    background: radial-gradient(circle at 50% 50%, rgba(15, 25, 75, 0.08) 0%, transparent 62%);
    filter: blur(55px);
    top: 8%; left: 8%;
    animation: bgLayerFadeIn 1.4s ease-out 0.22s both;
}

/* Section ambient (products section) */
.corp-section-ambient { position: relative; overflow: hidden; }

.section-ambient {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 900px; height: 340px;
    background: radial-gradient(ellipse at 50% 0%, rgba(38, 150, 235, 0.045) 0%, transparent 68%);
    pointer-events: none;
    z-index: 1;
}

.corp-section-ambient > .container {
    position: relative;
    z-index: 2;
}

/* Entrance animations */
@keyframes bgLayerFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes heroContentEnter {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.corp-hero-layout {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.corp-hero-copy {
    align-self: center;
    animation: heroContentEnter 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.corp-hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.corp-hero-visual {
    display: flex; flex-direction: column; gap: 0.85rem;
    animation: heroContentEnter 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.float-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(210,230,250,0.9);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    max-width: 260px;
}
.float-badge-b { margin-left: 0; }
.float-badge-c { margin-left: 0; }
.float-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.float-badge strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.float-badge span { font-size: 0.76rem; color: var(--text-secondary); line-height: 1.3; }

.corp-section { padding: var(--section-gap) 0; }
.corp-section-tinted {
    background: linear-gradient(to bottom,
        #ffffff 0%,
        var(--surface-alt) 5rem,
        var(--surface-alt) calc(100% - 5rem),
        #ffffff 100%
    );
    position: relative;
    overflow: hidden;
}
.corp-section-tinted > .container { position: relative; z-index: 1; }

.corp-section-bg-shape {
    position: absolute;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(38,150,235,0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -140px; right: -80px;
    pointer-events: none;
}

.corp-heading { margin-bottom: 2.75rem; max-width: 42ch; }

/* What we build */
.builds-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 3.5rem; }

.build-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: var(--brand-blue-soft);
    border-radius: 12px;
    font-size: 1.25rem;
    margin-bottom: 0.95rem;
}
.build-item h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.build-item p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* Principles */
.principles-strip {
    display: grid; grid-template-columns: repeat(4,1fr);
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.principle-col {
    padding: 1.9rem 1.6rem;
    border-right: 1px solid var(--border-subtle);
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.principle-col:hover {
    transform: translateY(-4px);
}
.principle-col:last-child { border-right: none; }
.principle-rule { width: 28px; height: 3px; background: var(--brand-blue); border-radius: 2px; margin-bottom: 1rem; }
.principle-col h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.5rem; }
.principle-col p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.65; }

/* Flagship spotlight */
.flagship-spotlight {
    display: grid; grid-template-columns: 1fr auto;
    gap: 2rem; align-items: center;
    background: linear-gradient(130deg, var(--brand-dark) 0%, var(--brand-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 2.8rem 3rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.flagship-spotlight::after {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(38,150,235,0.18) 0%, transparent 70%);
    border-radius: 50%; right: -60px; top: -80px; pointer-events: none;
}
.flagship-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--brand-blue-light); margin-bottom: 0.5rem;
}
.flagship-copy h3 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 0.8rem;
}
.flagship-copy > p { color: rgba(255,255,255,0.72); font-size: 0.97rem; line-height: 1.75; max-width: 52ch; }
.flagship-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 1.8rem; }
.flagship-tags span {
    font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px; padding: 0.22rem 0.65rem;
}
.flagship-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.flagship-icon { font-size: 5.5rem; opacity: 0.85; flex-shrink: 0; position: relative; z-index: 1; line-height: 1; }

.future-strip {
    display: flex; align-items: baseline; gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    background: var(--surface-alt);
}
.future-strip-label {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.09em;
    color: var(--text-muted); white-space: nowrap; flex-shrink: 0;
}
.future-strip > p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.55; }

/* About */
.about-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 2rem 4rem; align-items: start; }
.about-body p { color: var(--text-secondary); margin-bottom: 0.8rem; }

/* Contact */
.corp-contact { background: var(--surface); }
.contact-columns { display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem; align-items: start; }
.contact-divider { width: 1px; min-height: 80px; background: var(--border-subtle); align-self: stretch; }
.contact-col p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.5rem; }
.contact-email {
    display: inline-block; margin-top: 0.5rem;
    font-size: 1.05rem; font-weight: 700;
    color: var(--brand-dark); text-decoration: none;
    border-bottom: 2px solid var(--brand-blue); padding-bottom: 1px;
    transition: color 0.18s;
}
.contact-email:hover { color: var(--brand-blue); }

/* ===================================================================
   SHARED — product and privacy pages
   =================================================================== */

.section { padding: var(--section-gap) 0; }
.section-alt { background: var(--surface-alt); }
.section-content { max-width: 720px; }
.section-intro { color: var(--text-secondary); max-width: 66ch; margin-bottom: 1rem; }

.hero-section {
    position: relative; overflow: hidden;
    padding: 5.5rem 0 4.5rem;
    background: linear-gradient(150deg, #eaf5ff 0%, #f6faff 45%, #fff 100%);
}

.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; align-items: center; }
.hero-copy { align-self: center; }
.hero-actions, .product-actions, .store-buttons { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.15rem; }
.hero-meta { margin-top: 1.2rem; padding-left: 1rem; color: var(--text-secondary); font-size: 0.9rem; }
.hero-meta li { margin-top: 0.25rem; }
.hero-visual { display: flex; flex-direction: column; gap: 0.8rem; }

.shot-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.shot-card { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); padding: 1.05rem; }
.shot-card-lg { min-height: 160px; }
.shot-card h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.shot-card p { color: var(--text-secondary); font-size: 0.87rem; line-height: 1.55; }

.shot-icon, .info-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 9px;
    background: var(--brand-blue-soft); margin-bottom: 0.5rem; font-size: 1rem;
}

.feature-spotlight { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 1.5rem; align-items: start; }
.feature-shots { display: flex; flex-direction: column; gap: 0.8rem; }

.product-card, .info-card, .support-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.1rem;
}
.premium-card { box-shadow: var(--shadow-md); }
.product-card ul { margin-top: 0.6rem; margin-left: 1.05rem; color: var(--text-secondary); }
.product-card ul li + li { margin-top: 0.3rem; }
.product-card p, .info-card p, .support-card p { color: var(--text-secondary); }

.card-head { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.3rem; }

.card-grid, .spotlight-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1rem; margin-top: 1rem;
}

.status-badge { font-size: 0.72rem; font-weight: 700; background: #ddf0ff; color: #1269a7; border-radius: 999px; padding: 0.2rem 0.55rem; }
.status-muted { background: #ecf0f5; color: #6b7a99; }

.support-section { background: var(--surface); }
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1rem; }

.action-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1rem; margin-top: 1rem; }
.action-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.1rem; }
.action-step p { color: var(--text-secondary); }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border-subtle); background: #fff; }
.site-footer-rich {
    padding: 2.5rem 0 0;
    background: #1F274A;
    color: #ffffff;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.footer-title { font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; color: #ffffff; }
.footer-grid ul { list-style: none; }
.footer-grid li + li { margin-top: 0.4rem; }
.footer-grid a { text-decoration: none; color: rgba(255, 255, 255, 0.88); font-size: 0.88rem; }
.footer-grid a:hover { color: #cfe4ff; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1rem 0; }
.footer-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: rgba(255, 255, 255, 0.88); font-weight: 600; font-size: 0.88rem; }
.footer-links a:hover { color: #cfe4ff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.2); padding: 1rem 0; }
.footer-bottom p { color: rgba(255, 255, 255, 0.84); font-size: 0.86rem; }
.site-footer-rich .muted { color: rgba(255, 255, 255, 0.72); }

/* ===== Responsive ===== */
@media (max-width: 1020px) {
    .corp-hero-layout, .hero-grid, .feature-spotlight, .about-layout { grid-template-columns: 1fr; }
    .corp-hero-visual, .hero-visual { display: none; }
    .flagship-spotlight { grid-template-columns: 1fr; }
    .flagship-icon { display: none; }
    .builds-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .principles-strip { grid-template-columns: 1fr 1fr; }
    .principle-col:nth-child(2) { border-right: none; }
    .principle-col:nth-child(1), .principle-col:nth-child(2) { border-bottom: 1px solid var(--border-subtle); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .contact-columns { grid-template-columns: 1fr; }
    .contact-divider { display: none; }
}

@media (max-width: 860px) {
    .menu-toggle { display: inline-block; }
    .main-nav {
        position: absolute; top: 72px; left: 4%; right: 4%;
        background: #fff; border: 1px solid var(--border);
        border-radius: var(--radius); box-shadow: var(--shadow-md);
        padding: 0.6rem; display: none;
        flex-direction: column; align-items: stretch; gap: 0.1rem; z-index: 99;
    }
    .main-nav.open { display: flex; }
    .brand-logo { width: 150px; }
    :root { --section-gap: 4.5rem; }
    .flagship-spotlight { padding: 2rem 1.75rem; }
}

@media (max-width: 600px) {
    .builds-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .principles-strip { grid-template-columns: 1fr; border-radius: var(--radius); }
    .principle-col { border-right: none !important; border-bottom: 1px solid var(--border-subtle); }
    .principle-col:last-child { border-bottom: none; }
    .shot-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    :root { --section-gap: 3.5rem; }
}

/* Reduced motion styles */
@media (prefers-reduced-motion: reduce) {
    .bg-layer,
    .corp-hero-copy,
    .corp-hero-visual,
    .bg-dot-grid,
    .bg-blob-1,
    .bg-blob-2,
    .bg-blob-3,
    .bg-blob-4 {
        animation: none !important;
        transform: none !important;
    }

    .principle-col:hover {
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }

    .btn-primary:hover {
        transform: none;
        box-shadow: none;
    }
}

.hero-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 300px;
}

.hero-feature-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: start;
    column-gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(29, 37, 71, 0.09);
}

.hero-feature-item:last-child {
    border-bottom: none;
}

.hero-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(38, 150, 235, 0.12);
    font-size: 1rem;
    line-height: 1;
}

.hero-feature-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.hero-feature-item span {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

/* MessageMate download badge */
.download-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1rem;
}

.google-play-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 0.15rem;
}

.google-play-badge-link:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 3px;
}

.google-play-badge {
    display: block;
    width: 220px;
    max-width: min(100%, 240px);
    height: auto;
}

@media (max-width: 600px) {
    .google-play-badge {
        width: 190px;
    }
}

.section-link-row {
    margin-top: 1rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2.2rem;
    margin-top: 1rem;
}

.overview-block h3 {
    margin-bottom: 0.5rem;
}

.overview-block ul {
    margin-left: 1.05rem;
    color: var(--text-secondary);
}

.overview-block li + li {
    margin-top: 0.28rem;
}

.feature-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem 2rem;
    margin-top: 1rem;
}

.feature-list-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 0.75rem;
    align-items: start;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(29, 37, 71, 0.1);
}

.feature-list-item h3 {
    margin-bottom: 0.25rem;
}

.feature-list-item p {
    color: var(--text-secondary);
}

@media (max-width: 860px) {
    .overview-grid,
    .feature-list-grid {
        grid-template-columns: 1fr;
    }
}

.builds-jarallax-img {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.68) 100%),
        url('../images/pointershift-calm-landscape.svg') center / cover no-repeat;
}

/* Privacy policy document layout */
.policy-page {
    background: #ffffff;
}

.policy-main {
    padding: 2.5rem 0 3.5rem;
}

.policy-container {
    width: min(820px, 92%);
    margin: 0 auto;
    color: #1e2a44;
}

.policy-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e3eaf4;
}

.policy-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.45rem;
}

.policy-meta {
    color: #556389;
    font-size: 0.95rem;
}

.policy-container section + section {
    margin-top: 1.8rem;
}

.policy-container h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #1d2547;
}

.policy-container h3 {
    font-size: 1.05rem;
    margin: 1rem 0 0.45rem;
    color: #1d2547;
}

.policy-container p {
    color: #2c3a5a;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.policy-container ul {
    margin: 0.25rem 0 0.9rem 1.2rem;
    color: #2c3a5a;
}

.policy-container li + li {
    margin-top: 0.3rem;
}

@media (max-width: 600px) {
    .policy-main {
        padding: 1.75rem 0 2.5rem;
    }

    .policy-container {
        width: min(860px, 94%);
    }
}
