@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-Variable.woff2') format('woff2');
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}

@font-face {
    font-family: 'Space Mono';
    src: url('../fonts/space-mono/SpaceMono-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Space Mono';
    src: url('../fonts/space-mono/SpaceMono-Bold.woff2') format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --bg: #080a10;
    --bg-soft: #0d1018;
    --text: #f3f5f7;
    --muted: #9a9fab;
    --line: rgba(255, 255, 255, 0.1);
    --accent: #b6ff3b;
    --accent-soft: rgba(182, 255, 59, 0.16);
    --violet: #7868ff;
    --container: 1560px;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --font-main: 'Manrope', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--bg);
    scroll-behavior: smooth;
    -webkit-user-select: none;
    user-select: none;
}

::selection {
    color: inherit;
    background: transparent;
}

::-moz-selection {
    color: inherit;
    background: transparent;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

svg {
    display: block;
}

.container {
    width: min(calc(100% - 80px), var(--container));
    margin: 0 auto;
}

.hero {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100svh;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(120, 104, 255, 0.09), transparent 27%),
        linear-gradient(135deg, #080a10 0%, #0a0c13 46%, #070910 100%);
}

.hero__grid {
    position: absolute;
    z-index: -5;
    inset: 0;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to bottom, black 0%, black 64%, transparent 100%);
}

.hero__grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 16%, transparent 84%, var(--bg) 100%);
}

.hero__orb {
    position: absolute;
    z-index: -4;
    width: 540px;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.16;
    pointer-events: none;
}

.hero__orb--one {
    top: -300px;
    right: 4%;
    background: var(--violet);
    animation: orbOne 12s ease-in-out infinite alternate;
}

.hero__orb--two {
    bottom: -400px;
    left: 13%;
    background: var(--accent);
    animation: orbTwo 15s ease-in-out infinite alternate;
}

.page-noise {
    position: fixed;
    z-index: 50;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
    position: fixed;
    z-index: 45;
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0);
    background: radial-gradient(circle, rgba(182, 255, 59, 0.1), rgba(120, 104, 255, 0.06) 34%, transparent 68%);
    transition: opacity 0.4s ease;
}

body.has-pointer .cursor-glow {
    opacity: 1;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 112px;
    border-bottom: 1px solid var(--line);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
}

.logo__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0 0 2px;
    border: 1px solid rgba(182, 255, 59, 0.36);
    border-radius: 13px;
    color: var(--bg);
    background: var(--accent);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.12em;
    text-indent: -0.12em;
    box-shadow: 0 0 32px rgba(182, 255, 59, 0.12);
}

.logo__text {
    font-size: 18px;
    letter-spacing: -0.01em;
}

.header__status {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: #cfd2d8;
    background: rgba(255, 255, 255, 0.025);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
}

.header__status-dot,
.showcase__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(182, 255, 59, 0.09), 0 0 18px rgba(182, 255, 59, 0.64);
    animation: pulse 2s ease-in-out infinite;
}

.hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
    align-items: center;
    gap: clamp(70px, 8vw, 150px);
    padding-top: clamp(48px, 7vh, 92px);
    padding-bottom: clamp(48px, 7vh, 92px);
}

.intro {
    position: relative;
    z-index: 2;
}

.intro__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 30px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.intro__eyebrow-line {
    width: 38px;
    height: 1px;
    background: currentColor;
    box-shadow: 0 0 12px currentColor;
}

.intro__title {
    max-width: 850px;
    margin: 0;
    font-size: clamp(56px, 5vw, 88px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.075em;
}

.intro__title-line {
    display: block;
    white-space: nowrap;
}

.intro__title-accent {
    position: relative;
    display: inline-block;
    color: var(--accent);
    text-shadow: 0 0 42px rgba(182, 255, 59, 0.14);
}

.intro__title-accent::after {
    content: '';
    position: absolute;
    right: -2%;
    bottom: -8px;
    left: 2%;
    height: 9px;
    opacity: 0.8;
    background: url("data:image/svg+xml,%3Csvg width='700' height='20' viewBox='0 0 700 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 15C127 2 242 21 356 10C465 0 571 7 698 3' stroke='%23B6FF3B' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.intro__text {
    max-width: 670px;
    margin: 38px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 1.15vw, 20px);
    line-height: 1.7;
}

.intro__services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.intro__services span {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: #c2c5cc;
    background: rgba(255, 255, 255, 0.025);
    font-family: var(--font-mono);
    font-size: 11px;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.intro__services span:hover {
    border-color: rgba(182, 255, 59, 0.32);
    color: var(--accent);
    background: rgba(182, 255, 59, 0.055);
}

.intro__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    min-height: 62px;
    padding: 0 28px;
    overflow: hidden;
    border-radius: 17px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-110%) skewX(-20deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: transform 0.75s ease;
}

.button:hover::before {
    transform: translateX(110%) skewX(-20deg);
}

.button--primary {
    color: #090b0f;
    background: var(--accent);
    box-shadow: 0 15px 44px rgba(182, 255, 59, 0.14);
}

.button--primary:hover {
    box-shadow: 0 20px 55px rgba(182, 255, 59, 0.23);
}

.button svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.socials {
    display: flex;
    gap: 10px;
}

.social {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: #d6d8dd;
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(14px);
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.social:hover {
    border-color: rgba(182, 255, 59, 0.32);
    color: var(--accent);
    background: rgba(182, 255, 59, 0.06);
}

.social svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: none;
}

.showcase {
    position: relative;
    width: 100%;
    max-width: 700px;
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(19, 23, 34, 0.92), rgba(10, 13, 20, 0.92));
    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    transform-style: preserve-3d;
    transition: transform 0.08s linear;
}

