/* ============================================================
   CITY EXPLORER — Design System
   ============================================================ */

:root {
    --color-paper: #f4e4bc;
    --color-paper-soft: rgba(244, 228, 188, 0.76);
    --color-ink: #000000;
    --color-primary: #6d0b0b;
    --color-primary-muted: rgba(109, 11, 11, 0.62);

    --font-serif: 'Abhaya Libre', serif;
    --font-sans: 'Beiruti', sans-serif;
    --font-ui: 'Inter', sans-serif;

    --text-shadow-heading: 0 4px 4px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.14);
    --shadow-soft: 0 18px 48px rgba(71, 41, 14, 0.12);

    --container-max: 1200px;
    --section-pad: clamp(72px, 8vw, 120px);
}

/* ============================================================
   GLOBAL RESET
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(255, 247, 225, 0.82), rgba(244, 228, 188, 0.96) 52%, rgba(237, 215, 171, 1) 100%);
    color: var(--color-ink);
    font-family: var(--font-sans), serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

button,
summary {
    font: inherit;
}

ul {
    list-style: none;
}

details {
    display: block;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.page {
    width: 100%;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    position: relative;
    overflow: hidden;
}

.section-frame {
    position: relative;
    z-index: 1;
}

.section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    z-index: 0;
    opacity: 0.92;
}

.section-heading-block {
    display: grid;
    gap: 10px;
    max-width: 860px;
    margin-bottom: 36px;
}

.section-heading-block--center {
    margin-inline: auto;
    text-align: center;
    justify-items: center;
}

.section-label {
    font-family: var(--font-ui), serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.62);
}

.section-title {
    font-family: var(--font-serif), serif;
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1.08;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-heading);
}

.sub-heading {
    font-family: var(--font-serif), serif;
    font-size: clamp(1.35rem, 1.9vw, 1.75rem);
    line-height: 1.12;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-heading);
}

.body-text {
    font-family: var(--font-sans), serif;
    font-size: 16px;
    line-height: 1.5;
}

.skeleton-panel {
    border: 1px solid rgba(109, 11, 11, 0.14);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 250, 239, 0.82), rgba(249, 238, 209, 0.74));
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(2px);
}

/* ============================================================
   HERO
   ============================================================ */

.hero-section {
    min-height: 817px;
    display: block;
    padding: 0;
}

.hero-badges {
    position: fixed;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    width: auto;
    height: auto;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.hero-badges .store-badge img {
    height: 60px;
    width: auto;
}

.hero-navbar {
    position: absolute;
    top: 68px;
    left: calc(75% - 90px);
    z-index: 5;
}

.hero-nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #000;
    padding: 6px 8px;
    cursor: pointer;
}

.hero-nav-toggle__bar {
    display: block;
    width: 18px;
    height: 3px;
    border-radius: 2px;
    background: currentColor;
}

.hero-nav-toggle__label {
    margin-top: 2px;
    font-family: var(--font-ui), serif;
    font-size: 11px;
    line-height: 1;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
}

.navbar a {
    font-family: var(--font-ui), serif;
    font-size: 12px;
    letter-spacing: 0;
    color: var(--color-ink);
    transition: color 180ms ease, transform 180ms ease;
}

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

.hero-canvas {
    position: relative;
    width: 100%;
    max-width: 1440px;
    min-height: 817px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-content: start;
    justify-items: center;
}

.hero-title {
    grid-column: 1 / -1;
    margin-top: 184px;
    width: 463px;
    font-family: var(--font-serif), serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-heading);
    text-align: center;
    animation: lift-in 820ms ease both;
}

.hero-body {
    grid-column: 1 / -1;
    width: min(1000px, calc(100% - 180px));
    margin-top: 45px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 20px;
    animation: lift-in 820ms 90ms ease both;
}

.hero-copy-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    width: 100%;
}

.hero-copy {
    margin-top: 40px;
    width: 365px;
    height: 160px;
    display: grid;
    gap: 12px;
    text-align: center;
}

.hero-copy p {
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1.08;
    font-weight: 700;
}

.hero-hand-art {
    position: relative;
    top: -50px;
    width: 100%;
    max-width: 378px;
    /*border: 6px;*/
    height: 440px;
    object-fit: contain;
    object-position: center;
    /*mix-blend-mode: multiply;*/
    pointer-events: none;
    /*transform: rotate(-0.43deg);*/
    /*animation: lift-in 820ms 120ms ease both;*/
    justify-self: center;
    align-self: center;
}

.hero-painter {
    position: relative;
    top: -30px;
    width: min(392px, 100%);
    height: 126px;
    object-fit: contain;
    mix-blend-mode: multiply;
    pointer-events: none;
    margin-top: 0;
    animation: lift-in 820ms 150ms ease both;
}

.hero-ornament {
    width: min(262px, 100%);
    height: 61px;
    object-fit: contain;
    box-shadow: var(--shadow-soft);
    pointer-events: none;
    margin-top: 18px;
    animation: lift-in 820ms 180ms ease both;
}

.store-badge img {
    display: block;
}

.hero-tagline {
    position: absolute;
    /*left: 0px;*/
    top: 765px;
    width: 100%;
    z-index: 3;
    font-family: var(--font-serif), serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary-muted);
    animation: lift-in 820ms 280ms ease both;
}

/* ============================================================
   PROBLEM
   ============================================================ */

.problem-section {
    min-height: 765px;
    padding: 0;
}

.problem-canvas {
    position: relative;
    width: min(1439px, 100%);
    /*height: 765px;*/
    height: 765px;
    margin: 0 auto;
    overflow: hidden;
}

.problem-heading {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-family: var(--font-serif), serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-heading);
}

.problem-heading--top {
    top: 37px;
    width: min(634px, calc(100% - 80px));
}

.problem-heading--middle {
    top: 388px;
    width: min(406px, calc(100% - 80px));
}

.problem-paragraph {
    position: absolute;
}

