:root {
    --font-body: 'Manrope', 'Segoe UI', sans-serif;
    --font-heading: 'Unbounded', 'Segoe UI', sans-serif;
    --color-text: #f2f6f0;
    --color-muted: #98a398;
    --color-bg: #0b0f10;
    --color-surface: #151c1e;
    --color-soft: #111719;
    --color-soft-strong: #1a2326;
    --color-accent: #c1ff05;
    --color-accent-rgb: 193, 255, 5;
    --color-accent-strong: #a5df00;
    --color-accent-dark: #dfff88;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-strong: rgba(193, 255, 5, 0.28);
    --color-shadow: rgba(0, 0, 0, 0.3);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 18px;
    --shadow-soft: 0 20px 52px rgba(0, 0, 0, 0.22);
    --shadow-card: 0 26px 70px rgba(0, 0, 0, 0.26);
    --shadow-glow: 0 18px 40px rgba(var(--color-accent-rgb), 0.14);
    --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    min-width: 320px;
    font-family: var(--font-body);
    color: var(--color-text);
    background:
        radial-gradient(900px 360px at 50% -60px, rgba(var(--color-accent-rgb), 0.16), transparent 58%),
        radial-gradient(circle at top left, rgba(var(--color-accent-rgb), 0.16), transparent 26%),
        radial-gradient(circle at bottom right, rgba(var(--color-accent-rgb), 0.1), transparent 22%),
        linear-gradient(180deg, #0d1313 0%, var(--color-bg) 44%, #090d0e 100%);
    line-height: 1.6;
    overflow-x: clip;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    z-index: -1;
}

body::before {
    top: 3%;
    left: -160px;
    background: rgba(var(--color-accent-rgb), 0.18);
}

body::after {
    right: -120px;
    bottom: 8%;
    background: rgba(var(--color-accent-rgb), 0.14);
}

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

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

button {
    font: inherit;
}

section[id] {
    scroll-margin-top: 140px;
}

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

.main {
    position: relative;
    transition:
        filter 0.35s var(--ease-standard),
        opacity 0.35s var(--ease-standard);
}

.section {
    padding: 132px 0;
    position: relative;
}

.section--structured::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(91, 127, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 127, 0, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9) 14%, rgba(0, 0, 0, 0.9) 86%, transparent);
}

