:root {
    --bg: #070b16;
    --bg-2: #0b1020;
    --surface: #11182a;
    --surface-2: #151e33;
    --text: #f6f8ff;
    --muted: #9ba7bd;
    --line: rgba(255, 255, 255, .09);
    --primary: #7c5cff;
    --primary-2: #a58cff;
    --cyan: #40d9c4;
    --yellow: #ffd566;
    --shadow: 0 30px 80px rgba(0, 0, 0, .35);
    --radius: 24px;
    --container: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    overflow-x: hidden
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 65%);
    z-index: -1
}

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

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

button {
    font: inherit
}

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

.section {
    padding: 120px 0
}

.announcement {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px 20px;
    background: linear-gradient(90deg, #6b50e8, #8b68ff);
    font-size: 13px;
    font-weight: 600;
    text-align: center
}

.announcement p {
    margin: 0
}

.announcement__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bfffee;
    box-shadow: 0 0 0 6px rgba(191, 255, 238, .13)
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 11, 22, .72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: .3s
}

.header.scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18)
}

.header__inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.brand__mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center
}

.brand__mark svg {
    width: 100%;
    fill: var(--text)
}

.brand__mark .accent {
    fill: var(--primary-2)
}

.brand__text {
    font: 800 24px/1 "Manrope"
}

.nav {
    display: flex;
    gap: 34px;
    color: #c6cede;
    font-size: 14px;
    font-weight: 600
}

.nav a {
    transition: .25s
}

.nav a:hover {
    color: #fff
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer
}

.menu-toggle span {
    height: 2px;
    background: #fff;
    border-radius: 2px;
    display: block;
    margin: 4px 0;
    transition: .25s
}

.mobile-menu {
    display: none
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 14px 20px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .25s, box-shadow .25s, background .25s
}

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

.button--small {
    padding: 10px 16px;
    font-size: 14px
}

.button--large {
    min-height: 58px;
    padding: 14px 24px
}

.button--primary {
    background: linear-gradient(135deg, var(--primary), #6542ef);
    box-shadow: 0 16px 35px rgba(124, 92, 255, .28)
}

.button--primary:hover {
    box-shadow: 0 20px 45px rgba(124, 92, 255, .38)
}

.button--secondary,
.button--ghost {
    background: rgba(255, 255, 255, .045);
    border-color: var(--line)
}

.button--secondary:hover,
.button--ghost:hover {
    background: rgba(255, 255, 255, .08)
}

.button--light {
    background: #fff;
    color: #11162a
}

.button svg {
    width: 24px;
    fill: currentColor
}

.button span {
    display: grid;
    text-align: left;
    line-height: 1.1
}

.button small {
    font-size: 10px;
    font-weight: 600;
    opacity: .7;
    margin-bottom: 3px
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding-top: 92px;
    overflow: hidden
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 70px
}

.hero__content {
    position: relative;
    z-index: 2
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c9bfff;
    font-weight: 800
}

.hero .eyebrow {
    padding: 8px 12px;
    border: 1px solid rgba(165, 140, 255, .26);
    background: rgba(124, 92, 255, .09);
    border-radius: 999px
}

.hero h1,
.section-heading h2,
.ai-section h2,
.community h2,
.beta-card h2,
.final-cta h2,
.faq h2 {
    font-family: "Manrope";
    letter-spacing: -.045em;
    line-height: 1.08;
    margin: 22px 0
}

.hero h1 {
    font-size: clamp(46px, 5.3vw, 76px);
    max-width: 720px
}

.hero h1 span,
.section-heading h2 span,
.ai-section h2 span,
.community h2 span {
    background: linear-gradient(100deg, #9c82ff, #6ce8d6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero__lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 630px
}

.hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 34px;
    flex-wrap: wrap
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px
}

.hero__trust p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35;
    margin: 0;
    text-align: left;
}

.hero__trust strong {
    color: #fff
}

.avatars {
    display: flex
}

