:root {
    --bg: #050505;
    --bg-elevated: #0c0c0c;
    --text: #f5f5f0;
    --text-dim: #888;
    --text-muted: #444;
    --accent: #cdff50;
    --accent-dim: rgba(205, 255, 80, 0.1);
    --accent-mid: rgba(205, 255, 80, 0.3);
    --border: rgba(255, 255, 255, 0.08);

    --font: Arial, Helvetica, sans-serif;
    --mono: Arial, Helvetica, sans-serif;

    --fast: 0.2s ease;
    --smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav.scrolled::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: -1;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-text {
    display: flex;
    line-height: 1;
}

.nav__logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.nav__logo-sub {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-top: 1px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.5;
    transition: var(--smooth);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateX(-50%) scale(0);
    transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav__link:hover {
    opacity: 1;
}

.nav__link.active {
    opacity: 1;
}

.nav__link:hover::after {
    transform: translateX(-50%) scale(1);
}

.nav__link.active::after {
    transform: translateX(-50%) scale(1);
    background: var(--accent);
}

.nav__cta-wrapper {
    width: 150px;
    text-align: right;
}

.btn__text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn__text-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    white-space: nowrap;
}

.nav__cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 40px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    background: #fff;
    color: var(--bg);
    border: 1px solid #fff;
    border-radius: 100px;
    overflow: hidden;

    box-shadow: 0 4px 0px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s;
}

.nav__cta::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 150%;
    width: 250px;
    height: 250px;
    background: var(--accent);
    border-radius: 38%;
    animation: liquid-spin 4s linear infinite;
    z-index: -1;
    transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes liquid-spin {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.nav__cta:hover::before {
    top: -100px;
}

.nav__cta .btn__text,
.nav__cta .btn__text-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    white-space: nowrap;
}

.nav__cta .btn__text {
    transform: translateY(0);
}

.nav__cta .btn__text-hover {
    transform: translateY(100%);
    color: var(--bg);
}

.nav__cta:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 0px #8eb91c;
}

.nav__cta:hover .btn__text {
    transform: translateY(-100%);
}

.nav__cta:hover .btn__text-hover {
    transform: translateY(0);
}

.nav__cta:active {
    transform: translateY(2px);
    box-shadow: 0 0px 0px #8eb91c;
    transition: transform 0.1s, box-shadow 0.1s;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--fast);
    transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
    display: contents;
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(5, 5, 5, 0.6) 50%,
            var(--bg) 100%);
    pointer-events: none;
    z-index: 10;
}

.hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px clamp(1.5rem, 5vw, 4rem) 60px;
    position: relative;
    z-index: 2;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero__tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.hero__heading {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.hero__heading em {
    font-style: normal;
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero__heading s {
    text-decoration: none;
    color: var(--text-muted);
    position: relative;
}

.hero__heading s::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 55%;
    height: 3px;
    background: var(--text-muted);
    border-radius: 2px;
}

.hero__desc {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 3rem;
}

.hero__desc strong {
    color: var(--text);
    font-weight: 600;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-main {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--accent);
    padding: 0 40px;
    height: 60px;
    border-radius: 100px;
    border: 1px solid var(--accent);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: box-shadow 0.5s ease;
}

.btn-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg);
    z-index: -1;
    clip-path: circle(0% at var(--x, 50%) var(--y, 150%));
    transition: clip-path 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-main:hover {
    box-shadow: 0 10px 40px var(--accent-dim);
}

.btn-main:hover::before {
    clip-path: circle(200% at var(--x, 50%) var(--y, 150%));
}

.btn-main:hover .btn__text {
    transform: translateY(-150%);
}

.btn-main:hover .btn__text-hover {
    transform: translateY(0);
    color: var(--accent);
}

.btn-main:active {
    transform: scale(0.96);
    transition: transform 0.1s;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding-bottom: 2px;
}

.btn-link:hover {
    color: var(--text);
    letter-spacing: 0.01em;
}

.hero__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.hero__logo-bg {
    position: absolute;
    width: 250%;
    height: 250%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.mockups-aspect-box {

    width: min(130%, calc((100svh - 80px) * 800 / 580));
    aspect-ratio: 800 / 580;
    position: relative;
    margin: 0;
    transform: translateX(15%);
}

.mockups-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 580px;

    transform-origin: top left;
    z-index: 5;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.mockup-macbook-img,
.mockup-iphone-img {
    position: absolute;
    display: block;
}

.mockup-macbook-img {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.mockup-macbook-img .device-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.mockup-macbook-img .device-screen {
    position: absolute;
    top: 3%;
    left: 8%;
    width: 84%;
    height: 90%;
    background: #111;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.browser-frame-mac {
    padding: 6px 20px;
    display: flex;
    align-items: center;
}

.browser-frame-mac__dots {
    display: flex;
    gap: 4px;
    margin-right: 16px;
}

.browser-frame-mac__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    opacity: 0.5;
}

.browser-frame-mac__addressbar {
    background: #111;
    border-radius: 4px;
    padding: 3px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 0.5rem;
    color: #888;
    flex: 1;
    max-width: 200px;
    margin: 0 auto;
}

.mockup-iphone-img {
    bottom: -40px;
    left: -80px;
    width: 250px;
    z-index: 10;
}

.mockup-iphone-img .device-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.mockup-iphone-img .device-screen {
    position: absolute;
    top: 3%;
    left: 4.5%;
    width: 91%;
    height: 95%;
    background: #111;
    z-index: 1;
    border-radius: 8%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ios-status-bar {
    height: 30px;
    flex-shrink: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    font-family: var(--font);
    font-size: 0.6rem;
    font-weight: 600;
    color: #fff;
    background: #242424;
    pointer-events: none;
}

.ios-time {
    padding-left: 2px;
}

.ios-icons {
    padding-right: 2px;
    display: flex;
    align-items: center;
}

.ios-safari-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px 10px 15px;
    z-index: 5;
}

.ios-safari-bar {
    height: 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 0.65rem;
    color: #ddd;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.browser-frame-ios__bottomline {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    z-index: 6;
}

.device-screen-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: opacity 0.3s;
    opacity: 1;
    position: relative;
    z-index: 2;
}

.placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    font-family: var(--mono);
    line-height: 1.5;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.content-img[src]:not([src=""])+.placeholder-text {
    display: none;
}

.hero__corner {
    position: absolute;
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    z-index: 2;
}

.hero__corner--tl {
    top: 90px;
    left: clamp(1.5rem, 5vw, 4rem);
}

.hero__corner--br {
    bottom: 80px;
    right: clamp(1.5rem, 5vw, 4rem);
    text-align: right;
}

.hero__status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 3rem;
}

.hero__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.projects-hero {
    padding: clamp(7rem, 14vw, 12rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
    position: relative;
}

.projects-hero__inner {
    max-width: 680px;
}

.projects-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.projects-hero__tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.projects-hero__heading {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.projects-hero__heading em {
    font-style: normal;
    color: var(--accent);
}

.projects-hero__desc {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 560px;
}

.projects-section {
    padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(5rem, 10vw, 8rem);
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.project-card {
    background: var(--bg-elevated);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: background var(--smooth);
}

.project-card:hover {
    background: #101010;
}

.project-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a0a;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    filter: brightness(0.9);
}

.project-card:hover .project-card__image img {
    filter: brightness(1);
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card__link:hover .project-card__overlay {
    opacity: 1;
}

.project-card__visit {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 100px;
    padding: 8px 20px;
}

.project-card__image--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.project-card__logo-bg {
    position: absolute;
    width: 75%;
    height: 75%;
    opacity: 0.05;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card__placeholder {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.project-card__body {
    padding: clamp(1.5rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.project-card__meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-card__tag {
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2px 8px;
}

.project-card__title {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
}

.project-card__desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.65;
    flex: 1;
}

.project-card__footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

.project-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color var(--smooth), gap var(--smooth);
}

.project-card__cta svg {
    transition: transform var(--smooth);
}

.project-card__cta:hover {
    color: var(--text);
    gap: 14px;
}

.project-card__cta:hover svg {
    transform: translateX(4px);
}

.project-card__cta--muted {
    color: var(--text-muted);
    cursor: default;
    letter-spacing: 0.04em;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-card--cta {
    background: var(--accent);
    color: var(--bg);
}

.project-card--cta:hover {
    background: var(--accent);
    filter: brightness(1.05);
}

.project-card__body--cta {
    justify-content: center;
    align-items: flex-start;
    min-height: 320px;
    gap: 1.25rem;
    padding: clamp(2rem, 3.5vw, 3rem);
}

.project-card__cta-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-card__cta-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
}

.project-card__cta-heading {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--bg);
}

.project-card__cta-heading em {
    font-style: normal;
    opacity: 0.65;
}

.project-card__cta-desc {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.65;
    flex: 1;
}

.project-card--cta .btn-main {
    border: 1px solid var(--bg);
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .project-card--cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card--cta {
        grid-column: auto;
    }
}

.services {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) clamp(5rem, 10vw, 9rem);
    position: relative;

    margin-top: -80px;
    z-index: 1;
    padding-top: 80px;
}

.services__header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.services__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.services__heading {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.services__heading em {
    font-style: normal;
    color: var(--accent);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: clamp(2rem, 3.5vw, 3rem);
    background: var(--bg-elevated);
    position: relative;
    transition: background var(--smooth);
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 180% 120% at 50% 110%, var(--accent-dim) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--smooth);
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card__number {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    line-height: 1;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color var(--smooth), color var(--smooth), transform var(--smooth);
}

.service-card:hover .service-card__icon {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.06);
}

.service-card__title {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.service-card__desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-dim);
    flex-grow: 1;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-dim);
}

.service-card__list li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
    transition: opacity var(--smooth);
}

.service-card:hover .service-card__list li::before {
    opacity: 1;
}

.service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    transition: color var(--smooth), gap var(--smooth);
}

.service-card__cta svg {
    transition: transform var(--smooth);
}

.service-card:hover .service-card__cta {
    color: var(--text);
    gap: 14px;
}

.service-card:hover .service-card__cta svg {
    transform: translateX(4px);
}

.service-card--accent {
    background: var(--accent);
    color: var(--bg);
}

.service-card--accent .service-card__number {
    color: rgba(0, 0, 0, 0.35);
}

.service-card--accent .service-card__icon {
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--bg);
    background: rgba(0, 0, 0, 0.06);
}

.service-card--accent:hover .service-card__icon {
    border-color: rgba(0, 0, 0, 0.4);
    color: var(--bg);
    transform: scale(1.06);
}

