
:root {
    --landing-teal: #0d5b5a;
    --landing-teal-dark: #064646;
    --landing-teal-soft: #e1f0ec;
    --landing-aqua: #0fa095;
    --landing-cream: #f5f0e7;
    --landing-cream-light: #fffbf2;
    --landing-gold: #d6a64e;
    --landing-gold-soft: #f5e5bc;
    --landing-ink: #1f2937;
    --landing-muted: #667085;
    --landing-border: rgba(13, 91, 90, 0.13);
    --landing-shadow: 0 24px 70px rgba(31, 41, 55, 0.12);
    --landing-shadow-soft: 0 14px 40px rgba(31, 41, 55, 0.08);
    --landing-radius-xl: 28px;
    --landing-radius-lg: 20px;
    --landing-radius-md: 14px;
    --landing-max-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.landing-page-body {
    background:
        radial-gradient(circle at top left, rgba(214, 166, 78, 0.18), transparent 32rem),
        radial-gradient(circle at 88% 8%, rgba(13, 91, 90, 0.11), transparent 30rem),
        linear-gradient(180deg, #faf7ef 0%, #f5f0e7 50%, #fbf7ee 100%);
    color: var(--landing-ink);
    overflow-x: hidden;
}

.landing-page-body main {
    width: 100%;
}

.landing-shell {
    width: min(100% - 32px, 1160px);
    margin: 22px auto;
    border: 1px solid rgba(13, 91, 90, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(250, 246, 236, 0.92)),
        radial-gradient(circle at 96% 22%, rgba(214, 166, 78, 0.16), transparent 18rem);
    box-shadow: var(--landing-shadow);
    overflow: hidden;
    position: relative;
}

.landing-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(13, 91, 90, 0.12) 1px, transparent 1px),
        linear-gradient(120deg, rgba(214, 166, 78, 0.08), transparent 35%);
    background-size: 18px 18px, 100% 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 85%, transparent 100%);
    opacity: 0.24;
}

.landing-header,
.landing-hero,
.landing-section,
.bottom-cta,
.landing-footer {
    position: relative;
    z-index: 1;
}

.landing-header {
    width: min(100% - 64px, var(--landing-max-width));
    margin: 0 auto;
    padding: 24px 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.landing-brand img {
    width: 160px;
    max-height: 58px;
    object-fit: contain;
    display: block;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #102a35;
    font-size: 14px;
    font-weight: 650;
}

.landing-nav a {
    position: relative;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: color 180ms ease, transform 180ms ease;
}

.landing-nav a:hover,
.landing-nav a:focus-visible {
    color: var(--landing-teal);
    transform: translateY(-1px);
}

.landing-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -17px;
    height: 2px;
    border-radius: 999px;
    background: var(--landing-teal);
}

.landing-login-link {
    margin-left: 4px;
}

.landing-nav-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--landing-teal), #064b50);
    color: #fff !important;
    box-shadow: 0 14px 24px rgba(13, 91, 90, 0.24);
}

.landing-nav-cta:hover,
.landing-nav-cta:focus-visible {
    transform: translateY(-2px);
}

.landing-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.landing-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--landing-teal);
    transition: transform 180ms ease, opacity 180ms ease;
}

.landing-menu-button.is-open span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.landing-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.landing-menu-button.is-open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.landing-hero {
    width: min(100% - 64px, var(--landing-max-width));
    margin: 28px auto 34px;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.08fr);
    gap: 40px;
    align-items: center;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--landing-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.landing-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 99px;
    background: var(--landing-gold);
}

.hero-copy h1 {
    max-width: 560px;
    font-size: clamp(44px, 5vw, 67px);
    line-height: 0.98;
    margin: 0;
    letter-spacing: -0.055em;
    font-weight: 900;
    color: #202631;
}

.hero-copy h1 span {
    color: var(--landing-teal);
}

.hero-description {
    max-width: 520px;
    margin: 24px 0 0;
    color: #55616f;
    font-size: 18px;
    line-height: 1.62;
    font-weight: 520;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin: 32px 0 34px;
    flex-wrap: wrap;
}