.avatars span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 3px solid var(--bg);
    margin-left: -8px;
    background: linear-gradient(135deg, #7585ff, #9c62db);
    font-size: 10px;
    font-weight: 800
}

.avatars span:first-child {
    margin-left: 0;
    background: linear-gradient(135deg, #fc8b6b, #ffcf75)
}

.avatars span:nth-child(2) {
    background: linear-gradient(135deg, #4bd5c3, #3a8de4)
}

.avatars span:nth-child(3) {
    background: linear-gradient(135deg, #ff81a8, #9a7bff)
}

.avatars span:last-child {
    width: 45px;
    border-radius: 20px;
    background: #242c43
}

.hero__visual {
    position: relative;
    min-height: 640px;
    display: grid;
    place-items: center
}

.phone {
    position: relative;
    z-index: 2;
    width: 320px;
    transform: rotate(2deg);
    filter: drop-shadow(0 40px 70px rgba(0, 0, 0, .55))
}

.phone__frame {
    padding: 9px;
    background: linear-gradient(145deg, #37415b, #0e1424 40%, #59657d);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .25)
}

.phone__screen {
    height: 648px;
    border-radius: 42px;
    overflow: hidden;
    background: #f7f8fc;
    color: #151a2b;
    padding: 26px 18px 12px;
    position: relative
}

.phone__speaker {
    position: absolute;
    z-index: 3;
    width: 105px;
    height: 28px;
    border-radius: 0 0 18px 18px;
    background: #111827;
    top: 9px;
    left: 50%;
    transform: translateX(-50%)
}

.appbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 9px
}

.appbar div {
    display: grid
}

.appbar small {
    font-size: 10px;
    color: #7c879b
}

.appbar strong {
    font-size: 15px
}

.appbar__avatar,
.avatar {
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 800
}

.appbar__avatar {
    width: 36px;
    height: 36px;
    color: white;
    background: linear-gradient(135deg, #7c5cff, #40d9c4)
}

.search {
    background: #e9edf4;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 10px;
    color: #8893a7;
    margin: 16px 0
}

.search span {
    font-size: 17px;
    margin-right: 7px
}

.continue-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 14px;
    background: linear-gradient(135deg, #1c2140, #292654);
    padding: 14px;
    border-radius: 18px;
    color: white
}

.book-cover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, .3);
    border-radius: 4px
}

.book-cover--main {
    height: 124px;
    background: linear-gradient(#d5dedc, #e8e3d8 48%, #293c4c 49%);
    display: grid;
    align-content: center;
    text-align: center;
    color: #17252d;
    padding: 6px
}

.book-cover--main span {
    font-family: serif;
    font-size: 38px;
    line-height: .8
}

.book-cover--main b {
    font-size: 10px;
    letter-spacing: .15em
}

.book-cover--main small {
    font-size: 5px
}

.continue-card__content small {
    font-size: 7px;
    letter-spacing: .12em;
    color: #9df0df
}

.continue-card__content h3 {
    font-size: 13px;
    line-height: 1.2;
    margin: 8px 0 2px
}

.continue-card__content p {
    font-size: 9px;
    color: #bac2d1;
    margin: 0 0 16px
}

.progress {
    height: 4px;
    background: rgba(255, 255, 255, .15);
    border-radius: 4px
}

.progress span {
    display: block;
    width: 62%;
    height: 100%;
    background: #75ddcb;
    border-radius: 4px
}

.progress__meta {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    margin-top: 5px;
    color: #bac2d1
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0 10px
}

.section-head h4 {
    font-size: 12px;
    margin: 0
}

.section-head span {
    font-size: 8px;
    color: #7659f0
}

.books-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px
}

.books-row>div {
    min-width: 0
}

.books-row strong,
.books-row small {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.books-row strong {
    font-size: 8px;
    margin-top: 5px
}

.books-row small {
    font-size: 6px;
    color: #8993a5
}

.mini-book {
    height: 94px;
    border-radius: 4px;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: "Manrope";
    font-size: 8px;
    font-weight: 800;
    padding: 4px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, .18)
}

.mini-book--one {
    background: linear-gradient(150deg, #e9ad48, #813723);
    color: #24120d
}

.mini-book--two {
    background: linear-gradient(150deg, #26324b, #506180);
    color: #fff
}

.mini-book--three {
    background: linear-gradient(150deg, #d8e7e2, #f9bfc9);
    color: #3e4c4b
}

.tabbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    border-top: 1px solid #e6e9ef;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 14px;
    color: #929caf
}

.tabbar span {
    display: grid;
    place-items: center;
    line-height: 1
}

.tabbar small {
    font-size: 6px;
    margin-top: 4px
}

.tabbar .active {
    color: #6d4be7
}

.tabbar__add {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #7150e6;
    color: #fff;
    font-size: 24px;
    transform: translateY(-12px);
    box-shadow: 0 8px 18px rgba(113, 80, 230, .35)
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(17, 24, 42, .88);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    padding: 13px 16px;
    border-radius: 16px
}

.floating-card--top {
    top: 82px;
    right: 3px
}

.floating-card--bottom {
    bottom: 82px;
    left: -15px
}

.floating-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(124, 92, 255, .18);
    color: #bfaeff
}

.floating-card__icon--yellow {
    background: rgba(255, 213, 102, .15)
}

.floating-card div {
    display: grid
}

.floating-card strong {
    font-size: 12px
}

.floating-card small {
    font-size: 9px;
    color: var(--muted)
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: .5
}

.hero__glow--one {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(124, 92, 255, .28), transparent 70%);
    top: 60px;
    right: -130px
}

.hero__glow--two {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(64, 217, 196, .16), transparent 70%);
    bottom: -130px;
    left: -180px
}

.metrics {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .018)
}

.metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 34px 0
}

.metrics__grid div {
    display: grid;
    text-align: center;
    border-right: 1px solid var(--line)
}

.metrics__grid div:last-child {
    border: 0
}

.metrics strong {
    font: 800 27px "Manrope"
}

.metrics span {
    font-size: 12px;
    color: var(--muted)
}

.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px
}

.section-heading--left {
    text-align: left;
    margin: 0
}

.section-heading h2,
.ai-section h2,
.community h2,
.faq h2 {
    font-size: clamp(36px, 4vw, 54px)
}

.section-heading p,
.ai-section__content>p,
.community__content>p,
.faq .section-heading p {
    font-size: 17px;
    color: var(--muted)
}

.features {
    background: linear-gradient(180deg, var(--bg), #0a1020)
}

.features__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 20px
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    border: 1px solid var(--line);
    border-radius: var(--radius)
}

.feature-card--large {
    grid-row: span 2;
    min-height: 740px;
    display: flex;
    flex-direction: column
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(124, 92, 255, .14);
    color: #bdaeff;
    font-size: 22px;
    margin-bottom: 26px
}

.feature-card>span,
.feature-card__copy>span,
.giveaway-preview small {
    font-size: 10px;
    letter-spacing: .14em;
    color: #ad9cff;
    font-weight: 800
}

.feature-card h3 {
    font: 700 27px/1.2 "Manrope";
    letter-spacing: -.03em;
    margin: 10px 0
}

.feature-card p {
    color: var(--muted);
    font-size: 15px
}

.social-preview {
    margin-top: auto;
    padding-top: 35px
}

.post {
    width: 92%;
    margin-left: auto;
    background: #f8f9fc;
    color: #182033;
    border-radius: 18px;
    padding: 19px;
    box-shadow: 0 26px 55px rgba(0, 0, 0, .32);
    transform: rotate(-2deg)
}

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

.post__head div {
    display: grid
}

.post__head b {
    margin-left: auto;
    color: #8b95a6
}

.post__head strong {
    font-size: 11px
}

.post__head small {
    font-size: 8px;
    color: #8b95a6
}

.avatar {
    width: 34px;
    height: 34px;
    color: white;
    font-size: 12px
}

