:root {
    --tr-bg: #020617;
    --tr-bg-elevated: #02081a;
    --tr-surface: #0b1220;
    --tr-surface-soft: #111827;
    --tr-border-subtle: #1f2937;
    --tr-text-main: #f9fafb;
    --tr-text-muted: #9ca3af;
    --tr-accent: #38bdf8;
    --tr-accent-soft: rgba(56, 189, 248, 0.1);
    --tr-accent-strong: #0ea5e9;
    --tr-warning: #f97316;
    --tr-focus: #f97316;
    --tr-radius-lg: 1.25rem;
    --tr-radius-md: 0.9rem;
    --tr-radius-sm: 0.5rem;
    --tr-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.8);
    --tr-shadow-card: 0 16px 40px rgba(15, 23, 42, 0.7);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.tr-body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #020617 0, #020617 25%, #02081a 50%, #020617 100%);
    color: var(--tr-text-main);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
}

.tr-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.tr-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.tr-utility-topbar {
    background: #020617;
    border-bottom: 1px solid var(--tr-border-subtle);
    font-size: 0.78rem;
}

.tr-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 1.25rem;
}

.tr-utility-text {
    margin: 0;
    color: var(--tr-text-muted);
}

.tr-utility-nav {
    display: flex;
    gap: 0.75rem;
}

.tr-utility-link {
    color: var(--tr-text-muted);
    text-decoration: none;
    font-size: 0.78rem;
}

.tr-utility-link:hover {
    color: var(--tr-accent);
}

.tr-site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.7));
    border-bottom: 1px solid rgba(15, 23, 42, 0.7);
}

.tr-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
}

.tr-logo-area {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.tr-logo-img {
    width: 34px;
    height: 34px;
}

.tr-logo-text {
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.98rem;
    text-transform: uppercase;
    color: var(--tr-text-main);
}

.tr-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.8);
    cursor: pointer;
}

.tr-nav-toggle-bar {
    width: 1.1rem;
    height: 2px;
    background: #e5e7eb;
    border-radius: 999px;
    margin: 0 auto;
}

.tr-main-nav {
    position: fixed;
    inset: 56px 0 auto 0;
    background: rgba(2, 6, 23, 0.98);
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    transform: translateY(-120%);
    transition: transform 0.22s ease-out;
    visibility: hidden;
    pointer-events: none;
}

.tr-main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.tr-main-nav-list {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tr-main-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.25rem;
    text-decoration: none;
    color: var(--tr-text-main);
    font-size: 0.9rem;
}

.tr-main-nav-link:hover {
    color: var(--tr-accent);
}

.tr-hero {
    padding: 3.5rem 0 2.5rem;
}

.tr-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr);
    gap: 2rem;
}

.tr-hero-heading {
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.tr-hero-kicker {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--tr-accent);
    margin-bottom: 0.6rem;
}

.tr-hero-lead {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--tr-text-muted);
    max-width: 42rem;
    margin-bottom: 1.45rem;
}

.tr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tr-button-primary,
.tr-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.tr-button-primary {
    background: linear-gradient(135deg, var(--tr-accent-strong), var(--tr-warning));
    color: #0b1120;
    box-shadow: 0 18px 45px rgba(56, 189, 248, 0.45);
}

.tr-button-secondary {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.6);
    color: var(--tr-text-main);
}

.tr-button-primary:hover,
.tr-button-secondary:hover {
    opacity: 0.92;
}

.tr-hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.tr-hero-meta-item {
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.17), transparent 55%),
                radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.2), transparent 55%),
                rgba(15, 23, 42, 0.85);
}

.tr-hero-meta-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--tr-text-muted);
    margin-bottom: 0.25rem;
}

.tr-hero-meta-value {
    font-size: 0.9rem;
}

.tr-hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.tr-hero-card {
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    background: var(--tr-surface);
    border: 1px solid rgba(31, 41, 55, 0.85);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.7);
}

.tr-hero-card-title {
    font-size: 0.86rem;
    margin: 0 0 0.25rem;
}

.tr-hero-card-text {
    margin: 0;
    font-size: 0.78rem;
    color: var(--tr-text-muted);
}