.surface-shell {
    position: relative;
    padding: 10px;
    border-radius: calc(var(--radius-lg) + 4px);
    background:
        linear-gradient(180deg, rgba(28, 35, 37, 0.88), rgba(14, 18, 19, 0.92)),
        rgba(12, 16, 17, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.surface-core {
    height: 100%;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(420px 160px at 100% -52px, rgba(var(--color-accent-rgb), 0.1), transparent 60%),
        linear-gradient(180deg, rgba(24, 31, 33, 0.98), rgba(16, 22, 24, 0.98)),
        var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 22px rgba(0, 0, 0, 0.16);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-height: 40px;
    max-width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(var(--color-accent-rgb), 0.14);
    border: 1px solid rgba(var(--color-accent-rgb), 0.42);
    color: var(--color-accent-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
    line-height: 1.04;
}

p,
li,
span {
    text-wrap: balance;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    margin: 1.2rem 0 1.4rem;
}

.section-heading p:last-child {
    font-size: 1.08rem;
    color: var(--color-muted);
    max-width: 62ch;
}

.btn,
.nav__cta,
.device__cta,
.mobile-cta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    min-height: 58px;
    padding: 0.85rem 1rem 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition:
        transform 0.6s var(--ease-standard),
        box-shadow 0.6s var(--ease-standard),
        background-color 0.6s var(--ease-standard),
        border-color 0.6s var(--ease-standard),
        color 0.6s var(--ease-standard);
}

.btn:focus-visible,
.nav__cta:focus-visible,
.device__cta:focus-visible,
.mobile-cta__link:focus-visible,
.nav__toggle:focus-visible,
.nav__link:focus-visible {
    outline: 2px solid rgba(var(--color-accent-rgb), 0.95);
    outline-offset: 4px;
}

.btn:active,
.nav__cta:active,
.device__cta:active,
.mobile-cta__link:active {
    transform: translateY(1px) scale(0.985);
}

.btn__icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: rgba(21, 28, 15, 0.18);
    position: relative;
    flex-shrink: 0;
    transition: transform 0.6s var(--ease-standard), background-color 0.6s var(--ease-standard);
}

.btn__icon::before,
.btn__icon::after {
    content: '';
    position: absolute;
    background: currentColor;
}

.btn__icon::before {
    width: 11px;
    height: 2px;
    top: 15px;
    left: 9px;
    transform: rotate(-45deg);
    transform-origin: right center;
}

.btn__icon::after {
    width: 8px;
    height: 8px;
    top: 10px;
    left: 12px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    background: transparent;
    transform: rotate(45deg);
}

.btn:hover .btn__icon,
.nav__cta:hover .btn__icon {
    transform: translateX(4px) translateY(-2px);
}

.btn--primary,
.nav__cta,
.mobile-cta__link {
    background: linear-gradient(135deg, #f0ffb6 0%, #d6ff57 54%, #b8ea17 100%);
    color: #23310b;
    border: 1px solid rgba(91, 127, 0, 0.18);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover,
.nav__cta:hover,
.mobile-cta__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px rgba(var(--color-accent-rgb), 0.24);
}

.btn--secondary,
.device__cta {
    background: rgba(var(--color-accent-rgb), 0.08);
    border: 1px solid var(--color-border-strong);
    color: var(--color-text);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.btn--secondary:hover,
.device__cta:hover {
    transform: translateY(-3px);
    background: rgba(var(--color-accent-rgb), 0.1);
    border-color: rgba(var(--color-accent-rgb), 0.35);
}

.header {
    position: sticky;
    top: 18px;
    z-index: 40;
    padding-bottom: 18px;
}

.header--compact .nav {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    min-height: 84px;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    background: rgba(11, 15, 16, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    transition: transform 0.6s var(--ease-standard), box-shadow 0.6s var(--ease-standard);
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    flex: 0 1 330px;
}

.nav__brand-mark {
    width: 52px;
    height: 52px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(var(--color-accent-rgb), 0.12);
    border: 1px solid rgba(var(--color-accent-rgb), 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav__brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.nav__brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.nav__brand-copy strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: -0.04em;
}

.nav__brand-copy span {
    color: var(--color-muted);
    font-size: 0.85rem;
    text-wrap: pretty;
}

.nav__panel {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    min-width: 0;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    min-width: 0;
}

.nav__link {
    position: relative;
    padding: 0.72rem 0.92rem;
    border-radius: 999px;
    color: var(--color-muted);
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    transition:
        color 0.45s var(--ease-standard),
        background-color 0.45s var(--ease-standard),
        transform 0.45s var(--ease-standard);
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 10px;
    height: 2px;
    border-radius: 999px;
    background: rgba(var(--color-accent-rgb), 0.95);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.45s var(--ease-standard);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-text);
    background: rgba(var(--color-accent-rgb), 0.11);
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
}

.nav__toggle {
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(18, 24, 25, 0.94);
    cursor: pointer;
    flex-shrink: 0;
}

.nav__cta {
    flex-shrink: 0;
    white-space: nowrap;
}

.nav__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--color-accent-dark);
    border-radius: 999px;
    transition: transform 0.4s var(--ease-standard), opacity 0.4s var(--ease-standard);
}

.nav__toggle span + span {
    margin-top: 4px;
}

.nav--open .nav__toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav--open .nav__toggle span:nth-child(2) {
    opacity: 0;
}

.nav--open .nav__toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    padding: 14px 0 68px;
}

.hero__shell {
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.86fr);
    align-items: start;
    gap: clamp(1.4rem, 2.3vw, 2.75rem);
    padding: 26px;
}

.hero__content,
.hero__visual {
    position: relative;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    min-width: 0;
    max-width: 760px;
    padding-top: clamp(8px, 1.4vw, 18px);
    padding-right: clamp(0rem, 0.8vw, 0.7rem);
}

