/* =========================================================
   REDTAIL CAPITAL MARKETS
   MASTER FRONT-END STYLESHEET
   ========================================================= */

:root {
    --red: #c91824;
    --red-light: #e52230;
    --dark: #080b12;
    --dark-2: #0b0f17;
    --panel: #101620;
    --panel-2: #141a25;
    --white: #ffffff;
    --text: #d8dde6;
    --muted: #8d95a5;
    --muted-2: #606978;
    --border: rgba(255,255,255,.08);
    --red-glow: rgba(201,24,36,.28);
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

body::selection {
    background: var(--red);
    color: white;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.container {
    width: min(1200px, 90%);
    margin: auto;
}


/* =========================================================
   PAGE LOADER
   ========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    animation: loaderExit 1s ease 1.2s forwards;
    pointer-events: none;
}

.loader-mark {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(201,24,36,.7);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 800;
    position: relative;
    animation: loaderPulse 1.4s ease infinite;
}

.loader-mark::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
}

.loader-line {
    width: 110px;
    height: 2px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}

.loader-line::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--red);
    transform: translateX(-100%);
    animation: loaderProgress 1s ease forwards;
}

@keyframes loaderProgress {
    to {
        transform: translateX(0);
    }
}

@keyframes loaderPulse {
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 45px rgba(201,24,36,.35);
    }
}

@keyframes loaderExit {
    to {
        opacity: 0;
        visibility: hidden;
    }
}


/* =========================================================
   HEADER
   ========================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 9000;
    background: rgba(8,11,18,.72);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: .4s ease;
}

.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-symbol {
    width: 43px;
    height: 43px;
    border: 1px solid rgba(201,24,36,.75);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 17px;
    font-weight: 800;
    position: relative;
    transition: .4s ease;
}

.brand-symbol::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.brand:hover .brand-symbol {
    transform: rotate(12deg) scale(1.06);
    box-shadow: 0 0 35px rgba(201,24,36,.3);
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 5px;
}

.brand-name strong {
    font-size: 17px;
    letter-spacing: 2px;
}

.brand-name span {
    font-size: 7px;
    color: var(--muted);
    letter-spacing: 2.5px;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 27px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: #b9c0cb;
    font-size: 12px;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
    transition: .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.signin-link {
    color: #c0c6d0;
    font-size: 12px;
    transition: .3s ease;
}

.signin-link:hover {
    color: white;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 27px;
    border-radius: 50px;
    border: 0;
    color: white;
    background: linear-gradient(135deg, var(--red-light), #a90f18);
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 15px 40px var(--red-glow);
    transition: transform .35s ease, box-shadow .35s ease;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(201,24,36,.4);
}

.nav-signup {
    padding: 10px 21px;
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-menu-button {
    display: none;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-button span {
    width: 17px;
    height: 1px;
    background: white;
    transition: .3s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

main {
    position: relative;
}

section {
    padding: 120px 0;
    position: relative;
}

.section-label,
.section-heading > span,
.hero-kicker {
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

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

.section-heading h2 {
    margin-top: 15px;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


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

.hero {
    min-height: 100vh;
    padding-top: 90px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    right: -300px;
    top: 60px;
    background: radial-gradient(
        circle,
        rgba(201,24,36,.25),
        transparent 68%
    );
    animation: heroGlow 9s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -300px;
    bottom: -250px;
    background: radial-gradient(
        circle,
        rgba(201,24,36,.09),
        transparent 70%
    );
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    max-width: 950px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 1.02;
    letter-spacing: -4px;
}

.hero h1 span,
.inner-hero h1 span {
    color: var(--red);
}

.hero p {
    max-width: 620px;
    margin-top: 27px;
    color: #aab2c0;
    font-size: 18px;
    line-height: 1.8;
}

@keyframes heroGlow {
    to {
        transform: scale(1.25) translate(-30px, 20px);
    }
}


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

.inner-hero {
    min-height: 75vh;
    padding-top: 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.inner-hero .container {
    position: relative;
    z-index: 3;
}

.inner-hero h1 {
    max-width: 950px;
    margin-top: 20px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 1.02;
    letter-spacing: -4px;
}

.inner-lead {
    max-width: 650px;
    margin-top: 28px;
    color: #9ca5b4;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   ANIMATED BACKGROUNDS
   ========================================================= */

.market-lines {
    position: absolute;
    inset: 0;
    opacity: .35;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 100px,
            rgba(255,255,255,.025) 101px
        );
    animation: linesMove 18s linear infinite;
    pointer-events: none;
}

.market-grid-background {
    position: absolute;
    inset: -20%;
    opacity: .3;
    background:
        linear-gradient(
            rgba(201,24,36,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(201,24,36,.04) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
    transform: perspective(600px) rotateX(55deg);
    transform-origin: center bottom;
    animation: gridMove 12s linear infinite;
    pointer-events: none;
}

@keyframes linesMove {
    to {
        transform: translateX(-100px);
    }
}

@keyframes gridMove {
    to {
        background-position: 0 80px;
    }
}


/* =========================================================
   CARDS
   ========================================================= */

.card,
.insight-card {
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition:
        transform .45s ease,
        border-color .45s ease,
        background .45s ease;
}

.card:hover,
.insight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201,24,36,.45);
    background: rgba(255,255,255,.055);
}


/* =========================================================
   SPLIT LAYOUT
   ========================================================= */

.split-layout {
    display: grid;
    grid-template-columns: .7fr 1.5fr;
    gap: 80px;
}

.about-copy h2,
.solutions-intro h2,
.intelligence-intro h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    margin-bottom: 25px;
}

