.tlp-student-page {
    --student-ink: var(--tlp-primary, #21212d);
    --student-lime: var(--tlp-green, #cfff45);
    --student-red: var(--tlp-red, #ef2b10);
    --student-soft: var(--tlp-soft, #f6f6f9);
    --student-paper: #ffffff;
    --student-night: #0d0e13;
    --student-line: rgba(33, 33, 45, 0.16);
    color: var(--student-ink);
    background: var(--student-soft);
}

.tlp-student-page main {
    overflow: clip;
}

.tlp-student-page section[id],
.tlp-student-page [id='verify-email'] {
    scroll-margin-top: 118px;
}

.tlp-student-page :where(a, button, input, summary):focus-visible {
    outline: 3px solid var(--student-red);
    outline-offset: 4px;
}

.tlp-student-skip {
    position: fixed;
    z-index: var(--z-public-skip-link);
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    color: #fff;
    background: var(--student-ink);
    border-radius: 8px;
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

.tlp-student-skip:focus {
    color: #fff;
    transform: translateY(0);
}

.tlp-student-hero {
    padding: clamp(148px, 12vw, 188px) 0 clamp(92px, 8vw, 126px);
    background: var(--student-paper);
}

.tlp-student-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(480px, 0.94fr);
    align-items: end;
    gap: clamp(42px, 6vw, 96px);
}

.tlp-student-hero-copy h1 {
    max-width: 11.2ch;
    margin: 0;
    color: var(--student-ink);
    font-family: Inter, sans-serif;
    font-size: clamp(58px, 6.25vw, 96px);
    font-weight: 720;
    letter-spacing: -0.04em;
    line-height: 0.94;
    text-wrap: balance;
}

.tlp-student-hero-copy h1 span,
.tlp-student-hero-copy h1 strong {
    display: block;
    font: inherit;
}

.tlp-student-hero-copy h1 strong {
    position: relative;
    z-index: 0;
    width: fit-content;
}

.tlp-student-hero-copy h1 strong::after {
    position: absolute;
    z-index: -1;
    right: -0.06em;
    bottom: 0.02em;
    left: -0.03em;
    height: 0.27em;
    background: var(--student-lime);
    content: '';
    transform: rotate(-0.8deg);
}

.tlp-student-hero-copy > p {
    max-width: 52ch;
    margin: 30px 0 26px;
    color: #4f4f5b;
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.55;
}

.tlp-student-hero-link,
.tlp-student-final-inner > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 21px;
    color: var(--student-ink);
    background: var(--student-lime);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 780;
    text-decoration: none;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.tlp-student-hero-link:hover,
.tlp-student-final-inner > a:hover {
    color: #fff;
    background: var(--student-ink);
    transform: translateY(-2px);
}

.tlp-student-hero-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: #666672;
    font-size: 14px;
    font-weight: 650;
}

.tlp-student-hero-note svg {
    color: #278b49;
}

.tlp-student-verifier {
    padding: clamp(28px, 3vw, 44px);
    background: #fff;
    border: 1px solid var(--student-line);
    border-radius: 16px;
    box-shadow: 0 22px 64px rgba(21, 22, 29, 0.09);
}

.tlp-student-verifier-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.tlp-student-verifier-topline h2 {
    margin: 0;
    color: var(--student-ink);
    font-size: clamp(23px, 2vw, 31px);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.tlp-student-verifier-topline > span,
.tlp-student-workspace-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4b4b56;
    font-size: 12px;
    font-weight: 720;
    white-space: nowrap;
}

.tlp-student-verifier-topline i,
.tlp-student-workspace-heading > span i {
    width: 9px;
    height: 9px;
    background: #31a75a;
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(49, 167, 90, 0.14);
}

.tlp-student-verifier-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.tlp-student-verifier-steps.has-card-review {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tlp-student-verifier-steps.has-card-review li {
    font-size: 10px;
}

.tlp-student-verifier-steps li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    color: #686872;
    font-size: 11px;
    font-weight: 680;
}

.tlp-student-verifier-steps li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 10px;
    left: calc(100% - 25px);
    height: 1px;
    background: #d9d9de;
    content: '';
}

.tlp-student-verifier-steps b {
    display: grid;
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    color: #6a6a74;
    background: #eeeef1;
    border-radius: 999px;
    font-size: 11px;
    place-items: center;
}

.tlp-student-verifier-steps .is-active {
    color: var(--student-ink);
}

.tlp-student-verifier-steps .is-active b {
    color: #fff;
    background: var(--student-ink);
}

.tlp-student-email-form label {
    display: block;
    margin-bottom: 9px;
    color: var(--student-ink);
    font-size: 13px;
    font-weight: 760;
}

.tlp-student-email-control {
    position: relative;
}

.tlp-student-email-control input {
    width: 100%;
    height: 56px;
    padding: 0 98px 0 16px;
    color: var(--student-ink);
    background: #fbfbfc;
    border: 1px solid #cfcfd5;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.tlp-student-email-control input:focus {
    background: #fff;
    border-color: var(--student-ink);
    box-shadow: 0 0 0 4px rgba(33, 33, 45, 0.08);
}

.tlp-student-email-control input[aria-invalid='true'] {
    border-color: var(--student-red);
}

.tlp-student-email-domain {
    position: absolute;
    top: 50%;
    right: 13px;
    padding: 5px 8px;
    color: #464650;
    background: var(--student-lime);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    transform: translateY(-50%);
}

.tlp-student-form-hint,
.tlp-student-form-error {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.45;
}

.tlp-student-form-hint {
    color: #74747e;
}

.tlp-student-form-error {
    color: #bd2510;
    font-weight: 650;
}

.tlp-student-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    margin-top: 18px;
    color: #fff;
    background: var(--student-ink);
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 760;
    cursor: pointer;
    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.tlp-student-submit:hover {
    color: var(--student-ink);
    background: var(--student-lime);
}

.tlp-student-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.tlp-student-otp-preview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
    margin-top: 25px;
    padding-top: 23px;
    border-top: 1px solid var(--student-line);
}

.tlp-student-otp-preview > div:first-child span,
.tlp-student-otp-preview > div:first-child strong {
    display: block;
}

.tlp-student-otp-preview > div:first-child span {
    color: #73737d;
    font-size: 12px;
}

.tlp-student-otp-preview > div:first-child strong {
    max-width: 24ch;
    margin-top: 4px;
    color: var(--student-ink);
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tlp-student-code-cells {
    display: flex;
    gap: 5px;
}

.tlp-student-code-cells i {
    display: grid;
    width: 29px;
    height: 34px;
    color: var(--student-ink);
    border: 1px solid #d3d3da;
    border-radius: 8px;
    font-size: 13px;
    font-style: normal;
    font-weight: 750;
    place-items: center;
}

.tlp-student-verified {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    color: #297d47;
    font-size: 12px;
    font-weight: 760;
}

.tlp-student-verified i {
    display: grid;
    width: 24px;
    height: 24px;
    color: var(--student-ink);
    background: var(--student-lime);
    border-radius: 999px;
    font-style: normal;
    place-items: center;
}

.tlp-student-page.is-email-valid .tlp-student-verifier-steps li:nth-child(2) b {
    color: var(--student-ink);
    background: var(--student-lime);
}

.tlp-student-page.is-email-valid .tlp-student-verified i {
    animation: tlp-student-confirm 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tlp-student-confirm {
    0% {
        box-shadow: 0 0 0 0 rgba(207, 255, 69, 0.7);
        transform: scale(0.85);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(207, 255, 69, 0);
        transform: scale(1);
    }
}

.tlp-student-workspace {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    min-height: 430px;
    margin-top: clamp(52px, 5vw, 78px);
    color: #fff;
    background: var(--student-night);
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(10, 11, 16, 0.24);
    overflow: hidden;
}

.tlp-student-workspace-rail {
    padding: 27px 22px;
    background: #15161d;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tlp-student-workspace-brand {
    display: block;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 760;
    letter-spacing: -0.03em;
}

.tlp-student-workspace-plan {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 650;
}

.tlp-student-workspace-plan i {
    display: grid;
    width: 23px;
    height: 23px;
    color: #17181d;
    background: var(--student-lime);
    border-radius: 8px;
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
    place-items: center;
}

.tlp-student-workspace-rail ul {
    display: grid;
    gap: 5px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.tlp-student-workspace-rail li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.58);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 620;
}

.tlp-student-workspace-rail li.is-current {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
}

.tlp-student-workspace-rail li svg {
    flex: 0 0 17px;
}

.tlp-student-workspace-main {
    display: flex;
    flex-direction: column;
    padding: clamp(30px, 3vw, 48px);
}

.tlp-student-workspace-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.tlp-student-workspace-heading h2 {
    margin: 0 0 9px;
    color: #fff;
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 680;
    letter-spacing: -0.04em;
}

.tlp-student-workspace-heading p {
    max-width: 54ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.55;
}

.tlp-student-workspace-heading > span {
    color: rgba(255, 255, 255, 0.74);
}

.tlp-student-entitlements {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: auto 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tlp-student-entitlements > div {
    padding: 22px clamp(13px, 1.5vw, 23px);
}

.tlp-student-entitlements > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.tlp-student-entitlements dt {
    color: var(--student-lime);
    font-size: clamp(24px, 2.3vw, 38px);
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1;
}

.tlp-student-entitlements dd {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    line-height: 1.45;
}

.tlp-student-workspace-flow {
    display: grid;
    grid-template-columns: 1fr 72px 0.75fr 72px 1.25fr;
    align-items: center;
    gap: 12px;
    min-height: 92px;
    margin-top: 22px;
}

.tlp-student-workspace-flow > span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    background: rgba(255, 255, 255, 0.045);
    border-radius: 12px;
}

.tlp-student-workspace-flow i {
    width: 26px;
    height: 8px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.tlp-student-workspace-flow span:last-child i {
    background: rgba(207, 255, 69, 0.55);
}

.tlp-student-workspace-flow b {
    position: relative;
    height: 1px;
    background: rgba(207, 255, 69, 0.45);
}

.tlp-student-workspace-flow b::after {
    position: absolute;
    top: -3px;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--student-lime);
    border-right: 1px solid var(--student-lime);
    content: '';
    transform: rotate(45deg);
}

.tlp-student-benefits,
.tlp-student-policy {
    padding: clamp(88px, 8vw, 124px) 0;
    background: var(--student-soft);
}

.tlp-student-split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
    align-items: end;
    gap: clamp(42px, 7vw, 110px);
    margin-bottom: clamp(52px, 5vw, 76px);
}

.tlp-student-split-heading h2,
.tlp-student-use-copy h2,
.tlp-student-policy h2,
.tlp-student-final h2 {
    margin: 0;
    color: var(--student-ink);
    font-size: clamp(44px, 4.6vw, 70px);
    font-weight: 690;
    letter-spacing: -0.04em;
    line-height: 0.98;
    text-wrap: balance;
}

.tlp-student-split-heading > p,
.tlp-student-use-copy > p,
.tlp-student-policy-grid > div > p {
    max-width: 58ch;
    margin: 0;
    color: #5c5c67;
    font-size: 17px;
    line-height: 1.65;
}

.tlp-student-benefit-ledger {
    border-top: 1px solid var(--student-line);
}

.tlp-student-benefit-ledger article {
    position: relative;
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr) 36px;
    align-items: center;
    gap: 40px;
    min-height: 132px;
    padding: 28px 4px;
    border-bottom: 1px solid var(--student-line);
}

