:root {
    --landing-navy-950: #071323;
    --landing-navy-900: #0a1b31;
    --landing-navy-800: #102a48;
    --landing-blue: #376cfb;
    --landing-indigo: #6558f5;
    --landing-cyan: #4fd6db;
    --landing-orange: #ff7448;
    --landing-green: #2cc68b;
    --landing-ink: #14243a;
    --landing-copy: #62748a;
    --landing-line: #dfe7f0;
    --landing-surface: #f6f8fc;
    --landing-white: #ffffff;
    --landing-shadow: 0 28px 70px rgba(16, 42, 72, 0.13);
    --landing-radius-lg: 32px;
    --landing-radius-md: 22px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body.landing-body {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--landing-ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background: var(--landing-white);
}

.landing-body a {
    text-decoration: none;
}

.landing-body button,
.landing-body input,
.landing-body select {
    font: inherit;
}

.landing-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.landing-skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 1200;
    padding: 11px 16px;
    color: #071323;
    font-weight: 800;
    background: #fff;
    border-radius: 12px;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.landing-skip-link:focus {
    transform: translateY(0);
}

.landing-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.landing-header::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: rgba(7, 19, 35, 0);
    backdrop-filter: blur(0);
    transition: inherit;
}

.landing-header.is-scrolled::before,
.landing-header.menu-open::before {
    background: rgba(7, 19, 35, 0.92);
    backdrop-filter: blur(18px);
}

.landing-header.is-scrolled,
.landing-header.menu-open {
    border-bottom-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    color: #fff;
}

.landing-brand:hover,
.landing-brand:focus {
    color: #fff;
}

.landing-brand img {
    width: 148px;
    height: auto;
}

.landing-brand span {
    padding: 6px 9px;
    color: #c8d7ec;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.3vw, 34px);
    margin-inline: auto;
}

.landing-nav a {
    position: relative;
    padding: 30px 0;
    color: #c9d6e7;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 180ms ease;
}

.landing-nav a::after {
    position: absolute;
    right: 0;
    bottom: 21px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--landing-orange);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.landing-nav a:hover,
.landing-nav a:focus {
    color: #fff;
}

.landing-nav a:hover::after,
.landing-nav a:focus::after {
    transform: scaleX(1);
}

.landing-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.landing-header .language-selector {
    min-width: 0;
    margin: 0;
    padding: 4px 6px 4px 9px;
    color: #d8e3f1;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
}

.landing-header .language-selector i {
    color: #7ddbe0;
}

.landing-header .language-select {
    width: 86px;
    min-height: 30px;
    padding-right: 24px;
    color: #fff;
    background-color: transparent;
}

.landing-header .language-select option {
    color: #14243a;
}

.landing-login-link,
.landing-signup-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 0 18px;
    font-size: 0.86rem;
    font-weight: 800;
    border-radius: 11px;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.landing-login-link {
    color: #e1e9f4;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.landing-login-link:hover,
.landing-login-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
}

.landing-signup-link {
    color: #fff;
    background: var(--landing-orange);
    border: 1px solid var(--landing-orange);
    box-shadow: 0 10px 24px rgba(255, 116, 72, 0.24);
}

.landing-signup-link:hover,
.landing-signup-link:focus {
    color: #fff;
    background: #ff6636;
    border-color: #ff6636;
    transform: translateY(-2px);
}

.landing-menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
}

.landing-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    border-radius: 2px;
    transition: transform 180ms ease;
}

.landing-header.menu-open .landing-menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.landing-header.menu-open .landing-menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.landing-mobile-nav {
    display: none;
}

.landing-hero {
    position: relative;
    min-height: 830px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 77% 10%, rgba(72, 109, 255, 0.13), transparent 25%),
        linear-gradient(128deg, var(--landing-navy-950) 0%, #0a1b31 52%, #0d2440 100%);
}

.landing-hero::after {
    position: absolute;
    right: -5%;
    bottom: -180px;
    left: -5%;
    height: 260px;
    content: "";
    background: #fff;
    border-radius: 50% 50% 0 0 / 28% 28% 0 0;
}

.landing-hero-glow {
    position: absolute;
    z-index: 0;
    width: 520px;
    height: 520px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.17;
}

.landing-hero-glow-one {
    top: 60px;
    right: -180px;
    background: #486dff;
}

.landing-hero-glow-two {
    bottom: -280px;
    left: -190px;
    background: #2cc68b;
}

.landing-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
    gap: 62px;
    align-items: center;
    min-height: 730px;
    padding-top: 126px;
    padding-bottom: 62px;
}

.landing-hero-copy {
    position: relative;
    z-index: 5;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #93e4e7;
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.landing-eyebrow-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background: var(--landing-cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(79, 214, 219, 0.12);
}

.landing-hero h1 {
    max-width: 620px;
    margin: 25px 0 23px;
    color: #fff;
    font-size: clamp(3.4rem, 5.3vw, 5.55rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.landing-hero h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(92deg, #ff815a 4%, #ffb26a 52%, #65dce0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.landing-hero-lead {
    max-width: 590px;
    margin: 0;
    color: #b9c9dd;
    font-size: clamp(1rem, 1.55vw, 1.2rem);
    line-height: 1.76;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.landing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 23px;
    font-size: 0.91rem;
    font-weight: 900;
    border: 1px solid transparent;
    border-radius: 14px;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-button .material-symbols-outlined {
    font-size: 20px;
    transition: transform 180ms ease;
}

.landing-button:hover .material-symbols-outlined {
    transform: translateX(3px);
}

.landing-button-primary {
    color: #fff;
    background: var(--landing-orange);
    box-shadow: 0 14px 30px rgba(255, 116, 72, 0.24);
}

.landing-button-primary:hover,
.landing-button-primary:focus {
    color: #fff;
    background: #ff6636;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(255, 116, 72, 0.32);
}

.landing-button-secondary {
    color: #e3ebf6;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.14);
}

.landing-button-secondary:hover,
.landing-button-secondary:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.26);
    transform: translateY(-3px);
}

.landing-button-secondary:hover .material-symbols-outlined {
    transform: scale(1.08);
}

.landing-hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 23px;
    color: #8298b3;
    font-size: 0.76rem;
    font-weight: 700;
}

.landing-hero-note .material-symbols-outlined {
    color: #5fd6b0;
    font-size: 18px;
}

.landing-product-stage {
    position: relative;
    width: 665px;
    margin-left: -22px;
    perspective: 1400px;
}

.landing-dashboard {
    position: relative;
    z-index: 2;
    width: 650px;
    overflow: hidden;
    color: #172a42;
    background: #f4f7fb;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 21px;
    box-shadow:
        0 46px 90px rgba(0, 0, 0, 0.32),
        0 0 0 8px rgba(255, 255, 255, 0.035);
    transform: rotateY(-5deg) rotateX(1.5deg);
    transform-origin: center left;
    animation: landing-dashboard-float 6s ease-in-out infinite;
}

.landing-dashboard-topbar {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 58px;
    padding: 0 17px;
    background: #fff;
    border-bottom: 1px solid #e9eef5;
}

.landing-dashboard-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 124px;
    font-size: 0.67rem;
}

.landing-mini-mark {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 20px;
}

.landing-mini-mark span {
    position: absolute;
    top: 5px;
    width: 15px;
    height: 10px;
    background: var(--landing-orange);
    border-radius: 8px 8px 4px 8px;
    transform: rotate(28deg);
}