.landing-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 0 28px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.landing-button-primary {
    background: linear-gradient(135deg, #0f6a68, #063e43);
    color: #fff;
    box-shadow: 0 18px 32px rgba(13, 91, 90, 0.24);
}

.landing-button-secondary {
    background: rgba(255, 255, 255, 0.72);
    color: #26323d;
    border-color: rgba(31, 41, 55, 0.42);
}

.landing-button-secondary:hover,
.landing-button-secondary:focus-visible {
    border-color: var(--landing-teal);
    color: var(--landing-teal);
}

.landing-button-light {
    background: #fffdf5;
    color: var(--landing-teal);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
}

.hero-trust-grid {
    border-top: 1px solid rgba(31, 41, 55, 0.14);
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hero-trust-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    align-items: center;
    min-width: 0;
}

.hero-trust-grid .trust-icon {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--landing-teal);
    font-weight: 900;
    font-size: 21px;
}

.hero-trust-grid strong {
    color: #1f2937;
    font-size: 15px;
    line-height: 1.2;
}

.hero-trust-grid small {
    color: #596777;
    font-size: 12px;
    line-height: 1.2;
}

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

.decor-hanzi {
    position: absolute;
    color: rgba(214, 166, 78, 0.56);
    writing-mode: vertical-rl;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.decor-hanzi-top {
    right: 28px;
    top: -18px;
}

.decor-cloud {
    position: absolute;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    border: 2px solid rgba(214, 166, 78, 0.22);
    right: -6px;
    bottom: 20px;
    opacity: 0.8;
}

.decor-cloud::before,
.decor-cloud::after {
    content: "";
    position: absolute;
    border: inherit;
    border-radius: inherit;
}

.decor-cloud::before {
    width: 64px;
    height: 64px;
    left: -24px;
    top: 18px;
}

.decor-cloud::after {
    width: 38px;
    height: 38px;
    right: -20px;
    top: -10px;
}

.dashboard-mockup {
    width: min(100%, 470px);
    min-height: 390px;
    border-radius: 22px;
    border: 1px solid rgba(13, 91, 90, 0.13);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 22px 56px rgba(31, 41, 55, 0.14);
    display: grid;
    grid-template-columns: 124px 1fr;
    overflow: hidden;
    transform: rotate(-0.4deg);
    animation: floatDashboard 7s ease-in-out infinite;
}

.mock-sidebar {
    padding: 18px 12px;
    border-right: 1px solid rgba(31, 41, 55, 0.08);
    background: rgba(250, 247, 238, 0.9);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-sidebar img {
    width: 72px;
    height: auto;
    margin-bottom: 6px;
}

.mock-sidebar span {
    border-radius: 6px;
    padding: 9px 8px;
    color: #4f5d69;
    font-size: 10px;
    font-weight: 700;
}

.mock-sidebar span.is-active {
    background: var(--landing-teal);
    color: #fff;
}

.mock-content {
    padding: 24px 24px 18px;
}

.mock-greeting p {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
}

.mock-greeting small {
    color: #697586;
    font-weight: 600;
}

.mock-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 18px;
}

.mock-stat-grid article {
    min-height: 105px;
    padding: 13px;
    border: 1px solid rgba(13, 91, 90, 0.12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(31, 41, 55, 0.06);
}

.mock-stat-grid span {
    color: var(--landing-teal);
}

.mock-stat-grid small {
    display: block;
    color: #697586;
    font-size: 10px;
    margin: 7px 0;
    min-height: 24px;
}

.mock-stat-grid strong {
    display: block;
    font-size: 20px;
}

.mock-stat-grid em {
    font-style: normal;
    color: var(--landing-aqua);
    font-size: 10px;
    font-weight: 800;
}

.mock-progress {
    padding: 15px 17px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(13, 91, 90, 0.11);
}

.mock-progress div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 12px;
}

.progress-track {
    height: 7px;
    border-radius: 999px;
    background: #f1e7cf;
    overflow: hidden;
}

.progress-track span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--landing-teal), var(--landing-gold));
    animation: progressGrow 1.6s ease both;
}

.mock-continue {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 13px;
    border-radius: 14px;
    background: rgba(245, 240, 231, 0.76);
}

.mock-lesson-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--landing-teal);
    color: #fff;
    font-weight: 900;
    font-size: 20px;
}