.problem-text {
    /*margin: 0;*/
    /*font-family: var(--font-sans);*/
    /*font-size: 16px;*/
    /*line-height: 1.05;*/
    /*color: var(--color-ink);*/
    font-family: Beiruti, serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.problem-text--emphasis,
.problem-text--body-emphasis {
    font-family: var(--font-serif), serif;
    font-weight: 700;
}

.problem-paragraph--intro-a {
    top: 130px;
    left: calc(33.33% + 99px);
    width: 330px;
}

.problem-paragraph--intro-b {
    top: 214px;
    left: calc(41.67% + 61px);
    width: 331px;
}

.problem-paragraph--intro-c {
    top: 301px;
    left: calc(33.33% + 130px);
    width: 468px;
}

.problem-paragraph--intro-c .problem-text {
    width: 468px;
}

.problem-paragraph--bridge {
    top: 500px;
    left: calc(33.33% + 85px);
    width: 411px;
}

.problem-paragraph--bridge .problem-text {
    width: 411px;
}

.problem-paragraph--bottom {
    top: 609px;
    left: calc(33.33% + 82px);
    width: 417px;
}

.problem-paragraph--bottom .problem-text {
    width: 417px;
}

.problem-divider-wrap {
    position: absolute;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.problem-divider {
    display: block;
    object-fit: contain;
    width: 262px;
    height: 61px;
}

.problem-divider-wrap--intro {
    top: 326px;
    left: 58%;
    transform: translateX(-50%);
}

.problem-divider-wrap--bridge {
    top: 539px;
    left: 54%;
    transform: translateX(-50%);
}

.problem-divider-wrap--bottom {
    top: 700px;
    left: 52%;
    transform: translateX(-50%);
}

.problem-illustration {
    position: absolute;
    pointer-events: none;
}

.problem-illustration--diagonal {
    left: calc(8.33% + 182px);
    top: 91px;
    width: 380px;
    height: 445px;
}

.problem-illustration-eiffel {
    position: absolute;
    left: 0;
    top: 0;
    width: 187px;
    height: 150px;
    object-fit: contain;
}

.problem-illustration-man {
    position: absolute;
    left: 104px;
    top: 114px;
    width: 224px;
    height: 165px;
    object-fit: contain;
}

.problem-illustration-reader {
    position: absolute;
    right: 223px;
    top: 428px;
    width: 205px;
    height: 193px;
    aspect-ratio: 141/133;
    object-fit: contain;
    mix-blend-mode: normal;
}

.problem-illustration-businessman {
    position: absolute;
    left: calc(8.33% + 181px);
    top: 542px;
    width: 188px;
    height: 199px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* ============================================================
   PHONES
   ============================================================ */

.phones-section {
    min-height: 1012px;
    padding: 0;
}

.phones-canvas {
    position: relative;
    width: min(1440px, 100%);
    min-height: 1012px;
    margin: 0 auto;
}

.phones-plan-title {
    position: absolute;
    top: 52px;
    transform: translateX(-50%);
    width: 260px;
    font-family: var(--font-serif), serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-heading);
}

.phones-plan-title--free {
    left: 28.6%;
}

.phones-plan-title--premium {
    left: 69.9%;
}

.phones-card {
    position: absolute;
    top: 96px;
    width: 182px;
    display: grid;
    justify-items: center;
    gap: 10px;
    transform: translateX(-50%);
}

.phones-card--free-1 {
    left: 22.4%;
}

.phones-card--free-2 {
    left: 36.3%;
}

.phones-card--premium-1 {
    left: 57.1%;
}

.phones-card--premium-2 {
    left: 70.0%;
}

.phones-card--premium-3 {
    left: 82.8%;
}

.phones-card-ornament {
    display: flex;
    justify-content: center;
    width: 180px;
    height: 68px;
    pointer-events: none;
}

.phones-card-ornament img {
    width: 178px;
    height: 68px;
    object-fit: contain;
}

.phones-card-ornament--bottom {
    transform: scaleY(-1);
}

.phones-card-screenshot {
    width: 137px;
    height: 329px;
    border: 5px solid rgba(0, 0, 0, 0.35);
    border-radius: 5px;
    background: rgba(255, 250, 240, 0.42);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.phones-card-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phones-card-label {
    width: 162px;
    min-height: 81px;
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-heading);
    white-space: pre-wrap;
}

.phones-card-label--wide {
    width: 170px;
}

.phones-bottom-copy {
    position: absolute;
    left: 50%;
    top: 798px;
    width: 430px;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 12px;
}

.phones-bottom-text {
    width: 430px;
    color: var(--color-ink);
    text-align: left;
}

.phones-bottom-divider-wrap {
    position: static;
    transform: none;
}

.phones-bottom-divider {
    width: 262px;
    height: 61px;
}

/* ============================================================
   FEATURES
   ============================================================ */

.features-section {
    min-height: 707px;
    padding: 0;
}

.features-canvas {
    position: relative;
    width: min(1440px, 100%);
    min-height: 707px;
    margin: 0 auto;
}

.features-heading {
    position: absolute;
    top: 32px;
    left: 50%;
    width: min(767px, calc(100% - 32px));
    transform: translateX(-50%);
    font-family: var(--font-serif), serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-heading);
}

.feature-group {
    position: absolute;
    display: flex;
    align-items: center;
}

.feature-copy {
    display: grid;
    gap: 8px;
    flex: 0 0 auto;
}

.feature-title {
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-ink);
    text-shadow: var(--text-shadow-heading);
}

.feature-title--center {
    text-align: center;
}

.feature-body {
    font-family: var(--font-sans), sans-serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-ink);
}