.about-copy p,
.solutions-intro p,
.intelligence-intro p {
    max-width: 720px;
    color: #929baa;
    line-height: 1.9;
    margin-bottom: 18px;
}


/* =========================================================
   STATEMENT PANEL
   ========================================================= */

.statement-panel {
    position: relative;
    padding: 75px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(201,24,36,.13),
            transparent 35%
        ),
        rgba(255,255,255,.025);
}

.statement-panel h2 {
    max-width: 850px;
    margin-top: 20px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.08;
}

.statement-panel h2 strong {
    color: var(--red);
}

.statement-panel p {
    max-width: 650px;
    margin-top: 25px;
    color: #929baa;
    line-height: 1.8;
}

.statement-line {
    width: 70px;
    height: 2px;
    margin-top: 30px;
    background: var(--red);
}


/* =========================================================
   INSIGHTS
   ========================================================= */

.featured-insight {
    padding-top: 30px;
}

.featured-insight-panel {
    padding: 45px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(201,24,36,.12),
            transparent 35%
        ),
        rgba(255,255,255,.025);
}

.featured-meta,
.featured-content,
.insight-card-top,
.insight-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-meta {
    color: var(--muted-2);
    font-size: 9px;
    letter-spacing: 2px;
}

.featured-meta span:first-child {
    color: var(--red);
}

.featured-content {
    gap: 70px;
    margin-top: 50px;
}

.featured-content > div {
    flex: 1;
}

.insight-tag {
    color: var(--red);
    font-size: 9px;
    letter-spacing: 2px;
}

.featured-content h2 {
    margin-top: 18px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
}

.featured-content p {
    color: #929baa;
    line-height: 1.8;
    margin-bottom: 25px;
}

.text-link {
    color: white;
    font-size: 12px;
    transition: .3s;
}

.text-link span {
    margin-left: 8px;
    color: var(--red);
    transition: .3s;
}