.mock-continue strong,
.mock-continue small {
    display: block;
}

.mock-continue strong {
    font-size: 13px;
}

.mock-continue small {
    color: #667085;
    font-size: 11px;
}

.mock-continue a {
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--landing-teal);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

.flashcard-mockup {
    position: absolute;
    right: 0;
    top: 96px;
    width: 170px;
    min-height: 294px;
    padding: 18px 16px;
    border-radius: 24px;
    border: 1px solid rgba(13, 91, 90, 0.13);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 56px rgba(31, 41, 55, 0.18);
    text-align: center;
    transform: rotate(8deg);
    animation: floatCard 6s ease-in-out infinite;
}

.flashcard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flashcard-top span {
    width: 74px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--landing-teal), #dfe6df);
}

.flashcard-top small {
    font-size: 10px;
    font-weight: 800;
}

.flashcard-mockup strong {
    display: block;
    margin: 42px 0 8px;
    color: #1f2937;
    font-size: 36px;
    font-weight: 800;
}

.flashcard-mockup em {
    display: block;
    color: #55616f;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 8px;
}

.flashcard-mockup p {
    margin: 0 0 20px;
    font-weight: 900;
}

.flashcard-mockup button {
    border: 1px solid rgba(214, 166, 78, 0.28);
    background: #fffaf0;
    color: #6f5222;
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 10px;
    font-weight: 800;
}

.flashcard-rating {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 26px;
}

.flashcard-rating span {
    color: #596777;
    font-size: 8px;
    font-weight: 800;
}

.landing-section {
    width: min(100% - 64px, var(--landing-max-width));
    margin: 0 auto;
    padding: 18px 0 10px;
}

.section-title-row {
    display: grid;
    grid-template-columns: 72px auto 72px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    text-align: center;
}

.section-title-row span {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 91, 90, 0.5), transparent);
}

.section-title-row h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 34px);
    letter-spacing: -0.035em;
    font-weight: 900;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.path-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    min-height: 110px;
    padding: 22px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(13, 91, 90, 0.12);
    box-shadow: var(--landing-shadow-soft);
    text-decoration: none;
    color: inherit;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.path-card:hover,
.path-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(13, 91, 90, 0.38);
    box-shadow: 0 20px 38px rgba(31, 41, 55, 0.12);
}

.path-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 30%, #0f8985, var(--landing-teal));
    color: #fff;
    font-size: 33px;
    font-weight: 900;
}

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

.path-card strong {
    margin-bottom: 8px;
    font-size: 20px;
}

.path-card small {
    color: #667085;
    line-height: 1.45;
}

.path-card em {
    color: #1f2937;
    font-style: normal;
    font-size: 24px;
}

.features-section {
    padding-top: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.feature-card {
    min-height: 156px;
    padding: 24px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(13, 91, 90, 0.11);
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.07);
    text-align: center;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 18px 34px rgba(31, 41, 55, 0.11);
}

.feature-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    object-fit: contain;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 900;
}

.feature-card p {
    margin: 0;
    color: #596777;
    font-size: 12px;
    line-height: 1.5;
}

.learning-flow-section {
    padding-top: 28px;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
}

.step-card {
    position: relative;
    text-align: center;
}

.step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 38px;
    right: -25px;
    width: 42px;
    height: 1px;
    border-top: 2px dashed rgba(13, 91, 90, 0.26);
}

.step-number {
    position: absolute;
    top: -4px;
    left: 14px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--landing-teal);
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    z-index: 1;
}

.step-icon {
    width: 78px;
    height: 68px;
    margin: 16px auto 14px;
    border-radius: 16px;
    border: 1px solid rgba(13, 91, 90, 0.12);
    background: rgba(255, 255, 255, 0.78);
    display: grid;
    place-items: center;
    color: var(--landing-teal);
    font-size: 34px;
    box-shadow: 0 12px 24px rgba(31, 41, 55, 0.06);
}

.step-card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 900;
}

.step-card p {
    margin: 0;
    color: #667085;
    line-height: 1.48;
    font-size: 12px;
}

.pricing-section {
    padding: 38px 0 20px;
}