.feature-divider-wrap {
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.feature-divider {
    width: 247px;
    height: 70px;
    object-fit: contain;
}

.feature-art {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.feature-art img {
    display: block;
    object-fit: contain;
}

.feature-group--captivating {
    top: 103px;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
    gap: 105px;
}

.feature-copy--captivating {
    width: 419px;
}

.feature-title--captivating {
    width: 321px;
}

.feature-body--captivating {
    width: 419px;
}

.feature-divider-wrap--captivating {
    justify-content: flex-start;
    margin-left: 95px;
}

.feature-art--clown {
    width: 236px;
    height: 171px;
}

.feature-art--clown img {
    width: 236px;
    height: 171px;
    mix-blend-mode: multiply;
}

.feature-group--english {
    top: 281px;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
    gap: 159px;
}

.feature-art--shakespeare {
    width: 128px;
    height: 128px;
}

.feature-art--shakespeare img {
    width: 128px;
    height: 128px;
    mix-blend-mode: multiply;
}

.feature-copy--english {
    width: 419px;
}

.feature-title--english {
    width: 410px;
}

.feature-body--english {
    width: 419px;
}

.feature-divider-wrap--english {
    justify-content: flex-start;
    margin-left: 95px;
}

.feature-group--navigation {
    top: 431px;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
    gap: 169px;
}

.feature-copy--navigation {
    width: 419px;
}

.feature-title--navigation {
    width: 224px;
}

.feature-body--navigation {
    width: 419px;
}

.feature-divider-wrap--navigation {
    justify-content: flex-start;
    margin-left: 95px;
}

.feature-art--hand-point {
    width: 162px;
    height: 140px;
}

.feature-art--hand-point img {
    width: 162px;
    height: 140px;
    mix-blend-mode: multiply;
}

.feature-group--audio {
    top: 581px;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
    gap: 159px;
}

.feature-art--moon {
    width: 123px;
    height: 123px;
    opacity: 0.87;
}

.feature-art--moon img {
    width: 123px;
    height: 123px;
    mix-blend-mode: darken;
}

.feature-copy--audio {
    width: 416px;
}

.feature-title--audio {
    width: 246px;
}

.feature-body--audio {
    width: 416px;
}

.feature-divider-wrap--audio {
    justify-content: flex-start;
    margin-left: 95px;
}

.feature-moon--top-right {
    position: absolute;
    top: 39px;
    right: 150px;
    width: 128px;
    height: 147px;
}

.feature-moon--top-right img {
    width: 128px;
    height: 147px;
    mix-blend-mode: darken;
}

.features-bottom-copy {
    position: absolute;
    left: 50%;
    top: 581px;
    width: 504px;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 12px;
}

.features-bottom-text {
    width: 420px;
    color: var(--color-ink);
}

.features-bottom-divider-wrap {
    position: static;
    transform: none;
}

/* ============================================================
   PLAN
   ============================================================ */

.plan-section {
    min-height: 1024px;
    padding: 0;
}

.plan-canvas {
    position: relative;
    width: min(1440px, 100%);
    min-height: 1024px;
    margin: 0 auto;
}

.plan-heading {
    position: absolute;
    top: 70px;
    left: 50%;
    width: min(432px, calc(100% - 32px));
    transform: translateX(-50%);
    font-family: var(--font-serif), serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-heading);
}

.plan-heading-line {
    display: block;
}

.plan-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-ink);
}

.plan-card--download {
    left: 187px;
    top: 172px;
    width: 334px;
    min-height: 559px;
    border: 9px;
    padding: 0 65px 0 65px;
}

.plan-card--explore {
    left: 521px;
    top: 219px;
    width: 355px;
    min-height: 458px;
    border: 9px;
    padding: 0 70px 123px 56px;
}

.plan-card--unlock {
    left: 943px;
    top: 220px;
    width: 315px;
    min-height: 495px;
    border: 9px;
    padding: 0 0 64px 0;
}

.plan-art {
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.plan-art img {
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.plan-art--download {
    width: 334px;
    height: 210px;
    margin-left: 6px;
}

.plan-art--download img {
    width: 334px;
    height: 210px;
}

.plan-art--explore {
    width: 131px;
    height: 152px;
    margin-bottom: 12px;
}

.plan-art--explore img {
    width: 133px;
    height: 155px;
}

.plan-art--unlock {
    width: 111px;
    height: 151px;
    margin-bottom: 12px;
}

.plan-art--unlock img {
    width: 112px;
    height: 151px;
}

.plan-copy {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.plan-copy--download {
    margin-top: 22px;
    width: 243px;
}

.plan-copy--explore {
    margin-top: 22px;
    width: 286px;
}

.plan-copy--unlock {
    margin-top: 22px;
    width: 243px;
}

.plan-title {
    font-family: var(--font-serif), serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-ink);
    text-shadow: var(--text-shadow-heading);
}

.plan-body {
    width: 188px;
    font-family: var(--font-sans), sans-serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-ink);
}

.plan-list,
.pricing-list {
    display: grid;
    gap: 10px;
    margin-top: 0;
    padding-left: 18px;
    list-style: disc;
}

.plan-copy--explore .plan-list {
    width: 188px;
    margin-top: -2px;
    text-align: left;
}

.plan-copy--unlock .plan-list {
    width: 197px;
    margin-top: -2px;
    text-align: left;
}

.plan-copy--download .plan-body {
    margin-top: 2px;
    text-align: center;
}

.plan-list li,
.pricing-list li,
.faq-item p {
    font-size: 16px;
    line-height: 1.05;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-section {
    min-height: 773px;
    padding: 0;
}

.pricing-canvas {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    min-height: 773px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 17px clamp(24px, 14vw, 208px) 24px;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    margin: 0 auto 30px;
    font-family: var(--font-serif), serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-ink);
}

.pricing-switch {
    width: 105px;
    height: 38px;
    border: 0;
    border-radius: 15px;
    background: rgba(109, 11, 11, 0.25);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    overflow: hidden;
}

.pricing-switch img {
    width: 39px;
    height: 39px;
    object-fit: contain;
    mix-blend-mode: darken;
    pointer-events: none;
}

.pricing-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 43px;
}

.pricing-card {
    position: relative;
    top: 75px;
    width: 318px;
    min-height: 651px;
    border: 1px solid rgba(47, 33, 22, 0.72);
    background:
        linear-gradient(180deg, rgba(248, 236, 201, 0.08), rgba(248, 236, 201, 0.02));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 24px 14px;
    color: var(--color-ink);
    backdrop-filter: blur(1px);
}

.pricing-card--featured {
    transform: translateY(0px);
}

.pricing-card__ornament {
    width: 184px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.pricing-card__ornament img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-card__art {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    pointer-events: none;
}

.pricing-card__art img {
    object-fit: contain;
    width: auto;
    height: 108px;
}

.pricing-card__art--standard img,
.pricing-card__art--plus img {
    height: 106px;
}

.pricing-card__content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 10px 0 42px;
}

.pricing-card__title {
    font-family: var(--font-serif), serif;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-ink);
    text-shadow: var(--text-shadow-heading);
}

.pricing-card__title--free {
    text-transform: uppercase;
}

.pricing-card__price {
    margin-top: 5px;
    font-family: var(--font-serif), serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-ink);
    text-shadow: var(--text-shadow-heading);
}

.pricing-card__price--split {
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.pricing-card__price-main {
    font-size: 32px;
    line-height: 1;
}

.pricing-card__price-suffix {
    font-size: 24px;
    line-height: 1;
}

.pricing-card__note,
.pricing-card__save {
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-ink);
}

.pricing-card__note {
    margin-top: 2px;
}

.pricing-card__save {
    margin-top: 0;
}

.pricing-card__summary {
    margin-top: 14px;
    max-width: 220px;
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-ink);
}

.pricing-card__summary--wide {
    max-width: 226px;
}

.pricing-card__list {
    display: grid;
    gap: 3px;
    margin-top: 14px;
    padding-left: 0;
    list-style: none;
    font-family: var(--font-sans), sans-serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-ink);
}

