:root {
    --primary: #0aa39a;
    --primary-dark: #047a73;
    --primary-soft: #e6faf8;
    --accent: #20e0c7;

    --bg: #ffffff;
    --bg-alt: #f4f7fb;
    --bg-dark: #050812;
    --card-bg-dark: #0b1624;

    --text-main: #0b1b2b;
    --text-muted: #6b7a8b;

    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-pill: 999px;

    --shadow-soft: 0 20px 40px rgba(7, 50, 71, 0.18);
    --shadow-small: 0 12px 24px rgba(5, 35, 55, 0.15);

    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
}

/* Reset / base */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", Roboto, sans-serif;
    color: var(--text-main);
    background: var(--bg);
}

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

h1,
h2,
h3 {
    margin: 0;
}

p {
    margin: 0;
}

/* Layout helpers */

.section {
    min-height: 100vh;
    box-sizing: border-box;
}

/* apply big vertical padding to all sections EXCEPT hero */
.section:not(.hero) {
    padding: 80px 0;
}

.section-light {
    background: var(--bg);
}

.section-dark {
    background: radial-gradient(circle at top left, #171a1f 0, #171a1f 40%, #17191f 100%);
    color: #e5e7eb;
}

.container {
    width: min(1120px, 100% - 32px);
    margin: 0 auto;
}

/* Visually hidden (for a11y) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

/* Generic chips / pills */

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    padding: 4px 10px;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.4rem;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-normal),
        color var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 40px rgba(0, 145, 130, 0.32);
}

.btn-ghost {
    border: 1px solid rgba(4, 122, 115, 0.32);
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.8);
}

.btn-ghost:hover {
    background: #ffffff;
}

/* Free button */
.btn-free {
    background: #ffffff;
    color: #09857a;
    border: 1px solid rgba(9, 133, 122, 0.4);
}

/* Section header */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

/* Cards (base) */

.card {
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(12, 148, 136, 0.05);
}

.card-outline {
    border-color: rgba(148, 163, 184, 0.25);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.card-dark {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.7);
}

/* Header elements inside hero */

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

.hero-top {
    padding-top: 12px;
    padding-bottom: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ebfbff;
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 131, 122, 0.35);
}

.brand-text {
    font-weight: 700;
    font-size: 18px;
    color: #ebfbff;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
}

.main-nav a {
    text-decoration: none;
    color: rgba(232, 250, 250, 0.85);
    position: relative;
    padding-bottom: 3px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #ffffff;
    border-radius: var(--radius-pill);
    transition: width var(--transition-normal);
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a:hover::after {
    width: 100%;
}

/* header right side: language + burger */

.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Language select */

.lang-switcher {
    position: relative;
}

.lang-select {
    min-width: 90px;
    padding: 6px 30px 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(107, 211, 203, 0.7);
    background: rgba(3, 23, 36, 0.75);
    color: #e9fffd;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.lang-switcher::after {
    content: "⌄";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #6bd3cbb3;
    pointer-events: none;
    opacity: 0.9;
}

.lang-select option {
    background: #02141f;
    color: #e9fffd;
}

/* Mobile nav – CSS only */

.nav-checkbox {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #ebfbff;
    border-radius: var(--radius-pill);
}

/* Hero */

.hero {
    padding: 8px 0 56px; /* smaller by default */
    background: radial-gradient(circle at bottom right, #00c7b3 0, #008b83 35%, #005b60 65%, #04272e 100%);
    color: #ffffff;
}

.hero-inner {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1 1 280px;
}

.hero-text h1 {
    font-size: clamp(32px, 4vw, 40px);
    margin-bottom: 14px;
}

.hero-text p {
    margin-bottom: 20px;
    color: rgba(230, 250, 249, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.chip-stat {
    padding: 10px 16px;
    background: rgba(3, 23, 36, 0.6);
    border: 1px solid rgba(107, 211, 203, 0.7);
    font-size: 13px;
}

.stat-number {
    font-weight: 700;
    font-size: 18px;
    margin-right: 4px;
}

/* by default we use full label, short is for mobile */
.stat-label-short {
    display: none;
}

.hero-phone {
    flex: 0 0 260px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Phone mockup */

.phone-frame {
    width: 260px;
    height: 520px;
    border-radius: 46px;
    padding: 12px;
    background: radial-gradient(circle at top, #effbff 0, #d5f4f3 30%, #93e0d7 80%);
    box-shadow: 0 40px 80px rgba(2, 15, 26, 0.7);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    margin: 0 auto 14px;
}

.phone-frame::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 72px;
    height: 6px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-50%);
}

.phone-frame img {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    object-fit: cover;
    transition: opacity 0.25s ease;
}

/* temporary class used during slide change */
.phone-screen-fade-out {
    opacity: 0;
}

/* Features */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.card-feature {
    padding: 22px 22px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.card-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 224, 199, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

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

/* Icon + title */

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    flex: 0 0 48px;
    box-sizing: border-box;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(9, 133, 122, 0.09);
    border: 1px solid rgba(9, 133, 122, 0.25);
    box-shadow: 0 8px 18px rgba(5, 35, 55, 0.18);
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

.card-feature h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.card-feature p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
}

/* ABOUT */

.about-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

/* left column */
.about-text {
    flex: 1 1 340px;
    max-width: 580px;
}

/* small label above the title */
.about-eyebrow {
    margin: 0 0 6px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.85);
}

.about-text h2 {
    margin: 0 0 14px;
    font-size: 2.1rem;
    color: #f9fafb;
}

.about-lead {
    margin: 0 0 18px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #e5e7eb;
}

/* pills row */

.about-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.about-pill {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-inline: 12px;
    padding-block: 5px;
    border-radius: 999px;
    border: 1px solid rgba(45, 212, 191, 0.8);
    background: radial-gradient(circle at top left,
        rgba(15, 118, 110, 0.35),
        rgba(23, 26, 31, 1)
    );
    color: #e0fdfa;
}

/* two short descriptive blocks under the lead */

.about-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 4px 0 10px;
}

.about-meta-item {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(35, 40, 47, 1);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.65);
}

.about-meta-title {
    margin: 0 0 4px;
    font-size: 0.96rem;
    font-weight: 600;
    color: #5eead4;
}

.about-meta-text {
    margin: 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

/* checklist */

.about-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    font-size: 0.92rem;
    color: #e5e7eb;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.about-check {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    color: #5eead4;
    background: rgba(16, 185, 129, 0.18);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.55);
    margin-top: 2px;
}