.hero__title {
    max-width: 9.3ch;
    font-size: clamp(2.4rem, 3.75vw, 4.05rem);
    text-wrap: pretty;
}

.hero__lead {
    max-width: 48ch;
    color: var(--color-muted);
    font-size: 1rem;
    text-wrap: pretty;
}

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

.hero__stat {
    padding: 1.15rem 1rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(24, 31, 33, 0.98), rgba(16, 22, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: -0.04em;
}

.hero__stat span {
    color: var(--color-muted);
    font-size: 0.92rem;
}

.hero__list,
.check-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.hero__list li,
.check-list li {
    position: relative;
    padding-left: 1.9rem;
    color: var(--color-text);
    font-weight: 600;
}

.hero__list li::before,
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
    box-shadow: 0 0 0 4px rgba(var(--color-accent-rgb), 0.14);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding-top: 0.4rem;
}

.hero__microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero__microcopy span {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(var(--color-accent-rgb), 0.14);
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero__visual {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-width: 0;
    padding-top: clamp(8px, 1.4vw, 18px);
}

.hero-showcase {
    position: relative;
    display: grid;
    gap: 0.85rem;
    width: min(100%, 432px);
    margin-left: auto;
    padding: 0;
}

.mentor-spotlight {
    overflow: hidden;
    width: 100%;
    margin-right: 0;
    z-index: 1;
}

.mentor-spotlight__core {
    display: grid;
    gap: 0.95rem;
    padding: 16px;
}

.mentor-spotlight__media {
    position: relative;
}

.mentor-spotlight__image {
    width: 100%;
    height: auto;
    min-height: 360px;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid rgba(var(--color-accent-rgb), 0.24);
    box-shadow: 0 22px 42px rgba(12, 19, 17, 0.28);
}

.mentor-spotlight__badge {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 0.8rem 0.95rem;
    border-radius: 18px;
    background: rgba(12, 17, 18, 0.84);
    border: 1px solid rgba(var(--color-accent-rgb), 0.24);
    color: #e6f0de;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
    backdrop-filter: blur(14px);
}

.mentor-spotlight__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
    min-width: 0;
}

.mentor-spotlight__eyebrow {
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(var(--color-accent-rgb), 0.12);
    border: 1px solid rgba(var(--color-accent-rgb), 0.24);
    color: var(--color-accent-dark);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mentor-spotlight__copy h3 {
    max-width: 12ch;
    font-size: clamp(1.34rem, 2vw, 1.8rem);
}

.mentor-spotlight__copy p {
    color: var(--color-muted);
    max-width: 32ch;
    font-size: 0.96rem;
}

.mentor-spotlight__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.mentor-spotlight__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(var(--color-accent-rgb), 0.16);
    color: #dbe5d8;
    font-size: 0.8rem;
    font-weight: 700;
}

.device-badge {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(24, 31, 33, 0.98), rgba(16, 22, 24, 0.98)),
        rgba(13, 19, 19, 0.94);
    border: 1px solid rgba(var(--color-accent-rgb), 0.18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
    color: #dbe3d8;
    font-weight: 700;
    z-index: 2;
}

.app-preview {
    position: relative;
    width: min(100%, 430px);
    margin-left: auto;
    transform: translateZ(0);
    box-shadow: var(--shadow-card);
}

.app-preview--compact {
    width: min(100%, 360px);
    margin-top: -0.1rem;
    z-index: 3;
}

.app-preview__frame {
    padding: 1.25rem;
    min-height: 100%;
}

.app-preview__demo-badge,
.app-pill,
.review-card__tag,
.result-card__label,
.step-card__number,
.program-card__number {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(var(--color-accent-rgb), 0.14);
    color: var(--color-accent-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-preview__demo-badge {
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: fit-content;
    background: rgba(193, 255, 5, 0.1);
    border: 1px solid rgba(193, 255, 5, 0.32);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-strong);
    box-shadow: 0 0 0 6px rgba(var(--color-accent-rgb), 0.16);
    animation: pulseDot 4.2s ease-in-out infinite;
}

.app-preview__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.app-preview__header h3 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
}