.tlp-student-benefit-ledger h3 {
    margin: 0;
    color: var(--student-ink);
    font-size: clamp(27px, 2.5vw, 39px);
    font-weight: 670;
    letter-spacing: -0.035em;
}

.tlp-student-benefit-ledger p {
    max-width: 62ch;
    margin: 0;
    color: #62626c;
    line-height: 1.6;
}

.tlp-student-benefit-ledger svg {
    color: var(--student-red);
}

.tlp-student-use-cases {
    padding: clamp(92px, 8vw, 132px) 0;
    background: #fff;
}

.tlp-student-use-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(400px, 0.82fr);
    align-items: stretch;
    gap: clamp(42px, 6vw, 94px);
}

.tlp-student-use-grid figure {
    min-height: 680px;
    margin: 0;
    background: #e7e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.tlp-student-use-grid picture,
.tlp-student-use-grid img {
    width: 100%;
    height: 100%;
}

.tlp-student-use-grid img {
    object-fit: cover;
}

.tlp-student-use-copy {
    display: flex;
    flex-direction: column;
    padding: clamp(22px, 3vw, 52px) 0 4px;
}

.tlp-student-use-copy > p {
    margin-top: 27px;
}

.tlp-student-use-list {
    margin-top: auto;
    border-top: 1px solid var(--student-line);
}

.tlp-student-use-list article {
    padding: 25px 0;
    border-bottom: 1px solid var(--student-line);
}

.tlp-student-use-list h3 {
    margin: 0 0 8px;
    color: var(--student-ink);
    font-size: clamp(21px, 1.8vw, 28px);
    font-weight: 670;
    letter-spacing: -0.03em;
}

.tlp-student-use-list p {
    max-width: 52ch;
    margin: 0;
    color: #64646e;
    line-height: 1.55;
}

.tlp-student-how {
    padding: clamp(92px, 8vw, 132px) 0;
    color: #fff;
    background: var(--student-night);
}

.tlp-student-split-heading.is-dark h2 {
    color: #fff;
}

.tlp-student-split-heading.is-dark > p {
    color: rgba(255, 255, 255, 0.64);
}

.tlp-student-how-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    list-style: none;
}

