/* =========================================================
   HIGH CLASS WINDSCREENS — pure HTML/CSS/JS build
   ========================================================= */

:root {
    --hcw-bg: #050505;
    --hcw-bg-2: #0b0b0b;
    --hcw-panel: #0a0a0a;
    --hcw-line: rgba(255, 255, 255, 0.08);
    --hcw-line-strong: rgba(255, 255, 255, 0.16);
    --hcw-text: #ffffff;
    --hcw-text-dim: #a3a3a3;
    --hcw-text-mute: #6b6b6b;
    --hcw-green: #3adb4a;
    --hcw-green-dim: #29a637;
    --hcw-blue: #0f4c81;
    --hcw-cream: #f4f2ec;
    --nav-h: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--hcw-bg);
    color: var(--hcw-text);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--hcw-bg);
    color: var(--hcw-text);
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

::selection {
    background: var(--hcw-green);
    color: #050505;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #1e1e1e;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hcw-green-dim);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.font-display,
h1,
h2,
h3 {
    font-family: "Cabinet Grotesk", "Helvetica Neue", Arial, sans-serif;
    font-feature-settings: "ss01" on, "ss02" on;
}

.mono,
.mono--label,
.mono--dim,
.mono--fine,
.mono--note {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

.eyebrow {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--hcw-green);
}

.eyebrow--dark {
    color: var(--hcw-green-dim);
}

.text-green {
    color: var(--hcw-green);
}

em {
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1600px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding-inline: 2.5rem;
    }
}

.section {
    position: relative;
    padding: 7rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 10rem 0;
    }
}

.section__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

@media (min-width: 900px) {
    .section__head {
        grid-template-columns: 2fr 1fr;
    }
}

.section__title {
    margin: 1rem 0 0;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    font-weight: 800;
    max-width: 40ch;
}

.section__lede {
    color: var(--hcw-text-dim);
    max-width: 32ch;
    font-size: 15px;
    line-height: 1.6;
}

/* GRAIN */
.grain-fixed,
.grain-overlay::before {
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
}

.grain-fixed {
    position: fixed;
    inset: 0;
    z-index: 60;
    opacity: 0.045;
}

.grain-overlay {
    position: relative;
}

.grain-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.06;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    transition: background-color .45s ease, color .45s ease, border-color .45s ease, transform .35s ease;
}

.btn--primary {
    background: var(--hcw-green);
    color: #050505;
}

.btn--primary:hover {
    background: #fff;
}

.btn--outline {
    border: 1px solid var(--hcw-line-strong);
    background: transparent;
    color: #fff;
    border-radius: 0;
    padding: 1rem 0.9rem 1rem 1.5rem;
}

.btn--outline:hover {
    border-color: var(--hcw-green);
    background: rgba(58, 219, 74, 0.08);
}

.btn--lg {
    padding: 1rem 1.75rem;
    font-size: 15px;
}

.btn .arrow {
    display: inline-block;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover .arrow {
    transform: rotate(45deg);
}

.btn__dot {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--hcw-green);
    color: #050505;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--hcw-green);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.link-arrow:hover {
    color: #fff;
}