.app-preview__header p {
    color: var(--color-muted);
    font-size: 0.94rem;
}

.app-preview__avatar {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #2a3430, #212a26);
    border: 2px solid rgba(193, 255, 5, 0.55);
    box-shadow: 0 0 0 3px rgba(193, 255, 5, 0.12);
    color: #dcf9a0;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
}

.app-preview__profile-card {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(260px 110px at 100% -24px, rgba(var(--color-accent-rgb), 0.12), transparent 60%),
        linear-gradient(180deg, rgba(30, 39, 34, 0.98), rgba(23, 31, 29, 0.98));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.app-preview__profile-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.app-preview__label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: rgba(var(--color-accent-rgb), 0.12);
    border: 1px solid rgba(var(--color-accent-rgb), 0.24);
    color: #defd8f;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-preview__profile-head h4 {
    margin: 0.65rem 0 0.15rem;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.app-preview__profile-head p {
    color: #dbe5d9;
    font-size: 0.9rem;
    font-weight: 600;
}

.app-preview__profile-mark {
    min-width: 72px;
    min-height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #2a3430, #212a26);
    border: 2px solid rgba(var(--color-accent-rgb), 0.55);
    box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.12);
    color: #dcf9a0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
}

.app-preview__profile-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.9rem;
}

.app-mini-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(var(--color-accent-rgb), 0.13);
    border: 1px solid rgba(var(--color-accent-rgb), 0.28);
    color: #ebfdb6;
    font-size: 0.78rem;
    font-weight: 700;
}

.app-mini-pill--muted {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--color-muted);
}

.app-preview__welcome {
    padding: 1rem;
    border-radius: 24px;
    background:
        radial-gradient(420px 160px at 100% -52px, rgba(var(--color-accent-rgb), 0.18), transparent 60%),
        linear-gradient(180deg, rgba(33, 42, 28, 0.98), rgba(24, 32, 31, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.app-preview__welcome-top {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
}

.app-preview__welcome-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 255, 5, 0.12);
    border: 1px solid rgba(193, 255, 5, 0.3);
    box-shadow: 0 0 18px rgba(193, 255, 5, 0.08);
}

.app-preview__welcome-icon img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    filter: drop-shadow(0 4px 10px rgba(193, 255, 5, 0.28));
    animation: welcomeStickerFloat 3.1s ease-in-out infinite;
}

.app-preview__welcome strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.app-preview__welcome p,
.app-preview__insight p,
.metric-card span,
.miniapp__overview-copy p,
.program-card p,
.review-card__core p,
.contact__copy p:last-child,
.result-card__core p {
    color: var(--color-muted);
}

.app-preview__join {
    width: 100%;
    margin-top: 1rem;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, #b7f53d, var(--color-accent));
    color: #1f2608;
    font-size: 1rem;
    padding: 0.85rem 1rem;
    font-weight: 800;
    letter-spacing: 0.1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 0 rgba(193, 255, 5, 0.5),
        0 10px 28px rgba(161, 222, 18, 0.22);
    animation: joinPulse 1.9s ease-in-out infinite;
}

.app-preview__join::after {
    content: '';
    position: absolute;
    top: 0;
    left: -45%;
    width: 32%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    transform: skewX(-20deg);
    animation: joinShine 2.6s linear infinite;
}

.app-preview__meta,
.app-preview__progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.app-preview__meta {
    margin-top: 1rem;
}

.app-preview__progress-head {
    align-items: flex-start;
    min-height: 40px;
}

.app-preview__progress-head span:first-child {
    display: block;
    max-width: 21ch;
}

.app-preview__progress-head span:last-child {
    flex-shrink: 0;
}

.app-preview__duration {
    color: var(--color-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.progress {
    width: 100%;
    height: 10px;
    margin-top: 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-accent-strong), var(--color-accent));
    transition: width 0.75s var(--ease-standard);
}

