:root {
    color-scheme: dark;
    --bg: #07070a;
    --bg-soft: #0b0b10;
    --panel: rgba(17, 17, 24, 0.78);
    --panel-strong: #111118;
    --text: #f7f7f8;
    --muted: #9b9ba7;
    --quiet: #6f6f7b;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.15);
    --violet: #8c7cff;
    --blue: #5d88ff;
    --green: #7ce7b2;
    --shell: min(1180px, calc(100% - 48px));
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
    font-family:
        Geist,
        "Geist Sans",
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(
            circle at 50% -12%,
            rgba(105, 89, 255, 0.17),
            transparent 30rem
        ),
        var(--bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
}

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

button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid #b4aaff;
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    color: #08080b;
    background: #fff;
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section-pad {
    padding-block: clamp(110px, 14vw, 190px);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    border-bottom: 1px solid var(--line);
}

.brand,
.nav-links,
.hero-actions,
.preview-brand,
.status,
.card-topline,
.footer-inner {
    display: flex;
    align-items: center;
}

.brand {
    gap: 11px;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #0a0a0d;
    background: #f7f7f8;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 760;
}

.brand-divider {
    width: 1px;
    height: 17px;
    background: var(--line-strong);
}

.brand-company {
    color: #cfcfd4;
    font-size: 14px;
    font-weight: 600;
}

.nav-links {
    gap: 30px;
    color: #adadb7;
    font-size: 13px;
    font-weight: 520;
}

.nav-links > a:not(.button) {
    transition: color 180ms ease;
}

.nav-links > a:not(.button):hover {
    color: #fff;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

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

.button-small {
    min-height: 38px;
    padding-inline: 15px;
    border-radius: 8px;
    font-size: 12px;
}

.button-light {
    color: #09090c;
    background: #f5f5f7;
    box-shadow:
        inset 0 -1px 0 rgba(0, 0, 0, 0.18),
        0 1px 16px rgba(255, 255, 255, 0.07);
}

.button-light:hover {
    background: #fff;
}

.button-ghost {
    color: #d7d7dc;
    background: rgba(255, 255, 255, 0.045);
    border-color: var(--line);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--line-strong);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: clamp(170px, 19vw, 235px);
    text-align: center;
}

.hero::before {
    position: absolute;
    top: 76px;
    left: 50%;
    z-index: -1;
    width: 100vw;
    height: 720px;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(
        ellipse 55% 45% at 50% 35%,
        black 18%,
        transparent 72%
    );
    transform: translateX(-50%);
}

.hero-glow,
.purchase-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(1px);
}

.hero-glow {
    top: 20px;
    left: 50%;
    z-index: -1;
    width: min(800px, 90vw);
    height: 390px;
    opacity: 0.7;
    background: radial-gradient(
        ellipse,
        rgba(107, 91, 255, 0.22),
        transparent 68%
    );
    transform: translateX(-50%);
}

.eyebrow {
    margin: 0 0 20px;
    color: #a6a6b0;
    font-size: 12px;
    font-weight: 620;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero h1 {
    width: min(76rem, 100%);
    margin: 0 auto;
    font-size: clamp(3.4rem, 7.6vw, 6.6rem);
    font-weight: 540;
    letter-spacing: -0.067em;
    line-height: 0.98;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(105deg, #b3abff 15%, #fff 51%, #88a9ff 88%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-copy {
    max-width: 650px;
    margin: 34px auto 0;
    color: #a4a4ae;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.55;
}

.hero-actions {
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.hero-note {
    margin: 16px 0 0;
    color: #696975;
    font-size: 12px;
}

.mentor-preview {
    position: relative;
    width: min(1000px, 94%);
    margin: clamp(76px, 9vw, 116px) auto 0;
    overflow: hidden;
    text-align: left;
    background: rgba(11, 11, 16, 0.9);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow:
        var(--shadow),
        0 0 120px rgba(88, 71, 255, 0.08);
}

.mentor-preview::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.preview-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 22px;
    color: #bcbcc5;
    background: rgba(255, 255, 255, 0.018);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

.preview-brand {
    gap: 11px;
}

.preview-logo {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #e3dfff;
    background: rgba(130, 110, 255, 0.13);
    border: 1px solid rgba(146, 130, 255, 0.28);
    border-radius: 7px;
    font-size: 9px;
    font-weight: 700;
}

.status {
    gap: 7px;
    color: #81818c;
}

.status span {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(124, 231, 178, 0.6);
}

.preview-body {
    display: grid;
    grid-template-columns: 68px 1fr 260px;
    min-height: 420px;
}

.day-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding-top: 36px;
    color: #595963;
    border-right: 1px solid var(--line);
    font-size: 10px;
}

.day-rail span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
}

.day-rail .active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
}