.link-arrow .arrow {
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-arrow:hover .arrow {
    transform: rotate(45deg);
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: backdrop-filter .5s ease, background-color .5s ease, border-color .5s ease;
    border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(5, 5, 5, 0.72);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.nav__inner {
    max-width: 1600px;
    margin-inline: auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav__inner {
        padding: 1rem 2.5rem;
    }
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__wordmark {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    font-family: "Cabinet Grotesk", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav__wordmark-1 {
    color: #fff;
    font-size: 15px;
}

.nav__wordmark-2 {
    color: var(--hcw-green);
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.3em;
    font-size: 9px;
    margin-top: 2px;
}

.nav__links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__links li,
.nav__drawer li {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 900px) {
    .nav__links {
        display: flex;
    }
}

.nav__links a {
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color .35s ease;
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: -2px;
    height: 1px;
    background: var(--hcw-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__links a:hover {
    color: #fff;
}

.nav__links a:hover::after {
    transform: scaleX(1);
}

.nav__cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 900px) {
    .nav__cta {
        display: flex;
    }
}

.nav__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
}

.nav__phone:hover {
    color: #fff;
}

.nav__toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

@media (min-width: 900px) {
    .nav__toggle {
        display: none;
    }
}

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform .35s ease, opacity .25s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav__drawer {
    background: #050505;
    border-top: 1px solid var(--hcw-line);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: "Cabinet Grotesk", sans-serif;
    font-size: 18px;
}

.nav__drawer[hidden] {
    display: none;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--hcw-bg);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: scale(1.05);
    animation: hero-image-in 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-image-in {
    from {
        opacity: 0;
        transform: scale(1.15);
    }

    to {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.4) 40%, #050505),
        radial-gradient(1200px 600px at 20% 10%, rgba(58, 219, 74, 0.1), transparent 60%);
}

.hero__shard {
    position: absolute;
    right: 6%;
    top: 18%;
    z-index: 1;
    display: none;
    opacity: 0;
    transform: translateX(-40px);
    animation: shard-in 1.6s .6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes shard-in {
    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}

@media (min-width: 1024px) {
    .hero__shard {
        display: block;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin-inline: auto;
    padding: calc(var(--nav-h) + 5rem) 1.5rem 6rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .hero__content {
        padding: calc(var(--nav-h) + 5rem) 2.5rem 6rem;
    }
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 0.5rem;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: fade-in .9s .35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.hero__headline {
    margin-top: 3rem;
}

.hero__headline .eyebrow {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fade-in .9s .45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__h1 {
    margin: 0;
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.03em;
    font-size: 16vw;
}

@media (min-width: 768px) {
    .hero__h1 {
        font-size: 11vw;
    }
}

@media (min-width: 1200px) {
    .hero__h1 {
        font-size: 10.5vw;
    }
}

.mask-line {
    display: block;
    overflow: hidden;
    line-height: 0.85;
    padding-bottom: 0.08em;
}

.mask-inner {
    display: block;
    transform: translateY(110%);
    will-change: transform;
    animation: mask-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mask-inner[data-mask="0"] {
    animation-delay: 0.25s;
}

.mask-inner[data-mask="1"] {
    animation-delay: 0.36s;
    color: var(--hcw-green);
}

.mask-inner[data-mask="2"] {
    animation-delay: 0.47s;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.02em;
}

@keyframes mask-up {
    to {
        transform: translateY(0);
    }
}

.hero__bottom {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: end;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up .9s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 900px) {
    .hero__bottom {
        grid-template-columns: 5fr 4fr 3fr;
        gap: 2.5rem;
    }
}

.hero__lede {
    color: rgba(255, 255, 255, 0.72);
    max-width: 40ch;
    font-size: 17px;
    line-height: 1.55;
    margin: 0;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.hero__call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    letter-spacing: 0.15em;
}

.hero__call:hover {
    color: #fff;
}

.hero__badge {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}

.hero__badge>div:first-child {
    color: rgba(255, 255, 255, 0.85);
}

.hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    z-index: 3;
}

.hero__scroll span:first-child {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.4);
    animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* MARQUEE */
.marquee {
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--hcw-bg);
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .marquee {
        padding: 3rem 0;
    }
}

.marquee__track {
    display: flex;
    gap: 3.5rem;
    white-space: nowrap;
    animation: marquee 60s linear infinite;
}

.marquee__track span {
    font-family: "Cabinet Grotesk", sans-serif;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.25px var(--hcw-green);
    font-size: 14vw;
    line-height: 1;
    letter-spacing: -0.02em;
    display: inline-block;
}

@media (min-width: 768px) {
    .marquee__track span {
        font-size: 9vw;
    }
}

.marquee__star {
    -webkit-text-stroke: 0 !important;
    color: rgba(58, 219, 74, 0.7) !important;
    margin: 0 0.5rem !important;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SERVICES */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
    }
}

.service-card {
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: border-color .5s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(58, 219, 74, 0.6);
}

.service-card--wide {
    grid-column: span 12;
}

@media (min-width: 1024px) {
    .service-card {
        grid-column: span 5;
    }

    .service-card--wide {
        grid-column: span 7;
    }
}

.service-card__img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(35%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
}

.service-card:hover .service-card__img img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.service-card__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0c0c0c, rgba(12, 12, 12, 0.3) 50%, transparent);
}

.service-card__num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.service-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    flex: 1;
}

.service-card__body h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.service-card__body>div>p {
    margin: 0.75rem 0 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    max-width: 50ch;
    line-height: 1.6;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags span {
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.35rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* MANIFESTO */
.manifesto {
    background: var(--hcw-cream);
    color: #050505;
    overflow: hidden;
}

.manifesto__ghosts {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    pointer-events: none;
    padding-top: 4rem;
}

.manifesto__ghosts span {
    font-family: "Cabinet Grotesk", sans-serif;
    font-weight: 900;
    line-height: 1;
    font-size: 26vw;
    color: rgba(0, 0, 0, 0.03);
    justify-self: center;
    user-select: none;
}

@media (min-width: 768px) {
    .manifesto__ghosts span {
        font-size: 14vw;
    }
}

.manifesto__intro {
    max-width: 60ch;
    position: relative;
}

.manifesto__intro .section__title {
    color: #050505;
}

.manifesto__lede {
    margin-top: 1.5rem;
    color: rgba(0, 0, 0, 0.65);
    font-size: 17px;
    line-height: 1.6;
    max-width: 40ch;
}

.manifesto__list {
    margin-top: 4rem;
    border-block: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.manifesto__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background .3s ease;
}

.manifesto__row:last-child {
    border-bottom: none;
}

.manifesto__row:hover {
    background: rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
    .manifesto__row {
        grid-template-columns: 1.5fr 3fr 3fr;
        align-items: baseline;
        padding: 2.5rem 0;
    }
}

.manifesto__chapter {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.5);
}

.manifesto__row h3 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.manifesto__row p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* TRADE */
.trade__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .trade__grid {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
    }
}

.trade__intro .section__title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.trade__intro .btn {
    margin-top: 2.5rem;
}

.trade__console {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--hcw-panel);
    padding: 2rem;
}

@media (min-width: 768px) {
    .trade__console {
        padding: 2.5rem;
    }
}

.corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border-top: 2px solid var(--hcw-green);
    border-left: 2px solid var(--hcw-green);
}

.corner--tl {
    top: -1px;
    left: -1px;
}

.corner--tr {
    top: -1px;
    right: -1px;
    transform: rotate(90deg);
}

.corner--bl {
    bottom: -1px;
    left: -1px;
    transform: rotate(-90deg);
}

.corner--br {
    bottom: -1px;
    right: -1px;
    transform: rotate(180deg);
}

.trade__console-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 11px;
}

