﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}
html,
body {
    overflow-x: hidden;
    width: 100%;
}
body {
    background-color: #181717;
    font-family: 'Host Grotesk', sans-serif;
}
:root {
    --tc-accent: #D47328;
    --tc-accent-rgb: 212, 115, 40;
    --tc-dark: #181717;
    --tc-dark-2: #111111;
    --tc-dark-3: #181510;
    --tc-light: #fdfdfd;
    --tc-light-2: #f5f3ef;
    --tc-gray: #888;
    --tc-font-body: 'Host Grotesk', sans-serif;
    --tc-ease: cubic-bezier(0.23, 1, 0.32, 1);
    --tc-section-pad: 130px;
}
.top-logo {
    position: absolute;
    top: 2rem;
    left: 3rem;
    z-index: 100;
}
@media (max-width: 768px) {
    .top-logo {
        top: 1.5rem;
        left: 2rem;
    }
    .top-logo .logo-text {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .top-logo {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
}
.tc-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 6%;
}
@media (max-width: 768px) {
    .tc-container {
        padding: 0 5%;
    }
}
.tc-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.45em;
    color: var(--tc-accent);
    display: inline-block;
}
.tc-hero {
    position: relative;
    min-height: 100vh;
    background: var(--tc-dark);
    overflow: visible;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
}
.tc-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    border-radius: inherit;
}
.tc-hero__bg-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.tc-bg-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(212, 115, 40, 0.06) 30%,
            rgba(212, 115, 40, 0.12) 55%,
            rgba(212, 115, 40, 0.04) 80%,
            transparent 100%);
    animation: line-pulse 8s ease-in-out infinite;
}
.tc-bg-line--1 {
    left: 10%;
    animation-delay: 0s;
}
.tc-bg-line--2 {
    left: 25%;
    animation-delay: 1.2s;
}
.tc-bg-line--3 {
    left: 42%;
    animation-delay: 0.6s;
}
.tc-bg-line--4 {
    left: 60%;
    animation-delay: 1.8s;
}
.tc-bg-line--5 {
    left: 76%;
    animation-delay: 0.3s;
}
.tc-bg-line--6 {
    left: 90%;
    animation-delay: 2.4s;
}
@keyframes line-pulse {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}
.tc-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.tc-hero__orb--1 {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(212, 115, 40, 0.12) 0%, transparent 60%);
    top: -15vw;
    left: -10vw;
    filter: blur(60px);
    animation: orb-drift 18s ease-in-out infinite alternate;
}
.tc-hero__orb--2 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(212, 115, 40, 0.06) 0%, transparent 60%);
    bottom: -10vw;
    right: -5vw;
    filter: blur(80px);
    animation: orb-drift 24s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(3%, 4%) scale(1.08);
    }
}
.tc-hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.4;
}
.tc-hero__ghost {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    font-family: serif;
    font-size: clamp(10rem, 28vw, 36rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.018);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
    z-index: 2;
    white-space: nowrap;
}
.tc-hero__inner {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.tc-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid rgba(212, 115, 40, 0.25);
    border-radius: 100px;
    background: rgba(212, 115, 40, 0.06);
    backdrop-filter: blur(10px);
    margin-bottom: 36px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.75);
}
.tc-hero__pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tc-accent);
    box-shadow: 0 0 0 3px rgba(212, 115, 40, 0.2);
    animation: pill-pulse 2.5s ease-in-out infinite;
}
@keyframes pill-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(212, 115, 40, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(212, 115, 40, 0.05);
    }
}
.tc-hero__title {
    font-family: serif;
    font-size: clamp(3rem, 6.5vw, 7.2rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
    color: var(--tc-light);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tc-hero__title-row {
    display: block;
    overflow: hidden;
}
.tc-hero__title-row em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}
.tc-hero__title-stroke {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
    font-style: italic;
    position: relative;
    display: inline-block;
    line-height: 1.1;
}
.tc-hero__title-stroke::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    color: var(--tc-accent);
    -webkit-text-stroke: -1px;
    overflow: hidden;
    white-space: nowrap;
    animation: tc-stroke-fill 6s ease-in-out infinite alternate;
    font-style: inherit;
}
@keyframes tc-stroke-fill {
    0%,
    10% {
        width: 0%;
    }
    80%,
    100% {
        width: 100%;
    }
}
.tc-hero__sub-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}
.tc-hero__sub-rule {
    width: 50px;
    height: 1px;
    background: var(--tc-accent);
    flex-shrink: 0;
}
.tc-hero__sub {
    font-family: serif;
    font-style: italic;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}