.pricing-card__item--disabled {
    text-decoration: line-through;
    opacity: 0.85;
}

.pricing-card__addons {
    margin-top: auto;
    padding-top: 18px;
    max-width: 210px;
    font-family: var(--font-sans), sans-serif;
    font-size: 14px;
    line-height: 1.12;
    color: var(--color-ink);
}

.pricing-card__addons--standard {
    max-width: 213px;
}

.pricing-card__addons--plus {
    max-width: 214px;
}

.pricing-card__ornament--bottom {
    margin-top: 12px;
}

/* ============================================================
   OUTCOME
   ============================================================ */

.failure-success-section {
    min-height: 755px;
    padding: 0;
}

.outcome-canvas {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    min-height: 755px;
    margin: 0 auto;
    padding: 30px 70px 24px;
}

.outcome-block {
    position: relative;
}

.outcome-block--top {
    min-height: 315px;
}

.outcome-block--bottom {
    min-height: 311px;
    margin-top: 36px;
}

.outcome-heading {
    font-family: var(--font-serif), serif;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-heading);
}

.outcome-heading--top {
    width: 440px;
    margin-left: 56px;
}

.outcome-text-group {
    position: relative;
}

.outcome-text-group--top {
    width: 720px;
    margin-top: 56px;
    margin-left: 72px;
}

.outcome-paragraph {
    position: relative;
}

.outcome-paragraph--intro {
    width: 705px;
}

.outcome-paragraph--body {
    width: 600px;
    margin-top: 36px;
}

.outcome-paragraph .problem-text {
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-ink);
}

.outcome-illustration {
    position: absolute;
    pointer-events: none;
    object-fit: contain;
}

.outcome-illustration--seated {
    top: 97px;
    right: 52px;
    width: 246px;
    height: 192px;
}

.outcome-block--bottom .outcome-illustration--duo {
    left: 82px;
    top: 12px;
    width: 246px;
    height: 246px;
}

.outcome-text-group--bottom {
    width: 820px;
    margin-left: auto;
    margin-right: 38px;
    text-align: right;
}

.outcome-heading--bottom {
    width: 770px;
    margin-left: auto;
    text-align: right;
}

.outcome-paragraph--body-large {
    width: 720px;
    margin-top: 36px;
    margin-left: auto;
}

.outcome-paragraph--closing {
    width: 540px;
    margin-top: 38px;
    margin-left: auto;
}

.outcome-closing {
    font-family: var(--font-sans), sans-serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-ink);
    text-align: right;
}

.outcome-divider-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.outcome-divider {
    display: block;
    object-fit: contain;
    width: 247px;
    height: 70px;
}

.outcome-divider-wrap--top {
    top: 30px;
    left: 38%;
    transform: translateX(-50%);
}

.outcome-divider-wrap--bottom {
    top: 30px;
    left: 68%;
    transform: translateX(-50%);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer-section {
    min-height: 1120px;
    padding: 0;
}

.footer-canvas {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    min-height: 1120px;
    margin: 0 auto;
    padding: 24px 52px 20px;
}

.footer-heading {
    position: absolute;
    left: 50%;
    top: 56px;
    transform: translateX(-50%);
    font-family: var(--font-serif), serif;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: var(--text-shadow-heading);
}

.footer-faq-grid {
    position: absolute;
    inset: 112px 72px auto 72px;
    height: 338px;
}

.footer-faq {
    position: absolute;
    width: 445px;
    color: var(--color-ink);
}

.footer-faq__title {
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-ink);
}

.footer-faq__text {
    margin-top: 16px;
    font-family: var(--font-sans), sans-serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-ink);
}

.footer-faq__divider {
    width: 247px;
    height: 70px;
    object-fit: contain;
    margin-top: 8px;
    margin-left: 56px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.footer-faq--left-top {
    left: 88px;
    top: 50px;
}

.footer-faq--right-top {
    left: 760px;
    top: 50px;
}

.footer-faq--left-bottom {
    left: 88px;
    top: 220px;
}

.footer-faq--right-bottom {
    left: 760px;
    top: 220px;
}

.footer-note {
    position: absolute;
    left: 50%;
    top: 570px;
    transform: translateX(-50%);
    width: 825px;
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 17px;
    align-items: start;
}

.footer-note__label {
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-ink);
}

.footer-note__text {
    margin-top: 0;
    font-family: var(--font-sans), sans-serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-ink);
}

.footer-note__divider {
    grid-column: 1 / -1;
    margin-top: 10px;
    margin-left: 350px;
}

.footer-video {
    position: relative;
    left: 50%;
    top: auto;
    /*width: min(560px, calc(100% - 104px));*/
    width: min(680px, calc(100% - 104px));
    aspect-ratio: 16 / 9;
    transform: translateX(-50%);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.36);
    box-shadow: var(--shadow-card);
}

.footer-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-cta {
    position: absolute;
    left: 50%;
    top: 683px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 119px;
    height: 45px;
    padding: 0 24px;
    border-radius: 12px;
    background: rgba(109, 11, 11, 0.62);
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-ink);
    box-shadow: var(--shadow-card);
}

.footer-cta__button--large {
    min-width: 189px;
}

.footer-cta__or {
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-ink);
}

.footer-cta__map {
    width: 85px;
    height: 85px;
    object-fit: contain;
    pointer-events: none;
    margin-left: -2px;
}

.footer-dog {
    position: absolute;
    left: 92px;
    top: 820px;
    width: 187px;
    height: 191px;
    object-fit: contain;
    pointer-events: none;
    transform: scaleY(-1) rotate(180deg);
    mix-blend-mode: multiply;
}

.footer-social {
    position: absolute;
    left: 250px;
    top: 910px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-social a {
    display: inline-flex;
    transition: transform 180ms ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-social img {
    width: 47px;
    height: 47px;
}

.footer-links {
    position: absolute;
    right: 178px;
    top: 884px;
    display: grid;
    gap: 8px;
    justify-items: start;
    font-family: var(--font-sans), sans-serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-ink);
}

.footer-links__title {
    margin-bottom: 8px;
    font-family: var(--font-serif), serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.05;
}

.footer-copy {
    position: absolute;
    left: 50%;
    top: 1080px;
    transform: translateX(-50%);
    font-family: var(--font-sans), sans-serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-ink);
}

/* ============================================================
   TERMS
   ============================================================ */

