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

:root {
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-heading: "Space Grotesk", "Segoe UI", sans-serif;

    --bg: #f4f7f1;
    --bg-elevated: rgba(255, 255, 255, 0.88);
    --bg-strong: #ffffff;
    --bg-muted: #e9efe7;
    --bg-dark: #10202f;
    --bg-dark-soft: #14293d;
    --text: #122033;
    --text-soft: #506173;
    --text-muted: #728295;
    --line: rgba(18, 32, 51, 0.1);
    --line-strong: rgba(18, 32, 51, 0.18);
    --brand: #0b6b61;
    --brand-strong: #0a5b53;
    --brand-soft: #d8efe9;
    --accent: #f2b84b;
    --accent-soft: #fff1ce;
    --info: #1d4f91;
    --shadow-sm: 0 10px 24px rgba(10, 28, 46, 0.06);
    --shadow-md: 0 18px 48px rgba(10, 28, 46, 0.12);
    --shadow-lg: 0 28px 80px rgba(10, 28, 46, 0.16);
    --radius-sm: 0.8rem;
    --radius-md: 1.15rem;
    --radius-lg: 1.75rem;
    --radius-xl: 2.5rem;
    --container: 1180px;
}

[data-theme="dark"] {
    --bg: #09131d;
    --bg-elevated: rgba(13, 27, 41, 0.88);
    --bg-strong: #102232;
    --bg-muted: #12293a;
    --bg-dark: #06111b;
    --bg-dark-soft: #0e1f2f;
    --text: #edf4fa;
    --text-soft: #c4d0db;
    --text-muted: #91a2b2;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --brand: #32b7a8;
    --brand-strong: #1f9d90;
    --brand-soft: rgba(50, 183, 168, 0.14);
    --accent: #f2c25f;
    --accent-soft: rgba(242, 194, 95, 0.18);
    --info: #6aa6ff;
    --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.28);
    --shadow-md: 0 20px 58px rgba(0, 0, 0, 0.36);
    --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.42);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(11, 107, 97, 0.1), transparent 26%),
        radial-gradient(circle at top right, rgba(242, 184, 75, 0.12), transparent 24%),
        var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    background: none;
    border: 0;
    cursor: pointer;
}

::selection {
    background: rgba(11, 107, 97, 0.18);
}

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

.section {
    padding: 6rem 0;
}

.section-shell {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.92));
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .section-shell {
    background: linear-gradient(180deg, rgba(14, 30, 44, 0.92), rgba(10, 22, 34, 0.96));
}