.service-card--accent::after {
    background: radial-gradient(ellipse 180% 120% at 50% 110%, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
}

.service-card--accent .service-card__title {
    color: var(--bg);
}

.service-card--accent .service-card__desc {
    color: rgba(0, 0, 0, 0.6);
}

.service-card--accent .service-card__list li {
    color: rgba(0, 0, 0, 0.65);
}

.service-card--accent .service-card__list li::before {
    background: var(--bg);
    opacity: 0.5;
}

.service-card--accent:hover .service-card__list li::before {
    opacity: 0.9;
}

.service-card--accent .service-card__cta {
    color: rgba(0, 0, 0, 0.5);
    border-top-color: rgba(0, 0, 0, 0.12);
}

.service-card--accent:hover .service-card__cta {
    color: var(--bg);
}

.svc-hero,
.svc-block {
    position: relative;
}

.svc-hero {
    padding: clamp(10rem, 18vw, 14rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
    text-align: center;
    z-index: 1;

    counter-reset: svc-num;
}

.svc-hero__heading {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.svc-hero__heading em {
    font-style: normal;
    color: var(--accent);
}

.svc-hero__desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 520px;
    margin: 1.5rem auto 0;
}

.svc-block {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
    counter-increment: svc-num;
    overflow: hidden;
}

.svc-block::before {
    content: "0" counter(svc-num);
    position: absolute;
    right: clamp(1.5rem, 5vw, 4rem);
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(14rem, 28vw, 26rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.05);
    text-stroke: 1.5px rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.svc-block--reversed::before {
    right: auto;
    left: clamp(1.5rem, 5vw, 4rem);
}

.svc-block::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(205, 255, 80, 0.18) 30%,
            rgba(205, 255, 80, 0.25) 50%,
            rgba(205, 255, 80, 0.18) 70%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.svc-block--reversed::after {
    right: auto;
    left: 0;
}

.svc-block__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.svc-block--reversed .svc-block__inner {
    direction: rtl;
}

.svc-block--reversed .svc-block__inner>* {
    direction: ltr;
}

.svc-block--reversed .svc-block__content {
    text-align: right;
}

.svc-block--reversed .svc-block__desc {
    margin-left: auto;
    margin-right: 0;
}

.svc-block--reversed .svc-block__list {
    align-items: flex-end;
}

.svc-block--reversed .svc-block__list li {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.svc-block--reversed .svc-block__cta {
    flex-direction: row-reverse;
}

.svc-block--reversed .svc-block__cta svg {
    transform: scaleX(-1);
}

.svc-block__number {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.25rem;
    opacity: 0.7;
}

.svc-block__heading {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}

.svc-block__heading em {
    font-style: normal;
    color: var(--accent);
}

.svc-block__desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 480px;
    margin-bottom: 2rem;
}

.svc-block__list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.svc-block__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
}

.svc-block__list li svg {
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.8;
}

.svc-block__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 14px 28px;
    border: 1px solid rgba(205, 255, 80, 0.25);
    border-radius: 100px;
    transition: background var(--smooth), gap var(--smooth), border-color var(--smooth);
}

.svc-block__cta:hover {
    background: rgba(205, 255, 80, 0.08);
    border-color: rgba(205, 255, 80, 0.5);
    gap: 16px;
}

.svc-block__cta svg {
    transition: transform var(--smooth);
}

.svc-block__cta:hover svg {
    transform: translateX(4px);
}

.svc-block--reversed .svc-block__cta:hover svg {
    transform: scaleX(-1) translateX(4px);
}

.svc-block__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--left {
    transform: translateX(-40px);
}

.reveal--right {
    transform: translateX(40px);
}

.reveal--delay-1 {
    transition-delay: 0.15s;
}

.reveal--delay-2 {
    transition-delay: 0.3s;
}

.reveal:not(.reveal--left):not(.reveal--right) {
    transform: translateY(30px);
}

.reveal.revealed {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

@media (max-width: 890px) {
    .svc-block__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .svc-block--reversed .svc-block__inner {
        direction: ltr;
    }

    .svc-block__visual {
        order: -1;
    }

    .svc-block__desc {
        max-width: 100%;
    }

    .svc-hero__heading {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .reveal--left,
    .reveal--right {
        transform: translateY(30px);
    }

    .svc-visual {
        max-width: 360px;
    }
}

.svc-visual {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    overflow: hidden;
    position: relative;
}

.svc-browser__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.svc-browser__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.svc-browser__dot:first-child {
    background: #ff5f57;
}

.svc-browser__dot:nth-child(2) {
    background: #febc2e;
}

.svc-browser__dot:nth-child(3) {
    background: #28c840;
}

.svc-browser__url {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 14px;
    border-radius: 6px;
}

.svc-browser__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 220px;
}

.svc-browser__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
}

.svc-browser__logo {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 4px;
    opacity: 0.8;
}

.svc-browser__links {
    display: flex;
    gap: 8px;
}

.svc-browser__links span {
    width: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.svc-browser__profile {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.svc-browser__main {
    display: flex;
    gap: 12px;
    flex: 1;
}

.svc-browser__sidebar {
    width: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 12px;
}

.svc-browser__sidebar-item {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.svc-browser__sidebar-item.active {
    background: var(--accent);
    opacity: 0.6;
}

.svc-browser__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-browser__hero {
    background: rgba(205, 255, 80, 0.03);
    border: 1px solid rgba(205, 255, 80, 0.08);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.svc-browser__line {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 6px;
}

.svc-browser__line--h1 {
    width: 60%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
}

.svc-browser__line--p {
    width: 40%;
}

.svc-browser__hero-btn {
    width: 40px;
    height: 14px;
    background: var(--accent);
    border-radius: 100px;
    opacity: 0.8;
}

.svc-browser__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.svc-browser__stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-browser__stat-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: rgba(205, 255, 80, 0.1);
    flex-shrink: 0;
}

.svc-browser__lines {
    flex: 1;
}

.svc-browser__line--lg {
    width: 80%;
    background: rgba(255, 255, 255, 0.3);
}

.svc-browser__line--sm {
    width: 40%;
}

.svc-browser__table {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.svc-browser__table-row {
    height: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2px;
}

.svc-browser__table-row.header {
    background: rgba(255, 255, 255, 0.05);
}

.svc-terminal__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.svc-terminal__title {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.svc-terminal__body {
    padding: 20px 16px;
    font-family: var(--mono);
    font-size: 0.78rem;
    line-height: 1.8;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.svc-terminal__line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-terminal__prompt {
    color: var(--accent);
    flex-shrink: 0;
    font-weight: 700;
}

.svc-terminal__cmd {
    color: var(--text);
}

.svc-terminal__line--output {
    padding-left: 20px;
}

.svc-terminal__text {
    color: var(--text-dim);
}

.svc-terminal__line--success .svc-terminal__text {
    color: var(--accent);
}

.svc-terminal__cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    background: var(--accent);
    animation: svc-blink 1s step-end infinite;
}

@keyframes svc-blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.svc-visual--compare {
    position: relative;
    display: flex;
    min-height: 380px;
    cursor: col-resize;
    user-select: none;
    border-radius: 16px;
    overflow: hidden;
}

.svc-compare__before {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    z-index: 2;

    transition: width 0.05s linear;
}

.svc-compare__after {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.svc-compare__label {
    position: absolute;
    top: 12px;
    font-family: var(--mono);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    z-index: 3;
    padding: 3px 8px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-compare__before .svc-compare__label {
    left: 12px;
}

.svc-compare__after .svc-compare__label {
    right: 12px;
}

.svc-compare__site {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
}

.svc-compare__site--old {
    background: #e8e6e1;

}

.svc-old__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a3a6b;
    padding: 8px 12px;
    border-bottom: 3px solid #c8a400;
}

.svc-old__logo {
    width: 44px;
    height: 16px;
    background: #fff;
    opacity: 0.9;
    border-radius: 1px;
}

.svc-old__menu {
    display: flex;
    gap: 4px;
}

.svc-old__menu span {
    width: 28px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.svc-old__body {
    display: flex;
    gap: 0;
    flex: 1;
    padding: 10px;
    gap: 8px;
}

.svc-old__sidebar {
    width: 28%;
    border: 1px solid #b0b0b0;
    padding: 8px 6px;
    background: #d4d0c8;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 2px;
}

.svc-old__link {
    height: 22px;
    background: #1a3a6b;
    margin-bottom: 2px;
    border-radius: 1px;
    opacity: 0.8;
}

.svc-old__link:first-child {
    opacity: 1;
}

.svc-old__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #fff;
    border: 1px solid #b0b0b0;
    padding: 8px;
    border-radius: 2px;
}

.svc-old__title {
    height: 18px;
    background: #1a3a6b;
    width: 75%;
    border-radius: 1px;
}

.svc-old__text {
    height: 6px;
    background: #888;
    width: 95%;
    border-radius: 1px;
}

.svc-old__text.short {
    width: 65%;
}

.svc-old__button {
    height: 22px;
    width: 70px;
    background: linear-gradient(to bottom, #3a6abf, #1a3a6b);
    border: 2px outset #5a8ae0;
    border-radius: 2px;
    margin-top: 4px;
}

.svc-old__table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 6px;
    border: 1px solid #b0b0b0;
    background: #b0b0b0;
}

.svc-old__tr {
    height: 12px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.svc-old__tr:first-child {
    background: #1a3a6b;
    height: 14px;
}

.svc-compare__site--new {
    background: var(--bg);
    padding: 0;
}

.svc-new__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
}

.svc-new__logo {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(205, 255, 80, 0.4);
}

.svc-new__menu {
    display: flex;
    gap: 10px;
}

.svc-new__menu span {
    width: 22px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.svc-new__body {
    display: flex;
    gap: 0;
    flex: 1;
    padding: 12px;
    gap: 10px;
}

.svc-new__sidebar {
    width: 18%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 10px;
}

.svc-new__link {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.svc-new__link.active {
    background: var(--accent);
    box-shadow: 0 0 6px rgba(205, 255, 80, 0.3);
}

.svc-new__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-new__hero {
    background: rgba(205, 255, 80, 0.04);
    border: 1px solid rgba(205, 255, 80, 0.12);
    border-radius: 8px;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.svc-new__hero::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(205, 255, 80, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.svc-new__title {
    height: 10px;
    width: 55%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    margin-bottom: 6px;
}

.svc-new__text {
    height: 5px;
    width: 75%;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    margin-bottom: 10px;
}

.svc-new__button {
    height: 20px;
    width: 70px;
    background: var(--accent);
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(205, 255, 80, 0.25);
}

.svc-new__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.svc-new__card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.svc-new__card-icon {
    width: 18px;
    height: 18px;
    background: rgba(205, 255, 80, 0.12);
    border-radius: 4px;
    border: 1px solid rgba(205, 255, 80, 0.2);
    flex-shrink: 0;
}

.svc-new__card-line {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.svc-compare__divider {
    position: absolute;
    left: 53.5%;
    top: 0;
    bottom: 0;
    width: 3px;
    z-index: 5;
    transform: translateX(-50%);
    cursor: col-resize;

    padding: 0 16px;
    margin: 0 -16px;
}

.svc-compare__divider-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--accent) 15%,
            var(--accent) 85%,
            transparent 100%);
    opacity: 0.7;
    margin: 0 auto;
    transition: opacity var(--fast);
    box-shadow: 0 0 8px rgba(205, 255, 80, 0.3);
}

.svc-compare__divider:hover .svc-compare__divider-line,
.svc-compare__divider:active .svc-compare__divider-line {
    opacity: 1;
    box-shadow: 0 0 14px rgba(205, 255, 80, 0.5);
}

.svc-compare__divider-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(205, 255, 80, 0.3), 0 2px 12px rgba(0, 0, 0, 0.6);
    transition: transform var(--fast), box-shadow var(--fast);
}

.svc-compare__divider:hover .svc-compare__divider-knob,
.svc-compare__divider:active .svc-compare__divider-knob {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 24px rgba(205, 255, 80, 0.5), 0 2px 16px rgba(0, 0, 0, 0.6);
}

.contact-section {
    padding: clamp(8rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem);
    position: relative;
}

.contact-section__header {
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

.contact-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.contact-section__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.contact-section__heading {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.contact-section__heading em {
    font-style: normal;
    color: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form__label {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    margin-left: 10px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.contact-form__input,
.contact-form__textarea {
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    background: #141414;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 16px 20px;
    outline: none;
    transition: background var(--smooth), border-color var(--smooth);
    width: 100%;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: var(--text-muted);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    background: #1a1a1a;
    border-color: var(--accent);
}

.contact-form__textarea {
    min-height: 165px;
    resize: none;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form__submit {
    margin-top: 0.5rem;
    align-self: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info__block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info__title {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info__title::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #141414;
    border: 1px solid transparent;
    border-radius: 16px;
    transition: background var(--smooth);
}

.contact-info__item:hover {
    background: #141414;
    border-color: var(--accent);
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}

.contact-info__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info__value {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    transition: color var(--fast);
}

.contact-info__item:hover .contact-info__value {
    color: var(--text);
}

.contact-info__socials {
    display: flex;
    gap: 0.75rem;
}

.contact-info__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: #141414;
    color: var(--text-dim);
    transition: background var(--smooth), color var(--smooth), border-color var(--smooth);
}

.contact-info__social:hover {
    background: #141414;
    border-color: var(--accent);
    color: var(--text);
}

.contact-form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-form__success.visible {
    display: flex;
}

.contact-form__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    animation: success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes success-pop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.contact-form__success-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-form__success-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.contact-form__error {
    padding: 0.85rem 1.1rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 80, 80, 0.35);
    border-radius: 8px;
    background: rgba(255, 60, 60, 0.07);
    color: #ff8a8a;
    font-size: 0.875rem;
    line-height: 1.55;
}

.contact-form__error a {
    color: #ffaaaa;
    text-decoration: underline;
}

@media (max-width: 1600px) {
    .hero__logo-bg {
        width: 350%;
        height: 350%;
        left: 75%;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero__right {
        display: flex;
        padding: 0 clamp(1.5rem, 5vw, 4rem) 3rem;
        justify-content: center;
    }

    .hero__logo-bg {
        width: 250%;
        height: 250%;
    }

    .mockups-aspect-box {
        width: 100%;
        max-width: 100%;
        transform: none;
    }

    .mockup-iphone-img {
        display: none;
    }

    .hero__corner {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card--accent {
        grid-column: 1 / -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 890px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        display: flex;
        position: fixed;
        inset: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 5;
    }

    .nav__menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav {
        mix-blend-mode: normal;
    }

    .nav__links {
        flex-direction: column;
        gap: 20px;
    }

    .nav__link {
        font-size: 1.4rem;
        padding: 14px 0;
        opacity: 0.7;
        text-transform: none;
    }

    .nav__link::after {
        display: none;
    }

    .nav__link:hover {
        color: var(--accent);
    }

    .nav__cta {
        margin-top: 2rem;
        font-size: 1rem;
        padding: 14px 36px;
    }

    .hero__left {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .hero__heading {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
    }

    .hero__right {
        padding-bottom: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__marquee-item {
        font-size: 0.75rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card--accent {
        grid-column: auto;
    }
}

@media (max-width: 890px) {
    .mockups-aspect-box {
        display: none;

    }

    .hero__right {
        position: absolute;
        inset: 0;
        padding: 0;
        z-index: 0;
        pointer-events: none;
    }

    .hero__logo-bg {
        width: 320%;
        height: 320%;
        left: 70%;

        opacity: 0.4;

    }
}

@media (max-width: 480px) {
    .hero__heading {
        font-size: 2.2rem;
    }
}

.footer {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem) 2rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

@property --cone-spread {
    syntax: '<angle>';
    initial-value: 28deg;
    inherits: true;
}

@property --glow-brightness {
    syntax: '<number>';
    initial-value: 1;
    inherits: false;
}

.footer {
    --cone-spread: 28deg;
}

.footer--hovered {
    --cone-spread: 20deg;
}

.footer__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    height: 500px;
    pointer-events: none;
    z-index: 0;

    background:

        conic-gradient(from 0deg at 50% 0%,
            transparent 0deg,
            transparent calc(180deg - var(--cone-spread) - 18deg),
            rgba(205, 255, 80, 0.008) calc(180deg - var(--cone-spread) - 10deg),
            rgba(205, 255, 80, 0.03) calc(180deg - var(--cone-spread) - 2deg),
            rgba(205, 255, 80, 0.08) calc(180deg - var(--cone-spread) + 6deg),
            rgba(205, 255, 80, 0.14) calc(180deg - 8deg),
            rgba(205, 255, 80, 0.18) 180deg,
            rgba(205, 255, 80, 0.14) calc(180deg + 8deg),
            rgba(205, 255, 80, 0.08) calc(180deg + var(--cone-spread) - 6deg),
            rgba(205, 255, 80, 0.03) calc(180deg + var(--cone-spread) + 2deg),
            rgba(205, 255, 80, 0.008) calc(180deg + var(--cone-spread) + 10deg),
            transparent calc(180deg + var(--cone-spread) + 18deg),
            transparent 360deg),

        radial-gradient(ellipse 30% 65% at 50% 50%,
            rgba(205, 255, 80, 0.06) 0%,
            rgba(205, 255, 80, 0.02) 60%,
            transparent 100%),

        radial-gradient(ellipse 45% 75% at 50% 45%,
            rgba(205, 255, 80, 0.02) 0%,
            transparent 100%);

    -webkit-mask-image: linear-gradient(to bottom,
            white 0%,
            white 45%,
            rgba(255, 255, 255, 0.6) 70%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            white 0%,
            white 45%,
            rgba(255, 255, 255, 0.6) 70%,
            transparent 100%);

    filter: brightness(var(--glow-brightness));

    transition:
        --cone-spread 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        --glow-brightness 0.5s ease,
        height 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.5s ease;
    animation: spotlight-breathe 4s ease-in-out infinite alternate;
}

.footer--hovered .footer__glow {
    height: 350px;
    --glow-brightness: 1.6;
    animation-play-state: paused;
}

@keyframes spotlight-breathe {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.75;
    }
}

.footer__glow::before {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 80px;
    background: radial-gradient(ellipse 100% 100% at 50% 50%,
            rgba(205, 255, 80, 0.2) 0%,
            rgba(205, 255, 80, 0.06) 50%,
            transparent 100%);
    filter: blur(18px);
    transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer--hovered .footer__glow::before {
    width: 14%;
    opacity: 0.5;
}

.footer__cta {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.footer__heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.footer__heading em {
    font-style: normal;
    color: var(--accent);
}

.footer__btn {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--accent);
    padding: 0 40px;
    height: 60px;
    border-radius: 100px;
    border: 1px solid var(--accent);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__btn:hover {
    background-color: var(--bg);
    color: var(--accent);
    box-shadow: 0 10px 40px var(--accent-dim);
}

.footer__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__motto {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 300px;
}

.footer__title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.footer__links ul,
.footer__socials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer__link,
.footer__social-link {
    font-size: 0.95rem;
    color: var(--text-dim);
    transition: color var(--fast), transform var(--fast);
    display: inline-block;
}

.footer__link:hover,
.footer__social-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer__bottom {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    transition: color var(--fast);
}

.footer__legal a:hover {
    color: var(--text);
}

@media (max-width: 1024px) {
    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 2rem;
    }

    .footer {
        --cone-spread: 24deg;
    }

    .footer__glow {
        height: 400px;
        max-width: 700px;
    }

    .footer__glow::before {
        width: 60%;
        filter: blur(14px);
    }

    .footer__heading {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }
}

@media (max-width: 600px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer {
        --cone-spread: 30deg;
    }

    .footer__glow {
        height: 320px;
        max-width: 100%;
        opacity: 0.7;
    }

    .footer__glow::before {
        width: 70%;
        height: 50px;
        filter: blur(12px);
    }

    .footer--hovered .footer__glow {
        height: 280px;
    }

    .footer--hovered {
        --cone-spread: 20deg;
    }

    .footer__heading {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
}

.about-hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px clamp(1.5rem, 5vw, 4rem) 60px;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
    pointer-events: none;
    z-index: 2;
}

.about-hero__logo-bg {
    position: absolute;
    width: 130%;
    height: 130%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.about-hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.about-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
}

.about-hero__eyebrow::before,
.about-hero__eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.about-hero__heading {
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.about-hero__heading em {
    font-style: normal;
    color: var(--accent);
    display: inline-block;
    position: relative;
}

.about-hero__desc {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--text-dim);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

.about-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.about-hero__scroll span {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }
}

.about-manifesto {
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
    position: relative;
}

.about-manifesto__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.about-manifesto__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.about-manifesto__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.about-manifesto__heading {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    position: sticky;
    top: 120px;
}

.about-manifesto__heading em {
    font-style: normal;
    color: var(--accent);
}

.about-manifesto__text {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-manifesto__text:last-child {
    margin-bottom: 0;
}

.about-manifesto__quote {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0;
}

.about-manifesto__quote-text {
    color: var(--text);
    font-weight: 600;
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.about-manifesto__quote-author {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-style: normal;
    opacity: 0.7;
}

.about-values {
    padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
    position: relative;
}

.about-values__header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.about-values__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.about-values__eyebrow::before,
.about-values__eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.about-values__heading {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.about-values__heading em {
    font-style: normal;
    color: var(--accent);
}

.about-values__list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-val {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1rem, 2vw, 2rem);
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: all var(--smooth);
}

.about-val:first-child {
    border-top: 1px solid var(--border);
}

.about-val::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 0;
    width: 110%;
    height: 100%;
    background: radial-gradient(ellipse 60% 80% at 0% 50%, var(--accent-dim) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--smooth);
    pointer-events: none;
    z-index: 0;
}

.about-val.active::after {
    opacity: 1;
}

.about-val__number {
    font-size: clamp(4rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.08);
    text-stroke: 1.5px rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    min-width: 120px;
    text-align: center;
    transition: all var(--smooth);
    position: relative;
    z-index: 1;
    user-select: none;
}

.about-val.active .about-val__number {
    -webkit-text-stroke: 1.5px rgba(205, 255, 80, 0.35);
    text-stroke: 1.5px rgba(205, 255, 80, 0.35);
    text-shadow: 0 0 60px rgba(205, 255, 80, 0.15);
}

.about-val__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-val__title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
    transition: color var(--smooth);
}

.about-val.active .about-val__title {
    color: var(--accent);
}

.about-val__desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 520px;
}

.about-val__accent {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-muted);
    flex-shrink: 0;
    transition: border-color var(--smooth), color var(--smooth), transform var(--smooth);
    position: relative;
    z-index: 1;
}

.about-val.active .about-val__accent {
    border-color: var(--accent);
    color: var(--accent);
}

.about-process {
    padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
    position: relative;
}

.about-process__header {
    text-align: center;
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.about-process__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.about-process__eyebrow::before,
.about-process__eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.about-process__heading {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.about-process__heading em {
    font-style: normal;
    color: var(--accent);
}

.about-process__desc {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.about-process__timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-step {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
}

.about-step__connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
    padding-top: 6px;
}

.about-step__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    background: var(--bg);
    position: relative;
    z-index: 2;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    flex-shrink: 0;
}

.about-step__dot.active {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(205, 255, 80, 0.4), 0 0 4px rgba(205, 255, 80, 0.6);
}

.about-step__dot.active::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: var(--accent);
    animation: dot-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes dot-pop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.about-step__line {
    width: 2px;
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    min-height: 40px;
    transition: background 0.8s ease;
}

.about-step__line.active {
    background: linear-gradient(to bottom, var(--accent), rgba(205, 255, 80, 0.1));
}

.about-step:last-child .about-step__line {
    display: none;
}

.about-step__content {
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-step__number {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.about-step__title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.about-step__desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.75;
    max-width: 450px;
}

.about-stats {
    padding: clamp(12rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-stats__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-stat {
    text-align: center;
    position: relative;
}

.about-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.about-stat__number {
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text);
    display: inline;
}

.about-stat__suffix {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    display: inline;
    margin-left: 2px;
}

.about-stat__label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.75rem;
    letter-spacing: 0.02em;
}

.about-cta {
    padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(205, 255, 80, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: cta-glow-breathe 5s ease-in-out infinite alternate;
}

@keyframes cta-glow-breathe {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.about-cta__content {
    position: relative;
    z-index: 1;
}

.about-cta__heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.about-cta__heading em {
    font-style: normal;
    color: var(--accent);
}

.about-cta__desc {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto 2.5rem;
}

@media (max-width: 1024px) {
    .about-manifesto__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-manifesto__heading {
        position: static;
    }

    .about-val__number {
        font-size: clamp(3rem, 8vw, 4rem);
        min-width: 70px;
    }

    .about-val__accent {
        display: none;
    }

    .about-stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .about-stat:nth-child(2)::after {
        display: none;
    }

    .about-stat:not(:last-child)::after {
        right: -1rem;
    }

    .about-hero__logo-bg {
        width: 350%;
        height: 350%;
        top: 120%;
    }
}

@media (max-width: 600px) {
    .about-hero__heading {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .about-stats__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1rem;
    }

    .about-stat:not(:last-child)::after {
        display: none;
    }

    .about-hero__scroll {
        display: none;
    }

    .about-hero__logo-bg {
        width: 350%;
        height: 350%;
        top: 150%;
    }

    .about-cta__heading {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
}

body.demand {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg);
    font-family: var(--font);
    color: var(--text);
    overflow-x: hidden;
}

body.demand::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

#container {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    animation-duration: 2s;
}

.grow {
    animation-name: grow;
    width: 90%;
    height: 90%;
    justify-content: flex-start;
}

#wordpress {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 36px 20px 36px;
    width: 460px;
    gap: 20px;
    flex-shrink: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

#wordpress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-mid), transparent);
}

#wordpress h2 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 4px;
    align-self: flex-start;
}

#wordpress>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#wordpress label {
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

#wordpress input {
    padding: 12px 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font);
    transition: border-color var(--fast), box-shadow var(--fast);
    outline: none;
}

#wordpress input:focus {
    border-color: rgba(205, 255, 80, 0.4);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

#wordpress input.invalid {
    border-color: rgba(255, 76, 76, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 76, 76, 0.1);
}

#wordpress input::placeholder {
    color: var(--text-muted);
}

#wordpress input[type="file"] {
    padding: 10px 14px;
    cursor: pointer;
    color: var(--text-dim);
    font-size: 0.82rem;
}

.form-one {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-error {
    color: rgba(255, 100, 100, 0.9);
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

.color-picker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 4px;
}

.color-swatch {
    width: 100%;
    height: auto;
    min-height: 52px;
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.color-swatch:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.color-swatch.active {
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 0 15px var(--accent-dim);
}

#next {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font);
    letter-spacing: 0.04em;
    cursor: pointer;
    margin-top: 16px;
    box-shadow: 0 4px 0 #8eb91c;
    transform: translateY(-2px);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#next:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 0 #8eb91c;
}

#next:active {
    transform: translateY(1px);
    box-shadow: 0 0 0 #8eb91c;
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    margin-top: 0;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font);
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color var(--fast), background var(--fast), color var(--fast);
}

.btn-submit:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.hidden-choices {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(8px);
}

#container.show-choices .hidden-choices {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

#container.show-choices #step-1 {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    border: none;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease, padding 0.4s ease;
}

#step-1 {
    max-height: 500px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease, padding 0.4s ease;
}

#showcase {
    display: none;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    color: var(--text);
}

.showcase-chrome {
    background: #080808;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.showcase-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot-r {
    background: #ff5f56;
}

.dot-y {
    background: #ffbd2e;
}

.dot-g {
    background: #27c93f;
}

.chrome-url {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 14px;
    font-size: 0.7rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

.showcase-scroll {
    height: calc(100% - 38px);
    overflow-y: auto;
}

.showcase-scroll::-webkit-scrollbar {
    display: none;
}

.sc-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.sc-nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-logo-wrap {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.sc-logo-wrap img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
}

.sc-brand-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sc-nav-links {
    display: flex;
    gap: 12px;
}

.sc-nav-links a,
.sc-nav-links span {
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-dim);
}

.sc-nav-cta {
    background: var(--accent);
    color: #050505;
    border: none;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
}

.sc-hero {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
    background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(205, 255, 80, 0.04) 0%, transparent 70%);
}

.sc-hero h1,
#hero-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.sc-hero p {
    font-size: 9px;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 10px;
}

.sc-hero-btns {
    display: flex;
    gap: 6px;
}

.sc-btn-primary {
    background: var(--accent);
    color: #050505;
    border: none;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
}

.sc-btn-ghost {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
}

.sc-hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
}

.sc-stat-row {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.sc-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 4px;
    text-align: center;
}

.sc-stat-val {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.sc-stat-lbl {
    font-size: 7px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sc-contact-line {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 0 0;
    border-top: 1px solid var(--border);
}

.sc-contact-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
}

.sc-contact-text {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-dim);
}

.sc-body {
    padding: 0 16px 12px;
}

.sc-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 10px;
}

.sc-lorem {
    font-size: 9px;
    color: var(--text-muted);
    line-height: 1.6;
}

.sc-services {
    padding: 10px 16px 16px;
}

.sc-services h2 {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.sc-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease;
}

.sc-card h3 {
    font-size: 10px;
    color: var(--text);
    margin-bottom: 4px;
    font-weight: 700;
}

.sc-card p {
    font-size: 9px;
    color: var(--text-dim);
    line-height: 1.4;
}

.sc-footer {
    margin-top: auto;
    padding: 8px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-footer-copy {
    font-size: 8px;
    color: var(--text-muted);
}

.sc-footer-links {
    display: flex;
    gap: 10px;
}

.sc-footer-links a {
    text-decoration: none;
    font-size: 8px;
    color: var(--text-muted);
}

.layout-minimal,
.layout-tech,
.layout-playful,
.layout-corporate {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.layout-minimal {
    background: #fbfbfb;
    color: #333;
    font-family: "Helvetica Neue", sans-serif;
}

.min-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
}

.min-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.min-brand .sc-logo-wrap {
    width: 24px !important;
    height: 24px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.min-brand .sc-logo-img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

.min-brand .sc-brand-name {
    font-family: Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.min-links {
    display: flex;
    gap: 15px;
    font-size: 10px;
    color: #666;
}

.min-btn {
    background: transparent;
    border: 1px solid #333;
    padding: 6px 12px;
    font-size: 9px;
    cursor: pointer;
    border-radius: 2px;
    transition: box-shadow 0.2s ease;
}

.min-btn:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.min-main {
    flex: 1;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.min-main h1 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #000;
}

.min-main p {
    font-size: 11px;
    color: #555;
    max-width: 80%;
    margin-bottom: 20px;
    line-height: 1.5;
}

.min-btn-outline {
    background: #111;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 10px;
    border-radius: 2px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.min-btn-outline:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.min-cards {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.min-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 2px;
    background: #fff;
    width: 120px;
    transition: box-shadow 0.2s ease;
}

.min-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.min-card h3 {
    font-size: 11px;
    margin-bottom: 5px;
}

.min-card p {
    font-size: 9px;
    margin-bottom: 0;
}

.min-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-top: 1px solid #eaeaea;
    font-size: 9px;
    color: #888;
}

.layout-tech {
    background: #000;
    color: #ededed;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.tech-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at top, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at top, black 30%, transparent 80%);
}

.tech-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.tech-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-brand .sc-logo-wrap {
    width: 24px !important;
    height: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: linear-gradient(180deg, #333 0%, #111 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-brand .sc-logo-img {
    width: 14px !important;
    height: 14px !important;
    object-fit: contain;
}

.tech-brand .sc-brand-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.tech-links {
    display: flex;
    gap: 20px;
    font-size: 11px;
    color: #888;
}

.tech-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.tech-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    gap: 30px;
}

.tech-hero {
    flex: 1;
    max-width: 55%;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 10px;
    color: #a1a1aa;
    margin-bottom: 20px;
}

.tech-hero h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-hero p {
    font-size: 12px;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 24px;
}

.tech-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tech-btn-primary {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.tech-phone {
    font-size: 11px;
    color: #ededed;
}

.tech-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.tech-window {
    width: 100%;
    max-width: 380px;
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.tech-window-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 12px;
    display: flex;
    gap: 6px;
}

.tech-window-header i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3f3f46;
}

.tech-window-body {
    padding: 20px;
    font-family: 'SF Mono', Consolas, Menlo, monospace;
    font-size: 10px;
    color: #d4d4d8;
    line-height: 1.5;
}

.tech-window-body code {
    color: #38bdf8;
}

.layout-playful {
    background: linear-gradient(135deg, #a7f3d0, #fbcfe8, #fef08a);
    color: #1f2937;
    font-family: "Comic Sans MS", "Arial Rounded MT Bold", sans-serif;
    position: relative;
}

.play-blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 40% 60% 70% 30%;
    z-index: 0;
}

.play-blob-1 {
    width: 150px;
    height: 150px;
    top: -20px;
    left: -20px;
}

.play-blob-2 {
    width: 200px;
    height: 180px;
    bottom: -30px;
    right: -40px;
}

.play-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    z-index: 1;
}

.play-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-logo {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: #fff;
    box-shadow: 2px 2px 0px #1f2937;
    border: 2px solid #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.play-logo .sc-logo-img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

.play-brand .sc-brand-name {
    font-size: 14px;
    font-weight: 800;
}

.play-btn {
    background: #fcd34d;
    border: 2px solid #1f2937;
    padding: 6px 14px;
    font-weight: bold;
    font-size: 10px;
    border-radius: 20px;
    box-shadow: 2px 2px 0px #1f2937;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.play-content {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #1f2937;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 4px 4px 0px #1f2937;
    max-width: 90%;
    backdrop-filter: blur(10px);
}

.play-content h1 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 900;
}

.play-content p {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.play-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.play-card {
    background: #fbcfe8;
    border: 2px solid #1f2937;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 2px 2px 0px #1f2937;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-card:hover {
    transform: scale(1.1) rotate(-3deg);
}

.play-phone {
    font-size: 11px;
    font-weight: bold;
    background: #fff;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    border: 2px dashed #1f2937;
}

.layout-corporate {
    background: #f8fafc;
    color: #1e293b;
    font-family: Arial, Helvetica, sans-serif;
}

.corp-topbar {
    background: #0f172a;
    color: #cbd5e1;
    display: flex;
    justify-content: space-between;
    padding: 6px 20px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corp-topbar .sc-phone-val {
    color: #fff;
    font-weight: bold;
}

.corp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 2px solid #e2e8f0;
}

.corp-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.corp-logo {
    width: 28px !important;
    height: 28px !important;
    border-radius: 0 !important;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.corp-logo .sc-logo-img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

.corp-brand .sc-brand-name {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.corp-nav-links {
    display: flex;
    gap: 15px;
    font-size: 10px;
    font-weight: 600;
    color: #475569;
}

.corp-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
}

.corp-hero {
    margin-bottom: 30px;
}

.corp-hero h1 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 12px;
}

.corp-hero p {
    font-size: 11px;
    color: #475569;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 18px;
}

.corp-actions {
    display: flex;
    gap: 10px;
}

.corp-btn {
    background: #1d4ed8;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
}

.corp-btn-secondary {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    padding: 8px 16px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
}

.corp-features {
    display: flex;
    gap: 15px;
}

.corp-feature {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #1d4ed8;
    padding: 12px;
    flex: 1;
    border-radius: 0 3px 3px 0;
}

.corp-feature h4 {
    font-size: 11px;
    margin-bottom: 4px;
    color: #0f172a;
}

.corp-feature p {
    font-size: 9px;
    color: #64748b;
}

.corp-footer {
    background: #e2e8f0;
    padding: 15px 20px;
    font-size: 9px;
    color: #475569;
    text-align: center;
}

@keyframes grow {
    from {
        width: 460px;
        height: auto;
    }

    to {
        width: 1400px;
        height: 800px;
    }
}

.slideLeft {
    animation-name: slideLeft;
    animation-duration: 1.2s;
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

@keyframes slideLeft {
    0% {
        width: 460px;
    }

    100% {
        width: 360px;
        flex-shrink: 0;
    }
}

.slideInFromRight {
    animation-name: slideInFromRight;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    animation-fill-mode: both;
    display: block !important;
    width: 1000px !important;
    height: 750px !important;
    flex-shrink: 0 !important;
}

@keyframes slideInFromRight {
    0% {
        transform: scale(0) translate(50vw, 50vh);
        opacity: 0;
    }

    100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
}