.tc-hero__desc {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 30px;
}
.tc-hero__actions {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-bottom: 0;
}
.tc-hero__kpis {
    display: flex;
    align-items: center;
    gap: 24px;
}
.tc-kpi-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}
.tc-kpi {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tc-kpi__num {
    font-family: serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--tc-accent);
    line-height: 1;
}
.tc-kpi__label {
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
}
.tc-hero__float-panel {
    position: absolute;
    right: 4%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    z-index: 10;
    min-width: 230px;
}
.tc-float--1 {
    top: 22%;
    animation: tc-float-a 7s ease-in-out infinite alternate;
}
.tc-float--2 {
    top: 48%;
    animation: tc-float-b 6s ease-in-out infinite alternate-reverse;
    right: 12%;
}
.tc-float--3 {
    top: 70%;
    animation: tc-float-a 8s ease-in-out infinite alternate;
    right: 2%;
}
@keyframes tc-float-a {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-18px);
    }
}
@keyframes tc-float-b {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(16px);
    }
}
.tc-fp__icon {
    width: 42px;
    height: 42px;
    background: rgba(212, 115, 40, 0.1);
    border: 1px solid rgba(212, 115, 40, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--tc-accent);
    flex-shrink: 0;
}
.tc-fp__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.tc-fp__val {
    font-family: serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}
.tc-fp__txt {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.tc-fp__check {
    font-size: 1.2rem;
    color: rgba(212, 115, 40, 0.6);
    flex-shrink: 0;
}
.tc-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 2%;
    right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}
.tc-hero__scroll span {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    writing-mode: vertical-rl;
}
.tc-scroll-track {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}
.tc-scroll-fill {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--tc-accent);
    animation: tc-scroll-move-vertical 1.8s ease-in-out infinite;
}
@keyframes tc-scroll-move-vertical {
    0% {
        top: -30%;
    }
    100% {
        top: 100%;
    }
}
@media (max-width: 1100px) {
    .tc-hero__float-panel {
        display: none;
    }
}
@media (max-width: 768px) {
    .tc-hero__title {
        font-size: clamp(2.8rem, 9vw, 3.5rem);
    }
    .tc-hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .tc-hero__ghost {
        display: block;
        font-size: clamp(6rem, 15vw, 12rem);
        top: 50%;
        opacity: 0.012;
    }
    .tc-hero__desc {
        font-size: 0.95rem;
        margin-bottom: 10vw;
    }
    .tc-hero {
        padding-top: 60px;
        padding-bottom: 60px;
        min-height: 100vh;
        height: auto;
    }
    .tc-hero__sub {
        font-size: 1.1rem;
    }
    .tc-hero__scroll {
        display: none;
    }
}
@media (max-width: 480px) {
    .tc-hero {
        height: auto;
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .tc-hero__title {
        font-size: clamp(2.5rem, 10vw, 3.2rem);
    }
    .tc-hero__sub {
        font-size: 1rem;
    }
    .tc-hero__inner {
        padding-bottom: 0;
        align-items: center;
        text-align: center;
    }
    .tc-hero__actions {
        justify-content: center;
        width: 100%;
    }
    .tc-hero__pill {
        font-size: 0.25rem;
        letter-spacing: 0.3em;
        gap: 1rem;
    }
}
.tc-about {
    background: #ffffff;
    padding: 10vh 0;
    border-radius: 60px 60px 60px 60px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.08);
    color: var(--tc-dark);
    position: relative;
    z-index: 5;
}
.tc-about__top {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 70px;
}
.tc-about__rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 115, 40, 0.4), transparent);
}
.tc-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.tc-about__headline {
    font-family: serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111;
    position: sticky;
    top: 130px;
}
.tc-about__headline em {
    font-style: italic;
    color: var(--tc-accent);
}
.tc-about__accent-bar {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--tc-accent), transparent);
    border-radius: 4px;
    margin-top: 32px;
}
.tc-about__lead {
    font-size: clamp(1.1rem, 1.7vw, 1.3rem);
    line-height: 1.85;
    color: rgba(15, 15, 15, 0.65);
    margin-bottom: 50px;
}
.tc-about__expertise-block {
    padding: 36px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    position: relative;
}
.tc-about__expertise-block::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--tc-accent);
}
.tc-about__expertise-title {
    font-family: serif;
    font-size: 1.65rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 16px;
}
.tc-about__expertise-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(15, 15, 15, 0.52);
}
@media (max-width: 900px) {
    .tc-about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .tc-about__headline {
        position: relative;
        top: auto;
    }
    .tc-about__top {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    .tc-about__lead {
        margin-bottom: 30px;
    }
    .tc-about__accent-bar {
        margin: 32px auto 0;
    }
}
.tc-outcomes {
    background: #0a0a0a;
    padding: var(--tc-section-pad) 0;
    position: relative;
    overflow: hidden;
    margin-top: -60px;
    z-index: 0;
}
.tc-outcomes__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}
.tc-outcomes__title {
    font-family: serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--tc-light);
    margin: 16px 0 18px;
    line-height: 1.05;
}
.tc-outcomes__title em {
    font-style: italic;
    color: var(--tc-accent);
}
.tc-outcomes__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
}
.tc-outcomes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    overflow: hidden;
}
.tc-outcome-card {
    background: #101010;
    padding: 55px 45px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: background 0.35s ease, transform 0.4s var(--tc-ease);
    cursor: default;
    overflow: hidden;
}
.tc-outcome-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(212, 115, 40, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.tc-outcome-card:hover::before {
    opacity: 1;
}
.tc-outcome-card:hover {
    transform: translateY(-4px);
}
.tc-outcome-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.tc-outcome-card__num {
    font-family: serif;
    font-size: 3.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
}
.tc-outcome-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 115, 40, 0.08);
    border: 1px solid rgba(212, 115, 40, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--tc-accent);
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.4s var(--tc-ease);
}
.tc-outcome-card:hover .tc-outcome-card__icon {
    background: var(--tc-accent);
    border-color: var(--tc-accent);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}