.terms-page {
    min-height: 100vh;
    display: block;
    /*background:*/
    /*    radial-gradient(circle at top, rgba(255, 247, 225, 0.82), rgba(244, 228, 188, 0.96) 52%, rgba(237, 215, 171, 1) 100%);*/
}

.terms-page__main {
    width: 100%;
    /*overflow: visible;*/
}

.terms-section {
    display: flex;
}

.terms-section--top{
        position: relative;
        z-index: -1;
        width: 100%;
        min-height: 1200px;
        margin: 0 auto;
        /*padding: 24px 52px 20px;*/
}

.terms-section--bottom{
    position: relative;
    z-index: -1;
    width: 100%;
    min-height: 1200px;
    margin: 0 auto;
    /*padding: 24px 52px 20px;*/
}

.terms-section--intro {
    min-height: 1320px;
}

.terms-section--details {
    min-height: 1120px;
    background:
        radial-gradient(circle at top, rgba(250, 235, 196, 0.82), rgba(237, 214, 170, 0.96) 60%, rgba(229, 206, 159, 1) 100%);
}

.terms-section__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.terms-section--intro .terms-section__bg {
    opacity: 0.24;
}

.terms-section--details .terms-section__bg {
    opacity: 0.44;
}

.terms-section__content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1320px, calc(100% - 96px));
    max-width: none;
    margin: 0;
    padding: 46px 24px 46px;
    font-family: var(--font-sans), sans-serif;
    font-size: 14px;
    text-wrap-mode: wrap;
    line-height: 1.38;
    color: rgba(0, 0, 0, 0.94);
}

.terms-section__content--intro {
    width: min(1320px, calc(100% - 96px));
    padding-top: 46px;
}

.terms-section__content--details {
    width: min(1320px, calc(100% - 96px));
    padding-top: 32px;
    font-size: 15px;
    line-height: 1.34;
}

.terms-section__content h1,
.terms-section__content h2 {
    font-family: var(--font-serif), serif;
    line-height: 1.08;
    font-weight: 700;
    color: var(--color-ink);
    text-shadow: 0 1px 0 rgba(255, 244, 214, 0.2);
}

.terms-section__content h1 {
    font-size: 22px;
    margin-bottom: 6px;
}

.terms-section__updated {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.2;
}

.terms-section__content h2 {
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 18px;
}

.terms-section__content p {
    margin-bottom: 5px;
}

.terms-section__content strong {
    font-family: var(--font-serif), serif;
    font-weight: 700;
}

.terms-page__footer {
    display: flex;
    position: relative;
    top: 40px;
    justify-content: center;
    padding: 18px 24px 30px;
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-primary);
}

.terms-page__home-link {
    text-shadow: var(--text-shadow-heading);
}

.terms-section--details .terms-section__content h2 {
    margin-top: 16px;
    font-size: 22px;
}

.terms-section--details .terms-section__content p {
    font-size: 15px;
    line-height: 1.42;
    max-width: 1260px;
}

.terms-section--details .terms-section__content {
    padding-bottom: 96px;
}

/* ============================================================
   PRIVACY
   ============================================================ */

.privacy-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(255, 247, 225, 0.82), rgba(244, 228, 188, 0.96) 52%, rgba(237, 215, 171, 1) 100%);
    /*background:*/
    /*    radial-gradient(circle at top, rgba(255, 247, 225, 0.82), rgba(244, 228, 188, 0.96) 52%, rgba(237, 215, 171, 1) 100%);*/
}

.privacy-page__main {
    position: relative;
    width: 100%;
}

.privacy-page__canvas {
    position: relative;
    width: 100%;
    min-height: 2236px;
    overflow: hidden;
    background: transparent;
    /*background:*/
    /*    radial-gradient(circle at top, rgba(255, 247, 225, 0.88), rgba(244, 228, 188, 0.98) 58%, rgba(237, 215, 171, 1) 100%);*/
}

.privacy-page__bg {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.privacy-page__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /*mix-blend-mode: multiply;*/
}

.privacy-page__bg--top {
    top: 0;
    height: 959px;
}

.privacy-page__bg--middle {
    top: 959px;
    height: 909px;
}

.privacy-page__bg--bottom {
    top: 1868px;
    height: 355px;
}

.privacy-page__content {
    position: absolute;
    left: calc(50% - 660px);
    top: 91px;
    width: 1321px;
    font-family: var(--font-sans), sans-serif;
    font-size: 16px;
    line-height: 1;
    color: var(--color-ink);
}

.privacy-page__content h1,
.privacy-page__content h2 {
    font-family: var(--font-serif), serif;
    font-weight: 700;
    line-height: 1;
    color: var(--color-ink);
}

.privacy-page__content h1 {
    margin-bottom: 4px;
    font-size: 18px;
}

.privacy-page__updated {
    margin-bottom: 6px;
}

.privacy-page__content h2 {
    margin-top: 4px;
    margin-bottom: 2px;
    font-size: 16px;
}

.privacy-page__content p {
    margin-bottom: 0;
    line-height: 1.06;
}

.privacy-page__content ul {
    margin: 0 0 0 24px;
    padding: 0;
}

.privacy-page__content li {
    margin: 0;
    line-height: 1.06;
}

.privacy-page__content li + li {
    margin-top: 4px;
}

.privacy-page__content strong {
    font-family: var(--font-serif), serif;
    font-weight: 700;
}

.privacy-page__footer {
    display: flex;
    position: relative;
    top: 40px;
    justify-content: center;
    padding: 18px 24px 30px;
    font-family: var(--font-serif), serif;
    font-size: 16px;
    line-height: 1.05;
    color: var(--color-primary);
}

.privacy-page__home-link {
    text-shadow: var(--text-shadow-heading);
}

/* ============================================================
   ANIMATION
   ============================================================ */

@keyframes lift-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
    .problem-layout,
    .feature-row,
    .feature-row--reverse,
    .plan-grid,
    .pricing-grid,
    .outcome-grid {
        grid-template-columns: 1fr;
    }

    .feature-row--reverse .feature-media {
        order: 0;
    }

    .problem-art {
        min-height: 440px;
    }

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

    .hero-section,
    .hero-canvas {
        min-height: 760px;
    }

    .hero-canvas {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "copy"
            "art";
    }

    .hero-title {
        margin-top: 176px;
        width: min(463px, 78vw);
        font-size: clamp(2rem, 3.6vw, 2.3rem);
    }

    .hero-body {
        width: min(1000px, calc(100% - 120px));
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hero-copy {
        width: min(365px, 100%);
    }

    .hero-hand-art {
        max-width: min(381px, 70vw);
        margin-top: 24px;
    }

    .hero-painter {
        width: min(392px, 50vw);
    }

    .hero-ornament {
        width: min(247px, 34vw);
    }

    .hero-tagline {
        top: auto;
        bottom: 36px;
        font-size: clamp(1.2rem, 2vw, 1.45rem);
    }
}

