:root {
    color-scheme: dark;
    --bg: #080811;
    --bg-soft: #111225;
    --surface: rgba(18, 20, 38, 0.78);
    --surface-strong: rgba(24, 26, 50, 0.92);
    --surface-soft: rgba(255, 255, 255, 0.05);
    --text: #f8f7ff;
    --muted: rgba(239, 238, 255, 0.72);
    --muted-soft: rgba(239, 238, 255, 0.56);
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.16);
    --violet: #8e78ff;
    --violet-strong: #6f5dff;
    --rose: #ff82c9;
    --mint: #76f2d3;
    --amber: #ffc88d;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.2);
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --container: 1180px;
    --section-space: clamp(4.5rem, 8vw, 7rem);
    --header-height: 5.4rem;
    --scroll-shift: 0px;
    --scroll-shift-strong: 0px;
    --scroll-rotate: 0deg;
    --scroll-progress: 0;
}

.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Manrope', system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(142, 120, 255, 0.16), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(255, 130, 201, 0.14), transparent 22%),
        radial-gradient(circle at 60% 100%, rgba(118, 242, 211, 0.08), transparent 28%),
        linear-gradient(180deg, #0b0c18, #070811 42%, #090915 100%);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    border: 0;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

p {
    margin: 0;
    color: var(--muted);
    text-wrap: pretty;
}

ul {
    margin: 0;
    padding: 0;
}

:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(142, 120, 255, 0.22);
}

.skip-link {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 120;
    transform: translateY(-200%);
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: #fff;
    color: #10111a;
}

.skip-link:focus-visible {
    transform: translateY(0);
}

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

.site-backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.site-backdrop__mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 95%);
    opacity: 0.32;
}

.site-backdrop__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.75;
    animation: orbDrift 18s ease-in-out infinite;
}

.site-backdrop__orb--violet {
    top: 6%;
    left: -5%;
    width: 20rem;
    height: 20rem;
    background: rgba(123, 101, 255, 0.34);
}

.site-backdrop__orb--rose {
    top: 34%;
    right: -4rem;
    width: 18rem;
    height: 18rem;
    background: rgba(255, 130, 201, 0.22);
    animation-delay: -6s;
}

.site-backdrop__orb--mint {
    bottom: 8%;
    left: 24%;
    width: 14rem;
    height: 14rem;
    background: rgba(118, 242, 211, 0.12);
    animation-delay: -10s;
}

.site-backdrop__particles {
    position: absolute;
    inset: 0;
}

.site-backdrop__particle {
    position: absolute;
    left: var(--particle-left);
    top: var(--particle-top);
    width: var(--particle-size);
    height: var(--particle-size);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 200, 141, 0.55));
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
    opacity: 0.65;
    animation: floatParticle var(--particle-duration) ease-in-out infinite;
    animation-delay: var(--particle-delay);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: var(--header-height);
    backdrop-filter: blur(20px);
    background: rgba(9, 10, 20, 0.72);
    border-bottom: 1px solid transparent;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(8, 9, 18, 0.86);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.header-inner {
    position: relative;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo,
.footer-brand__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.site-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(255, 130, 201, 0.28), rgba(142, 120, 255, 0.28)),
        rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 28px rgba(0, 0, 0, 0.18);
}

.site-logo__text {
    display: grid;
    gap: 0.15rem;
}