.tr-anchor-nav {
    border-top: 1px solid var(--tr-border-subtle);
    border-bottom: 1px solid var(--tr-border-subtle);
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
}

.tr-anchor-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    align-items: center;
}

.tr-anchor-label {
    font-size: 0.78rem;
    color: var(--tr-text-muted);
    margin-right: 0.25rem;
}

.tr-anchor-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tr-anchor-link {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.85);
    font-size: 0.78rem;
    text-decoration: none;
    color: var(--tr-text-main);
    background: rgba(15, 23, 42, 0.9);
}

.tr-anchor-link:hover {
    border-color: var(--tr-accent);
    color: var(--tr-accent);
}

.tr-main-layout {
    padding: 2.25rem 0 3.5rem;
}

.tr-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
}

.tr-sidebar {
    position: relative;
}

.tr-sidebar-block {
    border-radius: var(--tr-radius-lg);
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.4), transparent 55%),
                radial-gradient(circle at bottom, rgba(249, 115, 22, 0.45), transparent 60%),
                var(--tr-surface);
    padding: 1.4rem 1.35rem;
    box-shadow: var(--tr-shadow-soft);
}

.tr-sidebar-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 0.75rem;
}

.tr-sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.85rem;
}

.tr-sidebar-nav a {
    color: var(--tr-text-main);
    text-decoration: none;
}

.tr-sidebar-nav a:hover {
    color: var(--tr-accent);
}

.tr-sidebar-note {
    margin-top: 1rem;
    font-size: 0.76rem;
    color: var(--tr-text-muted);
}

.tr-content-column {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.tr-section {
    border-radius: var(--tr-radius-lg);
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(31, 41, 55, 0.9);
    box-shadow: var(--tr-shadow-card);
    padding: 1.7rem 1.6rem;
}

.tr-section-header {
    margin-bottom: 1.2rem;
}

.tr-section-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--tr-text-muted);
    margin: 0 0 0.25rem;
}

.tr-section-title {
    font-size: 1.3rem;
    margin: 0;
}

.tr-section-body p {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--tr-text-muted);
}

.tr-section-body p:last-child {
    margin-bottom: 0;
}

.tr-criteria-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1.2rem;
}

.tr-criteria-card {
    border-radius: var(--tr-radius-md);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
                var(--tr-surface);
    border: 1px solid rgba(31, 41, 55, 0.9);
    padding: 1rem 1.1rem;
}

.tr-criteria-title {
    font-size: 0.98rem;
    margin: 0 0 0.4rem;
}

.tr-criteria-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--tr-text-muted);
}

.tr-platforms-section {
    border-radius: var(--tr-radius-lg);
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.22), transparent 60%),
                radial-gradient(circle at bottom, rgba(249, 115, 22, 0.25), transparent 65%),
                #020617;
    border: 1px solid rgba(30, 64, 175, 0.8);
    box-shadow: var(--tr-shadow-soft);
    padding: 1.8rem 1.6rem 2rem;
}

.tr-platforms-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.6rem;
}

.tr-platforms-title {
    font-size: 1.2rem;
    margin: 0;
}

.tr-platforms-lead {
    margin: 0;
    font-size: 0.94rem;
    color: var(--tr-text-muted);
    max-width: 42rem;
}

.tr-platform-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.3rem;
}

.tr-platform-card {
    border-radius: 1.1rem;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 1.15rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.tr-platform-logo-wrap {
    display: flex;
    justify-content: flex-start;
}

.tr-platform-logo {
    max-height: 200px;
    width: auto;
}

.tr-platform-metadata {
    font-size: 0.78rem;
    color: var(--tr-text-muted);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px dashed rgba(148, 163, 184, 0.8);
    align-self: flex-start;
}

.tr-platform-title {
    font-size: 1rem;
    margin: 0;
}

.tr-platform-subtitle {
    font-size: 0.84rem;
    color: var(--tr-text-muted);
    margin: 0.1rem 0 0.5rem;
}

.tr-platform-text {
    font-size: 0.92rem;
    color: var(--tr-text-muted);
    margin: 0 0 0.6rem;
}

.tr-platform-criteria-title {
    font-size: 0.86rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.tr-platform-criteria-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: var(--tr-text-muted);
}

.tr-platform-criteria-list li::before {
    content: "\2713";
    margin-right: 0.4rem;
    color: var(--tr-accent);
}

.tr-platform-note-title {
    font-size: 0.86rem;
    font-weight: 600;
    margin: 0.35rem 0 0.25rem;
}

.tr-platform-note-text {
    font-size: 0.9rem;
    margin: 0;
    color: var(--tr-text-muted);
}

.tr-platform-cta {
    margin-top: 0.75rem;
}

.tr-platform-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-size: 0.88rem;
    background: var(--tr-accent-soft);
    color: var(--tr-accent-strong);
    border: 1px solid rgba(56, 189, 248, 0.7);
    text-decoration: none;
}

