:root {
    --bg: #0d0d0f;
    --panel: #141419;
    --panel-soft: #1b1b22;
    --line: rgba(255,255,255,0.08);
    --text: #f5f5f5;
    --muted: #b7b7c2;
    --accent: #ff7a1a;
    --accent-2: #ffd3b2;
    --shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    --radius: 28px;
    --radius-sm: 20px;
    --max: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behaviour: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: radial-gradient(circle at top left, rgba(255,122,26,0.14), transparent 24%), linear-gradient(180deg, #0c0c0e 0%, #101014 100%);
    color: var(--text);
}

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

img {
    max-width: 100%;
    display: block;
}

.site-shell {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 16px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 20px;
    margin: 18px 0 10px;
    background: rgba(14,14,18,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    min-width: 0;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    flex: 0 0 48px;
}

.brand-text {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .site-nav a {
        color: var(--muted);
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

        .site-nav a:hover,
        .site-nav a:focus {
            color: var(--text);
        }

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--text) !important;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    padding: 0;
    cursor: pointer;
}

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        margin: 4px auto;
        background: #fff;
    }

.section {
    padding: 64px 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 140px);
}

.eyebrow {
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    color: #ffbb86;
    font-weight: 700;
}

.hero h1,
.section-heading h2,
.statement-copy h2,
.contact-copy h2 {
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.hero h1 {
    font-size: clamp(3.25rem, 8vw, 6.7rem);
    max-width: 10ch;
}

.hero-text,
.section-heading p,
.statement-list p,
.product-copy p,
.process-grid p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.7;
}

.hero-text {
    max-width: 58ch;
    margin: 24px 0 0;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    min-height: 54px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #ff9d52);
    color: #151515;
}

.btn-secondary,
.btn-ghost {
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.02);
    color: var(--text);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
}

    .hero-points li,
    .service-card,
    .product-card,
    .process-grid article,
    .contact-card,
    .statement-panel {
        border: 1px solid var(--line);
        background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
        box-shadow: var(--shadow);
    }

    .hero-points li {
        padding: 16px 18px;
        border-radius: 18px;
        color: #e6e6ed;
        font-size: 0.95rem;
    }

.hero-visual {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: stretch;
}

.hero-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
}

.hero-card-large {
    grid-row: span 2;
    min-height: 620px;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accent-card img {
    object-fit: contain;
    padding: 24px;
    background: #f1f1f1;
}

.hero-card-label {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(10,10,13,0.68);
    backdrop-filter: blur(12px);
}

    .hero-card-label span,
    .product-kicker {
        display: block;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: #ffc899;
        margin-bottom: 6px;
    }

    .hero-card-label strong {
        font-size: 1.12rem;
    }

    .hero-card-label.small strong {
        font-size: 1rem;
    }

.stack-section {
    display: grid;
    gap: 30px;
}

.section-heading {
    max-width: 760px;
}

    .section-heading h2,
    .statement-copy h2,
    .contact-copy h2 {
        font-size: clamp(2.15rem, 4vw, 4rem);
        margin-bottom: 14px;
    }

.service-grid,
.product-grid,
.process-grid {
    display: grid;
    gap: 22px;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

    .service-card,
    .product-card,
    .process-grid article,
    .contact-card {
        border-radius: var(--radius);
    }

.service-card {
    padding: 28px;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255,122,26,0.12);
    color: #ffbf8d;
    font-weight: 800;
    margin-bottom: 22px;
}

.service-card h3,
.product-copy h3,
.process-grid h3 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
}

.service-card ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.service-card li {
    color: #ececf3;
    font-size: 0.96rem;
    padding-left: 18px;
    position: relative;
}

    .service-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--accent);
    }

.statement-panel {
    padding: 34px;
    border-radius: calc(var(--radius) + 6px);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
}

.statement-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

    .statement-list div {
        padding: 6px 0;
    }

    .statement-list strong {
        display: block;
        margin-bottom: 10px;
        font-size: 1.05rem;
    }

.product-card {
    overflow: hidden;
}

.product-image-wrap {
    aspect-ratio: 1 / 0.9;
    overflow: hidden;
}

    .product-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-image-wrap.cool img {
        object-fit: cover;
    }

    .product-image-wrap.neutral img {
        object-fit: cover;
    }

    .product-image-wrap.warm {
        background: #2e2418;
    }

    .product-image-wrap.cool {
        background: #14202a;
    }

    .product-image-wrap.neutral {
        background: #ede8e0;
    }

.product-copy {
    padding: 24px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 18px;
}

    .product-tags span {
        padding: 9px 12px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.12);
        font-size: 0.84rem;
        color: #ededf4;
    }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #ffd2b2;
}

    .text-link::after {
        content: "↗";
        font-size: 1rem;
    }

.process-grid article {
    padding: 28px;
}

    .process-grid article span {
        display: inline-flex;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.05);
        color: #ffbe8a;
        font-weight: 800;
        margin-bottom: 20px;
    }

.contact-card {
    padding: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0 36px;
    color: var(--muted);
    font-size: 0.95rem;
}

    .site-footer p {
        margin: 6px 0 0;
    }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

    .footer-links a:hover {
        color: var(--text);
    }

@media (max-width: 1080px) {
    .hero,
    .statement-panel,
    .contact-card {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero {
        min-height: auto;
        padding-top: 24px;
    }

    .service-grid,
    .product-grid,
    .process-grid,
    .statement-list {
        grid-template-columns: 1fr;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .site-header {
        border-radius: 28px;
        align-items: center;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(14,14,18,0.97);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

        .site-nav.open {
            display: flex;
        }

        .site-nav a {
            padding: 6px 2px;
        }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .hero-card-large {
        min-height: 420px;
    }

    .hero-card {
        min-height: 220px;
    }

    .contact-actions,
    .hero-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(calc(100% - 22px), var(--max));
    }

    .section {
        padding: 42px 0;
    }

    .site-header {
        padding: 14px 16px;
        top: 10px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .brand-text {
        font-size: 0.92rem;
        letter-spacing: 0.06em;
    }

    .service-card,
    .product-copy,
    .process-grid article,
    .contact-card,
    .statement-panel {
        padding: 22px;
    }
}