.trade__console-head .mono {
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.trade__console-head .mono--dim {
    color: rgba(255, 255, 255, 0.4);
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--hcw-green);
    margin-right: 0.5rem;
    animation: pulse-dot 2s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.trade__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.trade__stats>div {
    background: var(--hcw-panel);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mono--label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.4);
}

.trade__stats strong {
    font-family: "Cabinet Grotesk", sans-serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    color: #fff;
}

.mono--note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.trade__perks {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .trade__perks {
        grid-template-columns: 1fr 1fr;
    }
}

.trade__perks>div {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.trade__perks>div::first-letter {
    color: var(--hcw-green);
}

/* SERVICE AREA */
.area__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .area__grid {
        grid-template-columns: 5fr 7fr;
    }
}

.area__list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    max-width: 460px;
}

.area__list>div {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.area__list>div::first-letter {
    color: var(--hcw-green);
}

.area__radar {
    position: relative;
    aspect-ratio: 1;
    max-width: 640px;
    margin-inline: auto;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--hcw-panel);
    overflow: hidden;
}

.area__radar svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.radar-sweep {
    animation: radar-spin 12s linear infinite;
}

@keyframes radar-spin {
    to {
        transform: rotate(360deg);
    }
}

.area__radar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0.75rem);
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.24em;
    color: var(--hcw-green);
    pointer-events: none;
}

.area__radar-meta {
    position: absolute;
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.5);
}

.area__radar-meta--tl {
    top: 1rem;
    left: 1rem;
}

.area__radar-meta--br {
    bottom: 1rem;
    right: 1rem;
}

/* TESTIMONIALS */
.testimonials {
    background: var(--hcw-bg-2);
    border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

@media (min-width: 900px) {
    .testimonials__head {
        grid-template-columns: 2fr 1fr;
    }
}

.testimonials__rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-start;
}

@media (min-width: 900px) {
    .testimonials__rating {
        justify-content: flex-end;
    }
}

.stars {
    color: var(--hcw-green);
    letter-spacing: 0.2em;
    font-size: 14px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 700px) {
    .testimonials__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1100px) {
    .testimonials__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial {
    margin: 0;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--hcw-panel);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    transition: border-color .35s ease;
}

.testimonial:hover {
    border-color: rgba(58, 219, 74, 0.5);
}

.testimonial blockquote {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.testimonial__q {
    display: block;
    font-family: "Cabinet Grotesk", sans-serif;
    color: var(--hcw-green);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.testimonial figcaption {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.testimonial figcaption>div:first-child {
    color: #fff;
}

.mono--dim {
    color: rgba(255, 255, 255, 0.4);
}

.testimonials__note {
    margin-top: 2rem;
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* QUOTE FORM */
.quote__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
}

@media (min-width: 1024px) {
    .quote__grid {
        grid-template-columns: 5fr 7fr;
        gap: 5rem;
    }
}

.quote__intro .section__title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.88;
}

.quote__bullets {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quote__bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quote__bullets li::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--hcw-green);
}

.quote__form {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--hcw-panel);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 768px) {
    .quote__form {
        padding: 2.5rem;
    }
}