.section-header {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-badge,
.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(11, 107, 97, 0.16);
    background: rgba(255, 255, 255, 0.7);
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

[data-theme="dark"] .section-badge,
[data-theme="dark"] .eyebrow-pill {
    background: rgba(8, 22, 33, 0.7);
}

.section-title,
.hero-title,
.page-title,
.content-section h2,
.feature-title,
.download-card h3,
.about-value h3,
.contact-card h3,
.footer-title {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.section-title {
    margin-top: 1rem;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
}

.section-description,
.left-align {
    color: var(--text-soft);
    font-size: 1.06rem;
}

.left-align {
    margin-top: 1rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1100;
    padding: 1rem 0;
    background: rgba(244, 247, 241, 0.7);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: padding 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

[data-theme="dark"] .navbar {
    background: rgba(9, 19, 29, 0.72);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
}

.logo-mark,
.footer-logo-mark {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border-radius: 0.62rem;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(11, 107, 97, 0.16);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-link {
    position: relative;
    padding: 0.4rem 0.1rem;
    color: var(--text-soft);
    font-weight: 700;
    font-size: 0.95rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.18rem;
    width: 100%;
    height: 0.16rem;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta,
.theme-toggle,
.mobile-menu-btn {
    min-height: 2.9rem;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.05rem;
    border-radius: 999px;
    background: var(--bg-dark);
    color: #f8fbff;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.theme-toggle,
.mobile-menu-btn,
.close-menu-btn {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .mobile-menu-btn,
[data-theme="dark"] .close-menu-btn {
    background: rgba(15, 31, 45, 0.86);
}

.theme-toggle:hover,
.mobile-menu-btn:hover,
.close-menu-btn:hover,
.nav-cta:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 17, 27, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1090;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: min(84vw, 360px);
    height: 100vh;
    padding: 1.25rem;
    background: var(--bg-strong);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1200;
}

[data-theme="dark"] .mobile-menu {
    background: var(--bg-dark-soft);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border-radius: var(--radius-md);
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--line);
    font-weight: 700;
}

[data-theme="dark"] .mobile-nav-link {
    background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-link::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--brand);
    font-size: 0.88rem;
}

.hero {
    position: relative;
    overflow: clip;
    padding: 4.5rem 0 3rem;
}

.hero-orb,
.stage-ring {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-orb-a {
    top: 4rem;
    left: -7rem;
    width: 18rem;
    height: 18rem;
    background: rgba(11, 107, 97, 0.12);
    filter: blur(10px);
}

.hero-orb-b {
    top: 0;
    right: 4rem;
    width: 16rem;
    height: 16rem;
    background: rgba(242, 184, 75, 0.16);
    filter: blur(18px);
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 3rem;
    align-items: center;
}

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

.eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
}

.eyebrow-text {
    color: var(--text-soft);
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 0.96;
    max-width: 12ch;
}

.highlight {
    display: inline-block;
    color: var(--brand);
}

.hero-description {
    max-width: 58ch;
    margin-top: 1.4rem;
    color: var(--text-soft);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3.35rem;
    padding: 0.95rem 1.4rem;
    border-radius: 1rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--info));
    color: #f8fbff;
    box-shadow: 0 18px 30px rgba(11, 107, 97, 0.2);
}

.btn-secondary {
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
}

[data-theme="dark"] .btn-secondary {
    background: rgba(255, 255, 255, 0.04);
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 2rem;
}

.trust-item {
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .trust-item {
    background: rgba(255, 255, 255, 0.03);
}

.trust-label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.trust-item strong {
    font-size: 0.98rem;
}

.hero-stage {
    position: relative;
    min-height: 38rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-ring-a {
    inset: 13% auto auto 10%;
    width: 23rem;
    height: 23rem;
    border: 1px solid rgba(11, 107, 97, 0.14);
}

.stage-ring-b {
    inset: auto 8% 14% auto;
    width: 17rem;
    height: 17rem;
    border: 1px solid rgba(29, 79, 145, 0.12);
}

.phone-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    padding: 1rem;
    border-radius: 2.2rem;
    background: linear-gradient(180deg, #17344f, #0d2135);
    box-shadow: var(--shadow-lg);
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.95rem;
}

.phone-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f3f8fb;
    font-size: 0.8rem;
    font-weight: 800;
}

.phone-dot-group {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.phone-dot-group span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
}

.phone-screen {
    border-radius: 1.65rem;
    padding: 1.2rem;
    background:
        linear-gradient(180deg, rgba(219, 237, 232, 0.96), rgba(255, 255, 255, 0.97)),
        var(--bg-strong);
    color: #122033;
}

.phone-hero-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.35rem;
    background: #fcfffe;
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: 0 12px 26px rgba(18, 32, 51, 0.08);
}

.phone-hero-mark {
    flex-shrink: 0;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0.45rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0b6b61, #1d4f91);
}

.phone-overline {
    color: #526274;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.phone-hero-card h2 {
    margin-top: 0.25rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.1;
}

.phone-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.mini-panel {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 32, 51, 0.08);
}

.mini-panel-accent {
    background: linear-gradient(180deg, rgba(11, 107, 97, 0.1), rgba(29, 79, 145, 0.08));
}

.mini-panel-label {
    display: block;
    color: #5a6a7b;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mini-panel strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 1rem;
}

.mini-panel p {
    margin-top: 0.4rem;
    color: #5a6a7b;
    font-size: 0.88rem;
}

.floating-note {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
    font-weight: 800;
    color: var(--text);
    animation: float 6s ease-in-out infinite;
}

[data-theme="dark"] .floating-note {
    background: rgba(10, 22, 34, 0.88);
    border-color: rgba(255, 255, 255, 0.1);
}

.floating-note i {
    color: var(--brand);
}

.note-a {
    top: 12%;
    left: -2%;
}

.note-b {
    right: -4%;
    bottom: 12%;
    animation-delay: 1.2s;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
    padding: 1.2rem;
    border-radius: 1.8rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .stats-band {
    background: rgba(255, 255, 255, 0.03);
}

.stat {
    padding: 0.7rem 1rem;
    border-radius: 1.2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1;
}

.stat-label {
    margin-top: 0.45rem;
    color: var(--text-soft);
    font-weight: 700;
    font-size: 0.92rem;
}

.features-grid,
.download-options,
.about-grid,
.contact-layout {
    display: grid;
    gap: 1.25rem;
}

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

.feature-card,
.download-card,
.about-value,
.contact-card,
.content-section {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .download-card,
[data-theme="dark"] .about-value,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .content-section {
    background: rgba(16, 34, 50, 0.88);
}

.feature-card::before,
.download-card::before,
.about-value::before,
.contact-card::before,
.content-section::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0.22rem;
    background: linear-gradient(90deg, var(--brand), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feature-card:hover,
.download-card:hover,
.about-value:hover,
.contact-card:hover,
.content-section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before,
.download-card:hover::before,
.about-value:hover::before,
.contact-card:hover::before,
.content-section:hover::before {
    opacity: 1;
}

.feature-kicker {
    display: inline-block;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.feature-icon,
.contact-icon,
.download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.45rem;
    height: 3.45rem;
    border-radius: 1.1rem;
    margin-top: 1rem;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.35rem;
}

.download-icon.android {
    background: rgba(61, 220, 132, 0.14);
    color: #1c9254;
}

.download-icon.ios {
    background: rgba(18, 32, 51, 0.08);
    color: var(--text);
}

.feature-title,
.download-card h3,
.about-value h3,
.contact-card h3 {
    margin-top: 1rem;
    font-size: 1.35rem;
    line-height: 1.12;
}

.feature-description,
.download-copy,
.about-value p,
.contact-card p,
.content-section p,
.content-section li {
    color: var(--text-soft);
}

.feature-description {
    margin-top: 0.85rem;
}

.experience-strip {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(11, 107, 97, 0.08), rgba(255, 255, 255, 0.68));
}

[data-theme="dark"] .experience-strip {
    background: linear-gradient(135deg, rgba(50, 183, 168, 0.1), rgba(255, 255, 255, 0.02));
}

.experience-label {
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.experience-copy h3 {
    margin-top: 0.7rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.08;
}

.experience-points {
    display: grid;
    gap: 0.85rem;
    align-content: center;
}

.experience-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(18, 32, 51, 0.08);
    font-weight: 700;
}

[data-theme="dark"] .experience-point {
    background: rgba(255, 255, 255, 0.03);
}

.experience-point i {
    color: var(--brand);
}

.download-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.2rem;
    padding: 1.5rem;
}

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

.mini-link-grid {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.mini-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.56);
    font-weight: 800;
}

[data-theme="dark"] .mini-link {
    background: rgba(255, 255, 255, 0.03);
}

.mini-link i {
    color: var(--brand);
}

.installation-note {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.1rem;
    border-radius: 1.2rem;
    background: var(--accent-soft);
    border: 1px solid rgba(242, 184, 75, 0.26);
}

[data-theme="dark"] .installation-note {
    background: rgba(242, 194, 95, 0.1);
}

.installation-note i {
    color: #b07a10;
    font-size: 1.2rem;
    margin-top: 0.15rem;
}

.installation-note h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.installation-note p {
    margin-top: 0.35rem;
    color: var(--text-soft);
}

.download-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.download-card-primary {
    background:
        linear-gradient(180deg, rgba(221, 247, 232, 0.88), rgba(255, 255, 255, 0.9));
}

[data-theme="dark"] .download-card-primary {
    background:
        linear-gradient(180deg, rgba(15, 58, 38, 0.6), rgba(16, 34, 50, 0.94));
}

.download-card-soon {
    background:
        linear-gradient(180deg, rgba(245, 247, 250, 0.94), rgba(255, 255, 255, 0.9));
}

[data-theme="dark"] .download-card-soon {
    background:
        linear-gradient(180deg, rgba(30, 38, 48, 0.94), rgba(16, 34, 50, 0.94));
}

.download-card-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.download-card-header p {
    margin-top: 0.35rem;
}

.download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 32, 51, 0.08);
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--text-soft);
}