.site-logo__text strong {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.site-logo__text span {
    color: var(--muted-soft);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.nav-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
}

.nav-toggle__icon {
    display: grid;
    gap: 0.3rem;
}

.nav-toggle__icon span {
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.nav-toggle__label {
    font-size: 0.92rem;
    font-weight: 700;
}

.site-navigation {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    padding: 0.65rem;
    border-radius: 24px;
    background: rgba(10, 11, 21, 0.95);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.site-navigation.is-open {
    display: block;
}

.nav-list {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    color: var(--muted);
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.header-download {
    display: none;
}

.site-main--landing {
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.section {
    position: relative;
    padding: var(--section-space) 0;
    overflow: clip;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f3d9ff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.section-title {
    margin-top: 1rem;
    font-size: clamp(2.1rem, 7vw, 3.4rem);
}

.section-copy {
    margin-top: 1rem;
    max-width: 38rem;
    font-size: 1rem;
}

.button,
.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border-radius: 999px;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.button {
    min-height: 3.5rem;
    padding: 0.9rem 1.35rem;
    font-weight: 800;
}

.button--primary {
    background: linear-gradient(135deg, var(--rose), var(--violet));
    color: #fff;
    box-shadow: 0 16px 34px rgba(110, 85, 255, 0.26);
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.button:hover,
.button:focus-visible,
.store-badge:hover,
.store-badge:focus-visible {
    transform: translateY(-2px);
}

.store-badge {
    min-height: 4.3rem;
    justify-content: flex-start;
    padding: 0.95rem 1.1rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.store-badge--filled {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.store-badge__icon {
    width: 1.8rem;
    height: 1.8rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-badge__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-badge i {
    font-size: 1.35rem;
}

.store-badge__content {
    display: grid;
}

.store-badge__eyebrow {
    font-size: 0.72rem;
    color: var(--muted-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.store-badge__label {
    color: #fff;
    font-weight: 800;
}

.section--hero .store-badge--hero {
    min-height: 5rem;
    min-width: 9rem;
    width: clamp(9rem, 47%, 22rem);
    flex: 1 1 47%;
    justify-content: flex-start;
    padding: 0.95rem 1.1rem;
    background: #f7f7f7;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
    color: #181818;
}

.section--hero .store-badge--hero .store-badge__icon {
    width: 2.1rem;
    height: 2.1rem;
}

.section--hero .store-badge--hero .store-badge__content {
    gap: 0.12rem;
}

.section--hero .store-badge--hero .store-badge__eyebrow {
    color: rgba(24, 24, 24, 0.9);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.section--hero .store-badge--hero .store-badge__label {
    color: #181818;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.section--hero .store-badge--appstore {
    background: #090a0f;
    color: #fff;
}

.section--hero .store-badge--appstore .store-badge__eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.section--hero .store-badge--appstore .store-badge__label {
    color: #fff;
}

.section-panel {
    position: relative;
    padding: clamp(1.25rem, 4vw, 2rem);
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(9, 10, 22, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.section-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(255, 130, 201, 0.12), transparent 24%);
    pointer-events: none;
}

.section-panel--tracking::before,
.section-panel--assistant::before {
    background: radial-gradient(circle at top left, rgba(118, 242, 211, 0.12), transparent 24%);
}

.section-panel--match::before,
.section-panel--experts::before {
    background: radial-gradient(circle at top right, rgba(142, 120, 255, 0.16), transparent 26%);
}

.hero-grid,
.showcase-layout,
.download-panel,
.footer-top-panel,
.footer-main {
    display: grid;
    gap: 1.2rem;
}

.hero-copy,
.showcase-copy,
.download-panel__copy {
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-top: 1.2rem;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    max-width: min(42rem, 100%);
    line-height: 1.02;
}

.hero-description {
    margin-top: 1rem;
    max-width: 40rem;
    font-size: clamp(1rem, 2.8vw, 1.12rem);
}

.hero-actions,
.hero-store-row,
.download-panel__actions,
.footer-top-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-actions {
    margin-top: 1.8rem;
}

.section--hero {
    padding-top: clamp(2rem, 4vw, 4.5rem);
}

.hero-store-row {
    margin-top: 1.6rem;
    gap: 1rem;
}

.hero-metrics {
    margin-top: 1.4rem;
    display: grid;
    gap: 0.85rem;
}

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

.metric-card strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.metric-card span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted-soft);
    font-size: 0.92rem;
}

.hero-visual,
.community-board,
.timeline-board,
.assistant-board,
.sync-board {
    transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
    transition: transform 0.2s ease;
}

.hero-stage {
    position: relative;
    min-height: 30rem;
    display: grid;
    place-items: center;
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 9% 2% 12%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(142, 120, 255, 0.42), transparent 44%),
        radial-gradient(circle at 65% 30%, rgba(255, 130, 201, 0.28), transparent 26%),
        radial-gradient(circle at 35% 76%, rgba(118, 242, 211, 0.16), transparent 24%);
    filter: blur(58px);
    transform: translateY(calc(var(--scroll-shift) * -0.45));
    animation: pulseSoft 10s ease-in-out infinite;
}

.hero-stage--image {
    min-height: clamp(30rem, 60vw, 46rem);
}

.hero-image-glow {
    position: absolute;
    inset: 8% 4% 10%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(142, 120, 255, 0.34), transparent 46%),
        radial-gradient(circle at 68% 24%, rgba(255, 130, 201, 0.18), transparent 24%),
        radial-gradient(circle at 34% 82%, rgba(118, 242, 211, 0.12), transparent 22%);
    filter: blur(62px);
    opacity: 0.88;
    transform: translateY(calc(var(--scroll-shift) * -0.22));
}

.hero-image-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 31rem);
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.32));
}

.app-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 23rem);
    padding: 0.9rem;
    border-radius: 2.3rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
        rgba(10, 11, 23, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
}

.app-shell__notch {
    width: 35%;
    height: 1.25rem;
    margin: 0 auto 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.app-shell__screen {
    display: grid;
    gap: 0.9rem;
    min-height: 36rem;
    padding: 1rem;
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(255, 130, 201, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015)),
        #0b0d19;
}

.app-shell__status,
.post-card__meta,
.timeline-board__header,
.assistant-board__header,
.experts-panel__header,
.download-stat span,
.label-soft {
    font-size: 0.76rem;
    color: var(--muted-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.app-shell__status {
    display: flex;
    justify-content: space-between;
}

.app-shell__hero-card,
.post-card,
.support-card,
.timeline-list__item,
.sync-column,
.expert-card,
.download-stat {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-shell__hero-card h2 {
    margin-top: 0.5rem;
    font-size: 1.55rem;
}

.app-shell__hero-card p,
.timeline-list__item p,
.download-stat span {
    margin-top: 0.4rem;
}

.app-shell__hero-pill {
    display: inline-flex;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(118, 242, 211, 0.12);
    color: #d8fff5;
    font-size: 0.74rem;
    font-weight: 700;
}

.app-shell__mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mini-panel {
    padding: 0.85rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-panel--rose {
    background: linear-gradient(180deg, rgba(255, 130, 201, 0.14), rgba(255, 255, 255, 0.04));
}

.mini-panel--violet {
    background: linear-gradient(180deg, rgba(142, 120, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.mini-panel span,
.mini-panel small {
    display: block;
    color: var(--muted-soft);
}

.mini-panel strong {
    display: block;
    margin: 0.3rem 0;
    color: #fff;
}

.app-shell__timeline-card,
.benefit-list__item,
.experts-panel__trust {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-shell__timeline-card {
    justify-content: space-between;
    align-items: center;
}

.app-shell__list {
    display: grid;
    gap: 0.75rem;
}

.app-shell__list article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.app-shell__list i,
.feature-tile__icon,
.benefit-list__icon,
.floating-glass__icon,
.expert-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    flex-shrink: 0;
}

.app-shell__list strong,
.benefit-list__item strong,
.feature-tile__title,
.post-card h3,
.timeline-board__header strong,
.assistant-board__header strong,
.sync-column strong,
.expert-card__title,
.download-stat strong {
    color: #fff;
}

.floating-glass {
    display: none;
}

.hero-trustbar {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
    padding-bottom: 0.2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.hero-trustbar::-webkit-scrollbar {
    display: none;
}

.hero-trustbar span {
    flex: 0 0 auto;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
}

.section-heading {
    margin-bottom: 1.4rem;
}

.section--features {
    padding-top: clamp(4rem, 7vw, 5.5rem);
}

.feature-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.feature-panel,
.feature-visual__cards article,
.feature-summary-card {
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.feature-panel {
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
}

.feature-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.feature-step {
    display: grid;
    gap: 0.75rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.6rem;
}

.feature-step__marker {
    width: 2.6rem;
    min-height: 2.6rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(143, 118, 255, 0.15);
    color: #fff;
    font-weight: 700;
}

.feature-step h4 {
    margin: 0;
    font-size: 1.05rem;
}

.feature-step__list {
    margin: 0.75rem 0 0;
    padding-left: 1.15rem;
    color: var(--muted);
}

.feature-step__list li {
    margin-bottom: 0.55rem;
}

.feature-visual {
    display: grid;
    gap: 1rem;
}

.feature-visual__image {
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
}

.feature-visual__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.feature-visual__cards {
    display: grid;
    gap: 1rem;
}

.feature-visual-card {
    padding: 1.3rem;
    display: grid;
    gap: 0.6rem;
}

.feature-visual-card__label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.feature-visual-card strong {
    display: block;
    font-size: 1.05rem;
}

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

.feature-summary-card {
    padding: 1.3rem;
}

.feature-summary-card strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #fff;
}

.feature-summary-card p {
    color: var(--muted);
    margin: 0;
}

@media (max-width: 900px) {
    .feature-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .feature-panel {
        padding: 1.5rem;
    }

    .feature-step {
        padding: 1rem;
    }

    .feature-summary-grid {
        gap: 0.85rem;
    }
}

.features-grid {
    display: grid;
    gap: 1rem;
}

.feature-tile {
    display: grid;
    gap: 1rem;
    min-height: 100%;
    padding: 1.2rem;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
        rgba(11, 12, 23, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.feature-tile--primary {
    background:
        radial-gradient(circle at top right, rgba(255, 130, 201, 0.16), transparent 35%),
        linear-gradient(135deg, rgba(142, 120, 255, 0.18), rgba(255, 255, 255, 0.03));
}

.feature-tile--accent {
    background:
        radial-gradient(circle at top left, rgba(118, 242, 211, 0.14), transparent 28%),
        rgba(11, 12, 23, 0.82);
}

.feature-tile--outline {
    border-color: rgba(118, 242, 211, 0.18);
}

.feature-tile__label {
    color: #e4d6ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.feature-tile__title {
    font-size: 1.4rem;
}

.feature-tile__description {
    color: var(--muted);
}

.showcase-layout {
    position: relative;
    z-index: 1;
}

.benefit-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.benefit-list__item p {
    margin-top: 0.25rem;
}

.community-board,
.timeline-board,
.assistant-board,
.sync-board,
.experts-panel {
    position: relative;
    z-index: 1;
    padding: 1.2rem;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
        rgba(10, 12, 24, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.avatar-cluster {
    display: flex;
    margin-right: auto;
}

.avatar-cluster span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-right: -0.5rem;
    border-radius: 999px;
    border: 2px solid rgba(10, 12, 24, 0.9);
    background: linear-gradient(135deg, var(--rose), var(--violet));
    font-size: 0.72rem;
    font-weight: 800;
}

.post-card h3 {
    margin-top: 1rem;
    font-size: 1.45rem;
}

.post-card p {
    margin-top: 0.8rem;
}

.post-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    color: var(--muted-soft);
    font-size: 0.9rem;
}

.support-card {
    margin-top: 0.9rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.support-card strong {
    display: block;
    margin-top: 0.45rem;
}

.support-card p {
    margin-top: 0.4rem;
}

.support-card--gradient {
    background:
        linear-gradient(135deg, rgba(142, 120, 255, 0.24), rgba(255, 130, 201, 0.18)),
        rgba(255, 255, 255, 0.03);
}

.timeline-board__header strong,
.assistant-board__header strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.35rem;
    font-family: 'Outfit', system-ui, sans-serif;
}

.timeline-ring {
    display: grid;
    place-items: center;
    width: min(15rem, 100%);
    aspect-ratio: 1;
    margin: 1.4rem auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(8, 9, 19, 0.92) 46%, transparent 47%),
        conic-gradient(var(--violet) 0 250deg, rgba(255, 255, 255, 0.08) 250deg 360deg);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 20px 50px rgba(0, 0, 0, 0.2);
}

.timeline-ring__inner {
    display: grid;
    place-items: center;
    width: 64%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.timeline-ring__inner span {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 800;
}

.timeline-ring__inner small {
    color: var(--muted-soft);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.timeline-progress {
    height: 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.timeline-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--mint), var(--violet));
}

.timeline-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.chat-stack {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.chat-bubble {
    max-width: 90%;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
}

.chat-bubble--ai {
    justify-self: start;
    border-bottom-left-radius: 0.5rem;
}

.chat-bubble--user {
    justify-self: end;
    border-bottom-right-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 130, 201, 0.24), rgba(142, 120, 255, 0.18));
}

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

.suggestion-grid span {
    padding: 0.85rem;
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
}

.sync-board {
    display: grid;
    gap: 0.95rem;
}

.sync-column ul {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.sync-column li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--muted);
}

.sync-column li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--violet));
}

.sync-column--secondary {
    background: linear-gradient(180deg, rgba(118, 242, 211, 0.14), rgba(255, 255, 255, 0.03));
}

.sync-connector {
    display: grid;
    place-items: center;
}

.sync-connector span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 130, 201, 0.24), rgba(142, 120, 255, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.experts-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.experts-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 700;
}

.experts-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.expert-card__title {
    margin-top: 0.7rem;
    font-size: 1.15rem;
}

.expert-card__text {
    margin-top: 0.45rem;
}

.experts-panel__footer {
    margin-top: 1rem;
}

.download-panel {
    position: relative;
    padding: clamp(1.4rem, 4vw, 2.3rem);
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(255, 130, 201, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(118, 242, 211, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(142, 120, 255, 0.22), rgba(7, 8, 17, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.download-panel__meta {
    display: grid;
    gap: 0.9rem;
}

.download-stat strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 1.1rem;
}

.download-stat,
.expert-card,
.footer-social__link {
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer {
    position: relative;
    padding: 0 0 2rem;
}

.footer-shell {
    display: grid;
    gap: 1.35rem;
}

.footer-top-panel {
    padding: 1.3rem;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 130, 201, 0.18), rgba(142, 120, 255, 0.16)),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.footer-top-panel__title {
    margin-top: 0.9rem;
    font-size: clamp(1.9rem, 6vw, 3rem);
}

.footer-top-panel__copy {
    margin-top: 0.9rem;
    max-width: 40rem;
}

.footer-main {
    padding: 1.3rem;
    border-radius: 32px;
    background: rgba(8, 9, 18, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand__copy {
    margin-top: 1rem;
}

.footer-brand__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.footer-brand__chips span,
.footer-column__title {
    color: rgba(255, 255, 255, 0.92);
}

.footer-brand__chips span {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column {
    display: grid;
    gap: 0.7rem;
}

.footer-column__title {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--muted);
}

.footer-bottom {
    display: grid;
    gap: 0.5rem;
    padding: 0 0.2rem;
}

.footer-copy,
.footer-note {
    font-size: 0.92rem;
}

.page-content {
    padding: 2rem 0;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="zoom"] {
    transform: translateY(20px) scale(0.96);
}

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

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

    .hero-metrics,
    .footer-main,
    .download-panel__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .floating-glass {
        position: absolute;
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        width: min(12rem, 42vw);
        padding: 0.95rem;
        border-radius: 20px;
        background: rgba(11, 12, 24, 0.82);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow-soft);
        backdrop-filter: blur(18px);
        animation: floatCard 8s ease-in-out infinite;
    }

    .floating-glass strong {
        display: block;
        color: #fff;
        font-size: 0.92rem;
    }

    .floating-glass p {
        margin-top: 0.2rem;
        font-size: 0.82rem;
        color: var(--muted-soft);
    }

    .floating-glass--community {
        top: 14%;
        left: -2%;
    }

    .floating-glass--tracking {
        top: 56%;
        right: -3%;
        animation-delay: -2s;
    }

    .floating-glass--assistant {
        bottom: 7%;
        left: 4%;
        animation-delay: -4s;
    }
}

@media (min-width: 960px) {
    .nav-toggle {
        display: none;
    }

    .header-nav-shell {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .site-navigation {
        position: static;
        display: block;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-list {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .nav-list a {
        min-height: 2.8rem;
        padding: 0.65rem 0.95rem;
        border-radius: 999px;
    }

    .header-download {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        min-height: 3rem;
        padding: 0.8rem 1.15rem;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(255, 130, 201, 0.2), rgba(142, 120, 255, 0.2));
        border: 1px solid rgba(255, 255, 255, 0.12);
        font-weight: 800;
    }

    .hero-grid,
    .showcase-layout,
    .download-panel,
    .footer-top-panel {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        align-items: center;
        gap: clamp(1.5rem, 3vw, 3rem);
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
    }

    .showcase-layout--reverse > :first-child {
        order: 2;
    }

    .showcase-layout--reverse > :last-child {
        order: 1;
    }

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

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

    .feature-tile {
        grid-column: span 4;
    }

    .feature-tile--wide {
        grid-column: span 8;
    }

    .feature-tile--tall {
        grid-column: span 4;
        grid-row: span 2;
    }

    .download-panel__meta,
    .footer-main {
        grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: auto;
    }

    .sync-board {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
    }
}

@media (min-width: 1140px) {
    .section-panel {
        border-radius: 42px;
        padding: 2rem;
    }

    .features-grid,
    .experts-grid {
        gap: 1.1rem;
    }
}

@media (max-width: 560px) {
    .button,
    .store-badge {
        width: 100%;
    }

    .section--hero {
        padding-top: clamp(2rem, 4vw, 4rem);
    }

    .section--hero .hero-store-row,
    .download-panel__actions {
        justify-content: space-between;
    }

    .section--hero .hero-store-row .store-badge,
    .download-panel__actions .store-badge {
        width: calc(50% - 0.5rem);
        min-width: 0;
        flex: 0 1 calc(50% - 0.5rem);
    }

    .section--hero .store-badge--hero {
        min-height: 4.75rem;
        padding: 0.9rem 1rem;
    }

    .section--hero .store-badge--hero .store-badge__icon {
        width: 1.85rem;
        height: 1.85rem;
    }

    .section--hero .store-badge--hero .store-badge__content {
        gap: 0.08rem;
    }

    .section--hero .store-badge--hero .store-badge__eyebrow {
        font-size: 0.68rem;
    }

    .section--hero .store-badge--hero .store-badge__label {
        font-size: clamp(1.3rem, 6vw, 1.65rem);
    }

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

    .hero-image-frame {
        width: min(100%, 22rem);
    }

    .hero-image {
        filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.24));
    }

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

@media (hover: hover) {
    .feature-tile:hover,
    .footer-social__link:hover,
    .support-card:hover,
    .expert-card:hover,
    .download-stat:hover {
        transform: translateY(-3px);
        border-color: var(--line-strong);
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@keyframes orbDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(1.4rem, -1.2rem, 0) scale(1.06);
    }
}

@keyframes floatParticle {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(0.95);
        opacity: 0.45;
    }

    50% {
        transform: translate3d(0, -0.8rem, 0) scale(1.12);
        opacity: 0.88;
    }
}

@keyframes pulseSoft {
    0%,
    100% {
        opacity: 0.72;
        transform: translateY(calc(var(--scroll-shift) * -0.28)) scale(0.98);
    }

    50% {
        opacity: 0.98;
        transform: translateY(calc(var(--scroll-shift) * -0.4)) scale(1.03);
    }
}

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

    50% {
        transform: translateY(-0.5rem);
    }
}