/* right card */

.about-card {
    flex: 1 1 260px;
    max-width: 380px;
    padding: 24px 22px 22px;
    background: radial-gradient(circle at top left,
        rgba(15, 118, 110, 0.35),
        rgba(23, 26, 31, 1)
    );
    border-radius: 24px;
    border: 1px solid rgba(45, 212, 191, 0.55);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.85);
}

.about-card h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
    color: #f9fafb;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.about-stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #5eead4;
}

.about-stat-label {
    font-size: 0.8rem;
    color: #d1d5db;
}

.about-footer-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #e5e7eb;
}

/* Pricing */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card-pricing {
    border-radius: var(--radius-lg);
    padding: 24px 22px 26px;
    display: flex;
    flex-direction: column;
}

.card-pricing h3 {
    margin-bottom: 8px;
}

.card-pricing .price {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-dark);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-muted);
}

/* one row: bullet + text */
.pricing-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

/* only bullet we use */
.pricing-bullet {
    flex: 0 0 auto;
    color: var(--primary);
    font-size: 1rem;
    line-height: 1;
}

/* text block (first line + optional second line) */
.pricing-text {
    flex: 1 1 auto;
}

/* second line goes directly under first line */
.pricing-subline {
    display: block;
}

.card-pricing--highlight {
    border-color: rgba(0, 148, 136, 0.35);
    transform: translateY(-4px);
}

.pricing-cta {
    margin-top: auto;
    width: 100%;
}

/* Reviews */

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 680px;
    margin: 0 auto 24px;
    padding: 12px 16px;

    border-radius: 16px;
    background: radial-gradient(circle at top right,
        rgba(15, 118, 110, 0.35),
        rgba(23, 26, 31, 1)
    );
    border: 1px solid rgba(45, 212, 191, 0.45);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
}

.reviews-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.reviews-score-number {
    font-size: 1.7rem;
    font-weight: 700;
    color: #f9fafb;
    line-height: 1;
}

.reviews-score-stars {
    font-size: 1rem;
    color: #5eead4;
}

.reviews-score-label {
    font-size: 0.8rem;
    color: #9ca3af;
    white-space: nowrap;
}

.reviews-summary-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #e5e7eb;
}

/* Review cards */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.review-card {
    border-radius: 20px;
    padding: 18px 18px 20px;
    font-size: 0.9rem;

    background: rgba(35, 40, 47, 1);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.7);
    color: #e5e7eb;
}