.landing-mini-mark span:last-child {
    right: 0;
    transform: rotate(-28deg) scaleX(-1);
}

.landing-dashboard-search {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 220px;
    height: 31px;
    padding: 0 10px;
    margin-inline: auto;
    color: #99a8b8;
    font-size: 0.58rem;
    background: #f5f7fa;
    border: 1px solid #e8edf3;
    border-radius: 8px;
}

.landing-dashboard-search .material-symbols-outlined {
    font-size: 14px;
}

.landing-dashboard-avatar {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: #fff;
    font-size: 0.56rem;
    font-weight: 900;
    background: linear-gradient(135deg, #5d70fa, #8657e8);
    border-radius: 9px;
}

.landing-dashboard-body {
    display: grid;
    grid-template-columns: 52px 1fr;
    min-height: 420px;
}

.landing-dashboard-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
    background: #fff;
    border-right: 1px solid #e8edf3;
}

.landing-dashboard-sidebar span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: #9ba9b8;
    font-size: 15px;
    border-radius: 8px;
}

.landing-dashboard-sidebar span.is-active {
    color: #fff;
    background: var(--landing-blue);
    box-shadow: 0 7px 15px rgba(55, 108, 251, 0.24);
}

.landing-dashboard-content {
    padding: 22px 21px 20px;
}

.landing-dashboard-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.landing-dashboard-heading small {
    color: #7e90a6;
    font-size: 0.48rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.landing-dashboard-heading h2 {
    margin: 4px 0 0;
    color: #14243a;
    font-size: 1rem;
    font-weight: 800;
}

.landing-dashboard-period {
    padding: 6px 9px;
    color: #59708a;
    font-size: 0.52rem;
    font-weight: 800;
    background: #fff;
    border: 1px solid #e2e9f1;
    border-radius: 7px;
}

.landing-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.landing-stat-card {
    position: relative;
    min-height: 108px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
}

.landing-stat-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    font-size: 14px;
    border-radius: 8px;
}

.landing-stat-icon.is-blue {
    color: #3b70fb;
    background: #edf2ff;
}

.landing-stat-icon.is-orange {
    color: #f0784c;
    background: #fff0ea;
}

.landing-stat-icon.is-green {
    color: #20a873;
    background: #eaf9f3;
}

.landing-stat-card > small {
    display: block;
    padding-right: 28px;
    color: #8494a7;
    font-size: 0.53rem;
    font-weight: 700;
}

.landing-stat-card strong {
    display: block;
    margin-top: 9px;
    color: #172a42;
    font-size: 1.28rem;
    line-height: 1;
}

.landing-stat-card em {
    display: block;
    margin-top: 8px;
    color: #9aa7b5;
    font-size: 0.47rem;
    font-style: normal;
    font-weight: 700;
}

.landing-stat-card em span {
    color: #20a873;
}

.landing-dashboard-lower {
    display: grid;
    grid-template-columns: 1.34fr 0.86fr;
    gap: 10px;
    margin-top: 10px;
}

.landing-chart-card,
.landing-activity-card {
    min-height: 190px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
}

.landing-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.landing-card-heading strong,
.landing-card-heading small {
    display: block;
}

.landing-card-heading strong {
    color: #22354c;
    font-size: 0.6rem;
}

.landing-card-heading small {
    margin-top: 2px;
    color: #98a6b5;
    font-size: 0.46rem;
}

.landing-card-heading > .material-symbols-outlined {
    color: #a7b3c0;
    font-size: 16px;
}

.landing-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 96px;
    padding: 13px 6px 0;
    border-bottom: 1px solid #edf1f5;
    background: repeating-linear-gradient(to bottom, transparent 0, transparent 31px, #f0f3f7 32px);
}