.tlp-student-how-list li {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 22px;
    padding: 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.tlp-student-how-list > li > span {
    color: var(--student-lime);
    font-size: 15px;
    font-weight: 820;
}

.tlp-student-how-list h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: clamp(28px, 2.6vw, 42px);
    font-weight: 650;
    letter-spacing: -0.035em;
}

.tlp-student-how-list p {
    max-width: 72ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
}

.tlp-student-policy-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
    gap: clamp(52px, 8vw, 124px);
}

.tlp-student-policy-grid > div > p {
    margin-top: 28px;
}

.tlp-student-policy dl {
    margin: 0;
    border-top: 1px solid var(--student-line);
}

.tlp-student-policy dl > div {
    display: grid;
    grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--student-line);
}

.tlp-student-policy dt {
    color: #686872;
    font-size: 13px;
    font-weight: 670;
}

.tlp-student-policy dd {
    margin: 0;
    color: var(--student-ink);
    font-size: 16px;
    font-weight: 720;
}

.tlp-student-page .tlp-faq-section {
    background: #fff;
}

.tlp-student-final {
    padding: 0 0 clamp(90px, 8vw, 130px);
    background: #fff;
}

.tlp-student-final-inner {
    display: grid;
    justify-items: center;
    padding: clamp(70px, 8vw, 116px) clamp(22px, 6vw, 96px);
    color: #fff;
    background: var(--student-ink);
    border-radius: 16px;
    text-align: center;
}