.pricing-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pricing-heading h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(25px, 3vw, 33px);
    letter-spacing: -0.035em;
}

.billing-toggle {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(214, 166, 78, 0.26);
}

.billing-toggle button,
.billing-toggle span {
    border: 0;
    border-radius: 999px;
    padding: 9px 16px;
    background: transparent;
    color: #596777;
    font-weight: 800;
    font-size: 12px;
}

.billing-toggle button {
    cursor: pointer;
}

.billing-toggle button.is-active {
    background: #fff3d0;
    color: #1f2937;
}

.billing-toggle span {
    background: var(--landing-gold-soft);
    color: #7a5613;
}

.pricing-grid {
    width: min(100%, 940px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pricing-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 274px;
    padding: 24px 22px;
    border-radius: 18px;
    border: 1px solid rgba(13, 91, 90, 0.14);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--landing-shadow-soft);
    overflow: hidden;
}

.pricing-plan.is-highlighted {
    border-color: var(--landing-teal);
    background:
        linear-gradient(180deg, rgba(13, 91, 90, 0.98) 0, rgba(13, 91, 90, 0.98) 95px, #fff 96px);
    transform: translateY(-6px);
}

.pricing-plan.is-highlighted .plan-header h3,
.pricing-plan.is-highlighted .plan-header p,
.pricing-plan.is-highlighted .plan-price strong,
.pricing-plan.is-highlighted .plan-price span {
    color: #fff;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 26px;
    padding: 12px 14px;
    border-radius: 0 0 12px 12px;
    background: var(--landing-gold);
    color: #3d2a0a;
    font-size: 11px;
    font-weight: 900;
}

.plan-header h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 900;
}

.plan-header p {
    margin: 0;
    color: #667085;
    font-size: 12px;
}

.plan-price {
    margin: 22px 0 14px;
}

.plan-price strong {
    font-size: 31px;
    line-height: 1;
}

.plan-price span {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.pricing-plan ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.pricing-plan li {
    position: relative;
    padding-left: 20px;
    color: #344054;
    font-size: 13px;
    line-height: 1.45;
}

.pricing-plan li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--landing-teal);
    font-size: 24px;
    line-height: 1;
}

.plan-button {
    margin-top: auto;
    min-height: 42px;
    border-radius: 8px;
    border: 1px solid var(--landing-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-teal);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.plan-button.is-primary {
    background: var(--landing-teal);
    color: #fff;
}

.bottom-cta {
    width: min(100% - 64px, var(--landing-max-width));
    margin: 26px auto 18px;
    padding: 28px 34px;
    border-radius: 17px;
    background:
        radial-gradient(circle at 12% 50%, rgba(214, 166, 78, 0.22), transparent 18rem),
        linear-gradient(135deg, var(--landing-teal), #00454d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 48px rgba(13, 91, 90, 0.22);
    overflow: hidden;
}

.bottom-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 12px);
    transform: rotate(-8deg) scale(1.4);
    pointer-events: none;
}

.bottom-cta > div {
    display: flex;
    align-items: center;
    gap: 26px;
    position: relative;
    z-index: 1;
}

.bottom-cta > div > span {
    color: var(--landing-gold);
    font-size: 54px;
    font-weight: 900;
}

.bottom-cta h2 {
    margin: 0 0 6px;
    font-size: clamp(23px, 3vw, 32px);
}

.bottom-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.bottom-cta .landing-button {
    position: relative;
    z-index: 1;
    min-height: 52px;
}

.landing-footer {
    margin-top: 18px;
    padding: 28px 54px 26px;
    border-top: 1px solid rgba(13, 91, 90, 0.1);
    display: grid;
    grid-template-columns: minmax(240px, 1.3fr) repeat(4, minmax(120px, 0.7fr));
    gap: 28px;
    background: rgba(255, 255, 255, 0.48);
}

.footer-brand img {
    width: 152px;
    display: block;
    margin-bottom: 14px;
}

.footer-brand p,
.landing-footer a,
.footer-copy {
    color: #596777;
    font-size: 12px;
    line-height: 1.6;
}

.landing-footer nav {
    display: grid;
    align-content: start;
    gap: 8px;
}

.landing-footer strong {
    color: #1f2937;
    font-size: 13px;
    margin-bottom: 4px;
}