/* Card header */

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #5eead4;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f9fafb;
}

.review-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.review-stars {
    font-size: 0.8rem;
    color: #5eead4;
}

/* Card text */

.review-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e5e7eb;
}

/* Download CTA */

.download-cta {
    background: radial-gradient(circle at top right, #05b6a4 0, #007f77 40%, #033945 100%);
    color: #e9fffd;
    padding: 60px 0 32px;
    min-height: auto;
}

.download-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.download-text p {
    color: rgba(230, 255, 252, 0.92);
}

.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 14px;
    border: 1px solid rgba(210, 255, 250, 0.9);
    text-decoration: none;
    color: #eaffff;
    background: rgba(4, 25, 32, 0.55);
    box-shadow: var(--shadow-small);
}

.store-label {
    font-size: 11px;
    opacity: 0.9;
}

.store-name {
    font-weight: 600;
    font-size: 16px;
}

/* Footer */
.site-footer {
    padding: 16px 0 2px;
    background: transparent;
    color: #e5f4ff;
    border-top: 1px solid rgba(210, 255, 250, 0.35);
    margin-top: 32px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5f4ff;
    font-weight: 600;
}

.footer-brand img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.footer-copy {
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    line-height: 1.2;
    margin: 0;
}

.footer-links a {
    color: #e5f4ff;
    text-decoration: none;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 13px;
    line-height: 1.2;
    margin: 0;
    flex-wrap: wrap;
}

.footer-dot {
    opacity: 0.6;
}

.footer-meta a {
    color: #e5f4ff;
    text-decoration: none;
    opacity: 0.9;
}

.footer-meta a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-mail {
    border-bottom: 1px dashed rgba(229, 244, 255, 0.35);
    text-decoration: none;
}

.footer-mail:hover {
    border-bottom-color: rgba(229, 244, 255, 0.9);
    text-decoration: none;
}

/* Reveal animation (on load) */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Float animation for phone */

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Floating "back to top" button */

.fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(3, 23, 36, 1);
    border: 1px solid rgba(107, 211, 203, 1);
    box-shadow: 0 5px 5px rgba(45, 212, 191, 0.3);
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity var(--transition-normal),
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.fab.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

/* Responsive */

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
    }

    .download-inner {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
    }

    .about-card {
        max-width: 100%;
    }

    .reviews-summary {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .header-inner {
        flex-wrap: wrap;
        align-items: center;
        padding: 16px 0;          /* much tighter header */
    }

    .hero-top {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .footer-right {
        align-items: flex-start;
    }
    .footer-meta {
        justify-content: flex-start;
    }

    .main-nav {
        position: fixed;
        inset: 56px 12px auto;
        background: radial-gradient(circle at top right,
            #05131c 0,
            #020912 40%,
            #00040a 100%
        );
        border-radius: 18px;
        flex-direction: column;
        padding: 14px 18px 10px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.65);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition:
            opacity var(--transition-normal),
            transform var(--transition-normal);
        z-index: 998;
    }

    .main-nav a {
        color: #e5f4ff;
    }

    .nav-checkbox:checked ~ .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero {
        padding-top: 16;          /* remove extra top space on mobile */
        padding-bottom: 40px;
    }

    .hero-inner {
        margin-top: 16px;         /* header → title gap reduced */
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    /* shrink padding for non-hero sections on very small screens */
    .section:not(.hero) {
        padding: 64px 0;
    }

    /* stats: one line with short labels */
    .hero-stats {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 8px;
    }

    .chip-stat {
        padding: 6px 8px;
        font-size: 11px;
        white-space: nowrap;
    }

    .stat-number {
        font-size: 14px;
        margin-right: 2px;
    }

    .stat-label-full {
        display: none;
    }

    .stat-label-short {
        display: inline;
    }
}

/* Extra tightening specifically for iPhone 13 (390×844, DPR 3) */
@media only screen
  and (device-width: 390px)
  and (device-height: 844px)
  and (-webkit-device-pixel-ratio: 3)
  and (orientation: portrait) {

    .header-inner {
        padding: 16px 0;             
    }

    .hero-top {
        padding-top: 16;
        padding-bottom: 8;
    }

    .hero {
        padding-top: 16;          
        padding-bottom: 40px;    
    }

    .hero-inner {
        margin-top: 6px;         
    }
}