.app-preview__insight {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.1rem;
    height: 164px;
    margin-top: 1rem;
    border-radius: 24px;
    background:
        radial-gradient(280px 90px at 100% -40px, rgba(var(--color-accent-rgb), 0.09), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
    border: 1px solid rgba(var(--color-accent-rgb), 0.22);
}

.app-preview__insight h3 {
    margin: 0 0 0.55rem;
    min-height: 2.35em;
    font-size: 1.1rem;
}

.app-preview__insight p {
    min-height: 4.5em;
}

.app-preview__kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.app-kpi {
    min-height: 82px;
    padding: 0.9rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(30, 39, 42, 0.98), rgba(22, 29, 32, 0.98));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.app-kpi span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.app-kpi strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.25;
}

.app-preview__todo {
    display: grid;
    grid-auto-rows: 1fr;
    gap: 0.75rem;
    margin: 1rem 0;
}

.app-preview__todo-item {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: start;
    min-height: 96px;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(193, 255, 5, 0.06), rgba(255, 255, 255, 0.02));
    color: var(--color-muted);
    transition:
        transform 0.45s var(--ease-standard),
        color 0.45s var(--ease-standard),
        border-color 0.45s var(--ease-standard),
        background-color 0.45s var(--ease-standard),
        box-shadow 0.45s var(--ease-standard);
}

.app-preview__todo-item span {
    width: 20px;
    height: 20px;
    margin-top: 0.1rem;
    border-radius: 50%;
    border: 1px solid rgba(193, 255, 5, 0.24);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 4px transparent;
    transition: background-color 0.45s var(--ease-standard), box-shadow 0.45s var(--ease-standard);
}

.app-preview__todo-copy strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--color-text);
    font-size: 0.88rem;
    letter-spacing: -0.01em;
}

.app-preview__todo-copy p {
    color: inherit;
    min-height: 2.9em;
    font-size: 0.84rem;
    line-height: 1.45;
}

.app-preview__todo-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 28px;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(205, 214, 200, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #cfd7cb;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-preview__todo-item.is-done {
    color: var(--color-text);
    transform: translateX(2px);
    border-color: rgba(126, 233, 109, 0.32);
    background: linear-gradient(180deg, rgba(160, 245, 142, 0.16), rgba(255, 255, 255, 0.03));
}

.app-preview__todo-item.is-done span {
    background: var(--color-accent);
    box-shadow: inset 0 0 0 4px rgba(15, 19, 20, 0.95);
}

.app-preview__todo-item.is-done .app-preview__todo-status {
    border-color: rgba(126, 233, 109, 0.42);
    background: linear-gradient(180deg, rgba(161, 245, 142, 0.96), rgba(124, 227, 106, 0.94));
    color: #0f3a0f;
}

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

.app-preview__stats-card {
    padding: 0.9rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(30, 39, 42, 0.98), rgba(22, 29, 32, 0.98));
}

.app-preview__stats-card--accent {
    border-color: rgba(var(--color-accent-rgb), 0.22);
    background:
        radial-gradient(260px 80px at 100% -28px, rgba(var(--color-accent-rgb), 0.12), transparent 60%),
        linear-gradient(180deg, rgba(29, 42, 27, 0.97), rgba(24, 35, 31, 0.97));
}

.app-preview__stats-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.app-preview__stats-head strong {
    font-size: 0.92rem;
}

.app-preview__stats-head span {
    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

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

.app-preview__stat-metric {
    padding: 0.7rem 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.035);
}

.app-preview__stat-metric span {
    display: block;
    color: var(--color-muted);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.app-preview__stat-metric strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1rem;
}