.quote__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 2rem;
}

@media (min-width: 700px) {
    .quote__row {
        grid-template-columns: 1fr 1fr;
    }
}

.quote__form label {
    display: block;
    padding: 0.6rem 0;
}

.quote__full {
    grid-column: 1 / -1;
}

.quote__form input,
.quote__form select,
.quote__form textarea {
    width: 100%;
    display: block;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 0;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: border-color .35s ease;
    resize: vertical;
}

.quote__form input::placeholder,
.quote__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.quote__form input:focus,
.quote__form select:focus,
.quote__form textarea:focus {
    border-color: var(--hcw-green);
}

.quote__form select option {
    background: var(--hcw-panel);
    color: #fff;
}

.field-err {
    display: block;
    min-height: 14px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: #ff5c60;
    margin-top: 4px;
}

.quote__submit-row {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

@media (min-width: 700px) {
    .quote__submit-row {
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
    }
}

.mono--fine {
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 36ch;
    margin: 0;
}

.quote__success {
    border: 1px solid rgba(58, 219, 74, 0.4);
    background: rgba(58, 219, 74, 0.04);
    padding: 2.5rem;
    grid-column: 2 / -1;
}

.quote__success h3 {
    margin: 1.5rem 0 1rem;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}

.quote__success p {
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 44ch;
}

.quote__success[hidden] {
    display: none;
}

/* FAQ */
.faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .faq__grid {
        grid-template-columns: 4fr 8fr;
    }
}

.faq__item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
}

.faq__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__item summary {
    cursor: pointer;
    list-style: none;
    color: #fff;
    font-family: "Cabinet Grotesk", sans-serif;
    font-weight: 700;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    display: flex;
    gap: 1rem;
    align-items: baseline;
    padding: 0.5rem 0;
    transition: color .35s ease;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary::after {
    content: "+";
    margin-left: auto;
    color: var(--hcw-green);
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
    transition: transform .35s ease;
}

.faq__item[open] summary::after {
    transform: rotate(45deg);
}

.faq__item summary:hover {
    color: var(--hcw-green);
}

.faq__num {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.4);
}

.faq__item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.65;
    padding: 0.75rem 0 0.5rem 3.25rem;
    max-width: 65ch;
}

/* CONTACT / HOURS */
.contact {
    background: var(--hcw-bg-2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact__grid {
        grid-template-columns: 7fr 5fr;
    }
}

.contact__phone {
    display: block;
    margin-top: 1rem;
    font-family: "Cabinet Grotesk", sans-serif;
    font-weight: 900;
    font-size: 16vw;
    line-height: 0.85;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color .4s ease;
}

@media (min-width: 768px) {
    .contact__phone {
        font-size: 9vw;
    }
}

.contact__phone:hover {
    color: var(--hcw-green);
}

.contact__meta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact__meta a:hover {
    color: #fff;
}

.contact__hours {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--hcw-panel);
    padding: 1.75rem;
}

@media (min-width: 768px) {
    .contact__hours {
        padding: 2rem;
    }
}

.contact__hours-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.open-badge {
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.open-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    display: inline-block;
}

.open-badge--open {
    color: var(--hcw-green);
}

.open-badge--open .dot {
    background: var(--hcw-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

.open-badge--closed {
    color: rgba(255, 255, 255, 0.4);
}

.open-badge--closed .dot {
    background: rgba(255, 255, 255, 0.3);
}

.contact__hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.contact__hours-grid>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.contact__hours-grid>div.is-today {
    color: #fff;
}

.contact__hours-grid span {
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact__hours-time {
    display: flex;
    justify-content: space-between;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.contact__hours-time .mono--label {
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.contact__socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact__socials a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-family: "Cabinet Grotesk", sans-serif;
    transition: color .35s, border-color .35s;
}

.contact__socials a:hover {
    color: var(--hcw-green);
    border-color: var(--hcw-green);
}

/* FOOTER */
.footer {
    background: var(--hcw-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 4fr 3fr 3fr 2fr;
    }
}

.footer__desc {
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    max-width: 32ch;
    line-height: 1.6;
}

.footer__grid ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer__grid a:hover {
    color: #fff;
}

.footer__strip {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: space-between;
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
    .footer__strip {
        flex-direction: row;
        align-items: center;
    }
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1), transform .9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* TOAST */
.toast {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 100;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.9rem 1.1rem;
    font-size: 14px;
    min-width: 260px;
    max-width: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(120%);
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast[hidden] {
    display: none !important;
}

.toast.is-visible {
    transform: none;
}

.toast--success {
    border-color: rgba(58, 219, 74, 0.5);
}

.toast--error {
    border-color: rgba(255, 92, 96, 0.5);
}