.landing-footer a {
    text-decoration: none;
    transition: color 160ms ease;
}

.landing-footer a:hover,
.landing-footer a:focus-visible {
    color: var(--landing-teal);
}

.footer-social {
    display: grid;
    align-content: start;
    gap: 14px;
}

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

.social-links a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(13, 91, 90, 0.18);
    background: #fff;
    color: var(--landing-teal);
    font-weight: 900;
}

.footer-social .pm-locale-switcher select {
    min-height: 38px;
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(13, 91, 90, 0.16);
    background: #fff;
    color: #344054;
    padding: 0 14px;
    font-weight: 700;
}

.footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    margin: 8px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(13, 91, 90, 0.08);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes floatDashboard {
    0%,
    100% {
        transform: translateY(0) rotate(-0.4deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.2deg);
    }
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0) rotate(8deg);
    }
    50% {
        transform: translateY(12px) rotate(6deg);
    }
}

@keyframes progressGrow {
    from {
        width: 0;
    }
    to {
        width: 72%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

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

@media (max-width: 1120px) {
    .landing-shell {
        width: min(100% - 20px, 1160px);
        margin: 10px auto;
    }

    .landing-header,
    .landing-hero,
    .landing-section,
    .bottom-cta {
        width: min(100% - 40px, var(--landing-max-width));
    }

    .landing-nav {
        gap: 17px;
        font-size: 13px;
    }

    .landing-brand img {
        width: 145px;
    }

    .landing-hero {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-copy {
        text-align: center;
        max-width: 760px;
        margin: 0 auto;
    }

    .landing-eyebrow {
        justify-content: center;
    }

    .hero-copy h1,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-showcase {
        min-height: 430px;
    }

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

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

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

@media (max-width: 860px) {
    .landing-header {
        padding-top: 18px;
        align-items: flex-start;
    }

    .landing-menu-button {
        display: inline-flex;
    }

    .landing-nav {
        position: absolute;
        top: 76px;
        left: 20px;
        right: 20px;
        z-index: 20;
        display: none;
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(13, 91, 90, 0.12);
        box-shadow: 0 24px 50px rgba(31, 41, 55, 0.18);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .landing-nav.is-open {
        display: flex;
        animation: mobileNavIn 180ms ease;
    }

    .landing-nav a {
        padding: 12px 10px;
        border-radius: 10px;
    }

    .landing-nav a.is-active::after {
        display: none;
    }

    .landing-nav a:hover,
    .landing-nav a:focus-visible {
        background: rgba(13, 91, 90, 0.07);
        transform: none;
    }

    .landing-nav-cta {
        margin-top: 10px;
        justify-content: center;
    }

    .hero-trust-grid,
    .path-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust-grid {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .path-card {
        min-height: auto;
    }

    .step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .pricing-plan.is-highlighted {
        transform: none;
    }

    .bottom-cta {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .bottom-cta > div {
        flex-direction: column;
        gap: 8px;
    }

    .landing-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 28px 28px 24px;
    }
}

@keyframes mobileNavIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .landing-shell {
        width: 100%;
        margin: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .landing-header,
    .landing-hero,
    .landing-section,
    .bottom-cta {
        width: min(100% - 28px, var(--landing-max-width));
    }

    .landing-brand img {
        width: 132px;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 13vw, 52px);
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .landing-button {
        width: 100%;
        min-height: 52px;
    }

    .hero-trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }

    .hero-showcase {
        min-height: 365px;
        overflow: visible;
    }

    .dashboard-mockup {
        width: 100%;
        min-height: 334px;
        grid-template-columns: 92px 1fr;
        border-radius: 18px;
    }

    .mock-sidebar {
        padding: 14px 8px;
        gap: 7px;
    }

    .mock-sidebar img {
        width: 54px;
    }

    .mock-sidebar span {
        padding: 7px 5px;
        font-size: 8px;
    }

    .mock-content {
        padding: 16px 14px;
    }

    .mock-greeting p {
        font-size: 14px;
    }

    .mock-greeting small {
        font-size: 10px;
    }

    .mock-stat-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 14px 0 12px;
    }

    .mock-stat-grid article {
        min-height: auto;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        align-items: center;
        padding: 9px;
    }

    .mock-stat-grid small {
        margin: 0;
        min-height: 0;
    }

    .mock-stat-grid strong {
        font-size: 16px;
    }

    .mock-progress,
    .mock-continue {
        display: none;
    }

    .flashcard-mockup {
        right: 8px;
        top: 164px;
        width: 124px;
        min-height: 206px;
        padding: 13px 10px;
        border-radius: 18px;
    }

    .flashcard-mockup strong {
        margin-top: 24px;
        font-size: 28px;
    }

    .flashcard-mockup button,
    .flashcard-rating {
        display: none;
    }

    .decor-hanzi,
    .decor-cloud {
        display: none;
    }

    .section-title-row {
        grid-template-columns: 42px auto 42px;
        gap: 12px;
    }

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

    .feature-card {
        min-height: 142px;
        padding: 20px 12px;
    }

    .feature-card img {
        width: 42px;
        height: 42px;
    }

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

    .step-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 6px 14px;
        text-align: left;
        align-items: center;
        padding: 14px;
        border: 1px solid rgba(13, 91, 90, 0.1);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.6);
    }

    .step-number {
        left: 10px;
        top: 10px;
    }

    .step-icon {
        grid-row: span 2;
        width: 66px;
        height: 60px;
        margin: 0;
    }

    .step-card h3,
    .step-card p {
        margin: 0;
    }

    .pricing-heading {
        gap: 16px;
    }

    .billing-toggle {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pricing-plan {
        min-height: auto;
    }

    .bottom-cta {
        padding: 24px 18px;
    }

    .bottom-cta > div > span {
        font-size: 42px;
    }

    .landing-footer {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 26px 22px 22px;
    }

    .footer-copy {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .dashboard-mockup {
        grid-template-columns: 76px 1fr;
    }

    .mock-sidebar span:nth-of-type(n+5) {
        display: none;
    }

    .mock-stat-grid article {
        grid-template-columns: auto 1fr;
    }

    .mock-stat-grid em {
        grid-column: 2;
    }

    .flashcard-mockup {
        top: 184px;
        right: -4px;
        transform: rotate(5deg) scale(0.92);
    }

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


/* Locale switcher polish for custom landing chrome */
.landing-nav-locale {
    display: inline-flex;
    align-items: center;
}

.landing-page-body .pm-locale-switcher select {
    min-height: 38px;
    border: 1px solid rgba(13, 91, 90, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    color: #1f2937;
    font-weight: 750;
    padding: 0 30px 0 12px;
}

.landing-footer .pm-locale-switcher {
    margin-top: 18px;
}

@media (max-width: 920px) {
    .landing-nav-locale {
        width: 100%;
    }

    .landing-nav-locale .pm-locale-switcher,
    .landing-nav-locale .pm-locale-switcher select {
        width: 100%;
    }
}


/* --------------------------------------------------------------------------
   v2.2 hotfix: full-width landing, sticky navbar, and class alias fixes.
   Reason: Blade v2 uses learning-path/study-step class names, while v1 CSS
   still targeted path-card/step-card. These aliases restore the card layout.
-------------------------------------------------------------------------- */

.landing-page-body {
    min-height: 100vh;
}

.landing-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    background:
        radial-gradient(circle at 8% 2%, rgba(214, 166, 78, 0.16), transparent 28rem),
        radial-gradient(circle at 92% 8%, rgba(13, 91, 90, 0.09), transparent 32rem),
        linear-gradient(180deg, #fffaf1 0%, #f8f3e8 48%, #fffaf2 100%);
}

.landing-shell::before {
    position: fixed;
    z-index: 0;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 80;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 18px max(32px, calc((100% - var(--landing-max-width)) / 2));
    background: rgba(255, 251, 242, 0.86);
    border-bottom: 1px solid rgba(13, 91, 90, 0.08);
    box-shadow: 0 10px 28px rgba(31, 41, 55, 0.055);
    backdrop-filter: blur(18px);
}

.landing-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 251, 242, 0.78)),
        radial-gradient(circle at 8% 0%, rgba(214, 166, 78, 0.12), transparent 16rem);
}

.landing-hero,
.landing-section,
.bottom-cta {
    width: min(100% - 64px, var(--landing-max-width));
}

.landing-hero {
    margin-top: 42px;
}

.landing-section {
    padding-top: 34px;
    padding-bottom: 24px;
}

/* Section heading used by the updated Blade template */
.section-heading {
    display: grid;
    grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
    align-items: center;
    gap: 22px;
    margin: 12px auto 24px;
    text-align: center;
}

.section-heading span {
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 91, 90, 0.48), transparent);
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 900;
    letter-spacing: -0.035em;
}

/* Learning paths: restore horizontal card layout */
.learning-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.learning-path-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    min-height: 110px;
    padding: 22px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(13, 91, 90, 0.12);
    box-shadow: var(--landing-shadow-soft);
    color: inherit;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.learning-path-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 91, 90, 0.34);
    box-shadow: 0 20px 38px rgba(31, 41, 55, 0.12);
    background: rgba(255, 255, 255, 0.92);
}