.avatar--orange {
    background: linear-gradient(135deg, #ff996e, #f65d70)
}

.avatar--purple {
    background: linear-gradient(135deg, #8d6cff, #d07bff)
}

.avatar--blue {
    background: linear-gradient(135deg, #4d8cff, #43d1c3)
}

.post>p {
    color: #4d586c;
    font-size: 11px;
    margin: 14px 0 5px
}

.rating {
    color: #f3ac2d;
    font-size: 11px;
    letter-spacing: 2px
}

.post__book {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    background: #edf0f5;
    padding: 10px;
    border-radius: 12px;
    margin-top: 12px
}

.post__book .mini-book {
    height: 72px
}

.post__book div {
    display: grid
}

.post__book strong {
    font-size: 11px
}

.post__book small {
    font-size: 8px;
    color: #7a8598
}

.post__book span {
    font-size: 8px;
    color: #6c7585;
    margin-top: 9px
}

.shelf-preview {
    display: grid;
    gap: 10px;
    margin-top: 28px
}

.shelf-preview span {
    display: flex;
    justify-content: space-between;
    padding: 14px 15px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 12px
}

.shelf-preview b {
    color: #b5a6ff
}

.giveaway-preview {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 213, 102, .12), rgba(124, 92, 255, .08));
    border: 1px solid rgba(255, 213, 102, .16);
    border-radius: 16px
}

.gift-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffd566, #f5a34f);
    display: grid;
    place-items: center;
    color: #3e2f1c;
    font-size: 24px
}

.giveaway-preview div:last-child {
    display: grid
}

.giveaway-preview strong {
    font-size: 14px
}

.giveaway-preview span {
    font-size: 10px;
    color: var(--muted)
}

.ai-section {
    position: relative;
    background: #0a1020
}

.ai-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.ai-orbit {
    position: relative;
    min-height: 580px;
    display: grid;
    place-items: center
}

.ai-core {
    position: relative;
    z-index: 3;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    align-content: center;
    background: radial-gradient(circle at 35% 25%, #ad99ff, #6844e8 55%, #3923a7);
    box-shadow: 0 0 0 18px rgba(124, 92, 255, .08), 0 0 110px rgba(124, 92, 255, .48)
}

.ai-core span {
    font-size: 36px
}

.ai-core strong {
    font: 800 32px "Manrope"
}

.ai-core small {
    font-size: 8px;
    letter-spacing: .15em
}

.orb {
    position: absolute;
    border: 1px solid rgba(160, 140, 255, .18);
    border-radius: 50%
}

.orb::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #78e4d5;
    border-radius: 50%;
    box-shadow: 0 0 20px #78e4d5
}

.orb--1 {
    width: 310px;
    height: 310px
}

.orb--1::before {
    top: 18px;
    left: 65px
}

.orb--2 {
    width: 430px;
    height: 430px
}

.orb--2::before {
    right: 35px;
    bottom: 84px;
    background: #ffd566
}

.orb--3 {
    width: 540px;
    height: 540px
}

.orb--3::before {
    left: 45px;
    bottom: 120px;
    background: #c79bff
}

.ai-message {
    position: absolute;
    z-index: 5;
    width: 235px;
    padding: 15px 17px;
    background: rgba(18, 26, 46, .9);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px)
}

.ai-message small {
    font-size: 9px;
    color: #a799ff;
    font-weight: 700
}

.ai-message p {
    font-size: 11px;
    margin: 5px 0;
    color: #dce1ec
}

.ai-message--one {
    top: 48px;
    left: 0
}

.ai-message--two {
    right: -10px;
    bottom: 48px
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: grid;
    gap: 18px
}

.check-list li {
    display: flex;
    gap: 14px
}

.check-list li>span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(64, 217, 196, .12);
    color: #62e1ce
}

.check-list strong {
    font-size: 15px
}

.check-list p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px
}

.community {
    background: linear-gradient(180deg, #0a1020, var(--bg))
}

.community__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center
}

.community__stats {
    display: flex;
    gap: 30px;
    margin-top: 34px
}

.community__stats div {
    display: grid
}

.community__stats strong {
    font: 800 26px "Manrope"
}