.app-preview__dock {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(17, 23, 24, 0.9), rgba(10, 15, 16, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.app-preview__dock-item {
    position: relative;
    padding: 0.65rem 0.35rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(30, 39, 42, 0.96), rgba(22, 29, 32, 0.96));
    color: var(--color-muted);
    font-size: 0.76rem;
    text-align: center;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.app-preview__dock-item::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 7px;
    height: 3px;
    border-radius: 999px;
    background: rgba(var(--color-accent-rgb), 0.88);
    transform: scaleX(0);
    opacity: 0;
    transition: transform 0.24s var(--ease-standard), opacity 0.18s ease;
}

.app-preview__dock-item.is-active {
    color: #1f2608;
    background: linear-gradient(90deg, #b7f53d, var(--color-accent));
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(161, 222, 18, 0.18);
}

.app-preview__dock-item.is-active::after {
    transform: scaleX(1);
    opacity: 1;
}

.floating-note {
    position: absolute;
    max-width: 220px;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(13, 19, 19, 0.92);
    border: 1px solid rgba(var(--color-accent-rgb), 0.14);
    box-shadow: var(--shadow-soft);
    color: var(--color-text);
    font-weight: 700;
    animation-duration: 5.2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floating-note--left {
    left: -16px;
    bottom: 42px;
    animation-name: floatLeft;
}

.floating-note--right {
    right: -18px;
    top: 108px;
    animation-name: floatRight;
}

.trust {
    padding-bottom: 26px;
}

.trust__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 1rem;
}

.trust__card {
    padding: 1.5rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(24, 31, 33, 0.96), rgba(16, 22, 24, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.trust__card:first-child {
    grid-row: span 2;
    min-height: 100%;
}

.trust__card:nth-child(2) {
    transform: translateY(12px);
}

.trust__card:nth-child(4) {
    grid-column: 2 / 4;
}

.trust__card span {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--color-accent-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trust__card strong {
    display: block;
    margin-bottom: 0.7rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

.trust__card p {
    color: var(--color-muted);
    font-size: 0.96rem;
}

.miniapp__layout,
.about__grid,
.contact__grid {
    display: grid;
    gap: 1.2rem;
}

.miniapp__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    align-items: start;
    grid-template-areas:
        "overview preview"
        "cards preview";
    margin-bottom: 1rem;
}

.miniapp__overview {
    grid-area: overview;
}

.miniapp__overview-core {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
    gap: 1.25rem;
    padding: 28px;
}

.miniapp__overview-copy h3,
.about__copy h2,
.program__banner-core h3,
.contact__copy h2 {
    font-size: clamp(1.55rem, 2.35vw, 2.45rem);
    margin: 1rem 0 1.1rem;
}

.miniapp__overview-meta,
.about__aside {
    display: grid;
    gap: 1rem;
}

.miniapp__aside {
    display: grid;
    gap: 1rem;
    grid-area: preview;
    align-self: stretch;
}

.miniapp__preview {
    width: 100%;
    margin-left: 0;
}

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

.metric-card,
.result-card__core,
.info-card__core,
.step-card__core,
.program-card__core,
.review-card__core {
    padding: 1.4rem;
}

.metric-card {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(24, 31, 33, 0.96), rgba(16, 22, 24, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-heading);
    font-size: 1.02rem;
    letter-spacing: -0.03em;
}

.miniapp__cards,
.steps__grid,
.program__grid,
.reviews__grid,
.faq__grid {
    display: grid;
    gap: 1rem;
}

.miniapp__cards {
    grid-area: cards;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(0, 1fr);
    align-self: start;
    margin-top: 0;
}

.info-card__core {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.9rem;
    min-height: 100%;
}

.miniapp__cards .info-card {
    min-height: 188px;
}

.info-card__icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(var(--color-accent-rgb), 0.14);
    border: 1px solid rgba(var(--color-accent-rgb), 0.28);
}

.info-card__icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.info-card h3,
.step-card h3,
.program-card h3 {
    font-size: 1.24rem;
    letter-spacing: -0.03em;
}

.info-card p,
.step-card p,
.program-card li,
.contact__panel {
    color: var(--color-muted);
}

.steps__grid {
    margin-top: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
}

.step-card__core,
.program-card__core,
.review-card__core,
.result-card__core {
    min-height: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(24, 31, 33, 0.98), rgba(16, 22, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-card__number,
.program-card__number,
.review-card__tag,
.result-card__label {
    margin-bottom: 1rem;
}

.step-card {
    height: 100%;
}

.about__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.74fr);
    align-items: start;
}

.about__story-core {
    display: grid;
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 1.4rem;
    padding: 28px;
}

.about__media {
    position: relative;
}

.about__image {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid rgba(var(--color-accent-rgb), 0.3);
    box-shadow: 0 18px 40px rgba(34, 47, 15, 0.12);
}

.about__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about__copy h2 {
    max-width: 10ch;
}

.about__copy p {
    max-width: 54ch;
}

.about__copy p + p {
    margin-top: 1rem;
}

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

.program-card__core ul {
    margin-top: 1rem;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.65rem;
}

.program__banner {
    margin-top: 1rem;
}

.program__banner-core {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 28px;
}

.program__banner-core > div {
    min-width: 0;
    flex: 1 1 auto;
}

.reviews__grid {
    grid-template-columns: 1.1fr 0.9fr 1fr;
}

.review-card__core {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card:first-child {
    grid-row: span 2;
}

.review-card:nth-child(2) {
    margin-top: 42px;
}

.faq__grid {
    grid-template-columns: 1.15fr 0.85fr 1fr;
}

.faq-card__core {
    padding: 1.5rem;
    min-height: 100%;
}

.faq-card__core h3 {
    margin-bottom: 0.85rem;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.faq-card__core p {
    color: var(--color-muted);
}

.review-card__author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-card__author strong {
    font-size: 1rem;
}

.review-card__author span {
    color: var(--color-muted);
    font-size: 0.92rem;
}

.contact__shell {
    overflow: hidden;
}

.contact__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    padding: 28px;
}

.contact__panel {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.check-list--compact {
    gap: 0.75rem;
}

.contact__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer {
    padding: 0 0 118px;
    transition:
        filter 0.35s var(--ease-standard),
        opacity 0.35s var(--ease-standard);
}

.footer .container {
    padding: 2rem 0 0;
    border-top: 1px solid rgba(91, 127, 0, 0.14);
}

.footer__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

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

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
}

.footer__links a {
    color: var(--color-muted);
    font-weight: 700;
    transition: color 0.35s var(--ease-standard), transform 0.35s var(--ease-standard);
}

.footer__links a:hover {
    color: var(--color-text);
    transform: translateY(-1px);
}

.footer__legal {
    margin-top: 1rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.mobile-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem 0.9rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(17, 23, 24, 0.95), rgba(10, 15, 16, 0.98));
    color: #f6ffe4;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    z-index: 45;
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition:
        transform 0.45s var(--ease-standard),
        opacity 0.45s var(--ease-standard),
        visibility 0.45s var(--ease-standard);
}

.mobile-cta span {
    font-weight: 700;
}

.mobile-cta__link {
    min-height: 48px;
    padding: 0.7rem 1rem;
}

body.body-scrolled .mobile-cta {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

body.menu-open .mobile-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
}

body.menu-open .main,
body.menu-open .footer {
    filter: blur(2px);
    opacity: 0.26;
    pointer-events: none;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.48s var(--ease-standard),
        transform 0.48s var(--ease-standard);
}

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

.legal-page {
    min-height: 100dvh;
}

.legal {
    padding: 120px 0 100px;
}

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

.legal__core {
    padding: 32px;
}

.legal__back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    color: var(--color-accent-dark);
    font-weight: 800;
}

.legal__back::before {
    content: '';
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.legal__core h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 1.1rem;
}

.legal__lead {
    max-width: 60ch;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.legal__section + .legal__section {
    margin-top: 1.7rem;
}

.legal__section h2 {
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
}

.legal__section p,
.legal__section li {
    color: var(--color-muted);
}

.legal__section ul {
    padding-left: 1.2rem;
    display: grid;
    gap: 0.55rem;
}

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

@keyframes floatRight {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, 10px, 0);
    }
}

@keyframes pulseDot {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--color-accent-rgb), 0.18);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(var(--color-accent-rgb), 0);
    }
}

@keyframes welcomeStickerFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -5px, 0);
    }
}

@keyframes joinPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(var(--color-accent-rgb), 0.24),
            0 10px 28px rgba(161, 222, 18, 0.22);
    }
    50% {
        box-shadow:
            0 0 0 10px rgba(var(--color-accent-rgb), 0),
            0 14px 30px rgba(161, 222, 18, 0.28);
    }
}

@keyframes joinShine {
    0% {
        left: -45%;
    }
    100% {
        left: 120%;
    }
}