@media (max-width: 820px) {
    .container {
        padding: 0 20px;
    }

    .hero-badges {
        top: 12px;
        gap: 10px;
    }

    .hero-badges .store-badge img {
        height: 36px;
    }

    .hero-navbar {
        top: 56px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }

    .navbar ul {
        gap: 18px;
        justify-content: center;
    }

    .hero-section,
    .hero-canvas {
        min-height: 720px;
    }

    .hero-title {
        margin-top: 190px;
        width: calc(100% - 32px);
        max-width: 462px;
        font-size: clamp(1.9rem, 5.2vw, 2.35rem);
    }

    .hero-body {
        width: calc(100% - 40px);
        margin-top: 30px;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hero-copy {
        width: min(365px, 100%);
    }

    .hero-hand-art {
        max-width: min(340px, 72vw);
        margin-top: 20px;
    }

    .hero-painter {
        width: min(330px, 64vw);
    }

    .hero-ornament {
        width: min(220px, 44vw);
    }

    .hero-tagline {
        bottom: 32px;
        font-size: 1.15rem;
    }

    .phone-caption {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .hero-section,
    .hero-canvas {
        min-height: 680px;
    }

    .hero-badges {
        gap: 8px;
    }

    .hero-badges .store-badge img {
        height: 32px;
    }

    .hero-title {
        margin-top: 184px;
        width: calc(100% - 32px);
        font-size: 1.95rem;
    }

    .hero-body {
        width: calc(100% - 32px);
        margin-top: 26px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-hand-art {
        max-width: 300px;
    }

    .hero-painter {
        width: 44vw;
    }

    .hero-ornament {
        width: 36vw;
    }

    .hero-tagline {
        bottom: 22px;
        font-size: 0.95rem;
    }

    .problem-art {
        min-height: 340px;
    }

    .problem-artwork--back {
        width: 58%;
    }

    .problem-artwork--front {
        width: 66%;
    }

    .problem-artwork--reader {
        width: 34%;
    }

    .problem-artwork--businessman {
        width: 30%;
    }

    .section-title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }
}

@media (max-width: 1100px) {
    .section {
        overflow: visible;
    }

    .hero-section,
    .problem-section,
    .phones-section,
    .features-section,
    .plan-section,
    .pricing-section,
    .failure-success-section,
    .footer-section {
        min-height: auto;
    }

    .hero-canvas,
    .problem-canvas,
    .phones-canvas,
    .features-canvas,
    .plan-canvas,
    .pricing-canvas,
    .outcome-canvas,
    .footer-canvas {
        min-height: 0;
        width: min(100%, 1120px);
    }

    .hero-canvas {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px 24px 60px;
    }

    .hero-badges {
        position: fixed;
        top: 10px;
        left: 50%;
        order: 0;
        transform: translateX(-50%);
        z-index: 40;
        padding: 0;
        border-radius: 0;
        background: transparent;
        margin-bottom: 18px;
    }

    [class*="divider"] {
        display: none !important;
    }

    .phones-card-ornament {
        display: none;
    }

    .hero-navbar {
        position: static;
        order: 1;
        transform: none;
        margin-bottom: 30px;
        margin-top: 50px;
        left: auto;
        top: auto;
    }

    .hero-title {
        order: 2;
        margin-top: 0;
        width: min(640px, 100%);
        top: auto;
    }

    .hero-body {
        order: 3;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 28px;
    }

    .hero-copy-column,
    .hero-art-column {
        width: 100%;
        justify-self: center;
    }

    .hero-copy {
        width: min(420px, 100%);
        justify-items: center;
    }

    .hero-copy p {
        text-align: center;
    }

    .hero-hand-art {
        top: 0;
        max-width: min(420px, 72vw);
        margin-top: 8px;
    }

    .hero-painter {
        top: 0;
        width: min(392px, 60vw);
    }

    .hero-ornament {
        width: min(260px, 40vw);
    }

    .hero-tagline {
        position: static;
        order: 4;
        margin-top: 32px;
        width: 100%;
    }

    .problem-canvas {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 44px 20px 72px;
        height: auto;
    }

    .problem-canvas > * {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .problem-paragraph .problem-text {
        width: 100% !important;
        max-width: none;
        margin-inline: auto;
        text-align: inherit;
    }

    .problem-heading--top {
        order: 1;
        width: min(720px, 100%);
        text-align: center;
    }

    .problem-paragraph--intro-a {
        order: 2;
        width: min(700px, 100%);
        margin-top: 22px;
        text-align: center;
    }

    .problem-illustration--diagonal {
        display: contents;
    }

    .problem-illustration-eiffel,
    .problem-illustration-man {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: min(220px, 55vw);
        height: auto;
        object-fit: contain;
        margin-top: 8px;
    }

    .problem-illustration-eiffel {
        order: 3;
    }

    .problem-paragraph--intro-b {
        order: 4;
        width: min(640px, 100%);
        text-align: center;
    }

    .problem-illustration-man {
        order: 5;
    }

    .problem-paragraph--intro-c {
        order: 6;
        width: min(760px, 100%);
        text-align: center;
    }

    .problem-divider-wrap--intro {
        display: none;
    }

    .problem-divider-wrap--bridge,
    .problem-divider-wrap--bottom {
        display: none;
    }

    .problem-heading--middle {
        order: 7;
        width: min(580px, 100%);
        margin-top: 18px;
        text-align: center;
    }

    .problem-paragraph--bridge {
        order: 8;
        width: min(700px, 100%);
        text-align: center;
    }

    .problem-illustration-businessman {
        order: 9;
        width: min(170px, 45vw);
        height: auto;
        margin-top: 12px;
    }

    .problem-paragraph--bottom {
        order: 10;
        width: min(760px, 100%);
        text-align: center;
    }

    .problem-illustration-reader {
        order: 11;
        width: min(220px, 60vw);
        height: auto;
        margin-top: 14px;
    }

    .phones-canvas {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 24px 18px;
        padding: 40px 20px 68px;
    }

    .phones-plan-title,
    .phones-card,
    .phones-bottom-copy {
        position: static;
        top: auto;
        left: auto;
        transform: none;
    }

    .phones-plan-title {
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
    }

    .phones-plan-title--free {
        order: 1;
    }

    .phones-card--free-1,
    .phones-card--free-2 {
        order: 2;
    }

    .phones-plan-title--premium {
        order: 3;
    }

    .phones-card--premium-1,
    .phones-card--premium-2,
    .phones-card--premium-3 {
        order: 4;
    }

    .phones-card {
        width: min(220px, calc(50% - 12px));
    }

    .phones-bottom-copy {
        order: 5;
        width: min(100%, 560px);
        margin-top: 12px;
    }

    .features-canvas {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px 72px;
    }

    .features-heading {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        order: 1;
        width: min(760px, 100%);
        margin-bottom: 8px;
        text-align: center;
    }

    .feature-group {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: min(820px, 100%);
        gap: 14px;
        margin-top: 30px;
    }

    .feature-group--captivating,
    .feature-group--english,
    .feature-group--navigation,
    .feature-group--audio {
        top: auto;
        left: auto;
        width: min(820px, 100%);
        transform: none;
        gap: 14px;
    }

    .feature-group--captivating {
        order: 3;
    }

    .feature-group--english {
        order: 4;
    }

    .feature-group--navigation {
        order: 5;
    }

    .feature-group--audio {
        order: 6;
    }

    .feature-copy {
        order: 1;
        width: min(760px, 100%);
        justify-items: center;
    }

    .feature-art {
        order: 2;
    }

    .feature-divider-wrap {
        display: none;
    }

    .feature-title,
    .feature-body {
        width: 100% !important;
        text-align: center;
    }

    .feature-art--clown,
    .feature-art--shakespeare,
    .feature-art--hand-point,
    .feature-art--moon {
        width: min(220px, 54vw);
        height: auto;
    }

    .feature-art--clown img,
    .feature-art--shakespeare img,
    .feature-art--hand-point img,
    .feature-art--moon img,
    .feature-moon--top-right img {
        width: 100%;
        height: auto;
    }

    .feature-moon--top-right {
        position: static;
        top: auto;
        right: auto;
        order: 2;
        width: 72px;
        height: auto;
        margin: 2px auto 6px;
    }

    .plan-canvas {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        padding: 42px 20px 72px;
    }

    .plan-heading {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        width: min(760px, 100%);
        max-width: 100%;
        margin-inline: auto;
        padding-inline: 0;
        text-align: center;
    }

    .plan-card {
        position: static;
        width: min(760px, 100%);
        min-height: 0;
        padding: 0;
    }

    .plan-art {
        margin-bottom: 0;
    }

    .plan-art--download,
    .plan-art--explore,
    .plan-art--unlock {
        width: min(320px, 100%);
        height: auto;
        margin-left: 0;
    }

    .plan-art img {
        width: 60%;
        height: auto;
    }

    .plan-copy {
        width: min(620px, 100%);
    }

    .plan-card--download .plan-copy {
        order: 2;
    }

    .plan-card--download .plan-art {
        order: 1;
    }

    .pricing-canvas {
        padding: 24px 20px 56px;
        min-height: 0;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .pricing-card {
        top: auto;
        width: min(460px, 100%);
        min-height: 0;
    }

    .pricing-card__content {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .pricing-card__summary,
    .pricing-card__addons {
        max-width: 100%;
    }

    .pricing-card__list {
        width: 100%;
        text-align: left;
    }

    .outcome-canvas {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 40px 20px 72px;
    }

    .outcome-block {
        min-height: 0;
        width: 100%;
    }

    .outcome-block--top,
    .outcome-block--bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .outcome-block--bottom .outcome-illustration--duo {
        order: 4;
    }

    .outcome-text-group--bottom {
        order: 3;
    }

    .outcome-heading,
    .outcome-text-group,
    .outcome-paragraph,
    .outcome-closing {
        position: static;
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .outcome-illustration {
        position: static;
        /*width: min(320px, 78vw);*/
        width: min(30%, 78vw);
        height: auto;
        margin-top: 10px;
    }

    .outcome-divider-wrap {
        display: none;
    }

    .outcome-text-group--bottom {
        text-align: center;
    }

    .footer-canvas {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 44px 20px 56px;
        min-height: 0;
    }

    .footer-heading {
        position: static;
        transform: none;
        margin-bottom: 8px;
    }

    .footer-faq-grid {
        position: static;
        width: min(860px, 100%);
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;
        inset: auto;
    }

    .footer-faq {
        position: static;
        width: 100%;
        text-align: center;
    }

    .footer-faq__title,
    .footer-faq__text {
        text-align: center;
    }

    .footer-faq__divider {
        display: none;
    }

    .footer-note {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: min(860px, 100%);
        grid-template-columns: 1fr;
        margin-top: 8px;
        text-align: center;
    }

    .footer-note__label,
    .footer-note__text {
        width: 100%;
        margin-inline: auto;
        text-align: center;
    }

    .footer-note__text {
        max-width: 860px;
    }

    .footer-note__divider {
        margin-left: 0;
        justify-self: center;
    }

    .footer-video {
        position: relative;
        /*left: auto;*/
        left: 50%;
        top: auto;
        width: min(680px, 100%);
        transform: translateX(-50%);
        /*transform: none;*/
        margin-top: 2px;
    }

    .footer-cta {
        position: static;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 10px;
        margin-top: 2px;
    }

    .footer-cta__map {
        order: 1;
        flex: 0 0 100%;
        margin: 0 auto 2px;
    }

    .footer-cta__button,
    .footer-cta__or {
        order: 2;
    }

    .footer-dog {
        position: static;
        width: min(180px, 48vw);
        height: auto;
        margin-top: 8px;
    }

    .footer-social {
        position: static;
        margin-top: 2px;
    }

    .footer-links {
        position: static;
        right: auto;
        top: auto;
        justify-items: center;
        text-align: center;
        margin-top: 8px;
    }

    .footer-copy {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        margin-top: 4px;
    }

    .terms-section {
        min-height: 0;
    }

    .terms-page__main,
    .privacy-page__main {
        background-image: url("assets/the_plan_bg.png");
        background-repeat: repeat-y;
        background-position: top center;
        background-size: 100% auto;
    }

    .terms-section--top,
    .terms-section--bottom,
    .privacy-page__bg {
        display: none;
    }

    .terms-section__content {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: min(calc(100% - 24px), 960px);
        max-width: none;
        margin: 0 auto;
        padding: 24px 0 52px;
        font-size: 17px;
        line-height: 1.48;
    }

    .terms-section__content h1 {
        font-size: clamp(24px, 5.8vw, 34px);
    }

    .terms-section__content h2 {
        font-size: clamp(21px, 4.8vw, 28px);
    }

    .terms-section--intro,
    .terms-section--details {
        min-height: 0;
    }

    .privacy-page__canvas {
        overflow: visible;
        min-height: 0;
    }

    .privacy-page__content {
        position: relative;
        left: auto;
        top: auto;
        width: min(calc(100% - 24px), 960px);
        margin: 0 auto;
        padding: 34px 0 64px;
        font-size: 17px;
        line-height: 1.48;
    }

    .privacy-page__content h1 {
        font-size: clamp(24px, 5.8vw, 34px);
    }

    .privacy-page__content h2 {
        font-size: clamp(21px, 4.8vw, 28px);
    }
}

@media (max-width: 820px) {
    .hero-badges {
        flex-wrap: wrap;
        top: 8px;
    }

    .hero-navbar {
        position: fixed;
        top: 8px;
        left: 12px;
        z-index: 45;
        margin: 0;
        width: auto;
    }

    .hero-nav-toggle {
        display: inline-flex;
        width: 78px;
        justify-content: center;
    }

    .hero-navbar ul {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        min-width: 142px;
        padding: 6px 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-navbar.is-open ul {
        display: flex;
    }

    .hero-navbar ul a {
        font-size: 13px;
    }

    .hero-title {
        margin-top: 60px;
        width: min(100%, 520px);
        font-size: clamp(1.9rem, 6vw, 2.5rem);
    }

    .hero-badges .store-badge img {
        height: 40px;
    }

    .hero-copy {
        width: min(100%, 400px);
    }

    .hero-hand-art {
        max-width: min(360px, 82vw);
    }

    .hero-painter {
        width: min(360px, 72vw);
    }

    .hero-ornament {
        width: min(240px, 46vw);
    }

    .problem-heading--top,
    .problem-heading--middle,
    .phones-plan-title,
    .features-heading,
    .plan-heading,
    .pricing-card__title,
    .outcome-heading,
    .footer-heading {
        font-size: clamp(1.7rem, 6.8vw, 2.45rem);
    }

    .phones-canvas {
        gap: 26px 0;
    }

    .phones-card {
        width: min(100%, 360px);
    }

    .phones-bottom-copy {
        width: min(100%, 560px);
    }

    .phones-bottom-text {
        width: 100%;
    }

    .feature-group {
        width: min(100%, 680px);
    }

    .feature-copy {
        width: 100%;
    }

    .plan-card,
    .pricing-card,
    .footer-faq-grid,
    .footer-note,
    .outcome-block,
    .terms-section__content,
    .privacy-page__content {
        width: min(100%, 680px);
    }

    .terms-section__content,
    .privacy-page__content {
        width: min(calc(100% - 32px), 680px);
        margin-inline: auto;
    }

    .plan-heading {
        width: min(100%, 720px);
    }

    .footer-faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        flex-direction: column;
        align-items: center;
        row-gap: 8px;
    }

    .footer-cta__map {
        order: 1;
    }

    .footer-cta__button:first-of-type {
        order: 2;
    }

    .footer-cta__or {
        order: 3;
    }

    .footer-cta__button--large {
        order: 4;
    }
}

@media (max-width: 640px) {
    .hero-canvas {
        padding: 26px 16px 52px;
    }

    .hero-badges .store-badge img {
        height: 34px;
    }

    .hero-nav-toggle {
        width: 74px;
        padding: 7px 8px;
    }

    .hero-navbar ul {
        min-width: 132px;
        padding: 8px 10px;
        gap: 8px;
    }

    .hero-title {
        width: 100%;
        font-size: 1.95rem;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-hand-art {
        max-width: 300px;
    }

    .hero-painter {
        width: 44vw;
    }

    .hero-ornament {
        width: 36vw;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .problem-illustration-eiffel {
        width: min(150px, 36vw);
        max-width: 150px;
        max-height: 120px;
    }

    .problem-illustration-man {
        width: min(170px, 42vw);
        max-width: 170px;
        max-height: 126px;
    }

    .problem-canvas,
    .features-canvas,
    .plan-canvas,
    .pricing-canvas,
    .outcome-canvas,
    .footer-canvas {
        padding-left: 16px;
        padding-right: 16px;
    }

    .problem-heading--top,
    .problem-heading--middle,
    .features-heading,
    .plan-heading,
    .footer-heading {
        font-size: 1.9rem;
    }

    .problem-paragraph--intro-a,
    .problem-paragraph--intro-b,
    .problem-paragraph--intro-c,
    .problem-paragraph--bridge,
    .problem-paragraph--bottom,
    .outcome-paragraph--intro,
    .outcome-paragraph--body,
    .outcome-paragraph--body-large,
    .outcome-paragraph--closing {
        width: 100%;
    }

    .phones-plan-title {
        width: 100%;
        font-size: 1.9rem;
    }

    .phones-card {
        width: min(100%, 360px);
    }

    .phones-card-screenshot {
        width: min(100%, 137px);
    }

    .phones-card-label,
    .phones-card-label--wide {
        width: 100%;
        min-height: 0;
        font-size: 15px;
    }

    .phones-bottom-copy {
        width: 100%;
    }

    .feature-art--clown,
    .feature-art--shakespeare,
    .feature-art--hand-point,
    .feature-art--moon,
    .feature-moon--top-right {
        width: min(44vw, 180px);
    }

    .plan-card,
    .pricing-card {
        width: 100%;
    }

    .plan-title,
    .pricing-card__title {
        font-size: 1.55rem;
    }

    .pricing-card__price {
        font-size: 2rem;
    }

    .pricing-card__content {
        padding-top: 12px;
    }

    .footer-faq__title,
    .footer-note__label,
    .footer-links__title {
        font-size: 15px;
    }

    .footer-faq__text,
    .footer-note__text,
    .footer-links,
    .footer-copy {
        font-size: 15px;
    }

    .terms-section__content,
    .privacy-page__content {
        left: auto;
        right: auto;
        width: min(calc(100% - 24px), 680px);
        max-width: none;
        margin-inline: auto;
        padding-inline: 10px;
        font-size: 17px;
        line-height: 1.5;
    }

    .terms-section__content h1,
    .privacy-page__content h1 {
        font-size: 26px;
    }

    .terms-section__content h2,
    .privacy-page__content h2 {
        font-size: 21px;
    }

    .terms-page__footer,
    .privacy-page__footer {
        padding: 16px 16px 26px;
        font-size: 15px;
    }
}