.showcase::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: -1px;
    border-radius: inherit;
    opacity: 0.7;
    background: linear-gradient(135deg, rgba(182, 255, 59, 0.18), transparent 28%, transparent 74%, rgba(120, 104, 255, 0.16));
    filter: blur(0.5px);
}

.showcase__topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 69px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
}

.showcase__dots {
    display: flex;
    gap: 7px;
}

.showcase__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #424752;
}

.showcase__dots span:nth-child(1) {
    background: #ff6b6b;
}

.showcase__dots span:nth-child(2) {
    background: #ffd166;
}

.showcase__dots span:nth-child(3) {
    background: var(--accent);
}

.showcase__filename,
.showcase__branch {
    color: #7d838f;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
}

.showcase__branch {
    justify-self: end;
    color: #a8adb7;
}

.code {
    padding: clamp(33px, 4vw, 58px) clamp(24px, 4vw, 54px);
    font-family: var(--font-mono);
    font-size: clamp(11px, 0.87vw, 15px);
    line-height: 2;
    overflow: hidden;
}

.code__line {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    min-width: max-content;
    color: #cdd0d6;
}

.code__number {
    color: #4e5460;
    user-select: none;
}

.code__indent {
    padding-left: 24px;
}

.code__indent--double {
    padding-left: 48px;
}

.code i {
    color: #c792ea;
    font-style: normal;
}

.code em {
    color: #c3e88d;
    font-style: normal;
}

.code b {
    color: #89ddff;
    font-weight: 400;
}

.code strong {
    color: #ffcb6b;
    font-weight: 400;
}

.code__caret {
    display: inline-block;
    width: 8px;
    height: 18px;
    margin-left: 5px;
    vertical-align: -3px;
    background: var(--accent);
    animation: caret 1s steps(1) infinite;
}

.showcase__footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.showcase__metric {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 94px;
    padding: 18px;
    border-right: 1px solid var(--line);
}

.showcase__metric:last-child {
    border-right: 0;
}

.showcase__metric strong {
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 20px;
}

.showcase__metric span {
    color: #777d89;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.showcase__metric--accent span:last-child {
    color: #b8bdc6;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    color: #b9bdc6;
    background: rgba(14, 17, 26, 0.84);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
}

.floating-card__icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    color: var(--accent);
    background: var(--accent-soft);
    font-size: 17px;
}

.floating-card--speed {
    top: 23%;
    right: -55px;
    animation: float 5s ease-in-out infinite;
}

.floating-card--detail {
    bottom: 18%;
    left: -68px;
    animation: float 6s 0.8s ease-in-out infinite reverse;
}

.footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 78px;
    border-top: 1px solid var(--line);
    color: #6f7480;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer__center {
    text-align: center;
}

.footer__link {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #aeb2bb;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--accent);
}

.footer__link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.footer__link:hover svg {
    transform: translate(2px, -2px);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
}

body.is-loaded .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

body.is-loaded .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

body.is-loaded .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

body.is-loaded .reveal:nth-child(5) {
    transition-delay: 0.32s;
}

body.is-loaded .showcase.reveal {
    transition-delay: 0.16s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

@keyframes caret {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes orbOne {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-100px, 90px, 0) scale(1.15); }
}

@keyframes orbTwo {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(120px, -80px, 0) scale(0.9); }
}

@media (max-width: 1300px) {
    .hero__content {
        grid-template-columns: minmax(0, 1fr) minmax(430px, 0.84fr);
        gap: 70px;
    }

    .intro__title {
        font-size: clamp(52px, 5.85vw, 76px);
    }

    .floating-card--speed {
        right: -22px;
    }

    .floating-card--detail {
        left: -30px;
    }
}

