:root {
    --ts-ink: #101923;
    --ts-ink-2: #182634;
    --ts-muted: #607080;
    --ts-line: rgba(16, 25, 35, 0.1);
    --ts-surface: #ffffff;
    --ts-surface-2: #f5f7f9;
    --ts-blue: #0d6efd;
    --ts-teal: #20c997;
    --ts-green: #064a23;
    --ts-gold: #d4a017;
    --ts-shadow: 0 18px 44px rgba(13, 31, 45, 0.1);
    --ts-shadow-soft: 0 10px 28px rgba(13, 31, 45, 0.07);
    --ts-radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ts-ink);
    background:
        linear-gradient(180deg, #ffffff 0, #f7f9fb 34rem, #eef3f5 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(115deg, rgba(16, 25, 35, 0.035) 0 1px, transparent 1px 72px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(100% - 2rem, 1180px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(16, 25, 35, 0.08);
    box-shadow: 0 6px 18px rgba(16, 25, 35, 0.035);
    backdrop-filter: blur(14px);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    display: block;
    width: auto;
    max-width: 180px;
    height: 34px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.nav-links a {
    position: relative;
    padding: 1.25rem 0.75rem;
    color: var(--ts-ink);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--ts-blue), var(--ts-teal), var(--ts-gold));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--ts-blue);
}

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

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    align-items: center;
    min-height: 620px;
    padding: 6rem 0;
    color: #ffffff;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(8, 14, 22, 0.92), rgba(9, 24, 42, 0.76) 45%, rgba(7, 35, 34, 0.86)),
        linear-gradient(135deg, rgba(13, 110, 253, 0.22), rgba(32, 201, 151, 0.16)),
        url("../images/homeHeroGenerated.png") center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 64px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(0, 0, 0, 0.24));
    mix-blend-mode: screen;
    opacity: 0.62;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--ts-blue), var(--ts-teal), var(--ts-gold));
    box-shadow: 0 8px 28px rgba(32, 201, 151, 0.22);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--ts-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-light,
.hero .eyebrow {
    color: #a9f2df;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 900px;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-size: clamp(2.45rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.02;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.08;
}

h3 {
    color: var(--ts-ink);
    font-size: 1.08rem;
    font-weight: 900;
}

p {
    color: var(--ts-muted);
    line-height: 1.7;
}

.hero-copy {
    max-width: 680px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--ts-ink), #0b2d24);
    box-shadow: 0 12px 24px rgba(16, 25, 35, 0.18);
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero .primary-button {
    background: linear-gradient(135deg, var(--ts-blue), #09715d);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.primary-button:hover {
    background: linear-gradient(135deg, var(--ts-blue), var(--ts-teal));
    box-shadow: 0 16px 30px rgba(13, 110, 253, 0.22);
    transform: translateY(-1px);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.section {
    padding: 5.5rem 0;
}

.light-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 251, 0.98)),
        repeating-linear-gradient(115deg, rgba(16, 25, 35, 0.035) 0 1px, transparent 1px 64px);
}

.dark-section {
    color: #ffffff;
    background:
        linear-gradient(130deg, rgba(12, 20, 31, 0.98), rgba(5, 56, 26, 0.96)),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 72px);
}

.dark-section p {
    color: rgba(255, 255, 255, 0.78);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

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

.info-card,
.steps-card {
    border: 1px solid var(--ts-line);
    border-radius: var(--ts-radius);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--ts-shadow-soft);
}

.info-card {
    min-height: 100%;
    padding: 1.55rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    border-color: rgba(13, 110, 253, 0.22);
    box-shadow: var(--ts-shadow);
    transform: translateY(-3px);
}

.info-card p {
    margin-bottom: 0;
}

.card-kicker {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--ts-blue);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: 3rem;
}

.steps-card {
    padding: 1.35rem;
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(32, 201, 151, 0.08)),
        rgba(9, 19, 28, 0.72);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.step {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.step:last-child {
    border-bottom: 0;
}

.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 8px;
    min-height: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--ts-teal), var(--ts-gold));
}

.step h3 {
    margin-bottom: 0.25rem;
    color: #ffffff;
}

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

.final-section {
    max-width: 800px;
    text-align: center;
}

.final-section .primary-button {
    margin-top: 0.5rem;
}

.site-footer {
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.78);
    background: #101923;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-content a {
    color: #ffffff;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .feature-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-section {
        gap: 2rem;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 1.5rem, 1180px);
    }

    .main-nav {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        min-height: auto;
        padding-top: 0.85rem;
        padding-bottom: 0.4rem;
        gap: 0.6rem;
    }

    .nav-links {
        justify-content: flex-start;
        width: 100%;
    }

    .nav-links a {
        padding: 0.65rem 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    .nav-links a::after {
        left: 0.5rem;
        right: 0.5rem;
    }

    .hero {
        min-height: 560px;
        padding: 4.2rem 0;
        background-position: 62% center;
    }

    .section {
        padding: 3.4rem 0;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(100%, 360px);
    }

    .primary-button,
    .status-pill {
        width: 100%;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 440px) {
    .brand img {
        max-width: 160px;
        height: 32px;
    }

    h1 {
        font-size: 2.3rem;
    }

    .hero-copy {
        font-size: 1rem;
    }
}