[data-theme="dark"] .meta-chip {
    background: rgba(255, 255, 255, 0.05);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.about-story {
    padding: 1.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(16, 32, 47, 0.96), rgba(23, 52, 79, 0.96));
    color: #edf4fa;
    box-shadow: var(--shadow-md);
}

.about-story .section-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: #a8efe5;
}

.about-story .section-title,
.about-story .about-description {
    color: #edf4fa;
}

.about-story .about-description {
    margin-top: 1rem;
}

.about-kpis {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.kpi-card {
    padding: 1rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.kpi-label {
    display: block;
    color: #b5d2e9;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.kpi-card strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1rem;
}

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

.about-value {
    min-height: 10rem;
}

.about-value i {
    color: var(--brand);
    font-size: 1.35rem;
}

.contact-layout {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
    align-items: stretch;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.contact-card-primary {
    background:
        linear-gradient(180deg, rgba(11, 107, 97, 0.12), rgba(255, 255, 255, 0.88));
}

[data-theme="dark"] .contact-card-primary {
    background:
        linear-gradient(180deg, rgba(50, 183, 168, 0.12), rgba(16, 34, 50, 0.92));
}

.contact-card-head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-card-head > div:last-child {
    min-width: 0;
}

.contact-card-head .contact-icon {
    margin-top: 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    min-height: 3rem;
    max-width: 100%;
    padding: 0 1rem;
    border-radius: 999px;
    background: var(--bg-dark);
    color: #f7fbff;
    font-weight: 800;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-link.compact {
    background: transparent;
    color: var(--brand);
    padding: 0;
    min-height: auto;
}

.contact-meta {
    display: grid;
    gap: 0.7rem;
    color: var(--text-soft);
    font-weight: 700;
}

.contact-meta span,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.text-link {
    color: var(--brand);
    font-weight: 800;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
}

.footer {
    margin-top: 1rem;
    padding: 3rem 0 1.8rem;
    background: var(--bg-dark);
    color: #d4dee8;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-brand {
    max-width: 28rem;
}

.footer-logo {
    gap: 0.85rem;
    color: #f7fbff;
    font-size: 1.15rem;
}

.footer-logo-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
}

.footer-description {
    margin-top: 1rem;
    color: #b9c6d2;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.25rem;
    margin-top: 1rem;
}

.footer-meta a,
.footer-links a,
.footer-bottom p {
    color: #d4dee8;
}

.footer-title {
    color: #f7fbff;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
    list-style: none;
}

.footer-links a:hover,
.footer-meta a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-container {
    min-height: 100vh;
    padding: 4rem 0 5rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 3rem;
    padding: 0 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .back-button {
    background: rgba(255, 255, 255, 0.04);
}

.page-header {
    max-width: 780px;
    margin: 1.6rem auto 2.4rem;
    text-align: center;
}

.page-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.98;
}

.page-subtitle {
    margin-top: 1rem;
    color: var(--text-soft);
    font-size: 1.08rem;
}

.page-content {
    max-width: 920px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 1rem;
}

.content-section h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.08;
}

.content-section h2 i,
.content-section h3,
.content-section a,
.content-section .step-number {
    color: var(--brand);
}

.content-section h3 {
    margin-top: 1.2rem;
    font-size: 1.1rem;
}

.content-section p,
.content-section ul,
.content-section ol,
.content-section table {
    margin-top: 0.9rem;
}

.content-section ul,
.content-section ol {
    padding-left: 1.15rem;
}

.content-section li + li {
    margin-top: 0.4rem;
}

.content-section strong {
    color: var(--text);
}

.highlight-box {
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(11, 107, 97, 0.16);
    background: linear-gradient(135deg, rgba(11, 107, 97, 0.08), rgba(255, 255, 255, 0.48));
}

[data-theme="dark"] .highlight-box {
    background: linear-gradient(135deg, rgba(50, 183, 168, 0.12), rgba(255, 255, 255, 0.02));
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--brand-soft);
    font-size: 0.92rem;
    font-weight: 800;
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid var(--line);
}

th,
td {
    padding: 0.95rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

th {
    background: rgba(11, 107, 97, 0.08);
    color: var(--text);
    font-weight: 800;
}

tr:last-child td {
    border-bottom: 0;
}

.scroll-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: var(--bg-dark);
    color: #f8fbff;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

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

.notification {
    position: fixed;
    top: 5.5rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    max-width: min(92vw, 28rem);
    padding: 0.95rem 1.05rem;
    border-radius: 1rem;
    background: var(--bg-dark);
    color: #f7fbff;
    box-shadow: var(--shadow-lg);
    z-index: 1300;
    animation: slide-in 0.28s ease;
}

.notification i {
    color: #7af0c3;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateY(-10px) translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

@media (max-width: 1100px) {
    .hero-content,
    .download-shell,
    .about-layout,
    .contact-layout,
    .experience-strip {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 31rem;
    }

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

@media (max-width: 900px) {
    .features-grid,
    .download-options,
    .contact-layout,
    .hero-trust,
    .stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phone-shell {
        width: min(100%, 390px);
    }
}

@media (max-width: 760px) {
    .section {
        padding: 4.5rem 0;
    }

    .navbar {
        padding: 0.85rem 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding-top: 2.8rem;
    }

    .hero-buttons,
    .hero-trust,
    .features-grid,
    .download-options,
    .contact-layout,
    .stats-band,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .hero-stage {
        min-height: auto;
    }

    .floating-note {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
    }

    .page-container {
        padding: 2.8rem 0 4rem;
    }
}

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

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

    .section-shell,
    .about-story,
    .feature-card,
    .download-card,
    .about-value,
    .contact-card,
    .content-section {
        border-radius: 1.4rem;
    }

    .theme-toggle {
        display: none;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-card-head {
        gap: 0.85rem;
    }

    .contact-link {
        width: 100%;
        justify-content: center;
        min-height: 2.8rem;
        padding: 0.65rem 0.85rem;
        text-align: center;
        border-radius: 1rem;
    }

    .contact-link.compact {
        width: auto;
        justify-content: flex-start;
        padding: 0;
        text-align: left;
    }

    .contact-meta span {
        align-items: flex-start;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    th,
    td {
        padding: 0.8rem 0.85rem;
        font-size: 0.95rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