.conversation {
    display: flex;
    flex-direction: column;
    gap: 17px;
    justify-content: center;
    padding: 42px;
}

.message {
    max-width: 78%;
    margin: 0;
    padding: 15px 17px;
    color: #b8b8c0;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    border-radius: 4px 14px 14px;
    font-size: 13px;
    line-height: 1.55;
}

.founder-message {
    align-self: flex-end;
    color: #ccccd3;
    background: rgba(115, 98, 245, 0.1);
    border-color: rgba(134, 118, 255, 0.18);
    border-radius: 14px 4px 14px 14px;
}

.emphasis-message {
    color: #f2f2f5;
    border-color: rgba(150, 136, 255, 0.25);
    box-shadow: 0 0 30px rgba(102, 84, 237, 0.06);
}

.focus-panel {
    margin: 24px 24px 24px 0;
    padding: 22px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.focus-panel p {
    margin: 0 0 24px;
    color: #70707a;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.focus-panel strong {
    display: block;
    color: #d8d8de;
    font-size: 14px;
    font-weight: 510;
    line-height: 1.55;
}

.progress-track {
    display: block;
    width: 100%;
    height: 5px;
    margin-top: 70px;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.06);
    border: 0;
    border-radius: 20px;
}

.progress-track::-webkit-progress-bar {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.progress-track::-webkit-progress-value {
    background: linear-gradient(90deg, var(--violet), var(--blue));
    border-radius: 20px;
}

.progress-track::-moz-progress-bar {
    background: linear-gradient(90deg, var(--violet), var(--blue));
    border-radius: 20px;
}

.focus-panel small {
    display: block;
    margin-top: 10px;
    color: #71717c;
    font-size: 10px;
}

.explanation {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: clamp(50px, 9vw, 130px);
    align-items: start;
    border-bottom: 1px solid var(--line);
}

.section-intro h2,
.section-heading h2,
.faq-heading h2,
.purchase-card h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 520;
    letter-spacing: -0.055em;
    line-height: 1.03;
}

.explanation-copy {
    padding-top: 30px;
    color: #9999a4;
    font-size: 17px;
}

.explanation-copy p:first-child {
    margin-top: 0;
    color: #d2d2d8;
}

.principle-line {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 18px;
    margin-top: 45px;
    color: #6d6d78;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.principle-line i {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, var(--line-strong), transparent);
}

.section-heading {
    margin-bottom: 70px;
}

.split-heading {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 70px;
    align-items: end;
}

.split-heading > p,
.centered-heading > p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 16px;
}

.video-frame {
    position: relative;
    padding: 10px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.09),
        rgba(255, 255, 255, 0.025)
    );
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.video-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #0b0b10;
    border-radius: 16px;
}

.video-caption {
    margin: 10px 4px 2px;
    color: #676772;
    font-size: 11px;
    text-align: center;
}

.video-caption code {
    color: #aaaab5;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.included {
    position: relative;
}

.included::before {
    position: absolute;
    top: 13%;
    left: 50%;
    z-index: -1;
    width: 700px;
    height: 700px;
    content: "";
    background: radial-gradient(
        circle,
        rgba(93, 69, 235, 0.1),
        transparent 67%
    );
    transform: translateX(-50%);
}

.centered-heading {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

.centered-heading > p:last-child {
    max-width: 590px;
    margin: 24px auto 0;
}

.bento-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
}

.feature-card {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(24px, 3.5vw, 38px);
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition:
        border-color 250ms ease,
        transform 250ms ease,
        background-color 250ms ease;
}