.learning-path-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 900;
}

.learning-path-card p {
    margin: 0;
    color: #667085;
    line-height: 1.45;
    font-size: 14px;
}

.learning-path-card > span {
    font-size: 24px;
    color: var(--landing-ink);
}

/* Study steps: restore timeline layout */
.study-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
}

.study-step {
    position: relative;
    text-align: center;
}

.study-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 38px;
    right: -25px;
    width: 42px;
    height: 1px;
    border-top: 2px dashed rgba(13, 91, 90, 0.26);
}

.study-step h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 900;
}

.study-step p {
    margin: 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
}

/* Pricing aliases used by updated Blade */
.pricing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 18px;
}

.pricing-header h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    letter-spacing: -0.035em;
}

.price-line {
    display: flex;
    align-items: end;
    gap: 6px;
    margin: 16px 0;
}

.price-line strong {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.price-line span {
    color: #667085;
    font-size: 13px;
}

/* Flashcard aliases used by updated Blade */
.flash-top,
.flash-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flash-line {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--landing-teal), rgba(13, 91, 90, 0.08));
    margin: 12px 0 22px;
}

.flash-hanzi {
    display: block;
    margin-top: 18px;
    font-size: 42px;
    text-align: center;
}

.flash-pinyin {
    display: block;
    text-align: center;
    color: #667085;
    font-weight: 800;
}

