:root {
    --ink: #152548;
    --blue: #1262df;
    --royal: #1048bd;
    --soft-blue: #eef5ff;
    --cream: #fffaf0;
    --yellow: #ffcc45;
    --pink: #ff7d9b;
    --green: #3bbf8a;
    --line: #dce4f1;
    --muted: #64718b;
    --font-display: "Baloo 2", cursive;
    --font-body: "DM Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    font-family: var(--font-body);
    background: #fff;
}

body:has(.legal-dialog[open]) {
    overflow: hidden;
}

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

button {
    font: inherit;
}

.section-shell {
    width: min(1150px, calc(100% - 48px));
    margin: 0 auto;
}

.page-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
}

.glow-one {
    height: 440px;
    width: 440px;
    right: -140px;
    top: 110px;
    background: #fff4c5;
    opacity: .6;
}

.glow-two {
    height: 380px;
    width: 380px;
    left: -220px;
    top: 980px;
    background: #e3edff;
    opacity: .75;
}

.site-header {
    height: 92px;
    width: min(1250px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    width: 85px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.brand img {
    width: 100%;
    height: 100%;
}

.main-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #46526c;
    transition: color .2s;
}

.main-nav a:hover {
    color: var(--blue);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 99px;
    background: var(--blue);
    box-shadow: 0 8px 17px rgba(18, 98, 223, .18);
    transition: transform .2s, background .2s;
}

.header-cta:hover {
    background: #0d4fba;
    transform: translateY(-2px);
}

.header-cta span {
    font-size: 16px;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    padding: 6px;
}

.menu-button i {
    display: block;
    height: 2px;
    width: 26px;
    margin: 6px 0;
    background: var(--ink);
}

.hero {
    min-height: 615px;
    display: grid;
    grid-template-columns: 1fr 1.02fr;
    align-items: center;
    padding: 51px 0 66px;
    gap: 30px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.sparkle {
    font-size: 16px;
    color: #f7aa0c;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1 {
    max-width: 580px;
    margin: 15px 0 17px;
    font: 800 clamp(49px, 5.25vw, 72px)/.99 var(--font-display);
    letter-spacing: -1.7px;
    color: #172a54;
}

.hero h1 em,
h2 em,
blockquote em {
    color: var(--blue);
    font-style: normal;
}

.hero-text {
    width: min(94%, 480px);
    color: #66728a;
    font-size: 16px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
    padding: 12px 23px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s, box-shadow .2s;
}

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

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 22px rgba(18, 98, 223, .25);
}

.button span {
    font-size: 20px;
    line-height: 1;
}

.watch-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #42506d;
    font-size: 13px;
    font-weight: 700;
}

.watch-link b {
    height: 31px;
    width: 31px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid #b9c4d4;
    padding-left: 2px;
    font-size: 10px;
    color: var(--blue);
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 42px;
}

.avatars {
    display: flex;
}

.avatars span {
    height: 31px;
    width: 31px;
    margin-left: -7px;
    display: grid;
    place-items: center;
    border: 2px solid white;
    border-radius: 50%;
    background: #ffd4a5;
    color: #713b19;
    font-size: 10px;
    font-weight: 800;
}

.avatars span:first-child {
    margin: 0;
    background: #9bdbf1;
    color: #0b5684;
}

.avatars span:nth-child(2) {
    background: #f9a9ba;
    color: #8c2147;
}

.avatars span:last-child {
    background: #e5eefc;
    color: var(--blue);
}

.hero-proof p {
    margin: 0;
    color: #79849a;
    font-size: 11px;
    line-height: 1.5;
}

.hero-proof strong {
    color: #33415f;
    font-size: 12px;
}

.hero-art {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}

.hero-art:before {
    position: absolute;
    z-index: -2;
    width: 420px;
    height: 420px;
    content: "";
    border-radius: 50%;
    background: #f2f7ff;
}

.hero-art:after {
    position: absolute;
    z-index: -1;
    width: 360px;
    height: 360px;
    content: "";
    border: 1px dashed #b9d3fa;
    border-radius: 50%;
    transform: rotate(-12deg);
}