.tc-outcome-card__title {
    font-family: serif;
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.25;
    transition: color 0.3s ease;
}
.tc-outcome-card:hover .tc-outcome-card__title {
    color: #fff;
}
.tc-outcome-card__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.65;
    transition: color 0.3s ease;
}
.tc-outcome-card:hover .tc-outcome-card__desc {
    color: rgba(255, 255, 255, 0.55);
}
.tc-outcome-card__bar {
    height: 2px;
    background: rgba(212, 115, 40, 0.12);
    border-radius: 2px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}
.tc-outcome-card__bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tc-accent);
    transition: left 0.5s var(--tc-ease);
}
.tc-outcome-card:hover .tc-outcome-card__bar::after {
    left: 0;
}
@media (max-width: 1024px) {
    .tc-outcomes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .tc-outcomes__grid {
        grid-template-columns: 1fr;
    }
    .tc-outcome-card {
        padding: 35px 25px;
    }
    .tc-outcomes {
        padding: 100px 0;
    }
}
.tc-mission {
    background: var(--tc-accent);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.tc-mission::before {
    content: 'ASCENDIA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: serif;
    font-size: clamp(3.5rem, 12vw, 18rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.05em;
}
.tc-mission__bg-word {
    display: none;
}
.tc-mission__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tc-mission__label {
    display: inline-block;
    font-family: var(--tc-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}
.tc-mission__title {
    font-family: serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}
.tc-mission__text {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 750px;
    font-weight: 300;
}
@media (max-width: 900px) {
    .tc-mission__inner {
        gap: 30px;
        text-align: center;
    }
    .tc-mission__bg-word {
        display: none;
    }
    .tc-mission {
        padding: 80px 0;
    }
}
@media (max-width: 640px) {
    .tc-mission {
        padding: 60px 0;
    }
    .tc-mission__title {
        font-size: 1.6rem;
    }
}
.tc-scope {
    background: #0d0d0d;
    padding: var(--tc-section-pad) 0;
    position: relative;
    overflow: hidden;
}
.tc-scope {
    background: #080808;
    padding: var(--tc-section-pad) 0;
    position: relative;
    overflow: hidden;
}
.tc-scope__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(212, 115, 40, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.tc-scope__header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 90px;
    position: relative;
    z-index: 2;
}
.tc-scope__title {
    font-family: serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--tc-light);
    margin: 22px 0 22px;
}
.tc-scope__title em {
    font-style: italic;
    color: var(--tc-accent);
}
.tc-scope__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.38);
    max-width: 680px;
    margin: 0 auto;
}
.tc-scope__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.tc-scope__card {
    position: relative;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.5s var(--tc-ease);
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}
.tc-scope__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 115, 40, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.tc-scope__card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 115, 40, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.tc-scope__card:hover::before {
    opacity: 1;
}
.tc-scope__card-num {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}
.tc-scope__card:hover .tc-scope__card-num {
    color: rgba(212, 115, 40, 0.04);
    transform: scale(1.1);
}
.tc-scope__card-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 115, 40, 0.1);
    border: 1px solid rgba(212, 115, 40, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--tc-accent);
    transition: all 0.4s var(--tc-ease);
}
.tc-scope__card:hover .tc-scope__card-icon {
    background: var(--tc-accent);
    color: #fff;
    transform: rotate(-10deg) scale(1.1);
}
.tc-scope__card-title {
    font-family: serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}