.community__stats span {
    font-size: 11px;
    color: var(--muted)
}

.testimonial-stack {
    display: grid;
    gap: 18px
}

.testimonial {
    padding: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    border: 1px solid var(--line);
    border-radius: 20px
}

.testimonial:nth-child(2) {
    transform: translateX(45px)
}

.testimonial__head {
    display: flex;
    align-items: center;
    gap: 12px
}

.testimonial__head div {
    display: grid
}

.testimonial__head strong {
    font-size: 13px
}

.testimonial__head small {
    font-size: 10px;
    color: var(--muted)
}

.testimonial__head>span:last-child {
    margin-left: auto;
    color: #ffd566;
    font-size: 10px;
    letter-spacing: 1px
}

.testimonial p {
    color: #c7cfdd;
    font-size: 14px;
    margin: 18px 0 0
}

.beta-section {
    padding-top: 30px
}

.beta-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px 38px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(124, 92, 255, .15), rgba(64, 217, 196, .08));
    border: 1px solid rgba(165, 140, 255, .22)
}

.beta-card__badge {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #7d5df6, #4ed6c3);
    font: 800 15px "Manrope";
    transform: rotate(-6deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .23)
}

.beta-card h2 {
    font-size: 28px;
    margin: 7px 0
}

.beta-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0
}

.faq__grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px
}

.accordion {
    display: grid;
    gap: 12px
}

.accordion details {
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0 20px
}

.accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 19px 0;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    gap: 15px
}

.accordion summary::-webkit-details-marker {
    display: none
}

.accordion summary span {
    font-size: 24px;
    font-weight: 400;
    color: #a899ff;
    transition: .25s
}

.accordion details[open] summary span {
    transform: rotate(45deg)
}

.accordion p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    padding: 0 0 20px
}

.final-cta {
    padding-top: 50px
}

.final-cta__card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 30px;
    border-radius: 32px;
    background: linear-gradient(135deg, #6c49e8, #4d31c5);
    box-shadow: 0 40px 90px rgba(61, 39, 161, .35)
}

.final-cta__card>* {
    position: relative;
    z-index: 2
}

.final-cta__card h2 {
    max-width: 780px;
    margin: 18px auto;
    font-size: clamp(38px, 5vw, 60px)
}

.final-cta__card p {
    color: #ded8ff;
    max-width: 640px;
    margin: 0 auto 28px
}

.final-cta__card>small {
    display: block;
    margin-top: 14px;
    color: #cfc5ff
}

.final-cta__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 238, 213, .35), transparent 65%);
    top: -350px;
    right: -130px
}

.footer {
    padding: 70px 0 24px;
    border-top: 1px solid var(--line);
    background: #060913
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px
}

.footer__brand p {
    color: var(--muted);
    font-size: 13px;
    max-width: 340px
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px
}

.footer__links div {
    display: grid;
    align-content: start;
    gap: 10px
}

.footer__links strong {
    font-size: 12px;
    margin-bottom: 6px
}

.footer__links a {
    font-size: 12px;
    color: var(--muted)
}

.footer__links a:hover {
    color: #fff
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    margin-top: 50px;
    padding-top: 22px
}

.footer__bottom p {
    font-size: 11px;
    color: var(--muted)
}

.social-links {
    display: flex;
    gap: 8px
}

.social-links a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 10px;
    color: var(--muted)
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 120px);
    z-index: 100;
    padding: 13px 18px;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .3);
    opacity: 0;
    transition: .35s
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0)
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal--delay {
    transition-delay: .16s
}

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