.orbit {
    position: absolute;
    z-index: -2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.orbit-a {
    background: #ffcc45;
    top: 45px;
    right: 115px;
}

.orbit-b {
    background: #91e5d3;
    bottom: 80px;
    left: 70px;
    width: 17px;
    height: 17px;
}

.phone-frame {
    position: relative;
    z-index: 2;
    width: 252px;
    height: 501px;
    padding: 6px;
    border: 7px solid #192b4a;
    border-radius: 35px;
    background: #192b4a;
    box-shadow: 0 28px 55px rgba(30, 59, 111, .25);
    transform: rotate(4deg);
}

.phone-frame:before {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 0;
    width: 87px;
    height: 18px;
    content: "";
    border-radius: 0 0 11px 11px;
    background: #192b4a;
    transform: translateX(-50%);
}

.phone-top {
    position: absolute;
    z-index: 3;
    left: 19px;
    right: 19px;
    top: 10px;
    display: flex;
    justify-content: space-between;
    color: #33405b;
    font-size: 8px;
    font-weight: 800;
}

.app-screen {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 30px 13px 7px;
    border-radius: 24px;
    background: #fbfdff;
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #2667d4;
    font-size: 10px;
}

.app-brand .bell {
    margin-left: auto;
    color: #63708c;
    font-size: 13px;
}

.app-mark {
    width: 14px;
    height: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 9px;
    border-radius: 4px;
    background: #1b6ee6;
}

.hello {
    margin-top: 15px;
    color: #77849b;
    font-size: 8px;
}

.hello strong {
    display: block;
    color: #203259;
    font-size: 12px;
}

.hello strong span {
    color: #fcba16;
}

.app-search {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 10px;
    padding: 7px 8px;
    border-radius: 7px;
    color: #9ba6b7;
    background: #f1f4f8;
    font-size: 11px;
}

.app-search span {
    font-size: 8px;
}

.screen-banner {
    height: 104px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    margin-top: 12px;
    padding: 11px 12px 0;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(124deg, #0860d8, #348ff5);
}

.screen-banner small {
    display: block;
    opacity: .75;
    font-size: 5px;
    font-weight: 700;
    letter-spacing: .4px;
}

.screen-banner strong {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.05;
}

.screen-banner button {
    display: block;
    margin-top: 8px;
    padding: 4px 7px;
    border: 0;
    border-radius: 4px;
    color: #1262df;
    background: #fff;
    font-size: 6px;
    font-weight: 800;
}

.banner-book {
    width: 44px;
    height: 64px;
    margin: 9px 4px 0 0;
    padding: 9px 4px;
    border-radius: 3px 8px 5px 3px;
    box-shadow: -4px 3px 0 rgba(8, 40, 116, .15);
    background: #174382;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    transform: rotate(11deg);
}

.banner-book span {
    display: block;
    color: #ffc038;
    font-size: 19px;
}

.app-row-title {
    display: flex;
    justify-content: space-between;
    margin: 13px 0 7px;
    color: #26375a;
    font-size: 8px;
}

.app-row-title a {
    color: #1763da;
    font-size: 7px;
}

.chips {
    display: flex;
    gap: 5px;
    overflow: hidden;
}

.chips span {
    flex-shrink: 0;
    padding: 4px 7px;
    border: 1px solid #e2e8f1;
    border-radius: 5px;
    color: #8793a8;
    font-size: 6px;
}

.chips .selected {
    color: #fff;
    border-color: #2172e4;
    background: #2172e4;
}

.app-books {
    display: flex;
    gap: 7px;
}

.app-book {
    width: 68px;
    flex: 1;
    min-width: 0;
}

.book-cover {
    height: 83px;
    position: relative;
    overflow: hidden;
    padding: 8px 6px;
    border-radius: 5px;
    color: white;
}

.teal .book-cover {
    background: linear-gradient(135deg, #087b7b, #30bfa8);
}

.orange .book-cover {
    background: linear-gradient(135deg, #ed7a26, #ffbd48);
}

.blue .book-cover {
    background: linear-gradient(135deg, #2669b6, #58a9df);
}

.book-cover i {
    display: block;
    font-size: 5px;
    font-style: normal;
    letter-spacing: .5px;
}

.book-cover b {
    display: block;
    margin-top: 8px;
    font: 800 12px/.9 var(--font-display);
}

.book-cover span {
    position: absolute;
    right: 6px;
    bottom: 4px;
    color: #ffe166;
    font-size: 15px;
}

.app-book strong {
    display: block;
    overflow: hidden;
    margin-top: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #273758;
    font-size: 6px;
}

.app-book small {
    color: #8d98ab;
    font-size: 5px;
}

.bottom-nav {
    position: absolute;
    bottom: 7px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #edf0f5;
    padding-top: 6px;
    color: #9da8b8;
}

.bottom-nav span {
    display: grid;
    justify-items: center;
    gap: 2px;
    font-size: 12px;
}

.bottom-nav small {
    font-size: 5px;
}

.bottom-nav .active {
    color: #1b6ee6;
}

.mini-note {
    position: absolute;
    z-index: 3;
    padding: 12px 14px;
    border-radius: 13px;
    box-shadow: 0 12px 23px rgba(46, 74, 119, .12);
    background: #fff;
    color: #455373;
    font-size: 9px;
    line-height: 1.5;
    transform: rotate(-6deg);
}

.mini-note b {
    color: #27385b;
    font-size: 10px;
}

.note-stars {
    top: 65px;
    left: 2px;
    color: #f6b522;
}

.note-heart {
    right: -5px;
    bottom: 89px;
    color: #fd6e8c;
    transform: rotate(7deg);
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border-radius: 10px;
    box-shadow: 0 13px 25px rgba(43, 69, 110, .12);
    background: #fff;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: #26385d;
    font-size: 9px;
}

.floating-card small {
    margin-top: 1px;
    color: #8b97a9;
    font-size: 7px;
}

.card-icon {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 7px;
    color: #f7b51e;
    background: #fff6d7;
    font-size: 12px;
}

.rating-card {
    top: 140px;
    right: 2px;
    transform: rotate(5deg);
}

.delivery-card {
    left: -6px;
    bottom: 60px;
}

.delivery-card .card-icon {
    color: #2380dd;
    background: #e8f3ff;
}

.book-stack {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.book-stack span {
    display: block;
    width: 75px;
    height: 10px;
    border-radius: 2px 5px 5px 2px;
}

.stack-left {
    left: 44px;
    bottom: 41px;
    transform: rotate(-10deg);
}

.stack-left span:nth-child(1) {
    background: #fecc4f;
}

.stack-left span:nth-child(2) {
    background: #df6e85;
}

.stack-left span:nth-child(3) {
    background: #4699d7;
}

.stack-right {
    right: 36px;
    top: 77px;
    transform: rotate(11deg);
}

.stack-right span:nth-child(1) {
    background: #5ebdab;
}

.stack-right span:nth-child(2) {
    background: #f29962;
}

.stack-right span:nth-child(3) {
    background: #4a7dd7;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto 112px;
    padding: 20px 25px;
    border: 1px solid #e7edf5;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 11px 35px rgba(31, 72, 130, .05);
}

.trust-strip>div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border-right: 1px solid #e9eef5;
}

.trust-strip>div:last-child {
    border: 0;
}

.trust-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    font-weight: 800;
}

.yellow {
    color: #e09c00;
    background: #fff4ce;
}

.pink {
    color: #e85a7b;
    background: #ffe9ee;
}

.blue {
    color: #1670df;
    background: #e8f3ff;
}

.green {
    color: #259768;
    background: #e3f8ee;
}

.trust-strip p {
    margin: 0;
}

.trust-strip b,
.trust-strip small {
    display: block;
}

.trust-strip b {
    color: #30405f;
    font-size: 11px;
}

.trust-strip small {
    margin-top: 2px;
    color: #909aaa;
    font-size: 9px;
}

.section-heading {
    max-width: 610px;
}

.section-heading.centered {
    margin: 0 auto;
    text-align: center;
}

.section-heading h2,
.steps-copy h2,
.preview-copy h2,
.faq-intro h2 {
    margin: 14px 0 12px;
    color: #1c2e58;
    font: 800 clamp(35px, 4vw, 50px)/1.07 var(--font-display);
    letter-spacing: -1px;
}

.section-heading p,
.steps-copy>p,
.preview-copy>p,
.faq-intro>p {
    color: #6c7890;
    font-size: 15px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.feature-card {
    min-height: 415px;
    overflow: hidden;
    position: relative;
    padding: 0 26px 27px;
    border-radius: 19px;
}

.blue-card {
    background: #eaf3ff;
}

.sunshine-card {
    background: #fff6d9;
}

.pink-card {
    background: #fff0f3;
}

.feature-illustration {
    height: 177px;
    position: relative;
    margin: 0 -26px 21px;
}

.library {
    display: grid;
    place-items: center;
    overflow: hidden;
}

.shelf {
    width: 175px;
    height: 68px;
    display: flex;
    align-items: end;
    gap: 6px;
    padding: 0 12px 5px;
    border-bottom: 7px solid #c69145;
    background: #eecb81;
    transform: perspective(300px) rotateX(12deg);
}

.shelf.two {
    position: absolute;
    top: 99px;
    width: 148px;
    height: 48px;
    padding-left: 18px;
    transform: perspective(300px) rotateX(12deg) rotate(-2deg);
}

.shelf i {
    display: block;
    height: 51px;
    width: 18px;
    border-radius: 2px 2px 0 0;
    background: #2f84dc;
}

.shelf i:nth-child(2) {
    height: 43px;
    width: 13px;
    background: #ef6b68;
}

.shelf i:nth-child(3) {
    height: 56px;
    width: 20px;
    background: #f5bf36;
}

.shelf i:nth-child(4) {
    height: 46px;
    width: 15px;
    background: #44b796;
}

.shelf i:nth-child(5) {
    height: 58px;
    width: 16px;
    background: #7a61c8;
}

.shelf.two i {
    height: 38px;
    width: 14px;
}

.shelf.two i:nth-child(2) {
    height: 32px;
}

.shelf.two i:nth-child(3) {
    height: 42px;
}

.plant {
    position: absolute;
    bottom: 12px;
    right: 55px;
    color: #2eaa83;
    font-size: 42px;
    transform: rotate(-18deg);
}

.checklist {
    width: 161px;
    height: 130px;
    margin: 21px auto 26px;
    padding: 18px 15px;
    border-radius: 6px;
    box-shadow: 8px 9px 0 #f4dc96;
    background: #fffdf6;
    transform: rotate(-4deg);
}

.check-head {
    display: block;
    margin-bottom: 11px;
    color: #555a72;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.checklist p {
    margin: 6px 0;
    padding-bottom: 4px;
    border-bottom: 1px solid #f2e8ce;
    color: #59667c;
    font-size: 8px;
}

.checklist b {
    color: #38ae8a;
}

.pencil {
    position: absolute;
    right: -15px;
    bottom: 17px;
    color: #f29538;
    font-size: 36px;
    transform: rotate(-25deg);
}

.happy-card {
    display: grid;
    place-items: center;
    height: 167px;
    margin-bottom: 10px;
}

.happy-card .smile {
    width: 99px;
    height: 99px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #d75072;
    background: #ffc6d5;
    font-size: 58px;
    line-height: 1;
}

.happy-card b {
    position: absolute;
    top: 27px;
    right: 65px;
    color: #eb6e8c;
    font: 800 23px var(--font-display);
    transform: rotate(10deg);
}

.happy-card small {
    position: absolute;
    right: 45px;
    bottom: 16px;
    color: #b36278;
    font-size: 8px;
    text-align: center;
}

.happy-card .star {
    position: absolute;
    color: #f3a91b;
}

.s-one {
    top: 23px;
    left: 70px;
}

.s-two {
    bottom: 37px;
    left: 50px;
    color: #e96d8a !important;
    font-size: 18px;
}

.feature-number {
    color: #7185a8;
    font-size: 10px;
    font-weight: 800;
}

.feature-card h3 {
    margin: 8px 0 8px;
    color: #25365b;
    font: 800 25px/1.1 var(--font-display);
    letter-spacing: -.4px;
}

.feature-card p {
    min-height: 43px;
    margin-bottom: 14px;
    color: #63708a;
    font-size: 12px;
    line-height: 1.5;
}

.feature-card a,
.text-link {
    color: #1762d5;
    font-size: 12px;
    font-weight: 800;
}

.feature-card a span,
.text-link span {
    margin-left: 6px;
    font-size: 17px;
    vertical-align: -1px;
}

.steps-section {
    margin-top: 126px;
    padding: 91px 0;
    background: #1246aa;
    color: #fff;
}

.steps-layout {
    display: grid;
    grid-template-columns: .89fr 1.11fr;
    gap: 90px;
    align-items: center;
}

.steps-copy .eyebrow {
    color: #b7d9ff;
}

.steps-copy .sparkle {
    color: #ffda52;
}

.steps-copy h2 {
    color: #fff;
}

.steps-copy h2 em {
    color: #ffd452;
}

.steps-copy>p {
    max-width: 420px;
    color: #bfcef0;
}

.steps-copy .text-link {
    display: inline-block;
    margin-top: 13px;
    color: #fff;
}

.steps-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    display: grid;
    grid-template-columns: 61px 1fr 25px;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.steps-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.step-no {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    color: #ffd452;
    font-size: 11px;
    font-weight: 800;
}

.steps-list h3 {
    margin: 0 0 3px;
    font: 700 21px var(--font-display);
}

.steps-list p {
    margin: 0;
    color: #b9cbed;
    font-size: 12px;
}

.step-arrow {
    color: #ffdc58;
    font-size: 23px;
}

.preview-section {
    padding: 129px 0 126px;
}

.preview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 104px;
    align-items: center;
}

.preview-visual {
    position: relative;
    height: 510px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background: #f1f7ff;
}

.preview-visual:before {
    position: absolute;
    width: 357px;
    height: 357px;
    content: "";
    border-radius: 50%;
    background: #dceeff;
}

.preview-phone {
    position: relative;
    z-index: 1;
    width: 226px;
    height: 489px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 28px;
    background: transparent;
    box-shadow: 0 26px 35px rgba(49, 83, 132, .21);
}

.app-screen-image {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-phone:before {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 0;
    width: 80px;
    height: 16px;
    content: "";
    border-radius: 0 0 10px 10px;
    background: #162c52;
    transform: translateX(-50%);
}

.preview-bar {
    position: absolute;
    top: 8px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    font-weight: 800;
    color: #243453;
}

.preview-bar i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #243453;
}

.preview-app-head {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #2670dc;
    font-size: 10px;
}

.preview-title {
    margin: 16px 3px 12px;
    color: #77849b;
    font-size: 10px;
}

.preview-title strong {
    color: #1e3158;
    font-size: 18px;
}

.preview-tabs {
    display: flex;
    gap: 10px;
    padding: 0 3px 8px;
    border-bottom: 1px solid #edf0f5;
    color: #8c99ad;
    font-size: 8px;
}

.preview-tabs b {
    color: #1465dd;
    border-bottom: 2px solid #1465dd;
    padding-bottom: 8px;
    margin-bottom: -10px;
}

.large-book-list {
    display: grid;
    gap: 10px;
    padding: 11px 3px;
}

.list-book {
    display: grid;
    grid-template-columns: 50px 1fr 21px;
    align-items: center;
    gap: 8px;
}

.list-cover {
    position: relative;
    height: 67px;
    padding: 8px 5px;
    border-radius: 4px;
    color: white;
    box-shadow: 2px 4px 0 rgba(29, 57, 104, .1);
}

.list-cover i {
    display: block;
    font-size: 5px;
    font-style: normal;
    letter-spacing: .3px;
}

.list-cover b {
    display: block;
    margin-top: 8px;
    font: 700 11px/.92 var(--font-display);
}

.list-cover em {
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #f8da6d;
    font-size: 13px;
    font-style: normal;
}

.c-green {
    background: linear-gradient(130deg, #178a77, #6ad1af);
}

.c-orange {
    background: linear-gradient(130deg, #d45f36, #ffbb62);
}

.c-purple {
    background: linear-gradient(130deg, #694a9e, #b282d0);
}

.list-book>div:nth-child(2)>b,
.list-book small,
.list-book strong {
    display: block;
}

.list-book>div:nth-child(2)>b {
    color: #283a60;
    font-size: 9px;
}

.list-book small {
    margin-top: 3px;
    color: #909caf;
    font-size: 7px;
}

.list-book strong {
    margin-top: 5px;
    color: #2d79dc;
    font-size: 7px;
}

.list-book button {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #1c75df;
    font-size: 16px;
    line-height: 1;
}

.preview-bottom {
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-around;
    color: #8594ac;
    font-size: 14px;
}

.preview-bottom .selected-dot {
    color: #176ce1;
}

.doodle {
    position: absolute;
    z-index: 2;
    color: #f9b514;
    font-size: 31px;
}

.d-one {
    top: 44px;
    left: 33px;
}

.d-two {
    top: 83px;
    right: 42px;
    color: #f07394;
    font-size: 21px;
}

.d-three {
    bottom: 37px;
    left: 47px;
    color: #3aad94;
    font-size: 30px;
}

.preview-copy h2 {
    font-size: 47px;
}

.preview-copy>p {
    max-width: 440px;
}

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

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.check-list>li>span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
    margin-top: 1px;
    border-radius: 50%;
    color: #2588dc;
    background: #e3f1ff;
    font-size: 12px;
    font-weight: 800;
}

.check-list b,
.check-list small {
    display: block;
}

.check-list b {
    color: #344361;
    font-size: 13px;
}

.check-list small {
    margin-top: 3px;
    color: #8691a4;
    font-size: 11px;
}

.quote-section {
    position: relative;
    overflow: hidden;
    min-height: 356px;
    padding: 59px 24px;
    text-align: center;
    color: #fff;
    background: linear-gradient(112deg, #fd907a, #f16d93);
}

.quote-mark {
    height: 41px;
    margin-bottom: -7px;
    color: #ffd15b;
    font: 800 74px/.6 Georgia, serif;
}

.quote-section blockquote {
    position: relative;
    z-index: 1;
    margin: 10px 0 14px;
    font: 800 clamp(35px, 4.3vw, 54px)/1.11 var(--font-display);
    letter-spacing: -1px;
}

.quote-section blockquote em {
    color: #fff6be;
}

.quote-section p {
    position: relative;
    z-index: 1;
    color: #fff0f3;
    font-size: 13px;
}

.quote-star {
    position: absolute;
    color: #ffe26d;
}

.quote-star.one {
    top: 62px;
    left: 13%;
    font-size: 28px;
}

.quote-star.two {
    right: 15%;
    bottom: 75px;
    color: #fff1ad;
    font-size: 21px;
}

.quote-star.three {
    top: 44%;
    right: 8%;
    color: #ffb5c7;
    font-size: 38px;
}

.faq-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    padding: 118px 0 126px;
}

.faq-intro h2 {
    font-size: 48px;
}

.faq-list {
    display: grid;
    align-content: start;
}

.faq-list details {
    padding: 20px 3px;
    border-bottom: 1px solid #dfe6ef;
}

.faq-list details:first-child {
    border-top: 1px solid #dfe6ef;
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #2b3d60;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    display: grid;
    place-items: center;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    color: #1a70de;
    background: #edf5ff;
    font-size: 20px;
    font-weight: 400;
    transition: transform .2s;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list p {
    max-width: 530px;
    margin: 12px 34px 0 0;
    color: #728099;
    font-size: 13px;
    line-height: 1.65;
}

.closing-section {
    position: relative;
    overflow: hidden;
    min-height: 443px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #fff;
    background: #1162d9;
}

.closing-section:before {
    position: absolute;
    right: 27%;
    top: -80px;
    width: 250px;
    height: 250px;
    content: "";
    border: 1px dashed rgba(255, 255, 255, .25);
    border-radius: 50%;
}

.closing-content {
    position: relative;
    z-index: 2;
    width: min(575px, calc(100% - 25px));
    margin-left: auto;
    padding: 69px 0 70px;
}

.closing-content .eyebrow {
    color: #cfe6ff;
}

.closing-content .sparkle {
    color: #ffe167;
}

.closing-content h2 {
    margin: 13px 0 10px;
    font: 800 clamp(36px, 4vw, 52px)/1.05 var(--font-display);
    letter-spacing: -1px;
}

.closing-content h2 em {
    color: #ffe268;
    font-style: normal;
}

.closing-content p {
    color: #d3e4ff;
    font-size: 14px;
}

.button-light {
    margin-top: 17px;
    color: #1460d2;
    background: #fff;
    box-shadow: 0 12px 24px rgba(9, 48, 126, .15);
}

.closing-art {
    position: relative;
    min-height: 443px;
    background: linear-gradient(140deg, rgba(42, 133, 236, .75), rgba(24, 76, 176, .22));
}

.sun {
    position: absolute;
    top: 63px;
    right: 96px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ffdc63;
    box-shadow: 0 0 0 11px rgba(255, 220, 99, .13);
}

.cloud {
    position: absolute;
    width: 83px;
    height: 21px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .72);
}

.cloud:before,
.cloud:after {
    position: absolute;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background: inherit;
}

.cloud:before {
    width: 30px;
    height: 30px;
    left: 12px;
}

.cloud:after {
    width: 42px;
    height: 42px;
    right: 10px;
}

.cloud-one {
    top: 78px;
    left: 62px;
    transform: scale(.67);
}

.cloud-two {
    right: 35px;
    top: 198px;
    transform: scale(.56);
}

.book-house {
    position: absolute;
    z-index: 2;
    bottom: 49px;
    left: 50%;
    width: 185px;
    height: 171px;
    transform: translateX(-50%);
}

.house-roof {
    position: absolute;
    left: 15px;
    top: 0;
    width: 155px;
    height: 94px;
    border-radius: 12px 12px 0 0;
    background: #ffc948;
    clip-path: polygon(50% 0, 100% 58%, 100% 67%, 0 67%, 0 58%);
}

.house-body {
    position: absolute;
    bottom: 0;
    left: 29px;
    width: 128px;
    height: 109px;
    display: flex;
    gap: 10px;
    padding: 24px 15px 0;
    border-radius: 8px 8px 0 0;
    background: #fff6d3;
}

.house-body span {
    width: 26px;
    height: 33px;
    border-radius: 4px 4px 0 0;
    background: #66b5e9;
}

.house-book {
    position: absolute;
    right: -13px;
    bottom: -1px;
    width: 68px;
    height: 109px;
    padding: 10px 8px;
    border-radius: 3px 8px 6px 3px;
    color: #fff;
    background: #ef6a83;
    box-shadow: -6px 7px 0 rgba(8, 54, 142, .16);
    font: 800 10px var(--font-display);
    transform: rotate(7deg);
}

.kid {
    position: absolute;
    z-index: 3;
    bottom: 33px;
    width: 44px;
    height: 62px;
    padding-top: 8px;
    border-radius: 22px 22px 8px 8px;
    color: #5f3625;
    background: #f5b062;
    text-align: center;
    font-size: 20px;
}

.kid:after {
    position: absolute;
    bottom: -4px;
    left: -7px;
    width: 58px;
    height: 32px;
    content: "";
    border-radius: 20px 20px 8px 8px;
    background: #43a6e8;
}

.kid-left {
    left: 104px;
}

.kid-right {
    right: 76px;
    color: #7e3e1d;
    background: #f9c18a;
}

.kid-right:after {
    background: #f2bb42;
}

.close-star {
    position: absolute;
    color: #ffdc5e;
}

.st-one {
    top: 120px;
    left: 30%;
    font-size: 23px;
}

.st-two {
    bottom: 53px;
    right: 17%;
    font-size: 29px;
}

.site-footer {
    background: #0d2451;
    color: #fff;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding: 58px 0 45px;
}

.footer-logo {
    background: #fff;
    width: 155px;
    border-radius: 8px;
}

.footer-brand p {
    margin: 11px 0 0;
    color: #e0e9fb;
    font: 600 12px/1.7 var(--font-display);
}

.footer-brand p span {
    color: #91a5c9;
    font: 400 10px var(--font-body);
}

.footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.footer-links div {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-links b {
    margin-bottom: 4px;
    color: #fff;
    font-size: 11px;
}

.footer-links a,
.footer-links button {
    padding: 0;
    border: 0;
    color: #aebedb;
    background: none;
    text-align: left;
    font-size: 11px;
    cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 19px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: #91a4c7;
    font-size: 10px;
}

.footer-bottom b {
    color: #ff8ca3;
}

.legal-dialog {
    width: min(630px, calc(100% - 36px));
    max-height: min(700px, calc(100vh - 36px));
    padding: 0;
    border: 0;
    border-radius: 18px;
    color: #31405e;
    box-shadow: 0 27px 90px rgba(13, 36, 81, .38);
}

.legal-dialog::backdrop {
    background: rgba(8, 25, 57, .58);
    backdrop-filter: blur(4px);
}

.dialog-head {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    border-bottom: 1px solid #e8ecf3;
    background: #fff;
}

.dialog-kicker {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.dialog-close {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    color: #344361;
    background: #edf3fb;
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
}

.dialog-body {
    padding: 28px 28px 37px;
}

.dialog-body h2 {
    margin-bottom: 2px;
    color: #183269;
    font: 800 36px/1 var(--font-display);
}

.dialog-body .updated {
    margin-bottom: 24px;
    color: #8b98aa;
    font-size: 11px;
}

.dialog-body h3 {
    margin: 23px 0 7px;
    color: #1d386f;
    font-size: 15px;
}

.dialog-body p {
    color: #64718a;
    font-size: 13px;
    line-height: 1.7;
}

.dialog-body a {
    color: var(--blue);
    font-weight: 700;
}

.legal-page {
    background: #fff;
}

.legal-header {
    height: 92px;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1b5fc7;
    font-size: 13px;
    font-weight: 800;
}

.back-home span {
    font-size: 19px;
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 89px;
    background: #edf5ff;
}

.terms-page .legal-hero {
    background: #fff5de;
}

.legal-hero:before {
    position: absolute;
    right: 5%;
    bottom: -125px;
    width: 360px;
    height: 360px;
    content: "";
    border: 1px dashed #aecbf7;
    border-radius: 50%;
}

.terms-page .legal-hero:before {
    border-color: #efca78;
}

.legal-hero-orb {
    position: absolute;
    border-radius: 50%;
}

.orb-left {
    top: 62px;
    left: 9%;
    width: 22px;
    height: 22px;
    background: #ffca3c;
}

.orb-right {
    top: 50px;
    right: 14%;
    width: 38px;
    height: 38px;
    background: #99dfcb;
}

.terms-page .orb-right {
    background: #f68fa3;
}

.legal-content.narrow,
.legal-document.narrow {
    width: min(940px, calc(100% - 48px));
    margin: 0 auto;
}

.legal-content {
    position: relative;
    z-index: 1;
}

.legal-content h1 {
    margin: 16px 0 10px;
    color: #193367;
    font: 800 clamp(51px, 6vw, 76px)/.94 var(--font-display);
    letter-spacing: -1.6px;
}

.legal-content h1 em {
    color: #1466db;
    font-style: normal;
}

.terms-page .legal-content h1 em {
    color: #e46d87;
}

.legal-content>p {
    max-width: 480px;
    margin-bottom: 21px;
    color: #687691;
    font-size: 16px;
    line-height: 1.65;
}

.legal-date {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #d6e4f7;
    border-radius: 99px;
    color: #667896;
    background: #fff;
    font-size: 11px;
    font-weight: 700;
}

.terms-page .legal-date {
    border-color: #f0deae;
}

.legal-document {
    padding: 70px 0 91px;
}

.legal-intro {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    max-width: 730px;
    margin-bottom: 57px;
}

.intro-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    color: #1b72df;
    background: #e6f2ff;
    font-size: 21px;
}

.terms-page .intro-icon {
    color: #e4758c;
    background: #fff0f3;
}

.legal-intro p {
    margin: 0;
    color: #394b6c;
    font: 600 20px/1.48 var(--font-display);
}

.policy-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 65px;
}

.policy-layout aside {
    position: sticky;
    top: 26px;
    display: grid;
    align-content: start;
    gap: 12px;
    height: max-content;
    padding: 18px;
    border-radius: 13px;
    background: #f7faff;
}

.terms-page .policy-layout aside {
    background: #fffbf1;
}

.policy-layout aside span {
    margin-bottom: 2px;
    color: #6d7d99;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.policy-layout aside a {
    color: #56708e;
    font-size: 12px;
    line-height: 1.35;
}

.policy-layout aside a:hover {
    color: #1262df;
}

.policy-copy section {
    position: relative;
    padding: 0 0 31px 50px;
    margin-bottom: 31px;
    border-bottom: 1px solid #e0e7f0;
}

.policy-copy section:last-child {
    margin-bottom: 0;
}

.policy-copy section>span {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: #1770df;
    background: #e7f2ff;
    font-size: 10px;
    font-weight: 800;
}

.terms-page .policy-copy section>span {
    color: #df6c86;
    background: #fff0f3;
}

.policy-copy h2 {
    margin: 0 0 8px;
    color: #213863;
    font: 800 27px/1.1 var(--font-display);
}

.policy-copy p {
    margin: 0;
    color: #66748c;
    font-size: 14px;
    line-height: 1.75;
}

.policy-copy a {
    color: #1262df;
    font-weight: 700;
}

@media (max-width:900px) {
    .main-nav {
        gap: 17px;
    }

    .header-cta {
        padding: 11px 13px;
    }

    .hero {
        grid-template-columns: 1fr .9fr;
    }

    .feature-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .feature-illustration {
        margin-left: -20px;
        margin-right: -20px;
    }

    .feature-card h3 {
        font-size: 22px;
    }

    .trust-strip>div {
        padding: 0 10px;
    }

    .preview-layout,
    .steps-layout,
    .faq-section {
        gap: 50px;
    }

    .closing-content {
        margin-left: 24px;
    }
}

@media (max-width:720px) {

    .section-shell,
    .site-header {
        width: min(100% - 34px, 540px);
    }

    .site-header {
        height: 76px;
    }

    .brand {
        width: 125px;
        height: 53px;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .site-header.menu-open {
        position: relative;
    }

    .site-header.menu-open .main-nav {
        position: absolute;
        z-index: 10;
        top: 68px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 10px;
        border: 1px solid #e4eaf2;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 18px 34px rgba(24, 54, 101, .15);
    }

    .site-header.menu-open .main-nav a {
        padding: 12px 14px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 38px 0 32px;
        text-align: center;
    }

    .hero-copy {
        display: grid;
        justify-items: center;
    }

    .hero h1 {
        margin-top: 14px;
        font-size: 51px;
    }

    .hero-text {
        max-width: 450px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-proof {
        margin-top: 30px;
        text-align: left;
    }

    .hero-art {
        min-height: 456px;
        margin-top: 5px;
        transform: scale(.92);
        transform-origin: top center;
        margin-bottom: -30px;
    }

    .trust-strip {
        grid-template-columns: 1fr 1fr;
        width: min(100% - 34px, 540px);
        margin-bottom: 81px;
        padding: 8px;
    }

    .trust-strip>div {
        padding: 11px 7px;
        border-right: 0;
    }

    .trust-strip>div:nth-child(odd) {
        border-right: 1px solid #e9eef5;
    }

    .trust-strip>div:nth-child(-n+2) {
        border-bottom: 1px solid #e9eef5;
    }

    .section-heading h2,
    .steps-copy h2,
    .preview-copy h2,
    .faq-intro h2 {
        font-size: 42px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .feature-card {
        min-height: 365px;
    }

    .feature-illustration {
        height: 155px;
    }

    .steps-section {
        margin-top: 78px;
        padding: 71px 0;
    }

    .steps-layout,
    .preview-layout,
    .faq-section {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .steps-list li {
        grid-template-columns: 46px 1fr 22px;
        gap: 10px;
        padding: 18px 0;
    }

    .preview-section {
        padding: 83px 0;
    }

    .preview-visual {
        height: 476px;
        width: min(100%, 450px);
        margin: auto;
    }

    .preview-phone {
        width: 216px;
        height: 467px;
    }

    .faq-section {
        padding: 77px 0 83px;
    }

    .faq-intro {
        max-width: 420px;
    }

    .closing-section {
        grid-template-columns: 1fr;
    }

    .closing-content {
        width: min(100% - 34px, 540px);
        margin: 0 auto;
        padding: 61px 0 31px;
        text-align: center;
    }

    .closing-art {
        min-height: 308px;
    }

    .book-house {
        bottom: 25px;
        transform: translateX(-50%) scale(.8);
    }

    .kid {
        bottom: 12px;
        transform: scale(.8);
    }

    .kid-left {
        left: calc(50% - 125px);
    }

    .kid-right {
        right: calc(50% - 125px);
    }

    .sun {
        right: 15%;
        top: 31px;
    }

    .cloud-one {
        left: 13%;
        top: 47px;
    }

    .cloud-two {
        top: 112px;
    }

    .st-one {
        top: 70px;
        left: 27%;
    }

    .st-two {
        bottom: 28px;
        right: 19%;
    }

    .footer-top {
        display: grid;
        gap: 36px;
        padding: 48px 0 35px;
    }

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

    .footer-links div:last-child {
        grid-column: 1/-1;
    }

    .footer-bottom {
        gap: 11px;
        flex-direction: column;
    }

    .quote-section {
        min-height: 318px;
    }
}

@media (max-width:420px) {
    .hero h1 {
        font-size: 46px;
    }

    .hero-actions {
        gap: 14px;
    }

    .button {
        padding: 11px 17px;
        font-size: 13px;
    }

    .watch-link {
        font-size: 12px;
    }

    .hero-art {
        transform: scale(.82);
        margin-left: -22px;
        margin-right: -22px;
        margin-bottom: -72px;
    }

    .feature-card h3 {
        font-size: 24px;
    }

    .section-heading h2,
    .steps-copy h2,
    .preview-copy h2,
    .faq-intro h2 {
        font-size: 38px;
    }

    .preview-visual {
        transform: scale(.95);
    }

    .footer-links {
        gap: 24px;
    }

    .trust-strip>div {
        gap: 7px;
    }

    .trust-strip b {
        font-size: 10px;
    }

    .trust-strip small {
        font-size: 8px;
    }
}

@media (max-width:720px) {
    .legal-header {
        height: 76px;
    }

    .legal-page .brand {
        width: 125px;
        height: 53px;
    }

    .legal-hero {
        padding: 62px 0 67px;
    }

    .legal-content.narrow,
    .legal-document.narrow {
        width: min(100% - 34px, 540px);
    }

    .legal-content h1 {
        font-size: 56px;
    }

    .legal-content>p {
        font-size: 14px;
    }

    .legal-document {
        padding: 51px 0 65px;
    }

    .legal-intro {
        margin-bottom: 39px;
    }

    .legal-intro p {
        font-size: 18px;
    }

    .policy-layout {
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .policy-layout aside {
        position: static;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .policy-layout aside span {
        grid-column: 1/-1;
    }

    .policy-copy section {
        padding-left: 43px;
    }

    .policy-copy h2 {
        font-size: 25px;
    }
}