.tlp-student-final h2 {
    max-width: 15ch;
    color: #fff;
}

.tlp-student-final p {
    max-width: 53ch;
    margin: 24px 0 29px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .tlp-student-hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
        gap: 40px;
    }

    .tlp-student-workspace {
        grid-template-columns: 190px minmax(0, 1fr);
    }

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

    .tlp-student-entitlements > div:nth-child(4) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .tlp-student-entitlements > div:nth-child(5) {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .tlp-student-use-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
        gap: 46px;
    }
}

@media (max-width: 991px) {
    .tlp-student-hero {
        padding-top: 136px;
    }

    .tlp-student-hero-grid,
    .tlp-student-split-heading,
    .tlp-student-use-grid,
    .tlp-student-policy-grid {
        grid-template-columns: 1fr;
    }

    .tlp-student-hero-copy h1 {
        max-width: 12ch;
    }

    .tlp-student-verifier {
        max-width: 680px;
    }

    .tlp-student-workspace {
        grid-template-columns: 1fr;
    }

    .tlp-student-workspace-rail {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 18px 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tlp-student-workspace-brand {
        margin: 0;
    }

    .tlp-student-workspace-plan {
        margin-left: auto;
    }

    .tlp-student-workspace-rail ul {
        display: none;
    }

    .tlp-student-split-heading {
        align-items: start;
        gap: 25px;
    }

    .tlp-student-benefit-ledger article {
        grid-template-columns: minmax(210px, 0.75fr) minmax(0, 1.25fr) 32px;
        gap: 25px;
    }

    .tlp-student-use-grid figure {
        min-height: 560px;
    }

    .tlp-student-use-list {
        margin-top: 45px;
    }
}

@media (max-width: 767px) {
    .tlp-student-hero {
        padding: 118px 0 76px;
    }

    .tlp-student-hero-copy h1 {
        font-size: clamp(48px, 14vw, 66px);
        line-height: 0.98;
    }

    .tlp-student-hero-copy > p {
        margin-top: 24px;
        font-size: 17px;
    }

    .tlp-student-hero-link {
        width: 100%;
    }

    .tlp-student-verifier {
        padding: 24px 18px;
    }

    .tlp-student-verifier-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .tlp-student-verifier-steps li {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .tlp-student-verifier-steps.has-card-review {
        column-gap: 4px;
    }

    .tlp-student-verifier-steps.has-card-review li {
        line-height: 1.35;
    }

    .tlp-student-verifier-steps li:not(:last-child)::after {
        top: 13px;
        right: 8px;
        left: 38px;
    }

    .tlp-student-otp-preview {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .tlp-student-code-cells i {
        width: 34px;
        height: 39px;
    }

    .tlp-student-workspace-rail {
        align-items: flex-start;
        flex-direction: column;
    }

    .tlp-student-workspace-plan {
        width: 100%;
        margin: 0;
    }

    .tlp-student-workspace-main {
        padding: 26px 18px;
    }

    .tlp-student-workspace-heading {
        flex-direction: column;
        gap: 18px;
    }

    .tlp-student-entitlements {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 36px;
    }

    .tlp-student-entitlements > div:nth-child(3),
    .tlp-student-entitlements > div:nth-child(5) {
        border-left: 0;
    }

    .tlp-student-entitlements > div:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .tlp-student-workspace-flow {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .tlp-student-workspace-flow b {
        width: 1px;
        height: 24px;
        margin: 0 auto;
    }

    .tlp-student-workspace-flow b::after {
        top: auto;
        right: -3px;
        bottom: 0;
        transform: rotate(135deg);
    }

    .tlp-student-benefits,
    .tlp-student-policy,
    .tlp-student-use-cases,
    .tlp-student-how {
        padding: 78px 0;
    }

    .tlp-student-split-heading h2,
    .tlp-student-use-copy h2,
    .tlp-student-policy h2,
    .tlp-student-final h2 {
        font-size: clamp(40px, 12vw, 54px);
    }

    .tlp-student-benefit-ledger article {
        grid-template-columns: 1fr 28px;
        gap: 14px;
        padding: 26px 0;
    }

    .tlp-student-benefit-ledger article p {
        grid-column: 1 / -1;
    }

    .tlp-student-benefit-ledger article svg {
        grid-column: 2;
        grid-row: 1;
    }

    .tlp-student-use-grid figure {
        min-height: 430px;
    }

    .tlp-student-use-copy {
        padding-top: 10px;
    }

    .tlp-student-how-list li {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 12px;
    }

    .tlp-student-policy dl > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .tlp-student-final-inner {
        border-radius: 13px;
    }

    .tlp-student-final-inner > a {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .tlp-student-email-control input {
        padding-right: 16px;
    }

    .tlp-student-email-domain {
        display: none;
    }

    .tlp-student-code-cells {
        gap: 4px;
    }

    .tlp-student-code-cells i {
        width: 30px;
    }

    .tlp-student-entitlements {
        grid-template-columns: 1fr;
    }

    .tlp-student-entitlements > div + div {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }
}

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

.tlp-education-pathways {
    padding: clamp(88px, 8vw, 132px) 0;
    color: #21212d;
    background: #fff;
}

.tlp-education-pathway-ledger {
    margin-top: 64px;
    border-top: 1px solid #d9d9df;
}

.tlp-education-pathway-ledger article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 48px;
    padding: 30px 0;
    border-bottom: 1px solid #d9d9df;
}

.tlp-education-pathway-ledger h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 720;
    letter-spacing: -0.025em;
}

.tlp-education-pathway-ledger p {
    max-width: 72ch;
    margin: 10px 0 0;
    color: #656570;
    line-height: 1.65;
}

.tlp-education-pathway-ledger a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 220px;
    padding: 0 16px;
    color: #fff;
    background: #21212d;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 760;
    text-decoration: none;
}

.tlp-education-pathway-ledger a:hover {
    color: #21212d;
    background: #cfff45;
}

@media (max-width: 767px) {
    .tlp-education-pathway-ledger article {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .tlp-education-pathway-ledger a {
        width: 100%;
    }
}