.flash-actions {
    margin-top: 18px;
    gap: 10px;
    font-size: 10px;
    color: #667085;
}

.continue-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--landing-teal), #064b50);
}

/* Footer aliases */
.footer-column {
    display: grid;
    gap: 8px;
    align-content: start;
}

.footer-column h3,
.footer-social h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 900;
}

.footer-column a {
    color: #536170;
    font-size: 13px;
    text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--landing-teal);
}

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

.social-row span {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--landing-teal);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(13, 91, 90, 0.12);
    font-weight: 900;
}

/* Keep header usable while mobile menu is opened */
.landing-nav.is-open {
    z-index: 90;
}

@media (max-width: 1120px) {
    .landing-header {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 860px) {
    .landing-header {
        align-items: center;
        padding: 14px 20px;
    }

    .landing-nav {
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        z-index: 90;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
    }

    .learning-path-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .study-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .study-step:not(:last-child)::after {
        display: none;
    }

    .pricing-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .landing-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .landing-hero,
    .landing-section,
    .bottom-cta {
        width: min(100% - 28px, var(--landing-max-width));
    }

    .section-heading {
        grid-template-columns: 42px auto 42px;
        gap: 12px;
    }

    .learning-path-card {
        grid-template-columns: auto 1fr;
    }

    .learning-path-card > span {
        grid-column: 1 / -1;
        justify-self: end;
        margin-top: -14px;
    }

    .study-steps {
        grid-template-columns: 1fr;
    }

    .study-step {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 6px 14px;
        text-align: left;
        align-items: center;
        padding: 14px;
        border: 1px solid rgba(13, 91, 90, 0.1);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.62);
    }

    .study-step .step-number {
        left: 10px;
        top: 10px;
    }

    .study-step .step-icon {
        grid-row: span 2;
        width: 66px;
        height: 60px;
        margin: 0;
    }

    .study-step h3,
    .study-step p {
        margin: 0;
    }
}