@media(max-width:1000px) {

    .nav,
    .header__cta {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .mobile-menu {
        position: absolute;
        top: 76px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 6px;
        padding: 16px;
        background: rgba(14, 20, 36, .98);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: .25s
    }

    .mobile-menu.open {
        transform: none;
        opacity: 1;
        visibility: visible
    }

    .mobile-menu>a:not(.button) {
        padding: 11px 12px;
        color: #d4d9e5
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero__content {
        text-align: center
    }

    .hero__lead {
        margin-inline: auto
    }

    .hero__actions,
    .hero__trust {
        justify-content: center
    }

    .hero__visual {
        min-height: 660px
    }

    .features__grid {
        grid-template-columns: 1fr
    }

    .feature-card--large {
        min-height: 650px
    }

    .ai-section__grid,
    .community__grid,
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .ai-section__content,
    .community__content,
    .faq .section-heading {
        text-align: center
    }

    .check-list {
        text-align: left;
        max-width: 620px;
        margin-inline: auto
    }

    .community__stats {
        justify-content: center
    }

    .faq .section-heading {
        margin-inline: auto
    }

    .beta-card {
        grid-template-columns: auto 1fr
    }

    .beta-card .button {
        grid-column: 1/-1
    }

    .testimonial:nth-child(2) {
        transform: none
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 45px
    }
}

@media(max-width:700px) {
    .container {
        width: min(calc(100% - 28px), var(--container))
    }

    .section {
        padding: 82px 0
    }

    .announcement {
        font-size: 11px
    }

    .header__inner {
        height: 66px
    }

    .mobile-menu {
        top: 66px
    }

    .brand__text {
        font-size: 21px
    }

    .hero {
        padding-top: 58px
    }

    .hero h1 {
        font-size: 43px
    }

    .hero__lead {
        font-size: 16px
    }

    .hero__actions {
        display: grid
    }

    .hero__actions .button {
        width: 100%
    }

    .hero__trust {
        align-items: flex-start
    }

    .hero__visual {
        min-height: 590px;
        transform: scale(.88);
        margin-inline: -22px
    }

    .phone {
        width: 300px
    }

    .phone__screen {
        height: 610px
    }

    .floating-card--top {
        right: -6px
    }

    .floating-card--bottom {
        left: -5px
    }

    .metrics__grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 0
    }

    .metrics__grid div {
        padding: 20px 6px;
        border-bottom: 1px solid var(--line)
    }

    .metrics__grid div:nth-child(2) {
        border-right: 0
    }

    .metrics__grid div:nth-child(3),
    .metrics__grid div:nth-child(4) {
        border-bottom: 0
    }

    .features__grid {
        gap: 14px
    }

    .feature-card,
    .feature-card--large {
        min-height: auto;
        padding: 25px
    }

    .social-preview {
        margin-top: 25px
    }

    .post {
        width: 100%;
        transform: none
    }

    .section-heading {
        margin-bottom: 38px
    }

    .section-heading h2,
    .ai-section h2,
    .community h2,
    .faq h2 {
        font-size: 35px
    }

    .ai-orbit {
        min-height: 490px;
        transform: scale(.78);
        margin-inline: -55px
    }

    .ai-message--one {
        left: -10px
    }

    .ai-message--two {
        right: -5px
    }

    .community__stats {
        gap: 16px;
        justify-content: space-between
    }

    .community__stats strong {
        font-size: 22px
    }

    .testimonial {
        padding: 21px
    }

    .beta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 22px
    }

    .beta-card__badge {
        margin: auto
    }

    .faq__grid {
        gap: 35px
    }

    .final-cta__card {
        padding: 60px 20px;
        border-radius: 25px
    }

    .final-cta__card h2 {
        font-size: 38px
    }

    .footer__links {
        gap: 25px
    }

    .footer__bottom {
        align-items: flex-start;
        gap: 20px
    }

    .toast {
        width: calc(100% - 28px);
        text-align: center
    }

    .reveal--delay {
        transition-delay: 0s
    }
}

@media(max-width:390px) {
    .hero h1 {
        font-size: 38px
    }

    .hero__visual {
        transform: scale(.8);
        margin-top: -35px;
        margin-bottom: -40px
    }

    .ai-orbit {
        transform: scale(.7);
        margin-top: -45px;
        margin-bottom: -50px
    }

    .community__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr)
    }

    .footer__links {
        grid-template-columns: 1fr
    }

    .footer__bottom {
        display: grid
    }
}