* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #020202 url('../images/particle-background.png') center top no-repeat;
    font-family: 'Reddit Mono', 'Courier New', monospace;
    color: #8a8380;
    line-height: 1.5;
}


@font-face {
    font-family: 'Reddit Mono';
    src: url('../fonts/RedditMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.tm-container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}


.tm-subtitle {
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.tm-subtitle::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffa517;
    border-radius: 0px;
}

.tm-title {
    font-family: 'Inclusive Sans', sans-serif;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

h2.tm-title {
    font-size: 38px;
    margin-bottom: 16px;
}

h3.tm-title {
    font-size: 24px;
}

.tm-text {
    font-family: 'Reddit Mono', monospace;
    color: #8a8380;
    font-size: 15px;
}


.tm-card,
.tm-block-border {
    border: 1px solid #4d4946;
    border-radius: 3px;
    background: rgba(2, 2, 2, 0.6);
    backdrop-filter: blur(0px);
    transition: all 0.2s ease;
}


.tm-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    text-transform: uppercase;
    padding: 12px 15px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid transparent;
    font-family: 'Reddit Mono', monospace;
}

.tm-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.tm-btn-outline:hover {
    background: #fff;
    color: #111;
}

.tm-btn:hover {
    background: #ffa517;
    color: #111;
    border-color: #ffa517;
}


.tm-header {
    padding: 24px 0;
    border-bottom: 1px solid #4d4946;
    margin-bottom: 30px;
}

.tm-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.tm-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

.tm-logo img {
    height: 38px;
    width: auto;
}

.tm-brand {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.3px;
}

.tm-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.tm-nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.tm-nav-list a {
    text-decoration: none;
    color: #fff;
    font-family: 'Reddit Mono', monospace;
    font-size: 14px;
    transition: color 0.2s;
}

.tm-nav-list a:hover {
    color: #ffa517;
}

.tm-menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}


.tm-aboutus-section {
    padding: 40px 0 80px;
}


.tm-aboutus-header {
    text-align: center;
    margin-bottom: 60px;
}

.tm-aboutus-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.tm-breadcrumbs {
    font-family: 'Reddit Mono', monospace;
    font-size: 14px;
    color: #8a8380;
}

.tm-breadcrumbs a {
    color: #ffa517;
    text-decoration: none;
}

.tm-breadcrumbs a:hover {
    text-decoration: underline;
}

.tm-separator {
    margin: 0 8px;
    color: #4d4946;
}

.tm-current {
    color: #fff;
}


.tm-aboutus-intro {
    text-align: center;
    margin: 0 auto 70px;
}

.tm-aboutus-intro .tm-subtitle {
    justify-content: center;
    margin-bottom: 16px;
}

.tm-aboutus-intro h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

.tm-aboutus-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tm-aboutus-text p {
    font-family: 'Reddit Mono', monospace;
    color: #8a8380;
    line-height: 1.7;
    font-size: 16px;
}


.tm-aboutus-values {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tm-value-card {
    flex: 1;
    background: rgba(2, 2, 2, 0.5);
    border: 1px solid #4d4946;
    border-radius: 3px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.tm-value-card:hover {
    border-color: #ffa517;
    transform: translateY(-5px);
}

.tm-value-card svg {
    width: 32px;
    height: 32px;
    color: #ffa517;
    margin-bottom: 14px;
    display: inline-block;
}

.tm-value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
}

.tm-value-card .tm-text {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tm-aboutus-values {
        flex-direction: column;
    }

    .tm-aboutus-header h1 {
        font-size: 36px;
    }

    .tm-aboutus-intro h2 {
        font-size: 32px;
    }
}

@media (max-width: 880px) {
    .tm-nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: #020202;
        flex-direction: column;
        padding: 40px 30px;
        gap: 25px;
        transition: 0.3s;
        z-index: 999;
        border-right: 1px solid #4d4946;
    }

    .tm-nav-list.active {
        left: 0;
    }

    .tm-menu-icon {
        display: block;
    }

    .tm-nav {
        gap: 15px;
    }

    .tm-cap-right {
        flex-direction: column;
    }
}


.tm-banner {
    text-align: center;
    padding: 70px 0 60px;
}

.tm-banner .tm-subtitle {
    justify-content: center;
}

.tm-banner-title {
    font-size: 58px;
    margin: 20px 0 16px;
}

.tm-banner-text {
    max-width: 680px;
    margin: 0 auto 32px;
}

.tm-banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.tm-advantages {
    display: flex;
    gap: 30px;
    margin: 70px 0;
    flex-wrap: wrap;
}

.tm-advantage-item {
    flex: 1;
    padding: 28px 24px;
    text-align: left;
}

.tm-advantage-item svg {
    color: #ffa517;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-bottom: 0px;
}

.tm-advantage-item h3 {
    margin: 12px 0 8px;
}


.tm-about {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
    flex-wrap: wrap;
}

.tm-about-content {
    flex: 1;
}

.tm-about-image {
    flex: 1;
    text-align: center;
}

.tm-about-image img {
    max-width: 100%;
    border-radius: 3px;
    border: 1px solid #4d4946;
}

.tm-about-text {
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.tm-capabilities {
    text-align: center;
    margin: 80px 0;
}

.tm-capabilities-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.tm-capabilities-grid svg {
    color: #ffa517;
}

.tm-cap-left {
    flex: 1.2;
    background: rgba(2, 2, 2, 0.7);
    border: 1px solid #4d4946;
    border-radius: 3px;
    padding: 32px;
    text-align: left;
}

.tm-cap-right {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tm-cap-card {
    flex: 1 1 calc(50% - 30px);
    background: rgba(2, 2, 2, 0.7);
    border: 1px solid #4d4946;
    border-radius: 3px;
    padding: 24px;
    text-align: left;
    transition: 0.2s;
}

.tm-cap-card .tm-cap-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.tm-cap-link a {
    text-decoration: none;
    color: #ffa517;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}

.tm-cap-icon {
    margin-bottom: 16px;
    display: inline-block;
}

.tm-cap-card h4,
.tm-cap-left h4 {
    margin: 12px 0 8px;
    color: #fff;
}


.tm-howitworks {
    margin: 80px 0;
}

.tm-how-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.tm-how-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tm-step {
    flex: 1;
    padding: 28px 24px;
    border: 1px solid #4d4946;
    border-radius: 3px;
}

.tm-step h3{
    margin-bottom: 12px;
}

.tm-step svg {
    color: #ffa517;
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
}


.tm-whyus {
    display: flex;
    gap: 60px;
    margin: 80px 0;
    align-items: center;
    flex-wrap: wrap;
}

.tm-whyus-image {
    flex: 1;
}

.tm-whyus-image img {
    max-width: 100%;
    border-radius: 3px;
    border: 1px solid #4d4946;
}

.tm-whyus-content {
    flex: 1;
}

.tm-list {
    list-style: none;
    margin: 24px 0;
}

.tm-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 14px;
    font-family: 'Reddit Mono', monospace;
    color: #c0b7b3;
}

.tm-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #ffa517;
}

.tm-cta {
    background: url('../images/particle-background.png') center top / cover;
    border: 1px solid #4d4946;
    border-radius: 3px;
    padding: 56px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0;
}

.tm-cta-content {
    flex: 2;
}

.tm-cta-btn {
    flex: 0 auto;
}


.tm-footer {
    border-top: 1px solid #4d4946;
    padding: 50px 0 30px;
    margin-top: 40px;
}

.tm-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.tm-footer-logo {
    flex: 1.4;
}

.tm-footer-logo .tm-brand {
    display: block;
    margin-top: 10px;
}

.tm-footer-contact {
    flex: 1;
}

.tm-footer-contact h4,
.tm-footer-links h4,
.tm-footer-menu h4 {
    color: #fff;
    margin-bottom: 18px;
    font-family: 'Inclusive Sans', sans-serif;
}

.tm-footer-contact p {
    margin-bottom: 8px;
}

.tm-footer-links {
    flex: 1;
}

.tm-footer-menu {
    flex: 1;
}

.tm-footer-menu ul,
.tm-footer-links ul {
    list-style: none;
}

.tm-footer-menu li,
.tm-footer-links li {
    margin-bottom: 10px;
}

.tm-footer-menu a,
.tm-footer-links a {
    text-decoration: none;
    color: #8a8380;
    transition: color 0.2s;
}

.tm-footer-menu a:hover,
.tm-footer-links a:hover {
    color: #ffa517;
}

.tm-copyright {
    margin-top: 48px;
    text-align: left;
    border-top: 1px solid #4d4946;
    padding-top: 24px;
    font-size: 13px;
}

.tm-contact-section {
    padding: 40px 0 80px;
}


.tm-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.tm-contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.tm-breadcrumbs {
    font-family: 'Reddit Mono', monospace;
    font-size: 14px;
    color: #8a8380;
}

.tm-breadcrumbs a {
    color: #ffa517;
    text-decoration: none;
}

.tm-breadcrumbs a:hover {
    text-decoration: underline;
}

.tm-separator {
    margin: 0 8px;
    color: #4d4946;
}

.tm-current {
    color: #fff;
}


.tm-contact-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.tm-contact-card {
    flex: 1;
    background: rgba(2, 2, 2, 0.6);
    border: 1px solid #4d4946;
    border-radius: 3px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.tm-contact-card:hover {
    border-color: #ffa517;
    transform: translateY(-4px);
}

.tm-contact-card svg {
    width: 32px;
    height: 32px;
    color: #ffa517;
    margin-bottom: 10px;
    display: inline-block;
}

.tm-contact-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}

.tm-contact-link {
    color: #8a8380;
    text-decoration: none;
    font-family: 'Reddit Mono', monospace;
    font-size: 16px;
    transition: color 0.2s;
}

.tm-contact-link:hover {
    color: #ffa517;
}

.tm-contact-address {
    font-style: normal;
    color: #8a8380;
    font-family: 'Reddit Mono', monospace;
    line-height: 1.5;
}


.tm-contact-row {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.tm-contact-info {
    flex: 1;
}

.tm-contact-description {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tm-contact-description p {
    line-height: 1.6;
}


.tm-contact-form-wrapper {
    flex: 1;
    background: rgba(2, 2, 2, 0.4);
    border: 1px solid #4d4946;
    border-radius: 3px;
    padding: 32px;
}

.tm-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tm-form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tm-form-row .tm-form-group {
    flex: 1;
}

.tm-form-group {
    width: 100%;
}

.tm-form-group input,
.tm-form-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #4d4946;
    border-radius: 3px;
    padding: 14px 16px;
    font-family: 'Reddit Mono', monospace;
    font-size: 14px;
    color: #fff;
    transition: border-color 0.2s;
}

.tm-form-group input:focus,
.tm-form-group textarea:focus {
    outline: none;
    border-color: #ffa517;
}

.tm-form-group input::placeholder,
.tm-form-group textarea::placeholder {
    color: #6a6360;
}

.tm-submit-btn {
    background: #fff;
    color: #111;
    border: none;
    cursor: pointer;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
}

.tm-submit-btn:hover {
    background: #ffa517;
    color: #111;
}

.tm-form-success {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(255, 165, 23, 0.15);
    border-left: 3px solid #ffa517;
    border-radius: 3px;
    color: #ffa517;
    font-family: 'Reddit Mono', monospace;
    font-size: 14px;
}

@media (max-width: 768px) {
    .tm-contact-cards {
        flex-direction: column;
    }

    .tm-contact-row {
        flex-direction: column;
    }

    .tm-contact-header h1 {
        font-size: 36px;
    }
}

.tm-capabilities-detailed {
    padding: 40px 0 80px;
}


.tm-capabilities-header {
    text-align: center;
    margin-bottom: 50px;
}

.tm-capabilities-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.tm-breadcrumbs {
    font-family: 'Reddit Mono', monospace;
    font-size: 14px;
    color: #8a8380;
}

.tm-breadcrumbs a {
    color: #ffa517;
    text-decoration: none;
}

.tm-breadcrumbs a:hover {
    text-decoration: underline;
}

.tm-separator {
    margin: 0 8px;
    color: #4d4946;
}

.tm-current {
    color: #fff;
}


.tm-capabilities-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.tm-capabilities-intro .tm-subtitle {
    justify-content: center;
    margin-bottom: 16px;
}

.tm-capabilities-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.tm-capabilities-desc {
    font-size: 18px;
    line-height: 1.5;
}


.tm-capabilities-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.tm-capability-detailed-card {
    display: flex;
    gap: 24px;
    background: rgba(2, 2, 2, 0.5);
    border: 1px solid #4d4946;
    border-radius: 3px;
    padding: 28px;
    transition: all 0.2s ease;
}

.tm-capability-detailed-card:hover {
    border-color: #ffa517;
    transform: translateY(-3px);
}

.tm-cap-icon-wrap {
    flex-shrink: 0;
}

.tm-cap-icon-wrap i {
    width: 44px;
    height: 44px;
    color: #ffa517;
}

.tm-cap-content {
    flex: 1;
}

.tm-cap-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}

.tm-cap-content .tm-text {
    margin-bottom: 16px;
    line-height: 1.6;
}

.tm-cap-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tm-cap-features span {
    font-family: 'Reddit Mono', monospace;
    font-size: 12px;
    color: #c0b7b3;
    background: rgba(255, 165, 23, 0.12);
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}


.tm-capabilities-advanced {
    background: rgba(2, 2, 2, 0.6);
    border: 1px solid #4d4946;
    border-radius: 3px;
    padding: 36px 32px;
    margin-top: 20px;
}

.tm-advanced-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.tm-advanced-header i {
    width: 32px;
    height: 32px;
    color: #ffa517;
}

.tm-advanced-header h3 {
    font-size: 24px;
    color: #fff;
}

.tm-advanced-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.tm-advanced-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Reddit Mono', monospace;
    color: #fff;
    font-size: 15px;
}

.tm-advanced-item i {
    width: 20px;
    height: 20px;
    color: #ffa517;
}


@media (max-width: 900px) {
    .tm-capabilities-grid-detailed {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .tm-capability-detailed-card {
        flex-direction: column;
        text-align: center;
    }

    .tm-cap-features {
        justify-content: center;
    }

    .tm-advanced-header {
        justify-content: center;
    }

    .tm-advanced-grid {
        justify-content: center;
    }

    .tm-capabilities-header h1 {
        font-size: 36px;
    }

    .tm-capabilities-intro h2 {
        font-size: 32px;
    }
}



.tm-legal-page {
    padding: 40px 0 80px;
}

.tm-legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.tm-legal-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.tm-legal-date {
    margin-top: 20px;
    font-family: 'Reddit Mono', monospace;
    font-size: 14px;
    color: #ffa517;
    border-top: 1px solid #4d4946;
    display: inline-block;
    padding-top: 12px;
}

.tm-legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tm-legal-section {
    background: rgba(2, 2, 2, 0.4);
    border: 1px solid #4d4946;
    border-radius: 3px;
    padding: 28px 32px;
    margin-bottom: 28px;
    transition: border-color 0.2s;
}

.tm-legal-section:hover {
    border-color: #ffa517;
}

.tm-legal-section h2 {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #4d4946;
}

.tm-legal-section h3 {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffa517;
    margin: 20px 0 12px 0;
}

.tm-legal-section p {
    font-family: 'Reddit Mono', monospace;
    color: #8a8380;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.tm-legal-section ul {
    margin: 16px 0 16px 28px;
    list-style-type: disc;
}

.tm-legal-section li {
    font-family: 'Reddit Mono', monospace;
    color: #a09591;
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 14px;
}

.tm-legal-contact {
    background: rgba(255, 165, 23, 0.08);
    padding: 18px 22px;
    border-radius: 3px;
    margin-top: 12px;
    border-left: 3px solid #ffa517;
}

.tm-legal-contact p {
    margin-bottom: 8px;
    color: #c0b7b3;
}

@media (max-width: 768px) {
    .tm-legal-header h1 {
        font-size: 36px;
    }

    .tm-legal-section {
        padding: 20px 24px;
    }

    .tm-legal-section h2 {
        font-size: 22px;
    }
}




































@media (max-width: 768px) {
    .tm-banner-title {
        font-size: 40px;
    }

    .tm-advantages,
    .tm-how-steps,
    .tm-cap-right {
        flex-direction: column;
    }

    .tm-cap-card {
        flex: 1 1 100%;
    }

    .tm-capabilities-grid {
        flex-direction: column;
    }

    .tm-whyus {
        flex-direction: column;
    }

    .tm-cta {
        padding: 30px;
    }

    .tm-about {
        flex-direction: column;
    }

    .tm-brand {
        font-size: 20px;
    }

    .tm-logo img {
        height: 33px;
    }
}

i[data-lucide] {
    stroke-width: 1.5;
    color: #ffa517;
}