.text-link:hover span {
    margin-left: 14px;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insight-card {
    min-height: 390px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insight-card-top,
.insight-card-bottom {
    color: var(--muted-2);
    font-size: 9px;
    letter-spacing: 2px;
}

.insight-card-top span:first-child {
    color: var(--red);
}

.insight-card-body h3 {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.insight-card-body p {
    color: #7f8897;
    line-height: 1.7;
    font-size: 13px;
}

.insight-card-bottom span:last-child {
    color: var(--red);
    font-size: 17px;
}


/* =========================================================
   INSIGHT PRINCIPLES
   ========================================================= */

.insight-principles-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.insight-principles-layout h2 {
    max-width: 600px;
    margin-top: 18px;
    font-size: clamp(35px, 4vw, 57px);
    line-height: 1.12;
}

.insight-principles-layout h2 strong {
    color: var(--red);
}

.principle-row {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.principle-row > span {
    color: var(--red);
    font-size: 10px;
    letter-spacing: 2px;
}

.principle-row h3 {
    font-size: 16px;
    margin-bottom: 7px;
}

.principle-row p {
    color: #7f8897;
    font-size: 13px;
    line-height: 1.7;
}

.insights-closing {
    padding-top: 20px;
}


/* =========================================================
   AUTHENTICATION
   ========================================================= */

.auth-page {
    min-height: 100vh;
    padding: 160px 0 110px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.auth-shell {
    width: min(1100px, 90%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 90px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.auth-intro h1 {
    margin-top: 15px;
    font-size: clamp(55px, 7vw, 90px);
    line-height: .98;
    letter-spacing: -4px;
}

.auth-intro h1 span {
    color: var(--red);
}

.auth-intro p {
    max-width: 480px;
    margin-top: 30px;
    color: #929baa;
    font-size: 17px;
    line-height: 1.8;
}

.auth-card {
    position: relative;
    padding: 35px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.09);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.025)
        );
    box-shadow: 0 30px 100px rgba(0,0,0,.35);
    backdrop-filter: blur(20px);
}

.auth-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.auth-card-header > span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.auth-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 1.5px;
}

.auth-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 12px rgba(201,24,36,.7);
    animation: authPulse 1.8s infinite;
}

@keyframes authPulse {
    50% {
        opacity: .3;
        transform: scale(.6);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #aab2c0;
    font-size: 11px;
}

.form-group input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    outline: none;
    background: rgba(0,0,0,.18);
    color: white;
    font-size: 13px;
    transition: .3s;
}

.form-group input::placeholder {
    color: #555e6d;
}

.form-group input:focus {
    border-color: rgba(201,24,36,.7);
    box-shadow: 0 0 0 3px rgba(201,24,36,.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0 24px;
}

.remember,
.terms-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
}

.remember input,
.terms-check input {
    accent-color: var(--red);
}

.form-options a {
    color: var(--muted);
    font-size: 11px;
}

.form-options a:hover {
    color: white;
}

.auth-button {
    width: 100%;
}

.auth-button span,
.auth-secondary-button span {
    transition: .3s;
}

.auth-button:hover span,
.auth-secondary-button:hover span {
    transform: translateX(5px);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0 18px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--border);
}

.auth-divider span {
    color: #555e6d;
    font-size: 8px;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.auth-secondary-button {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50px;
    color: #c3c9d2;
    font-size: 12px;
    transition: .35s;
}

.auth-secondary-button:hover {
    color: white;
    border-color: rgba(201,24,36,.45);
    background: rgba(201,24,36,.05);
}

.terms-check {
    align-items: flex-start;
    line-height: 1.5;
    margin: 5px 0 22px;
}

.auth-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.auth-glow-one {
    width: 600px;
    height: 600px;
    right: -250px;
    top: 100px;
    background: radial-gradient(
        circle,
        rgba(201,24,36,.16),
        transparent 68%
    );
    animation: authFloat 9s ease-in-out infinite alternate;
}

.auth-glow-two {
    width: 400px;
    height: 400px;
    left: -250px;
    bottom: -150px;
    background: radial-gradient(
        circle,
        rgba(201,24,36,.08),
        transparent 70%
    );
    animation: authFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes authFloat {
    to {
        transform: translate3d(30px,-35px,0) scale(1.08);
    }
}


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

footer {
    position: relative;
    padding: 75px 0 0;
    background: #06080e;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    bottom: -300px;
    background: radial-gradient(
        circle,
        rgba(201,24,36,.12),
        transparent 70%
    );
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 65px;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 22px;
    color: #747d8d;
    font-size: 13px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column > span {
    margin-bottom: 8px;
    color: var(--red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-column a {
    color: #858d9b;
    font-size: 12px;
    transition: .3s;
}

.footer-column a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact p {
    color: #858d9b;
    font-size: 12px;
    line-height: 1.7;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--border);
    color: #555d6b;
    font-size: 9px;
    line-height: 1.6;
}


/* =========================================================
   CURSOR LIGHT
   ========================================================= */

.redtail-cursor-light {
    position: fixed;
    width: 260px;
    height: 260px;
    margin-left: -130px;
    margin-top: -130px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        circle,
        rgba(201,24,36,.055),
        transparent 65%
    );
    transition:
        left .12s ease,
        top .12s ease;
}


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

@media (max-width: 1150px) {

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 18px;
    }

    .mobile-menu {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        padding: 25px 5%;
        display: flex;
        flex-direction: column;
        gap: 2px;
        background: rgba(8,11,18,.98);
        border-bottom: 1px solid var(--border);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: .35s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu a {
        padding: 14px 0;
        color: #b7beca;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,.04);
    }

    .mobile-menu-divider {
        height: 12px;
    }

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

    .split-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .insight-principles-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}


@media (max-width: 900px) {

    .auth-shell {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .auth-intro {
        text-align: center;
        margin: auto;
    }

    .auth-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .featured-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

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


@media (max-width: 650px) {

    header,
    .navbar {
        height: 78px;
    }

    .mobile-menu {
        top: 78px;
    }

    .brand-symbol {
        width: 38px;
        height: 38px;
    }

    .brand-name strong {
        font-size: 14px;
    }

    .brand-name span {
        font-size: 6px;
    }

    .nav-actions {
        display: none;
    }

    section {
        padding: 85px 0;
    }

    .hero {
        padding-top: 78px;
    }

    .hero h1,
    .inner-hero h1 {
        letter-spacing: -2px;
    }

    .inner-hero {
        min-height: 70vh;
    }

    .statement-panel {
        padding: 40px 25px;
    }

    .featured-insight-panel {
        padding: 30px 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .auth-page {
        padding: 130px 0 70px;
    }

    .auth-card {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .auth-intro h1 {
        letter-spacing: -2px;
    }

    .redtail-cursor-light {
        display: none;
    }
}