/* Pricing v2.3 - 4 paket, full-card responsive */
.pricing-section {
    padding-top: 46px;
}

.pricing-header {
    width: min(100%, var(--landing-max-width));
    margin: 0 auto 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.pricing-header h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.billing-toggle {
    flex: 0 0 auto;
}

.pricing-grid {
    width: min(100%, var(--landing-max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    min-width: 0;
    min-height: 438px;
    padding: 24px 22px 22px;
    border-radius: 24px;
    border: 1px solid rgba(13, 91, 90, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 241, 0.86));
    box-shadow: 0 18px 42px rgba(31, 41, 55, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateZ(0);
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(214, 166, 78, 0.14), transparent 9rem),
        radial-gradient(circle at 85% 12%, rgba(13, 91, 90, 0.08), transparent 8rem);
    pointer-events: none;
    opacity: 0.9;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card.is-popular {
    border-color: rgba(13, 91, 90, 0.78);
    box-shadow: 0 22px 50px rgba(13, 91, 90, 0.17);
    transform: translateY(-8px);
}

.pricing-card.is-popular::before {
    background:
        linear-gradient(180deg, rgba(13, 91, 90, 0.98) 0, rgba(13, 91, 90, 0.94) 128px, transparent 129px),
        radial-gradient(circle at 80% 0%, rgba(214, 166, 78, 0.32), transparent 9rem);
}

.pricing-card.is-popular .plan-hanzi,
.pricing-card.is-popular .plan-title-row h3,
.pricing-card.is-popular .plan-pinyin,
.pricing-card.is-popular > p {
    color: #fff;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 24px;
    z-index: 2;
    padding: 12px 15px;
    border-radius: 0 0 14px 14px;
    background: var(--landing-gold);
    color: #3d2a0a;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.02em;
}

.plan-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    min-height: 72px;
}

.plan-hanzi {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 11px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    background: rgba(13, 91, 90, 0.1);
    color: var(--landing-teal);
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.pricing-card.is-popular .plan-hanzi {
    background: rgba(255, 255, 255, 0.16);
}

.plan-title-row h3 {
    margin: 0;
    color: var(--landing-ink);
    font-size: 21px;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.plan-pinyin {
    color: rgba(31, 41, 55, 0.55);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.pricing-card > p {
    min-height: 48px;
    margin: 16px 0 0;
    color: #6b5d55;
    font-size: 14px;
    line-height: 1.52;
}

.price-line {
    display: flex;
    align-items: end;
    gap: 7px;
    margin: 22px 0 18px;
}

.price-line strong {
    color: var(--landing-ink);
    font-size: clamp(27px, 2.8vw, 36px);
    font-weight: 950;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.price-line span {
    color: #687588;
    font-size: 12px;
    font-weight: 800;
}

.pricing-card ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.pricing-card li {
    position: relative;
    padding-left: 22px;
    color: #344054;
    font-size: 13px;
    line-height: 1.48;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(13, 91, 90, 0.1);
    color: var(--landing-teal);
    font-size: 10px;
    font-weight: 950;
}

.pricing-card > a {
    margin-top: auto;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid var(--landing-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-teal);
    background: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.pricing-card > a:hover,
.pricing-card > a:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(13, 91, 90, 0.16);
}

.pricing-card.is-popular > a {
    background: var(--landing-teal);
    color: #fff;
}

@media (max-width: 1180px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card.is-popular {
        transform: none;
    }
}

@media (max-width: 860px) {
    .pricing-header {
        align-items: stretch;
        text-align: left;
    }

    .billing-toggle {
        justify-content: center;
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pricing-card {
        min-height: auto;
        padding: 20px;
        border-radius: 20px;
    }

    .plan-title-row {
        min-height: auto;
    }

    .pricing-card > p {
        min-height: auto;
    }

    .pricing-card.is-popular::before {
        background:
            linear-gradient(180deg, rgba(13, 91, 90, 0.98) 0, rgba(13, 91, 90, 0.94) 118px, transparent 119px),
            radial-gradient(circle at 80% 0%, rgba(214, 166, 78, 0.32), transparent 9rem);
    }
}