.feature-card:hover {
    z-index: 2;
    background-color: rgba(20, 20, 28, 0.92);
    border-color: var(--line-strong);
    transform: translateY(-4px);
}

.blueprint-card,
.support-card {
    grid-column: span 7;
}

.setup-card,
.ownership-card {
    grid-column: span 5;
}

.card-topline {
    justify-content: space-between;
    color: #71717c;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-card h3 {
    margin: 0 0 8px;
    color: #ededf0;
    font-size: 22px;
    font-weight: 540;
    letter-spacing: -0.035em;
}

.feature-card p {
    max-width: 510px;
    margin: 0;
    color: #858590;
    font-size: 14px;
}

.blueprint-visual {
    position: relative;
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    margin-block: 12px 24px;
}

.node {
    position: absolute;
    z-index: 1;
    padding: 10px 13px;
    color: #a9a9b3;
    background: #15151d;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
    font-size: 10px;
}

.node::before {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    content: "";
    background: #777783;
    border-radius: 50%;
}

.node.trigger {
    top: 22px;
    left: 3%;
}

.node.context {
    top: 104px;
    left: 34%;
}

.node.mentor {
    top: 45px;
    right: 2%;
    color: #ddd9ff;
    border-color: rgba(140, 124, 255, 0.38);
    box-shadow: 0 0 32px rgba(118, 97, 255, 0.12);
}

.node.mentor::before {
    background: var(--violet);
    box-shadow: 0 0 7px var(--violet);
}

.connector {
    position: absolute;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--line-strong),
        rgba(140, 124, 255, 0.45)
    );
    transform-origin: left;
}

.connector.first {
    top: 67px;
    left: 22%;
    width: 28%;
    transform: rotate(22deg);
}

.connector.second {
    top: 119px;
    left: 53%;
    width: 25%;
    transform: rotate(-23deg);
}

.setup-list {
    margin: 18px 0 24px;
    padding: 0;
    list-style: none;
}

.setup-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    align-items: start;
    padding: 15px 0;
    color: #6f6f7a;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
}

.setup-list p {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.setup-list strong {
    color: #c9c9cf;
    font-size: 13px;
    font-weight: 520;
}

.setup-list small {
    color: #696973;
    font-size: 10px;
}

.support-card blockquote {
    max-width: 500px;
    margin: auto 0;
    color: #dcdce1;
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
    font-weight: 440;
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.ownership-mark {
    display: grid;
    min-height: 190px;
    place-items: center;
}

.ownership-mark span {
    position: relative;
    display: grid;
    width: 130px;
    height: 130px;
    place-items: center;
    color: #dcd8ff;
    border: 1px solid rgba(152, 138, 255, 0.27);
    border-radius: 50%;
    box-shadow:
        0 0 0 18px rgba(139, 121, 255, 0.035),
        0 0 0 38px rgba(139, 121, 255, 0.02),
        0 0 55px rgba(118, 96, 255, 0.12);
    font-size: 14px;
}

.purchase-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: clamp(55px, 8vw, 120px);
    padding: clamp(36px, 7vw, 84px);
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(103, 83, 255, 0.08), transparent 45%),
        #101016;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.purchase-glow {
    right: -20%;
    bottom: -70%;
    width: 650px;
    height: 650px;
    background: radial-gradient(
        circle,
        rgba(115, 91, 255, 0.18),
        transparent 68%
    );
}

.purchase-content,
.price-panel {
    position: relative;
    z-index: 1;
}

.purchase-card h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}

.purchase-content > p:not(.eyebrow) {
    max-width: 550px;
    margin: 24px 0 0;
    color: #9797a2;
    font-size: 17px;
}

.purchase-list {
    display: grid;
    gap: 10px;
    margin: 35px 0 0;
    padding: 0;
    color: #c3c3cb;
    list-style: none;
    font-size: 13px;
}

.purchase-list li::before {
    display: inline-block;
    width: 16px;
    margin-right: 10px;
    color: #9283ff;
    content: "✓";
}