.landing-chart > span {
    width: 15px;
    height: var(--bar-height);
    background: linear-gradient(to top, #dee6fd, #9eaffb);
    border-radius: 5px 5px 2px 2px;
    transform-origin: bottom;
    animation: landing-bar-grow 1.4s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.landing-chart > span.is-current {
    background: linear-gradient(to top, #5b6ff7, #8b74f2);
}

.landing-chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 6px 8px 0;
    color: #a5b0bc;
    font-size: 0.42rem;
}

.landing-live-dot {
    width: 7px;
    height: 7px;
    margin-top: 3px;
    background: var(--landing-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(44, 198, 139, 0.12);
}

.landing-class-row {
    display: grid;
    grid-template-columns: 30px 4px 1fr;
    gap: 8px;
    align-items: center;
    padding-top: 13px;
}

.landing-class-row time {
    color: #7a8ca1;
    font-size: 0.44rem;
    font-weight: 800;
}

.landing-class-row > span {
    width: 3px;
    height: 25px;
    border-radius: 3px;
}

.landing-class-row > span.is-purple {
    background: #7768f4;
}

.landing-class-row > span.is-orange {
    background: #ff855e;
}

.landing-class-row > span.is-cyan {
    background: #3dc6d0;
}

.landing-class-row strong,
.landing-class-row small {
    display: block;
}

.landing-class-row strong {
    color: #30455d;
    font-size: 0.5rem;
}

.landing-class-row small {
    margin-top: 2px;
    color: #9ca9b6;
    font-size: 0.42rem;
}

.landing-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #1e324a;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 13px;
    box-shadow: 0 20px 42px rgba(2, 12, 26, 0.25);
    animation: landing-small-float 5s ease-in-out infinite;
}

.landing-floating-card > .material-symbols-outlined {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    font-size: 18px;
    border-radius: 10px;
}

.landing-floating-card strong,
.landing-floating-card small {
    display: block;
    white-space: nowrap;
}

.landing-floating-card strong {
    font-size: 0.63rem;
}

.landing-floating-card small {
    margin-top: 3px;
    color: #8394a7;
    font-size: 0.48rem;
}

.landing-floating-students {
    top: 102px;
    right: -33px;
}

.landing-floating-students > .material-symbols-outlined {
    color: #526afb;
    background: #edf0ff;
}

.landing-floating-payment {
    bottom: 29px;
    left: -38px;
    animation-delay: -2.5s;
}

.landing-floating-payment > .material-symbols-outlined {
    color: #20a873;
    background: #eaf9f3;
}

.landing-orbit {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(115, 148, 255, 0.13);
    border-radius: 50%;
}

.landing-orbit::after {
    position: absolute;
    width: 9px;
    height: 9px;
    content: "";
    background: #6683fb;
    border: 2px solid #0b2039;
    border-radius: 50%;
}

.landing-orbit-one {
    top: -84px;
    right: -97px;
    width: 430px;
    height: 430px;
}

.landing-orbit-one::after {
    top: 58px;
    left: 75px;
}

.landing-orbit-two {
    right: 56px;
    bottom: -116px;
    width: 310px;
    height: 310px;
}

.landing-orbit-two::after {
    right: 18px;
    bottom: 86px;
    background: #50d2d7;
}

.landing-capability-strip {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    margin-top: -34px;
    padding: 0 28px;
    color: #7890aa;
    background: rgba(12, 31, 54, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    box-shadow: 0 18px 40px rgba(7, 19, 35, 0.23);
}

.landing-capability-strip > span {
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-capability-strip > div {
    display: flex;
    align-items: center;
    gap: 29px;
}

.landing-capability-strip strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dbe5f1;
    font-size: 0.74rem;
}

.landing-capability-strip .material-symbols-outlined {
    color: #738af7;
    font-size: 18px;
}

.landing-section {
    position: relative;
    padding: 118px 0;
}

.landing-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 52px;
}

.landing-kicker {
    margin: 0 0 17px;
    color: var(--landing-blue);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.landing-section-heading h2,
.landing-centered-heading h2,
.landing-insights-copy h2,
.landing-confidence-copy h2,
.landing-faq-heading h2,
.landing-cta h2 {
    margin: 0;
    color: var(--landing-ink);
    font-size: clamp(2.25rem, 4vw, 3.55rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.landing-section-heading > p {
    max-width: 420px;
    margin: 0 0 4px;
    color: var(--landing-copy);
    font-size: 0.98rem;
    line-height: 1.75;
}

.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.landing-feature-card {
    position: relative;
    grid-column: span 2;
    min-height: 348px;
    overflow: hidden;
    padding: 29px;
    background: #fff;
    border: 1px solid #e5ebf2;
    border-radius: var(--landing-radius-md);
    box-shadow: 0 14px 35px rgba(17, 42, 72, 0.055);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.landing-feature-card:hover {
    z-index: 2;
    border-color: #d6e0ed;
    box-shadow: 0 24px 54px rgba(17, 42, 72, 0.11);
    transform: translateY(-7px);
}

.landing-feature-card-wide {
    display: grid;
    grid-column: span 3;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 18px;
    min-height: 352px;
}

.landing-feature-card::before {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 220px;
    height: 220px;
    content: "";
    background: var(--card-glow, #eef2ff);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.78;
}

.landing-feature-card.is-indigo {
    --card-glow: #eef0ff;
}

.landing-feature-card.is-orange {
    --card-glow: #fff0e9;
}

.landing-feature-card.is-green {
    --card-glow: #eafaf4;
}

.landing-feature-card.is-blue {
    --card-glow: #eaf4ff;
}

.landing-feature-card.is-violet {
    --card-glow: #f2edff;
}

.landing-feature-icon {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 24px;
    color: #5269f5;
    font-size: 24px;
    background: #eef0ff;
    border-radius: 14px;
}

.is-orange .landing-feature-icon {
    color: #f37445;
    background: #fff0e9;
}

.is-green .landing-feature-icon {
    color: #24ae79;
    background: #eaf9f3;
}

.is-blue .landing-feature-icon {
    color: #2b7dd4;
    background: #eaf4ff;
}

.is-violet .landing-feature-icon {
    color: #7958e8;
    background: #f1edff;
}

.landing-feature-card h3 {
    position: relative;
    margin: 0 0 12px;
    color: #1c3048;
    font-size: 1.16rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.landing-feature-card p {
    position: relative;
    margin: 0;
    color: var(--landing-copy);
    font-size: 0.85rem;
    line-height: 1.72;
}

.landing-feature-card a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    color: #5269f5;
    font-size: 0.78rem;
    font-weight: 900;
}

.landing-feature-card a .material-symbols-outlined {
    font-size: 17px;
    transition: transform 180ms ease;
}

.landing-feature-card a:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.landing-enrollment-visual {
    position: relative;
    align-self: end;
    padding: 30px 0 8px 12px;
}

.landing-enrollment-card,
.landing-enrollment-target {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 63px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #e1e7ef;
    border-radius: 13px;
    box-shadow: 0 14px 30px rgba(31, 50, 80, 0.08);
}

.landing-enrollment-avatar {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6877f9, #9264e6);
    border-radius: 10px;
}

.landing-enrollment-card div,
.landing-enrollment-target div {
    min-width: 0;
    flex: 1;
}

.landing-enrollment-card strong,
.landing-enrollment-card small,
.landing-enrollment-target strong,
.landing-enrollment-target small {
    display: block;
}

.landing-enrollment-card strong,
.landing-enrollment-target strong {
    color: #2c4058;
    font-size: 0.64rem;
}

.landing-enrollment-card small,
.landing-enrollment-target small {
    margin-top: 3px;
    overflow: hidden;
    color: #8797a9;
    font-size: 0.49rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-enrollment-status {
    padding: 5px 7px;
    color: #6370ef;
    font-size: 0.44rem;
    font-weight: 900;
    background: #eef0ff;
    border-radius: 6px;
}

.landing-route-line {
    width: 2px;
    height: 35px;
    margin: -2px auto;
    background: repeating-linear-gradient(to bottom, #8393f2 0, #8393f2 4px, transparent 4px, transparent 8px);
}

.landing-enrollment-target {
    margin-left: 25px;
    background: #f9fbff;
    border-color: #dce4ef;
}

.landing-enrollment-target > .material-symbols-outlined:first-child {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #5371f2;
    font-size: 18px;
    background: #edf1ff;
    border-radius: 10px;
}

.landing-enrollment-target > .material-symbols-outlined:last-child {
    color: #2bb981;
    font-size: 19px;
}

.landing-mini-schedule {
    display: flex;
    justify-content: space-between;
    gap: 7px;
    margin-top: 34px;
    padding: 15px 12px;
    background: #fff9f6;
    border: 1px solid #ffeadf;
    border-radius: 13px;
}

.landing-mini-schedule span {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.landing-mini-schedule b {
    color: #9c7f74;
    font-size: 0.45rem;
}

.landing-mini-schedule i {
    width: 26px;
    height: 36px;
    background: #fff;
    border: 1px solid #f4ddd3;
    border-radius: 8px;
}

.landing-mini-schedule i.is-active {
    position: relative;
    background: linear-gradient(180deg, #ff916e, #ff7448);
    border-color: #ff7448;
    box-shadow: 0 8px 16px rgba(255, 116, 72, 0.2);
}

.landing-mini-schedule i.is-active::after {
    position: absolute;
    right: 7px;
    bottom: 7px;
    left: 7px;
    height: 3px;
    content: "";
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
}

.landing-payment-progress {
    margin-top: 35px;
    padding: 15px;
    background: #f4fbf8;
    border: 1px solid #dff3eb;
    border-radius: 13px;
}

.landing-payment-progress > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #506b61;
    font-size: 0.6rem;
    font-weight: 800;
}

.landing-payment-progress > div strong {
    color: #24a876;
    font-size: 0.75rem;
}

.landing-payment-progress > i {
    display: block;
    height: 7px;
    margin-top: 11px;
    overflow: hidden;
    background: #dceee7;
    border-radius: 8px;
}

.landing-payment-progress > i span {
    display: block;
    width: 91%;
    height: 100%;
    background: linear-gradient(90deg, #36c68f, #64d2a7);
    border-radius: inherit;
}

.landing-payment-progress > small {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #829a90;
    font-size: 0.49rem;
    font-weight: 700;
}

.landing-payment-progress > small span {
    width: 6px;
    height: 6px;
    background: #36c68f;
    border-radius: 50%;
}

.landing-role-list {
    display: grid;
    gap: 8px;
    margin-top: 27px;
}

.landing-role-list > span {
    display: grid;
    grid-template-columns: 29px 1fr auto;
    gap: 9px;
    align-items: center;
    min-height: 48px;
    padding: 8px 10px;
    color: #536b84;
    font-size: 0.56rem;
    font-weight: 800;
    background: #f7fbff;
    border: 1px solid #e1edf7;
    border-radius: 11px;
}

.landing-role-list i {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: #fff;
    font-size: 0.49rem;
    font-style: normal;
    background: linear-gradient(135deg, #3c8ae2, #586ff1);
    border-radius: 8px;
}

.landing-role-list > span:nth-child(2) i {
    background: linear-gradient(135deg, #32b9c2, #4a8bdd);
}

.landing-role-list b {
    color: #32b784;
    font-size: 16px;
}

.landing-report-tags {
    display: flex;
    gap: 8px;
    margin-top: 21px;
}

.landing-report-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    color: #6f5bbb;
    font-size: 0.54rem;
    font-weight: 900;
    background: #f3efff;
    border-radius: 8px;
}

.landing-report-tags i {
    font-size: 14px;
}

.landing-donut-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.landing-donut {
    display: grid;
    width: 144px;
    height: 144px;
    place-items: center;
    background: conic-gradient(#6a63ed 0 76%, #ff9a70 76% 88%, #e6e2fb 88% 100%);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 17px 30px rgba(97, 81, 194, 0.13);
}

.landing-donut::before {
    position: absolute;
    width: 100px;
    height: 100px;
    content: "";
    background: #fff;
    border-radius: 50%;
}

.landing-donut > span {
    position: relative;
    z-index: 2;
    text-align: center;
}

.landing-donut strong,
.landing-donut small {
    display: block;
}

.landing-donut strong {
    color: #2b3850;
    font-size: 1.25rem;
}

.landing-donut small {
    margin-top: 2px;
    color: #8c98a8;
    font-size: 0.52rem;
}

.landing-donut-legend {
    display: flex;
    gap: 11px;
    margin-top: 18px;
}

.landing-donut-legend span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #8794a4;
    font-size: 0.45rem;
    font-weight: 700;
}

.landing-donut-legend i {
    width: 6px;
    height: 6px;
    border-radius: 2px;
}

.landing-donut-legend i.is-indigo {
    background: #6a63ed;
}

.landing-donut-legend i.is-lilac {
    background: #e6e2fb;
}

.landing-donut-legend i.is-orange {
    background: #ff9a70;
}

.landing-workflow {
    overflow: hidden;
    background: var(--landing-surface);
}

.landing-workflow::before {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 700px;
    height: 300px;
    content: "";
    background: radial-gradient(circle, rgba(83, 107, 248, 0.08), transparent 70%);
    transform: translateX(-50%);
}

.landing-centered-heading {
    position: relative;
    max-width: 760px;
    margin: 0 auto 66px;
    text-align: center;
}

.landing-centered-heading > p:last-child {
    margin: 17px 0 0;
    color: var(--landing-copy);
    font-size: 1rem;
}

.landing-workflow-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 56px 1fr 56px 1fr;
    align-items: center;
}

.landing-workflow-grid article {
    position: relative;
    min-height: 270px;
    padding: 35px 28px 29px;
    background: #fff;
    border: 1px solid #e3eaf2;
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(25, 48, 77, 0.06);
}

.landing-step-number {
    position: absolute;
    top: 21px;
    right: 23px;
    color: #d5deeb;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.landing-step-icon {
    display: grid;
    width: 53px;
    height: 53px;
    place-items: center;
    margin-bottom: 28px;
    color: #fff;
    font-size: 25px;
    background: linear-gradient(135deg, #526cfa, #705ae9);
    border-radius: 16px;
    box-shadow: 0 13px 24px rgba(83, 102, 239, 0.21);
}

.landing-workflow-grid article:nth-of-type(2) .landing-step-icon {
    background: linear-gradient(135deg, #ff8a61, #ff6f42);
    box-shadow: 0 13px 24px rgba(255, 116, 72, 0.2);
}

.landing-workflow-grid article:nth-of-type(3) .landing-step-icon {
    background: linear-gradient(135deg, #2fc792, #2aa8a7);
    box-shadow: 0 13px 24px rgba(44, 198, 139, 0.2);
}

.landing-workflow-grid h3 {
    margin: 0 0 11px;
    color: #22364d;
    font-size: 1.05rem;
    font-weight: 800;
}

.landing-workflow-grid p {
    margin: 0;
    color: var(--landing-copy);
    font-size: 0.84rem;
    line-height: 1.72;
}

.landing-workflow-arrow {
    justify-self: center;
    color: #a8b5c5;
    font-size: 24px;
}

.landing-insights {
    padding-top: 135px;
    padding-bottom: 135px;
}

.landing-insights-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 105px;
    align-items: center;
}

.landing-insights-visual {
    position: relative;
    padding: 42px 34px 28px 0;
}

.landing-insights-visual::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50px;
    content: "";
    background: linear-gradient(145deg, #eef2ff, #f4f9fc);
    border-radius: 30px;
}

.landing-insights-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dee6ef;
    border-radius: 18px;
    box-shadow: var(--landing-shadow);
}

.landing-insights-window-head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 52px;
    padding: 0 17px;
    color: #8291a2;
    font-size: 0.58rem;
    font-weight: 800;
    background: #fbfcfe;
    border-bottom: 1px solid #edf1f5;
}

.landing-insights-window-head > div {
    display: flex;
    gap: 6px;
}

.landing-insights-window-head i {
    width: 7px;
    height: 7px;
    background: #dde4ed;
    border-radius: 50%;
}

.landing-insights-window-head i:first-child {
    background: #ff8260;
}

.landing-insights-window-head i:nth-child(2) {
    background: #ffc65e;
}

.landing-insights-window-head i:nth-child(3) {
    background: #56cf9e;
}

.landing-insights-window-head > .material-symbols-outlined {
    justify-self: end;
    font-size: 16px;
}

.landing-insights-window-body {
    padding: 26px 29px 22px;
}

.landing-insights-summary {
    display: flex;
    gap: 56px;
}

.landing-insights-summary span {
    position: relative;
}

.landing-insights-summary small,
.landing-insights-summary strong {
    display: block;
}

.landing-insights-summary small {
    color: #8796a8;
    font-size: 0.56rem;
    font-weight: 700;
}

.landing-insights-summary strong {
    margin-top: 5px;
    color: #1b3048;
    font-size: 1.25rem;
}

.landing-insights-summary em {
    position: absolute;
    right: -40px;
    bottom: 2px;
    color: #21ad78;
    font-size: 0.48rem;
    font-style: normal;
    font-weight: 900;
}

.landing-line-chart {
    position: relative;
    height: 200px;
    margin-top: 25px;
}

.landing-chart-grid {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.landing-chart-grid i {
    width: 100%;
    height: 1px;
    background: #edf1f5;
}

.landing-line-segment {
    position: absolute;
    z-index: 2;
    height: 3px;
    background: linear-gradient(90deg, #5e6ef6, #775ce9);
    border-radius: 3px;
    transform-origin: left center;
}

.landing-line-segment.s1 {
    bottom: 30%;
    left: 2%;
    width: 20%;
    transform: rotate(-13deg);
}

.landing-line-segment.s2 {
    bottom: 39%;
    left: 21%;
    width: 20%;
    transform: rotate(17deg);
}

.landing-line-segment.s3 {
    bottom: 32.5%;
    left: 40%;
    width: 20%;
    transform: rotate(-31deg);
}

.landing-line-segment.s4 {
    bottom: 43%;
    left: 58.5%;
    width: 20%;
    transform: rotate(-24deg);
}

.landing-line-segment.s5 {
    bottom: 62%;
    left: 77%;
    width: 20%;
    transform: rotate(-6deg);
}

.landing-line-point {
    position: absolute;
    z-index: 3;
    width: 9px;
    height: 9px;
    background: #6a63ef;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #6a63ef;
}

.landing-line-point.p1 {
    bottom: 29%;
    left: 1%;
}

.landing-line-point.p2 {
    bottom: 38%;
    left: 20%;
}

.landing-line-point.p3 {
    bottom: 32%;
    left: 39%;
}

.landing-line-point.p4 {
    bottom: 42%;
    left: 58%;
}

.landing-line-point.p5 {
    bottom: 61%;
    left: 77%;
}

.landing-line-point.p6 {
    bottom: 65%;
    right: 1%;
}

.landing-insights-caption {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    color: #8997a7;
    font-size: 0.5rem;
    font-weight: 700;
}

.landing-insights-caption span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.landing-insights-caption i {
    width: 13px;
    height: 3px;
    background: #6865ef;
    border-radius: 2px;
}

.landing-insight-badge {
    position: absolute;
    right: -14px;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 188px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e2e9f1;
    border-radius: 13px;
    box-shadow: 0 18px 36px rgba(19, 44, 74, 0.15);
}

.landing-insight-badge > .material-symbols-outlined {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #26aa79;
    font-size: 19px;
    background: #eaf9f3;
    border-radius: 10px;
}

.landing-insight-badge strong,
.landing-insight-badge small {
    display: block;
}

.landing-insight-badge strong {
    color: #2c4058;
    font-size: 0.66rem;
}

.landing-insight-badge small {
    margin-top: 3px;
    color: #8797a8;
    font-size: 0.5rem;
}

.landing-insights-copy > p:not(.landing-kicker) {
    margin: 22px 0 0;
    color: var(--landing-copy);
    font-size: 0.95rem;
    line-height: 1.78;
}

.landing-insights-copy ul {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

.landing-insights-copy li {
    display: grid;
    grid-template-columns: 29px 1fr;
    gap: 12px;
    align-items: start;
}

.landing-insights-copy li > .material-symbols-outlined {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    color: #5269f5;
    font-size: 16px;
    font-weight: 800;
    background: #edf0ff;
    border-radius: 8px;
}

.landing-insights-copy li strong,
.landing-insights-copy li small {
    display: block;
}

.landing-insights-copy li strong {
    color: #2b3f57;
    font-size: 0.82rem;
}

.landing-insights-copy li small {
    margin-top: 4px;
    color: #7a8a9c;
    font-size: 0.76rem;
    line-height: 1.55;
}

.landing-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 29px;
    color: var(--landing-blue);
    font-size: 0.82rem;
    font-weight: 900;
}

.landing-text-link .material-symbols-outlined {
    font-size: 18px;
    transition: transform 180ms ease;
}

.landing-text-link:hover,
.landing-text-link:focus {
    color: #2555db;
}

.landing-text-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.landing-confidence {
    padding: 30px 0 120px;
}

.landing-confidence-card {
    position: relative;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
    align-items: center;
    overflow: hidden;
    padding: 62px 66px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(73, 107, 245, 0.2), transparent 32%),
        linear-gradient(135deg, #0a1c32, #102c4c);
    border-radius: var(--landing-radius-lg);
    box-shadow: 0 30px 70px rgba(9, 27, 50, 0.18);
}

.landing-confidence-card::after {
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 46px rgba(255, 255, 255, 0.018), 0 0 0 92px rgba(255, 255, 255, 0.012);
}

.landing-confidence-copy {
    position: relative;
    z-index: 2;
}

.landing-confidence-copy .landing-kicker {
    color: #76dbe0;
}

.landing-confidence-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 3.3vw, 3rem);
}

.landing-confidence-copy > p:last-child {
    margin: 20px 0 0;
    color: #adc0d5;
    font-size: 0.9rem;
    line-height: 1.72;
}

.landing-confidence-points {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.landing-confidence-points > div {
    min-height: 177px;
    padding: 22px 19px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.landing-confidence-points .material-symbols-outlined {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    margin-bottom: 24px;
    color: #7ddfe3;
    font-size: 21px;
    background: rgba(79, 214, 219, 0.11);
    border-radius: 12px;
}

.landing-confidence-points strong,
.landing-confidence-points small {
    display: block;
}

.landing-confidence-points strong {
    color: #f4f8fc;
    font-size: 0.76rem;
}

.landing-confidence-points small {
    margin-top: 7px;
    color: #91a6bd;
    font-size: 0.64rem;
    line-height: 1.5;
}

.landing-faq {
    padding-top: 20px;
    padding-bottom: 135px;
}

.landing-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 100px;
    align-items: start;
}

.landing-faq-heading {
    position: sticky;
    top: 125px;
}

.landing-faq-heading h2 {
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
}

.landing-faq-heading > p:not(.landing-kicker) {
    max-width: 390px;
    margin: 20px 0 0;
    color: var(--landing-copy);
    font-size: 0.92rem;
    line-height: 1.7;
}

.landing-faq-list {
    border-top: 1px solid var(--landing-line);
}

.landing-faq-list details {
    border-bottom: 1px solid var(--landing-line);
}

.landing-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 2px;
    color: #24384f;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.landing-faq-list summary::-webkit-details-marker {
    display: none;
}

.landing-faq-list summary .material-symbols-outlined {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    place-items: center;
    color: #5d6ff1;
    font-size: 18px;
    background: #f0f2ff;
    border-radius: 9px;
    transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.landing-faq-list details[open] summary .material-symbols-outlined {
    color: #fff;
    background: #6170ee;
    transform: rotate(45deg);
}

.landing-faq-list details p {
    max-width: 650px;
    padding: 0 50px 24px 2px;
    margin: -5px 0 0;
    color: var(--landing-copy);
    font-size: 0.85rem;
    line-height: 1.75;
}

.landing-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(120deg, #5867ef, #6c57df 54%, #3b9fc6);
}

.landing-cta-glow {
    position: absolute;
    top: -190px;
    right: 9%;
    width: 430px;
    height: 430px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 74px rgba(255, 255, 255, 0.026), 0 0 0 148px rgba(255, 255, 255, 0.016);
}

.landing-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
    align-items: center;
    min-height: 330px;
    padding-top: 55px;
    padding-bottom: 55px;
}

.landing-cta .landing-kicker {
    color: #dce1ff;
}

.landing-cta h2 {
    max-width: 700px;
    color: #fff;
    font-size: clamp(2.3rem, 4.2vw, 3.7rem);
}

.landing-cta-inner > div:first-child > p:last-child {
    max-width: 620px;
    margin: 18px 0 0;
    color: #e2e5ff;
    font-size: 0.95rem;
}

.landing-cta-actions {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.landing-button-light {
    min-width: 210px;
    color: #4e5edc;
    background: #fff;
    box-shadow: 0 18px 36px rgba(37, 41, 111, 0.22);
}

.landing-button-light:hover,
.landing-button-light:focus {
    color: #3c4dcc;
    background: #f7f8ff;
    transform: translateY(-3px);
}

.landing-cta-login {
    color: #e9ebff;
    font-size: 0.75rem;
    font-weight: 800;
}

.landing-cta-login:hover,
.landing-cta-login:focus {
    color: #fff;
    text-decoration: underline;
}

.landing-footer {
    color: #8fa3ba;
    background: var(--landing-navy-950);
}

.landing-footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    padding-top: 68px;
    padding-bottom: 55px;
}

.landing-footer-brand > a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.landing-footer-brand img {
    width: 142px;
    height: auto;
}

.landing-footer-brand > a span {
    padding: 5px 8px;
    color: #b9c9dc;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
}

.landing-footer-brand p {
    max-width: 330px;
    margin: 18px 0 0;
    color: #7087a1;
    font-size: 0.78rem;
}

.landing-footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(115px, 1fr));
    gap: 60px;
}

.landing-footer-links > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
}

.landing-footer-links strong {
    margin-bottom: 5px;
    color: #dce5ef;
    font-size: 0.74rem;
}

.landing-footer-links a {
    color: #7890aa;
    font-size: 0.71rem;
    transition: color 180ms ease;
}

.landing-footer-links a:hover,
.landing-footer-links a:focus {
    color: #fff;
}

.landing-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    font-size: 0.64rem;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.landing-js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(0.2, 0.72, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.landing-js [data-reveal-delay="1"] {
    transition-delay: 90ms;
}

.landing-js [data-reveal-delay="2"] {
    transition-delay: 180ms;
}

.landing-js [data-reveal-delay="3"] {
    transition-delay: 270ms;
}

.landing-js [data-reveal-delay="4"] {
    transition-delay: 360ms;
}

.landing-js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes landing-dashboard-float {
    0%,
    100% {
        transform: rotateY(-5deg) rotateX(1.5deg) translateY(0);
    }

    50% {
        transform: rotateY(-5deg) rotateX(1.5deg) translateY(-8px);
    }
}

@keyframes landing-small-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes landing-bar-grow {
    from {
        transform: scaleY(0.08);
    }

    to {
        transform: scaleY(1);
    }
}

@media (max-width: 1160px) {
    .landing-nav {
        gap: 18px;
    }

    .landing-header .language-selector {
        display: none;
    }

    .landing-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(510px, 1.1fr);
        gap: 35px;
    }

    .landing-product-stage {
        width: 600px;
        transform: scale(0.9);
        transform-origin: left center;
    }

    .landing-capability-strip > div {
        gap: 18px;
    }

    .landing-feature-card {
        grid-column: span 3;
    }

    .landing-feature-card-wide {
        grid-column: span 3;
    }

    .landing-confidence-card {
        gap: 40px;
        padding: 52px 44px;
    }

    .landing-confidence-points {
        grid-template-columns: 1fr;
    }

    .landing-confidence-points > div {
        display: grid;
        grid-template-columns: 43px 1fr;
        column-gap: 12px;
        min-height: 0;
        padding: 15px;
    }

    .landing-confidence-points .material-symbols-outlined {
        grid-row: span 2;
        margin: 0;
    }

    .landing-confidence-points small {
        margin-top: 3px;
    }
}

@media (max-width: 960px) {
    html {
        scroll-padding-top: 82px;
    }

    .landing-header-inner {
        min-height: 76px;
    }

    .landing-nav,
    .landing-header-actions > .landing-login-link,
    .landing-header-actions > .landing-signup-link {
        display: none;
    }

    .landing-header .language-selector {
        display: inline-flex;
    }

    .landing-menu-toggle {
        display: block;
    }

    .landing-mobile-nav {
        display: grid;
        max-height: 0;
        padding: 0 24px;
        overflow: hidden;
        background: rgba(7, 19, 35, 0.97);
        opacity: 0;
        visibility: hidden;
        transition: max-height 260ms ease, padding 260ms ease, opacity 180ms ease, visibility 180ms ease;
    }

    .landing-header.menu-open .landing-mobile-nav {
        max-height: 430px;
        padding-top: 10px;
        padding-bottom: 24px;
        opacity: 1;
        visibility: visible;
    }

    .landing-mobile-nav > a {
        padding: 14px 4px;
        color: #d5e0ed;
        font-size: 0.88rem;
        font-weight: 800;
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }

    .landing-mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 17px;
    }

    .landing-menu-open {
        overflow: hidden;
    }

    .landing-hero {
        min-height: 1180px;
    }

    .landing-hero::after {
        bottom: -190px;
    }

    .landing-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-top: 142px;
        text-align: center;
    }

    .landing-hero-copy {
        max-width: 720px;
        margin-inline: auto;
    }

    .landing-hero h1,
    .landing-hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .landing-hero-actions,
    .landing-hero-note {
        justify-content: center;
    }

    .landing-product-stage {
        width: 650px;
        margin: -20px auto 0;
        transform: none;
    }

    .landing-capability-strip {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .landing-capability-strip > div {
        width: 100%;
        justify-content: space-between;
    }

    .landing-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .landing-workflow-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .landing-workflow-grid article {
        display: grid;
        grid-template-columns: 63px 1fr;
        column-gap: 17px;
        min-height: 0;
    }

    .landing-step-icon {
        grid-row: span 2;
        margin: 0;
    }

    .landing-workflow-grid h3 {
        align-self: end;
    }

    .landing-workflow-arrow {
        transform: rotate(90deg);
    }

    .landing-insights-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .landing-insights-copy {
        max-width: 680px;
    }

    .landing-confidence-card {
        grid-template-columns: 1fr;
    }

    .landing-confidence-points {
        grid-template-columns: repeat(3, 1fr);
    }

    .landing-confidence-points > div {
        display: block;
        min-height: 165px;
        padding: 19px;
    }

    .landing-confidence-points .material-symbols-outlined {
        margin-bottom: 22px;
    }

    .landing-faq-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .landing-faq-heading {
        position: static;
    }

    .landing-cta-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .landing-cta h2,
    .landing-cta-inner > div:first-child > p:last-child {
        margin-right: auto;
        margin-left: auto;
    }

    .landing-footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .landing-container {
        width: min(100% - 30px, 1180px);
    }

    .landing-header .language-selector {
        padding-left: 7px;
    }

    .landing-header .language-select {
        width: 72px;
        font-size: 0.72rem;
    }

    .landing-brand img {
        width: 125px;
    }

    .landing-brand span {
        display: none;
    }

    .landing-hero {
        min-height: 1025px;
    }

    .landing-hero-grid {
        display: block;
        min-height: auto;
        padding-top: 135px;
    }

    .landing-hero h1 {
        margin-top: 20px;
        font-size: clamp(3rem, 14vw, 4.3rem);
    }

    .landing-hero-lead {
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .landing-hero-actions {
        display: grid;
    }

    .landing-button {
        width: 100%;
    }

    .landing-product-stage {
        width: 650px;
        margin-top: 62px;
        margin-left: 50%;
        transform: translateX(-50%) scale(0.65);
        transform-origin: top center;
    }

    .landing-floating-students {
        right: -12px;
    }

    .landing-floating-payment {
        left: -12px;
    }

    .landing-capability-strip {
        margin-top: -96px;
    }

    .landing-capability-strip > div {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 22px;
    }

    .landing-capability-strip strong:last-child {
        grid-column: span 2;
    }

    .landing-section {
        padding: 88px 0;
    }

    .landing-section-heading {
        margin-bottom: 38px;
    }

    .landing-feature-grid {
        grid-template-columns: 1fr;
    }

    .landing-feature-card,
    .landing-feature-card-wide {
        display: block;
        grid-column: auto;
    }

    .landing-feature-card-wide {
        min-height: 0;
    }

    .landing-enrollment-visual {
        max-width: 330px;
        margin: 20px auto 0;
    }

    .landing-donut-wrap {
        margin-top: 35px;
    }

    .landing-centered-heading {
        margin-bottom: 44px;
    }

    .landing-workflow-grid article {
        display: block;
    }

    .landing-step-icon {
        margin-bottom: 24px;
    }

    .landing-insights {
        padding-top: 88px;
        padding-bottom: 95px;
    }

    .landing-insights-grid {
        gap: 60px;
    }

    .landing-insights-visual {
        padding: 24px 15px 20px 0;
    }

    .landing-insights-visual::before {
        left: 20px;
    }

    .landing-insights-window-body {
        padding: 21px 18px 18px;
    }

    .landing-insights-summary {
        gap: 44px;
    }

    .landing-line-chart {
        height: 160px;
    }

    .landing-insight-badge {
        right: -3px;
    }

    .landing-confidence {
        padding-top: 10px;
        padding-bottom: 90px;
    }

    .landing-confidence-card {
        gap: 38px;
        padding: 42px 24px;
        border-radius: 24px;
    }

    .landing-confidence-points {
        grid-template-columns: 1fr;
    }

    .landing-confidence-points > div {
        display: grid;
        grid-template-columns: 43px 1fr;
        column-gap: 12px;
        min-height: 0;
        padding: 15px;
    }

    .landing-confidence-points .material-symbols-outlined {
        grid-row: span 2;
        margin: 0;
    }

    .landing-faq {
        padding-top: 0;
        padding-bottom: 95px;
    }

    .landing-faq-grid {
        gap: 42px;
    }

    .landing-faq-list summary {
        font-size: 0.86rem;
    }

    .landing-faq-list details p {
        padding-right: 10px;
    }

    .landing-cta-inner {
        min-height: 410px;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .landing-footer-top {
        gap: 45px;
        padding-top: 55px;
    }

    .landing-footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .landing-footer-links > div:last-child {
        grid-column: span 2;
    }

    .landing-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        min-height: 78px;
    }
}

@media (max-width: 420px) {
    .landing-header-actions {
        gap: 7px;
    }

    .landing-header .language-selector i {
        display: none;
    }

    .landing-header .language-select {
        width: 64px;
    }

    .landing-hero h1 {
        font-size: 2.85rem;
    }

    .landing-product-stage {
        transform: translateX(-50%) scale(0.57);
    }

    .landing-capability-strip {
        margin-top: -133px;
    }

    .landing-feature-card {
        padding: 25px 21px;
    }

    .landing-insights-summary {
        gap: 29px;
    }

    .landing-insights-summary strong {
        font-size: 1.05rem;
    }

    .landing-insights-summary em {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .landing-dashboard,
    .landing-floating-card,
    .landing-chart > span {
        animation: none;
    }

    .landing-js [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .landing-body *,
    .landing-body *::before,
    .landing-body *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
.landing-connected {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 26%, rgba(93, 109, 246, 0.1), transparent 32%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.landing-connected::before,
.landing-connected::after {
    position: absolute;
    width: 360px;
    height: 360px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(83, 105, 245, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(83, 105, 245, 0.025), 0 0 0 110px rgba(83, 105, 245, 0.015);
}

.landing-connected::before {
    top: 220px;
    left: -270px;
}

.landing-connected::after {
    right: -270px;
    bottom: 120px;
}

.landing-connected-heading {
    max-width: 850px;
}

.landing-connected-heading > p:last-child {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.75;
}

.landing-connection-hub {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px minmax(0, 1fr);
    align-items: center;
    max-width: 1040px;
    min-height: 190px;
    padding: 26px;
    margin: 0 auto 24px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 0, rgba(101, 119, 252, 0.24), transparent 45%),
        linear-gradient(130deg, #08182b, #102b49);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 27px;
    box-shadow: 0 28px 65px rgba(10, 30, 54, 0.2);
}

.landing-hub-product {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 15px;
    align-items: center;
    min-height: 128px;
    padding: 21px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
}

.landing-hub-product > .landing-hub-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #fff;
    font-size: 27px;
    background: linear-gradient(135deg, #5b70fa, #745ae6);
    border-radius: 15px;
    box-shadow: 0 12px 23px rgba(55, 70, 198, 0.28);
}

.landing-hub-edumento > .landing-hub-mark {
    position: relative;
    background: linear-gradient(135deg, #ff865e, #ff6839);
    box-shadow: 0 12px 23px rgba(255, 104, 57, 0.25);
}

.landing-hub-mark i {
    position: absolute;
    top: 19px;
    width: 24px;
    height: 14px;
    background: #fff;
    border-radius: 12px 12px 5px 12px;
    transform: translateX(-7px) rotate(27deg);
}

.landing-hub-mark i:last-child {
    transform: translateX(7px) rotate(-27deg) scaleX(-1);
}

.landing-hub-product small,
.landing-hub-product h3,
.landing-hub-product p {
    display: block;
    margin: 0;
}

.landing-hub-product small {
    color: #7edce1;
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.landing-hub-edumento small {
    color: #ffab8e;
}

.landing-hub-product h3 {
    margin-top: 7px;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 800;
}

.landing-hub-product p {
    margin-top: 7px;
    color: #94a9c0;
    font-size: 0.58rem;
    line-height: 1.55;
}

.landing-sync-bridge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 100px;
}

.landing-sync-bridge > span:not(.landing-sync-icon) {
    width: 6px;
    height: 6px;
    background: #6e83f8;
    border-radius: 50%;
    animation: landing-sync-pulse 1.7s ease-in-out infinite;
}

.landing-sync-bridge > span:nth-child(2) {
    animation-delay: 140ms;
}

.landing-sync-bridge > span:nth-child(4) {
    animation-delay: 280ms;
}

.landing-sync-bridge > span:nth-child(5) {
    animation-delay: 420ms;
}

.landing-sync-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #fff;
    font-size: 23px;
    background: linear-gradient(135deg, #5d70f5, #37b7c1);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(96, 116, 243, 0.1);
    animation: landing-sync-rotate 7s linear infinite;
}

.landing-sync-bridge small {
    position: absolute;
    bottom: 10px;
    left: 50%;
    color: #748ba7;
    font-size: 0.44rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    white-space: nowrap;
    transform: translateX(-50%);
}

.landing-audience-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.landing-audience-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: #fff;
    border: 1px solid #e1e8f1;
    border-radius: 21px;
    box-shadow: 0 16px 38px rgba(17, 42, 72, 0.07);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.landing-audience-card::after {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    content: "";
    background: var(--audience-glow);
    border-radius: 50%;
    opacity: 0.65;
}

.landing-audience-card:hover {
    border-color: #d2ddec;
    box-shadow: 0 24px 52px rgba(17, 42, 72, 0.12);
    transform: translateY(-6px);
}

.landing-audience-card.is-parent {
    --audience-color: #526ef6;
    --audience-soft: #edf1ff;
    --audience-glow: #e8edff;
}

.landing-audience-card.is-teacher {
    --audience-color: #20aa7a;
    --audience-soft: #eaf9f3;
    --audience-glow: #e0f8ef;
}

.landing-audience-card.is-student {
    --audience-color: #ef7045;
    --audience-soft: #fff0ea;
    --audience-glow: #ffe9df;
}

.landing-audience-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 23px;
}

.landing-audience-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--audience-color);
    font-size: 24px;
    background: var(--audience-soft);
    border-radius: 14px;
}

.landing-app-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    color: #718399;
    font-size: 0.53rem;
    font-weight: 900;
    background: #f7f9fc;
    border: 1px solid #e5ebf2;
    border-radius: 8px;
}

.landing-app-chip i {
    width: 6px;
    height: 6px;
    background: var(--audience-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--audience-soft);
}

.landing-audience-card h3,
.landing-audience-card > p,
.landing-audience-card ul {
    position: relative;
    z-index: 2;
}

.landing-audience-card h3 {
    min-height: 52px;
    margin: 0;
    color: #21364e;
    font-size: 1.03rem;
    font-weight: 800;
    line-height: 1.35;
}

.landing-audience-card > p {
    min-height: 90px;
    margin: 12px 0 0;
    color: var(--landing-copy);
    font-size: 0.8rem;
    line-height: 1.7;
}

.landing-audience-card ul {
    display: grid;
    gap: 9px;
    padding: 17px 0 0;
    margin: 18px 0 0;
    border-top: 1px solid #e8edf3;
    list-style: none;
}

.landing-audience-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #61758d;
    font-size: 0.68rem;
    font-weight: 800;
}

.landing-audience-card li .material-symbols-outlined {
    color: var(--audience-color);
    font-size: 17px;
}

.landing-connected-summary {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 930px;
    min-height: 68px;
    padding: 14px 22px;
    margin: 22px auto 0;
    color: #65788f;
    font-size: 0.7rem;
    background: #fff;
    border: 1px solid #e1e8f1;
    border-radius: 15px;
    box-shadow: 0 13px 30px rgba(17, 42, 72, 0.055);
}

.landing-connected-summary > span:first-child {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    color: #536cf2;
    font-size: 19px;
    background: #edf0ff;
    border-radius: 10px;
}

.landing-connected-summary strong {
    color: #344a63;
    font-size: 0.7rem;
}

.landing-connected-summary > i {
    color: #93a2b2;
    font-size: 18px;
}

.landing-connected-summary > span:last-child {
    flex-basis: 100%;
    text-align: center;
}

@keyframes landing-sync-pulse {
    0%,
    100% {
        opacity: 0.28;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.18);
    }
}

@keyframes landing-sync-rotate {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 960px) {
    .landing-connection-hub {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .landing-sync-bridge {
        min-height: 82px;
        transform: rotate(90deg);
    }

    .landing-sync-bridge small {
        display: none;
    }

    .landing-audience-grid {
        grid-template-columns: 1fr;
    }

    .landing-audience-card h3,
    .landing-audience-card > p {
        min-height: 0;
    }
}

@media (max-width: 720px) {
    .landing-connection-hub {
        padding: 18px;
        border-radius: 22px;
    }

    .landing-hub-product {
        grid-template-columns: 46px 1fr;
        padding: 17px;
    }

    .landing-hub-product > .landing-hub-icon {
        width: 44px;
        height: 44px;
        font-size: 23px;
    }

    .landing-hub-mark i {
        top: 16px;
        transform: translateX(-6px) rotate(27deg) scale(0.85);
    }

    .landing-hub-mark i:last-child {
        transform: translateX(6px) rotate(-27deg) scale(-0.85, 0.85);
    }

    .landing-audience-card {
        padding: 24px 21px;
    }

    .landing-connected-summary {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        padding: 18px;
    }

    .landing-connected-summary > i {
        margin-left: 8px;
        transform: rotate(90deg);
    }

    .landing-connected-summary > span:last-child {
        text-align: left;
    }
}

/* Readability pass: keep supporting text comfortably legible without
   changing the page's established visual hierarchy. */
.landing-brand span,
.landing-kicker {
    font-size: 0.78rem;
}

.landing-nav a {
    font-size: 0.96rem;
}

.landing-hero-note {
    font-size: 0.84rem;
}

.landing-capability-strip > span {
    font-size: 0.76rem;
}

.landing-capability-strip strong {
    font-size: 0.82rem;
}

.landing-feature-card p {
    font-size: 0.95rem;
}

.landing-feature-card a {
    font-size: 0.86rem;
}

.landing-enrollment-card strong,
.landing-enrollment-target strong {
    font-size: 0.72rem;
}

.landing-enrollment-card small,
.landing-enrollment-target small,
.landing-enrollment-status,
.landing-mini-schedule b,
.landing-payment-progress > small,
.landing-role-list > span,
.landing-report-tags span,
.landing-donut-legend span {
    font-size: 0.62rem;
}

.landing-payment-progress > div {
    font-size: 0.7rem;
}

.landing-payment-progress > div strong {
    font-size: 0.84rem;
}

.landing-donut small {
    font-size: 0.64rem;
}

.landing-workflow-grid p {
    font-size: 0.93rem;
}

.landing-insights-window-head {
    font-size: 0.68rem;
}

.landing-insights-summary small {
    font-size: 0.66rem;
}

.landing-insights-summary em,
.landing-insights-caption {
    font-size: 0.6rem;
}

.landing-insight-badge strong {
    font-size: 0.74rem;
}

.landing-insight-badge small {
    font-size: 0.6rem;
}

.landing-insights-copy li small {
    font-size: 0.82rem;
}

.landing-confidence-copy > p:last-child {
    font-size: 0.98rem;
}

.landing-confidence-points strong {
    font-size: 0.82rem;
}

.landing-confidence-points small {
    font-size: 0.74rem;
}

.landing-faq-list details p {
    font-size: 0.95rem;
}

.landing-cta-login {
    font-size: 0.82rem;
}

.landing-footer-brand > a span {
    font-size: 0.7rem;
}

.landing-footer-brand p,
.landing-footer-links a {
    font-size: 0.82rem;
}

.landing-footer-links strong {
    font-size: 0.8rem;
}

.landing-footer-bottom {
    font-size: 0.72rem;
}

.landing-hub-product small {
    font-size: 0.66rem;
}

.landing-hub-product h3 {
    font-size: 1.02rem;
}

.landing-hub-product p {
    font-size: 0.7rem;
}

.landing-sync-bridge small {
    font-size: 0.54rem;
}

.landing-app-chip {
    font-size: 0.64rem;
}

.landing-audience-card > p {
    font-size: 0.92rem;
}

.landing-audience-card li {
    font-size: 0.78rem;
}

.landing-connected-summary,
.landing-connected-summary strong {
    font-size: 0.78rem;
}

/* The product preview is illustrative, but its key labels should still read
   clearly on a regular laptop display. */
.landing-dashboard-brand {
    font-size: 0.74rem;
}

.landing-dashboard-search,
.landing-dashboard-avatar {
    font-size: 0.66rem;
}

.landing-dashboard-heading small,
.landing-dashboard-period,
.landing-stat-card > small,
.landing-stat-card em {
    font-size: 0.62rem;
}

.landing-card-heading strong {
    font-size: 0.68rem;
}

.landing-card-heading small,
.landing-chart-labels,
.landing-class-row time,
.landing-class-row small {
    font-size: 0.56rem;
}

.landing-class-row strong {
    font-size: 0.62rem;
}

.landing-floating-card strong {
    font-size: 0.72rem;
}

.landing-floating-card small {
    font-size: 0.58rem;
}

@media (max-width: 720px) {
    .landing-feature-card p,
    .landing-workflow-grid p,
    .landing-audience-card > p,
    .landing-faq-list details p {
        font-size: 1rem;
    }

    .landing-footer-links a {
        font-size: 0.86rem;
    }
}