.tr-transparency-section {
    border-radius: var(--tr-radius-lg);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(31, 41, 55, 0.9);
    box-shadow: var(--tr-shadow-card);
    padding: 1.7rem 1.6rem;
}

.tr-cta-section {
    border-radius: var(--tr-radius-lg);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 60%),
                rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(56, 189, 248, 0.7);
    padding: 1.7rem 1.6rem;
}

.tr-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.tr-cta-item {
    border-radius: var(--tr-radius-md);
    border: 1px solid rgba(31, 41, 55, 0.95);
    padding: 0.9rem 1rem;
}

.tr-cta-title {
    font-size: 0.98rem;
    margin: 0 0 0.35rem;
}

.tr-cta-text {
    font-size: 0.9rem;
    color: var(--tr-text-muted);
    margin: 0 0 0.45rem;
}

.tr-faq-section {
    border-radius: var(--tr-radius-lg);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(31, 41, 55, 0.9);
    padding: 1.7rem 1.6rem;
}

.tr-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tr-faq-item {
    border-radius: var(--tr-radius-md);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(31, 41, 55, 0.9);
}

.tr-faq-button {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 0;
    background: transparent;
    color: var(--tr-text-main);
    text-align: left;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.tr-faq-icon {
    font-size: 1.1rem;
    color: var(--tr-text-muted);
}

.tr-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease-out;
}

.tr-faq-panel-inner {
    padding: 0 1rem 0.85rem;
    font-size: 0.9rem;
    color: var(--tr-text-muted);
}

.tr-footer {
    margin-top: auto;
    background: #020617;
    border-top: 1px solid rgba(15, 23, 42, 0.85);
}

.tr-footer-resources {
    padding: 2.25rem 0 1.5rem;
}

.tr-footer-resources-title {
    font-size: 1rem;
    margin: 0 0 1rem;
}

.tr-footer-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.tr-footer-resource-item {
    border-radius: var(--tr-radius-md);
    background: #02081a;
    border: 1px solid rgba(31, 41, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
}

.tr-footer-resource-img {
    max-width: 100%;
    height: auto;
}

.tr-footer-main {
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    padding: 2.25rem 0 1.5rem;
}

.tr-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
}

.tr-footer-title {
    font-size: 0.98rem;
    margin: 0 0 0.6rem;
}

.tr-footer-text {
    font-size: 0.85rem;
    color: var(--tr-text-muted);
    margin: 0 0 0.7rem;
}

.tr-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.6rem;
}

.tr-footer-brand-logo {
    width: 28px;
    height: 28px;
}

.tr-footer-brand-name {
    font-size: 0.85rem;
    color: var(--tr-text-main);
}

.tr-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tr-footer-link {
    font-size: 0.85rem;
    color: var(--tr-text-muted);
    text-decoration: none;
}

.tr-footer-link:hover {
    color: var(--tr-accent);
}

.tr-footer-bottom {
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    padding-top: 0.75rem;
    padding-bottom: 1.2rem;
}

.tr-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.tr-footer-bottom-text {
    margin: 0;
    font-size: 0.8rem;
    color: var(--tr-text-muted);
}

.tr-age-gate {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
}

.tr-age-gate.is-visible {
    display: flex;
}

.tr-age-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
}