.price-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.price-panel > p {
    margin: 0;
    color: #7d7d87;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price {
    margin: 8px 0 22px;
    color: #fff;
    font-size: 78px;
    font-weight: 570;
    letter-spacing: -0.065em;
    line-height: 1;
}

.price span {
    margin-right: 5px;
    color: #94949f;
    font-size: 23px;
    vertical-align: 34px;
}

.button-full {
    width: 100%;
}

.price-panel small {
    margin-top: 14px;
    color: #64646e;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.faq {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(60px, 10vw, 140px);
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 70px;
}

.faq-heading h2 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
}

.faq-heading > p:last-child {
    margin-top: 28px;
    color: #777781;
    font-size: 13px;
}

.faq-heading a {
    color: #c3bfff;
    border-bottom: 1px solid rgba(195, 191, 255, 0.3);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 28px 0;
    color: #d8d8dd;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 510;
}

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

.faq-list summary::after {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    place-items: center;
    color: #85858f;
    content: "+";
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 300;
    transition:
        transform 180ms ease,
        color 180ms ease;
}

.faq-list details[open] summary::after {
    color: #d7d2ff;
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 650px;
    margin: -8px 45px 28px 0;
    color: #898994;
    font-size: 14px;
}

.site-footer {
    border-top: 1px solid var(--line);
}

.footer-inner {
    min-height: 130px;
    justify-content: space-between;
    gap: 30px;
    color: #656570;
    font-size: 11px;
}

@media (max-width: 900px) {
    .preview-body {
        grid-template-columns: 56px 1fr;
    }

    .focus-panel {
        display: none;
    }

    .explanation,
    .split-heading,
    .purchase-card,
    .faq {
        grid-template-columns: 1fr;
    }

    .explanation-copy {
        max-width: 650px;
        padding-top: 0;
    }

    .split-heading {
        gap: 28px;
    }

    .split-heading > p {
        max-width: 570px;
    }

    .blueprint-card,
    .support-card,
    .setup-card,
    .ownership-card {
        grid-column: span 6;
    }

    .faq-heading {
        position: static;
        max-width: 650px;
    }
}

@media (max-width: 680px) {
    :root {
        --shell: min(100% - 32px, 1180px);
    }

    .section-pad {
        padding-block: 96px;
    }

    .nav {
        min-height: 66px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links > a:not(.button) {
        display: none;
    }

    .brand-divider,
    .brand-company {
        display: none;
    }

    .hero {
        padding-top: 145px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14.5vw, 4.2rem);
        letter-spacing: -0.06em;
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: min(100%, 340px);
    }

    .mentor-preview {
        width: 100%;
        border-radius: 18px;
    }

    .preview-body {
        grid-template-columns: 1fr;
        min-height: 380px;
    }

    .day-rail {
        display: none;
    }

    .conversation {
        padding: 24px 18px;
    }

    .message {
        max-width: 92%;
        font-size: 12px;
    }

    .principle-line {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .principle-line i {
        display: none;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .video-frame {
        padding: 6px;
    }

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

    .blueprint-card,
    .support-card,
    .setup-card,
    .ownership-card {
        grid-column: auto;
    }

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

    .support-card blockquote {
        font-size: 1.9rem;
    }

    .purchase-card {
        gap: 45px;
        padding: 32px 22px 22px;
    }

    .price-panel {
        padding: 24px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 35px;
    }

    .footer-inner .brand-divider,
    .footer-inner .brand-company {
        display: inline-block;
    }
}

@media (prefers-reduced-motion: no-preference) {
    @keyframes rise-in {
        from {
            opacity: 0;
            transform: translateY(18px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero > .eyebrow,
    .hero h1,
    .hero-copy,
    .hero-actions,
    .hero-note,
    .mentor-preview {
        opacity: 0;
        animation: rise-in 700ms both cubic-bezier(0.2, 0.75, 0.25, 1);
    }

    .hero h1 {
        animation-delay: 80ms;
    }
    .hero-copy {
        animation-delay: 150ms;
    }
    .hero-actions {
        animation-delay: 220ms;
    }
    .hero-note {
        animation-delay: 270ms;
    }
    .mentor-preview {
        animation-delay: 340ms;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