.site-notice {
    position: fixed;
    left: 50%;
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 1000;
    padding: 11px 16px;
    border: 1px solid rgba(116, 255, 176, 0.28);
    border-radius: 999px;
    background: rgba(12, 16, 24, 0.92);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.32);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, 12px, 0);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-notice.is-visible {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
}

@media (max-width: 1100px) {
    .hero {
        display: block;
        min-height: 100svh;
    }

    .header {
        min-height: 92px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 68px;
        padding-top: 74px;
        padding-bottom: 78px;
    }

    .intro {
        max-width: 830px;
    }

    .showcase {
        max-width: 100%;
        justify-self: start;
    }

    .footer {
        min-height: 72px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .header {
        min-height: 78px;
    }

    .logo__mark {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .logo__text {
        display: none;
    }

    .header__status {
        padding: 10px 12px;
        font-size: 9px;
    }

    .hero__content {
        gap: 52px;
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .intro__eyebrow {
        margin-bottom: 23px;
        font-size: 10px;
    }

    .intro__title {
        font-size: clamp(46px, 14vw, 70px);
        line-height: 0.97;
        letter-spacing: -0.07em;
    }

    .intro__title-accent::after {
        bottom: -5px;
        height: 6px;
    }

    .intro__text {
        margin-top: 30px;
        font-size: 15px;
        line-height: 1.65;
    }

    .intro__services {
        gap: 8px;
        margin-top: 25px;
    }

    .intro__services span {
        padding: 9px 11px;
        font-size: 9px;
    }

    .intro__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
        margin-top: 31px;
    }

    .button {
        min-height: 58px;
        border-radius: 15px;
    }

    .socials {
        width: 100%;
    }

    .social {
        flex: 1;
        height: 50px;
        border-radius: 14px;
    }

    .showcase {
        width: 100%;
        margin: 0;
        border-radius: 23px;
    }

    .showcase__topbar {
        min-height: 57px;
        padding: 0 18px;
    }

    .code {
        padding: 28px 18px;
        font-size: 9px;
        line-height: 2.05;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .code::-webkit-scrollbar {
        display: none;
    }

    .code__line {
        grid-template-columns: 27px minmax(0, 1fr);
    }

    .code__indent {
        padding-left: 16px;
    }

    .code__indent--double {
        padding-left: 32px;
    }

    .showcase__footer {
        grid-template-columns: 1fr 1fr;
    }

    .showcase__metric {
        min-height: 78px;
        padding: 12px 9px;
    }

    .showcase__metric:nth-child(2) {
        border-right: 0;
    }

    .showcase__metric:nth-child(3) {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
    }

    .showcase__metric strong {
        font-size: 16px;
    }

    .showcase__metric span {
        font-size: 8px;
    }

    .floating-card {
        display: none;
    }

    .footer {
        grid-template-columns: 1fr auto;
        min-height: 70px;
    }

    .footer__center {
        display: none;
    }
}

@media (min-width: 431px) and (max-width: 680px) {
    .intro__title {
        font-size: clamp(44px, 10.1vw, 62px);
    }
}

@media (max-width: 430px) {
    .header__status span:last-child {
        max-width: 140px;
        line-height: 1.25;
    }

    .intro__title {
        font-size: 43px;
    }

    .intro__title-line:first-child {
        white-space: normal;
    }

    .intro__services span {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }

    .footer {
        font-size: 8px;
    }
}

@media (hover: none), (pointer: coarse) {
    .cursor-glow {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Contact page */
.contact-hero__content {
    display: grid;
    place-items: center;
    width: 100%;
    padding-top: clamp(44px, 6vh, 74px);
    padding-bottom: clamp(44px, 6vh, 74px);
}

.contact-panel {
    position: relative;
    width: min(100%, 820px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(19, 23, 34, 0.94), rgba(10, 13, 20, 0.95));
    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
}

.contact-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 10%, rgba(120, 104, 255, 0.13), transparent 32%),
        radial-gradient(circle at 14% 95%, rgba(182, 255, 59, 0.08), transparent 31%);
}

.contact-panel__topbar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 62px;
    padding: 0 22px;
    border-bottom: 1px solid var(--line);
    color: #7d838f;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-panel__topbar > span:last-child {
    justify-self: end;
    color: var(--accent);
}

.contact-panel__body {
    position: relative;
    z-index: 1;
    padding: clamp(36px, 5vw, 62px);
    text-align: center;
}

.contact-panel__mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 28px;
    padding: 0 0 3px;
    border: 1px solid rgba(182, 255, 59, 0.36);
    border-radius: 17px;
    color: var(--bg);
    background: var(--accent);
    box-shadow: 0 0 42px rgba(182, 255, 59, 0.16);
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.12em;
    text-indent: -0.12em;
}

.contact-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-panel__eyebrow span {
    width: 24px;
    height: 1px;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

.contact-panel__title {
    margin: 0;
    font-size: clamp(45px, 6vw, 74px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.contact-panel__title em {
    color: var(--accent);
    font-style: normal;
    text-shadow: 0 0 36px rgba(182, 255, 59, 0.13);
}

.contact-panel__text {
    max-width: 590px;
    margin: 26px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.contact-options {
    display: grid;
    gap: 12px;
    max-width: 620px;
    margin: 36px auto 0;
    text-align: left;
}

.contact-option {
    position: relative;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 16px;
    min-height: 78px;
    padding: 13px 17px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-option::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(90deg, rgba(182, 255, 59, 0.07), transparent 55%);
    transition: opacity 0.25s ease;
}

.contact-option:hover {
    border-color: rgba(182, 255, 59, 0.28);
    background: rgba(182, 255, 59, 0.045);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.contact-option:hover::before {
    opacity: 1;
}

.contact-option__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    color: #d8dbe1;
    background: rgba(255, 255, 255, 0.055);
}

.contact-option--telegram .contact-option__icon {
    color: var(--accent);
    background: rgba(182, 255, 59, 0.1);
}

.contact-option__icon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.contact-option:last-child .contact-option__icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-option__content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.contact-option__content strong,
.contact-option__content small {
    display: block;
}

.contact-option__content strong {
    color: #eef0f3;
    font-size: 15px;
    font-weight: 700;
}

.contact-option__content small {
    margin-top: 5px;
    color: #7f8590;
    font-size: 11px;
    line-height: 1.4;
}

.contact-option__arrow {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #8f95a0;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-option:hover .contact-option__arrow {
    border-color: rgba(182, 255, 59, 0.24);
    color: var(--accent);
    transform: translate(2px, -2px);
}

.contact-option__arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-panel__hint {
    margin: 25px 0 0;
    color: #606672;
    font-family: var(--font-mono);
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-footer .footer__link svg {
    transform: rotate(-90deg);
}

.contact-footer .footer__link:hover svg {
    transform: rotate(-90deg) translate(2px, -2px);
}

@media (max-width: 767px) {
    .contact-hero__content {
        padding-top: 38px;
        padding-bottom: 46px;
    }

    .contact-panel {
        border-radius: 23px;
    }

    .contact-panel__topbar {
        min-height: 55px;
        padding: 0 17px;
        font-size: 8px;
    }

    .contact-panel__body {
        padding: 32px 18px 30px;
    }

    .contact-panel__mark {
        width: 50px;
        height: 50px;
        margin-bottom: 23px;
        border-radius: 15px;
        font-size: 21px;
    }

    .contact-panel__eyebrow {
        margin-bottom: 16px;
        font-size: 9px;
    }

    .contact-panel__title {
        font-size: clamp(40px, 12vw, 58px);
    }

    .contact-panel__text {
        margin-top: 22px;
        font-size: 14px;
    }

    .contact-options {
        gap: 10px;
        margin-top: 28px;
    }

    .contact-option {
        grid-template-columns: 44px minmax(0, 1fr) 30px;
        gap: 12px;
        min-height: 70px;
        padding: 11px 12px;
        border-radius: 16px;
    }

    .contact-option__icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .contact-option__icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-option__content strong {
        font-size: 13px;
    }

    .contact-option__content small {
        margin-top: 3px;
        font-size: 9px;
    }

    .contact-option__arrow {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

    .contact-panel__hint {
        margin-top: 21px;
        font-size: 8px;
    }
}

@media (max-width: 430px) {
    .contact-page .header__status span:last-child {
        max-width: 150px;
    }

    .contact-panel__title {
        font-size: 39px;
    }

    .contact-option__content small {
        max-width: 190px;
    }
}

/* Contact page: standalone layout */
.contact-page .contact-hero {
    grid-template-rows: 1fr;
}

.contact-page .contact-hero__content {
    min-height: 100svh;
}

.contact-panel__mark,
.contact-panel__eyebrow {
    display: none;
}

.contact-option__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-option--telegram .contact-option__icon {
    color: #2aabee;
    background: rgba(42, 171, 238, 0.12);
}

.contact-option--telegram .contact-option__icon svg {
    fill: currentColor;
    stroke: none;
}

.contact-option--whatsapp .contact-option__icon {
    color: #25d366;
    background: rgba(37, 211, 102, 0.11);
}

.contact-option--whatsapp .contact-option__icon svg {
    fill: currentColor;
    stroke: none;
}

.contact-option--email .contact-option__icon {
    color: #e8ebf0;
    background: rgba(232, 235, 240, 0.07);
}

.contact-option--email .contact-option__icon svg {
    fill: none;
    stroke: currentColor;
}

@media (max-width: 767px) {
    .contact-option__icon svg {
        width: 22px;
        height: 22px;
    }
}