.tr-age-gate-modal {
    position: relative;
    max-width: 460px;
    width: 90%;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.25), transparent 55%),
                #020617;
    border-radius: var(--tr-radius-lg);
    padding: 1.6rem 1.6rem 1.4rem;
    border: 1px solid rgba(56, 189, 248, 0.8);
    box-shadow: var(--tr-shadow-soft);
}

.tr-age-gate-title {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
}

.tr-age-gate-text {
    margin: 0 0 0.55rem;
    font-size: 0.9rem;
    color: var(--tr-text-muted);
}

.tr-age-gate-actions {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tr-cookie-banner {
    position: fixed;
    inset: auto 0 0 0;
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    z-index: 50;
    transform: translateY(100%);
    transition: transform 0.24s ease-out;
}

.tr-cookie-banner.is-visible {
    transform: translateY(0);
}

.tr-cookie-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem 1rem;
}

.tr-cookie-text {
    margin: 0;
    font-size: 0.82rem;
    color: var(--tr-text-muted);
}

.tr-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tr-page-title {
    font-size: 1.55rem;
    margin: 0 0 0.4rem;
}

.tr-page-intro {
    font-size: 0.95rem;
    color: var(--tr-text-muted);
    margin: 0 0 1.1rem;
}

.tr-legal-layout {
    padding: 2.5rem 0 3rem;
}

.tr-legal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

.tr-legal-sidebar {
    border-radius: var(--tr-radius-lg);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(31, 41, 55, 0.9);
    padding: 1.35rem 1.25rem;
}

.tr-legal-sidebar-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 0.75rem;
}

.tr-legal-sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.86rem;
}

.tr-legal-sidebar-nav a {
    text-decoration: none;
    color: var(--tr-text-muted);
}

.tr-legal-sidebar-nav a:hover {
    color: var(--tr-accent);
}

.tr-legal-content {
    border-radius: var(--tr-radius-lg);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(31, 41, 55, 0.9);
    padding: 1.7rem 1.6rem;
    box-shadow: var(--tr-shadow-card);
}

.tr-legal-section {
    margin-bottom: 1.4rem;
}

.tr-legal-section:last-child {
    margin-bottom: 0;
}

.tr-legal-section h2 {
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
}

.tr-legal-section h3 {
    font-size: 0.95rem;
    margin: 0.6rem 0 0.25rem;
}

.tr-legal-section p,
.tr-legal-section li {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--tr-text-muted);
}

.tr-legal-section ul {
    padding-left: 1.1rem;
}

.tr-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.tr-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tr-form-label {
    font-size: 0.86rem;
}

.tr-form-input,
.tr-form-textarea,
.tr-form-select {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(55, 65, 81, 0.95);
    background: #020617;
    color: var(--tr-text-main);
    font-size: 0.9rem;
}

.tr-form-textarea {
    min-height: 160px;
    resize: vertical;
}

.tr-form-input:focus,
.tr-form-textarea:focus,
.tr-form-select:focus {
    outline: 2px solid var(--tr-focus);
    outline-offset: 0;
    border-color: transparent;
}

.tr-form-help {
    font-size: 0.8rem;
    color: var(--tr-text-muted);
}

.tr-prefooter-block {
    border-radius: var(--tr-radius-lg);
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.2), transparent 55%),
                rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.9);
    padding: 1.6rem 1.6rem;
}

.tr-prefooter-title {
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.tr-prefooter-body p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--tr-text-muted);
    margin: 0 0 0.7rem;
}

@media (min-width: 640px) {
    .tr-hero-heading {
        font-size: 2.3rem;
    }

    .tr-hero-grid {
        grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    }

    .tr-footer-resources-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .tr-main-nav {
        position: static;
        inset: auto;
        transform: none;
        background: transparent;
        border-bottom: 0;
        visibility: visible;
        pointer-events: auto;
    }

    .tr-main-nav-list {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0;
    }

    .tr-nav-toggle {
        display: none;
    }

    .tr-footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .tr-cookie-inner {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .tr-container {
        max-width: 1180px;
    }

    .tr-hero-heading {
        font-size: 2.6rem;
    }

    .tr-legal-grid {
        grid-template-columns: 0.85fr 1.9fr;
    }

    .tr-layout-grid {
        align-items: flex-start;
    }

    .tr-footer-resources-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}