.tc-scope__card-desc {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 10px;
}
.tc-scope__card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--tc-accent);
    opacity: 0.7;
    margin-top: auto;
}
@media (max-width: 1024px) {
    .tc-scope__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 640px) {
    .tc-scope__grid {
        grid-template-columns: 1fr;
    }
    .tc-scope__card {
        padding: 35px 25px;
    }
    .tc-scope {
        padding: 100px 0;
    }
}
.tc-cta-wrapper {
    background: var(--tc-dark-2);
    width: 100%;
}
.tc-cta {
    padding: 110px 0;
    background: var(--tc-accent);
    text-align: center;
    border-radius: 4rem 4rem 0 0;
    position: relative;
    overflow: hidden;
}
.tc-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 110%, rgba(0, 0, 0, 0.22) 0%, transparent 55%);
    pointer-events: none;
}
.tc-cta__bg-word {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
    font-size: clamp(7rem, 18vw, 22rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.07);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
    z-index: 1;
}
.tc-cta__heading {
    font-family: serif;
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}
.tc-cta__heading em {
    font-style: italic;
    font-weight: 400;
}
.tc-cta__text {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    max-width: 760px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}
@media (max-width: 1024px) {
    .tc-cta__bg-word {
        bottom: -7%;
    }
}
@media (max-width: 768px) {
    .tc-cta {
        padding: 60px 0;
        border-radius: 3rem 3rem 0 0;
    }
    .tc-cta__heading {
        font-size: 1.8rem;
    }
    .tc-cta__bg-word {
        bottom: -3%;
    }
}
@media (max-width: 480px) {
    .tc-cta__bg-word {
        bottom: 0%;
    }
}
.consent-text a {
    color: var(--tc-accent);
    text-decoration: none;
}
.consent-text a:hover {
    text-decoration: underline;
}
.social-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.4;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.col-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.col-contact .contact-item:hover {
    transform: translateX(4px);
}
.col-contact .contact-item ion-icon {
    font-size: 1.4rem;
    color: var(--tc-accent);
    flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
    body,
    body * {
        cursor: none !important;
    }
}
body.nw-cursor-hover .nw-cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    opacity: .9;
}
body.nw-cursor-hover .nw-cursor-ring {
    width: 52px;
    height: 52px;
    opacity: .85;
    border-color: var(--nw-acc);
    background-color: rgba(212, 115, 40, .08);
}
body.nw-cursor-clicking .nw-cursor-dot {
    width: 5px;
    height: 5px;
}
body.nw-cursor-clicking .nw-cursor-ring {
    width: 28px;
    height: 28px;
    opacity: 1;
    background-color: rgba(212, 115, 40, .15);
}
body.nw-cursor-on-dark .nw-cursor-dot {
    background-color: #f5f5f5;
}
body.nw-cursor-on-dark .nw-cursor-ring {
    border-color: #f5f5f5;
}
body.nw-cursor-text .nw-cursor-dot {
    width: 3px;
    height: 22px;
    border-radius: 2px;
    background-color: var(--nw-acc);
}
body.nw-cursor-text .nw-cursor-ring {
    opacity: 0;
}
@media (hover: none) {
    .nw-cursor-dot,
    .nw-cursor-ring {
        display: none !important;
    }
    body,
    body * {
        cursor: none !important;
    }
}
