:root {
    color-scheme: dark;
    --black: #05070B;
    --navy: #0B1020;
    --cyan: #00D1FF;
    --blue: #2563EB;
    --silver: #E5E7EB;
    --graphite: #111827;
    --gold: #C9A227;
    --muted: #94A3B8;
    --soft: #CBD5E1;
    --line: rgba(229, 231, 235, 0.12);
    --line-strong: rgba(0, 209, 255, 0.34);
    --glass: rgba(17, 24, 39, 0.58);
    --glass-strong: rgba(11, 16, 32, 0.78);
    --danger: #FF6B6B;
    --success: #34D399;
    --radius: 8px;
    --max: 1180px;
    --header: 78px;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100svh;
    background:
        linear-gradient(90deg, rgba(0, 209, 255, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 209, 255, 0.035) 1px, transparent 1px),
        radial-gradient(ellipse at 50% -10%, rgba(37, 99, 235, 0.24), transparent 48%),
        linear-gradient(180deg, #05070B 0%, #070B14 42%, #05070B 100%);
    background-size: 76px 76px, 76px 76px, auto, auto;
    color: var(--silver);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.site-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(0, 209, 255, 0.12), transparent 28%, transparent 66%, rgba(201, 162, 39, 0.06)),
        linear-gradient(180deg, transparent 0%, rgba(5, 7, 11, 0.92) 86%);
}

.bg-beam {
    position: absolute;
    width: 72%;
    height: 220px;
    border: 1px solid rgba(0, 209, 255, 0.08);
    background: linear-gradient(90deg, transparent, rgba(0, 209, 255, 0.10), rgba(37, 99, 235, 0.08), transparent);
    filter: blur(12px);
    opacity: 0.75;
    transform: rotate(-18deg);
}

.bg-beam-one {
    top: 10%;
    right: -22%;
}

.bg-beam-two {
    left: -28%;
    bottom: 6%;
    transform: rotate(16deg);
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.08), rgba(0, 209, 255, 0.08), transparent);
}

.particle-field {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0, 209, 255, 0.34) 1px, transparent 1px),
        radial-gradient(circle, rgba(229, 231, 235, 0.20) 1px, transparent 1px);
    background-size: 120px 120px, 180px 180px;
    background-position: 10px 24px, 68px 92px;
    opacity: 0.18;
    animation: particleDrift 28s linear infinite;
}

@keyframes particleDrift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-80px, 60px, 0); }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    min-height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px max(22px, calc((100vw - var(--max)) / 2));
    border-bottom: 1px solid rgba(229, 231, 235, 0.10);
    background: rgba(5, 7, 11, 0.70);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.20);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border: 1px solid rgba(0, 209, 255, 0.38);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(0, 209, 255, 0.18), rgba(37, 99, 235, 0.14)),
        rgba(17, 24, 39, 0.82);
    color: var(--cyan);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 0 34px rgba(0, 209, 255, 0.12);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-right: 1px solid rgba(201, 162, 39, 0.52);
    border-bottom: 1px solid rgba(201, 162, 39, 0.30);
    border-radius: 5px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    object-fit: contain;
    border: 1px solid rgba(0, 209, 255, 0.24);
    border-radius: var(--radius);
    padding: 6px;
    background: rgba(5, 7, 11, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 36px rgba(0, 0, 0, 0.32);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.02rem;
    line-height: 1.1;
}

.brand small {
    color: var(--muted);
    font-size: 0.75rem;
}

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

.site-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0 13px;
    color: var(--soft);
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #FFFFFF;
    border-color: rgba(0, 209, 255, 0.22);
    background: rgba(0, 209, 255, 0.08);
}

.site-nav a:hover {
    transform: translateY(-1px);
}

.site-nav .nav-cta {
    margin-left: 6px;
    color: #06101A;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), #6AEAFF);
    box-shadow: 0 12px 36px rgba(0, 209, 255, 0.20);
}

.nav-toggle,
.nav-backdrop {
    display: none;
}

.nav-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0, 209, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(17, 24, 39, 0.72);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--silver);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

main {
    position: relative;
}

.hero {
    position: relative;
    min-height: calc(92vh - var(--header));
    display: grid;
    align-items: center;
    padding: 104px max(22px, calc((100vw - var(--max)) / 2)) 116px;
    overflow: hidden;
}

.hero::after,
.featured-section::before,
.materials-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 209, 255, 0.62), rgba(201, 162, 39, 0.34), transparent);
}

.hero::after {
    bottom: 0;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.58;
    filter: saturate(1.08) contrast(1.08);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 7, 11, 0.96) 0%, rgba(5, 7, 11, 0.78) 38%, rgba(5, 7, 11, 0.28) 76%),
        linear-gradient(180deg, rgba(5, 7, 11, 0.22), rgba(5, 7, 11, 0.98));
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, transparent, rgba(0, 209, 255, 0.12), transparent);
    height: 180px;
    animation: heroScan 7s linear infinite;
}

@keyframes heroScan {
    from { transform: translateY(-190px); }
    to { transform: translateY(calc(100svh + 190px)); }
}

.hero-gridline {
    position: absolute;
    right: max(22px, calc((100vw - var(--max)) / 2));
    bottom: 34px;
    width: min(460px, 42%);
    height: 270px;
    border: 1px solid rgba(0, 209, 255, 0.12);
    background:
        linear-gradient(90deg, rgba(0, 209, 255, 0.09) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 209, 255, 0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    transform: perspective(720px) rotateX(58deg) rotateZ(-4deg);
    transform-origin: bottom right;
    opacity: 0.55;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 5.35rem;
    line-height: 0.94;
    font-weight: 700;
}

.hero-copy {
    margin: 24px 0 0;
    max-width: 660px;
    color: #FFFFFF;
    font-size: 1.38rem;
    line-height: 1.42;
    font-weight: 800;
}

.hero-support {
    margin: 16px 0 0;
    max-width: 650px;
    color: var(--soft);
    font-size: 1.05rem;
}

.hero-actions,
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.btn {
    position: relative;
    isolation: isolate;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 20px;
    overflow: hidden;
    font-weight: 900;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

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

.btn:hover::after {
    transform: translateX(120%);
}

.btn-primary {
    color: #03101A;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), #69E7FF 44%, var(--blue));
    box-shadow: 0 20px 48px rgba(0, 209, 255, 0.25);
}

.btn-secondary {
    color: var(--silver);
    background: rgba(229, 231, 235, 0.06);
    border-color: rgba(229, 231, 235, 0.16);
}

.btn-secondary:hover {
    border-color: rgba(0, 209, 255, 0.36);
    box-shadow: 0 18px 46px rgba(0, 209, 255, 0.10);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-proof span,
.material-tags span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 209, 255, 0.18);
    border-radius: var(--radius);
    padding: 0 11px;
    color: var(--soft);
    background: rgba(17, 24, 39, 0.54);
    font-size: 0.86rem;
    font-weight: 800;
}

.hero-panel {
    position: absolute;
    right: max(22px, calc((100vw - var(--max)) / 2));
    bottom: 60px;
    z-index: 3;
    width: min(360px, calc(100% - 44px));
    padding: 20px;
}

.hero-panel p,
.hero-panel small {
    margin: 0;
    color: var(--muted);
}

.hero-panel strong {
    display: block;
    margin: 6px 0 16px;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.25rem;
    line-height: 1.2;
}

.hero-panel-meter {
    height: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 209, 255, 0.18);
    border-radius: 999px;
    background: rgba(5, 7, 11, 0.62);
    overflow: hidden;
}

.hero-panel-meter span {
    display: block;
    width: 76%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--gold));
    animation: meterPulse 2.8s ease-in-out infinite;
}

@keyframes meterPulse {
    0%, 100% { opacity: 0.74; }
    50% { opacity: 1; }
}

.section,
.form-section,
.contact-section,
.product-page,
.legal-page,
.cta-band {
    width: min(var(--max), calc(100% - 44px));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 92px 0;
}

.section-tight {
    padding-top: 40px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section-heading h2,
.cta-band h2,
.legal-page h1,
.product-info h1 {
    margin: 0;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 2.75rem;
    line-height: 1.04;
    font-weight: 700;
}

.section-copy {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
}

.section-link,
.card-actions a,
.site-footer a {
    color: var(--cyan);
    font-weight: 800;
}

.glass-card {
    position: relative;
    isolation: isolate;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(0, 209, 255, 0.16), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        var(--glass);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.16), transparent 34%, rgba(201, 162, 39, 0.08));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.reveal-group,
.project-card,
.creation-card,
.timeline article,
.finish-grid article,
.contact-card {
    opacity: 1;
}

.is-hidden {
    opacity: 0;
    transform: translateY(22px);
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.metric-strip div {
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
}

.metric-strip strong,
.creation-card span,
.timeline span {
    color: var(--cyan);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.32rem;
    line-height: 1;
}

.metric-strip span {
    margin-top: 12px;
    color: var(--soft);
    font-weight: 700;
}

.creation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.creation-card {
    min-height: 250px;
    padding: 24px;
}

.creation-card h3,
.finish-grid h3,
.contact-card h3 {
    margin: 30px 0 10px;
    color: #FFFFFF;
    font-size: 1.18rem;
    line-height: 1.24;
}

.creation-card p,
.finish-grid p,
.timeline p,
.legal-page p,
.rich-text,
.lead,
.contact-card p,
.cta-band p,
.empty-showcase p,
.material-copy p,
.color-panel p {
    color: var(--muted);
}

.featured-section {
    width: 100%;
    max-width: none;
    padding-left: max(22px, calc((100vw - var(--max)) / 2));
    padding-right: max(22px, calc((100vw - var(--max)) / 2));
    background: linear-gradient(180deg, rgba(11, 16, 32, 0.42), rgba(5, 7, 11, 0));
}

.featured-section::before {
    top: 0;
}

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

.project-card {
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 209, 255, 0.36);
    box-shadow: 0 34px 95px rgba(0, 0, 0, 0.54), 0 0 44px rgba(0, 209, 255, 0.10);
}

.project-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--graphite);
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 11, 0.72));
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.55s ease, filter 0.55s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.07);
    filter: saturate(1.12) contrast(1.08);
}

.project-card:hover .project-image::after {
    opacity: 0.38;
}

.project-image span {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(201, 162, 39, 0.42);
    border-radius: var(--radius);
    padding: 0 10px;
    color: #120F06;
    background: linear-gradient(135deg, #F1D878, var(--gold));
    font-size: 0.76rem;
    font-weight: 900;
}

.project-card-body {
    padding: 20px;
}

.project-card h2,
.project-card h3 {
    margin: 0 0 10px;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.22rem;
    line-height: 1.22;
}

.project-card p {
    min-height: 62px;
    margin: 0;
    color: var(--muted);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.project-meta span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 209, 255, 0.18);
    border-radius: var(--radius);
    padding: 0 9px;
    color: var(--soft);
    background: rgba(0, 209, 255, 0.06);
    font-size: 0.78rem;
    font-weight: 850;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.card-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
}

.card-actions a:hover,
.section-link:hover,
.site-footer a:hover {
    color: #FFFFFF;
}

.empty-showcase {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--glass-strong);
    box-shadow: var(--shadow);
}

.empty-showcase img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(0, 209, 255, 0.14);
    border-radius: var(--radius);
}

.empty-showcase h2,
.empty-showcase h3 {
    margin: 0 0 10px;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 2rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.timeline article {
    min-height: 245px;
    padding: 22px;
}

.timeline strong {
    display: block;
    margin-top: 28px;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.materials-section {
    width: 100%;
    max-width: none;
    padding-left: max(22px, calc((100vw - var(--max)) / 2));
    padding-right: max(22px, calc((100vw - var(--max)) / 2));
    background: linear-gradient(180deg, rgba(5, 7, 11, 0), rgba(11, 16, 32, 0.46), rgba(5, 7, 11, 0));
}

.materials-section::before {
    top: 0;
}

.material-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: 18px;
    align-items: stretch;
}

.material-copy {
    padding: 28px;
}

.material-copy h3,
.color-panel h3 {
    margin: 0 0 12px;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 2rem;
    line-height: 1.12;
}

.material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.finish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.finish-grid article {
    min-height: 290px;
    padding: 24px;
}

.finish-grid span {
    display: block;
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--gold));
}

.color-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: center;
    min-height: 330px;
    padding: 34px;
}

.color-swatches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.color-swatches span {
    display: block;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.26), transparent),
        var(--swatch);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.30), 0 16px 34px rgba(0, 0, 0, 0.30);
}

.cta-band {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 94px;
    padding: 34px;
    border: 1px solid rgba(0, 209, 255, 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(0, 209, 255, 0.16), rgba(37, 99, 235, 0.14), rgba(201, 162, 39, 0.09)),
        rgba(11, 16, 32, 0.72);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
    overflow: hidden;
}

.cta-band h2 {
    max-width: 760px;
}

.cta-band p:not(.eyebrow) {
    max-width: 650px;
    margin: 12px 0 0;
}

.page-hero {
    width: min(var(--max), calc(100% - 44px));
    margin: 0 auto;
    padding: 92px 0 44px;
}

.compact-hero h1 {
    max-width: 820px;
    font-size: 3.45rem;
    line-height: 1;
}

.compact-hero p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
}

.form-section {
    padding: 18px 0 96px;
}

.quote-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.quote-stepper {
    position: sticky;
    top: calc(var(--header) + 18px);
    display: grid;
    gap: 8px;
    padding: 16px;
}

.quote-stepper div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 62px;
    border: 1px solid rgba(229, 231, 235, 0.10);
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(5, 7, 11, 0.34);
}

.quote-stepper span,
.quote-step-heading > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 209, 255, 0.26);
    border-radius: var(--radius);
    color: var(--cyan);
    background: rgba(0, 209, 255, 0.08);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-weight: 700;
}

.quote-stepper strong {
    color: #FFFFFF;
    line-height: 1.2;
}

.quote-form,
.success-panel,
.form-errors {
    padding: 28px;
}

.quote-form {
    display: grid;
    gap: 18px;
}

.quote-step {
    display: grid;
    gap: 18px;
    border: 1px solid rgba(229, 231, 235, 0.10);
    border-radius: var(--radius);
    padding: 22px;
    background: rgba(5, 7, 11, 0.28);
}

.quote-step.has-error {
    border-color: rgba(255, 107, 107, 0.48);
}

.quote-step-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.quote-step-heading h2 {
    margin: 0;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.45rem;
    line-height: 1.15;
}

.quote-step-heading p {
    margin: 6px 0 0;
    color: var(--muted);
}

.inline-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 12px;
}

.quote-file-field {
    min-height: 210px;
}

.quote-summary {
    display: grid;
    gap: 4px;
    border: 1px solid rgba(0, 209, 255, 0.18);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(0, 209, 255, 0.06);
}

.quote-summary span {
    color: var(--muted);
}

.quote-summary strong {
    color: #FFFFFF;
}

.quote-form-actions,
.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

form[data-validated] input:invalid,
form[data-validated] select:invalid,
form[data-validated] textarea:invalid {
    border-color: rgba(255, 107, 107, 0.78);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.10);
}

.form-errors {
    margin-bottom: 16px;
    border: 1px solid rgba(255, 107, 107, 0.38);
    border-radius: var(--radius);
    color: #FFD6D6;
    background: rgba(255, 107, 107, 0.08);
}

.form-errors p {
    margin: 6px 0 0;
}

.success-panel {
    max-width: 760px;
}

.quote-success {
    max-width: 820px;
}

.success-panel h2 {
    margin: 0;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 2.2rem;
}

.success-protocol {
    display: grid;
    gap: 6px;
    margin: 22px 0;
    border: 1px solid rgba(0, 209, 255, 0.28);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(0, 209, 255, 0.08);
}

.success-protocol span {
    color: var(--muted);
    font-weight: 800;
}

.success-protocol strong {
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 2rem;
    line-height: 1;
    overflow-wrap: anywhere;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

label,
.full-field,
.check-field {
    display: grid;
    gap: 8px;
}

label span {
    color: #FFFFFF;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(229, 231, 235, 0.14);
    border-radius: var(--radius);
    background: rgba(5, 7, 11, 0.72);
    color: var(--silver);
    outline: 0;
    padding: 13px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(0, 209, 255, 0.68);
    background: rgba(5, 7, 11, 0.90);
    box-shadow: 0 0 0 4px rgba(0, 209, 255, 0.12);
}

small {
    color: var(--muted);
}

.full-field {
    margin-top: 18px;
}

.check-field {
    grid-template-columns: auto 1fr;
    align-items: start;
    margin: 20px 0;
}

.check-field input {
    width: auto;
    margin-top: 7px;
}

.check-field a {
    color: var(--cyan);
    font-weight: 800;
}

.file-field input[type="file"] {
    padding: 10px;
}

.file-preview {
    display: grid;
    gap: 4px;
    min-height: 72px;
    align-content: center;
    border: 1px dashed rgba(0, 209, 255, 0.30);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(0, 209, 255, 0.055);
}

.file-preview.has-file {
    border-style: solid;
    background: rgba(37, 99, 235, 0.12);
}

.file-preview img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 6px;
}

.help-text {
    color: var(--muted);
}

.status-pill {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229, 231, 235, 0.14);
    border-radius: 999px;
    padding: 0 11px;
    color: var(--soft);
    background: rgba(229, 231, 235, 0.06);
    font-size: 0.78rem;
    font-weight: 900;
}

.status-new { color: var(--cyan); border-color: rgba(0, 209, 255, 0.34); background: rgba(0, 209, 255, 0.08); }
.status-review { color: #FFD166; border-color: rgba(255, 209, 102, 0.34); background: rgba(255, 209, 102, 0.08); }
.status-waiting { color: var(--gold); border-color: rgba(201, 162, 39, 0.38); background: rgba(201, 162, 39, 0.08); }
.status-approved { color: var(--success); border-color: rgba(52, 211, 153, 0.34); background: rgba(52, 211, 153, 0.08); }
.status-rejected { color: var(--danger); border-color: rgba(255, 107, 107, 0.34); background: rgba(255, 107, 107, 0.08); }
.status-neutral { color: var(--muted); border-color: rgba(148, 163, 184, 0.28); background: rgba(148, 163, 184, 0.06); }

.tracking-hero h1 {
    max-width: 880px;
}

.tracking-section {
    padding-top: 8px;
}

.tracking-shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.tracking-card,
.tracking-empty,
.tracking-order {
    padding: 26px;
}

.tracking-card {
    position: sticky;
    top: calc(var(--header) + 18px);
}

.tracking-card h2,
.tracking-empty h2,
.tracking-items h2 {
    margin: 0 0 14px;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    line-height: 1.12;
}

.tracking-form {
    display: grid;
    gap: 15px;
}

.tracking-hint {
    display: grid;
    gap: 5px;
    border: 1px solid rgba(0, 209, 255, 0.18);
    border-radius: var(--radius);
    padding: 14px;
    background: rgba(0, 209, 255, 0.06);
}

.tracking-hint strong {
    color: #FFFFFF;
}

.tracking-hint span {
    color: var(--muted);
}

.tracking-errors {
    margin: 0 0 16px;
    padding: 14px;
}

.tracking-results {
    display: grid;
    gap: 18px;
}

.tracking-empty {
    min-height: 260px;
    display: grid;
    align-content: center;
}

.tracking-empty p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
}

.tracking-result-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.tracking-result-heading span {
    color: var(--muted);
    font-weight: 800;
}

.tracking-result-heading strong {
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.8rem;
}

.tracking-order {
    display: grid;
    gap: 22px;
}

.tracking-order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tracking-order-head span,
.tracking-info-grid span,
.tracking-note span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 850;
}

.tracking-order-head strong {
    display: block;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.65rem;
    overflow-wrap: anywhere;
}

.tracking-cancelled {
    border: 1px solid rgba(255, 107, 107, 0.34);
    border-radius: var(--radius);
    padding: 14px;
    color: #FFD6D6;
    background: rgba(255, 107, 107, 0.08);
}

.tracking-timeline {
    display: grid;
    grid-template-columns: repeat(7, minmax(96px, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tracking-timeline li {
    position: relative;
    min-height: 118px;
    display: grid;
    align-content: start;
    gap: 10px;
    border: 1px solid rgba(229, 231, 235, 0.12);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(5, 7, 11, 0.44);
}

.tracking-timeline li::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 10px;
    height: 4px;
    border-radius: 999px;
    background: rgba(229, 231, 235, 0.12);
}

.tracking-timeline span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(229, 231, 235, 0.14);
    border-radius: var(--radius);
    color: var(--muted);
    background: rgba(229, 231, 235, 0.05);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-weight: 800;
}

.tracking-timeline strong {
    color: var(--soft);
    font-size: 0.9rem;
    line-height: 1.18;
}

.tracking-timeline .is-complete {
    border-color: rgba(52, 211, 153, 0.26);
    background: rgba(52, 211, 153, 0.055);
}

.tracking-timeline .is-complete span,
.tracking-timeline .is-complete::after {
    color: var(--success);
    border-color: rgba(52, 211, 153, 0.34);
    background: linear-gradient(90deg, rgba(52, 211, 153, 0.84), rgba(0, 209, 255, 0.70));
}

.tracking-timeline .is-current {
    border-color: rgba(0, 209, 255, 0.46);
    background: rgba(0, 209, 255, 0.10);
    box-shadow: 0 0 34px rgba(0, 209, 255, 0.10);
}

.tracking-timeline .is-current span,
.tracking-timeline .is-current::after {
    color: #03101A;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.tracking-timeline .is-current strong {
    color: #FFFFFF;
}

.tracking-timeline .is-muted {
    opacity: 0.52;
}

.tracking-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.tracking-info-grid div,
.tracking-note {
    border: 1px solid rgba(229, 231, 235, 0.12);
    border-radius: var(--radius);
    padding: 14px;
    background: rgba(5, 7, 11, 0.34);
}

.tracking-info-grid strong {
    display: block;
    margin-top: 4px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
}

.tracking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tracking-note p {
    margin: 8px 0 0;
    color: var(--soft);
}

.tracking-items {
    display: grid;
    gap: 10px;
}

.tracking-items h2 {
    margin-bottom: 4px;
    font-size: 1.35rem;
}

.tracking-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(229, 231, 235, 0.12);
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(255, 255, 255, 0.035);
}

.tracking-item img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border: 1px solid rgba(0, 209, 255, 0.14);
    border-radius: var(--radius);
    background: var(--graphite);
}

.tracking-item strong,
.tracking-item span,
.tracking-item small {
    display: block;
}

.tracking-item strong {
    color: #FFFFFF;
}

.tracking-item span,
.tracking-item small {
    color: var(--muted);
}

.contact-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 24px 0 94px;
}

.home-contact {
    width: 100%;
    padding: 0;
}

.contact-card {
    min-height: 168px;
    padding: 24px;
}

.contact-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-weight: 900;
}

.contact-card a {
    color: var(--cyan);
    font-weight: 850;
    overflow-wrap: anywhere;
}

.product-page {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 24px;
    padding: 76px 0 96px;
}

.product-gallery,
.product-info {
    padding: 18px;
}

.product-info {
    align-self: center;
    padding: 30px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(0, 209, 255, 0.14);
    border-radius: var(--radius);
    background: var(--graphite);
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.thumb-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(229, 231, 235, 0.12);
    border-radius: var(--radius);
}

.product-info h1 {
    font-size: 3rem;
}

.lead {
    margin-top: 16px;
    font-size: 1.1rem;
}

.rich-text {
    margin-top: 24px;
}

.product-characteristics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.product-characteristics div {
    min-height: 78px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 1px solid rgba(229, 231, 235, 0.12);
    border-radius: var(--radius);
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(0, 209, 255, 0.08), transparent),
        rgba(5, 7, 11, 0.42);
}

.product-characteristics span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.product-characteristics strong {
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    line-height: 1.2;
}

.legal-page {
    max-width: 890px;
    padding: 40px;
    margin-top: 78px;
    margin-bottom: 96px;
}

.legal-page h1 {
    font-size: 3rem;
}

.legal-page h2 {
    margin: 34px 0 8px;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
}

.legal-lead {
    margin: 12px 0 24px;
    color: var(--soft);
    font-size: 1.08rem;
}

.legal-company-box,
.legal-index {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    padding: 18px;
    border: 1px solid rgba(229, 231, 235, 0.12);
    border-radius: var(--radius);
    background: rgba(5, 7, 11, 0.38);
}

.legal-company-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-company-box span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.legal-company-box strong {
    display: block;
    color: #FFFFFF;
    line-height: 1.3;
}

.legal-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-index strong {
    grid-column: 1 / -1;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
}

.legal-index a {
    color: var(--cyan);
    font-weight: 800;
}

.legal-section {
    scroll-margin-top: calc(var(--header) + 24px);
}

.legal-section ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.legal-section li + li {
    margin-top: 8px;
}

.flash {
    width: min(var(--max), calc(100% - 44px));
    margin: 18px auto 0;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--glass-strong);
}

.flash-success {
    border-color: rgba(52, 211, 153, 0.42);
}

.flash-error {
    border-color: rgba(255, 107, 107, 0.42);
}

.site-footer {
    border-top: 1px solid rgba(229, 231, 235, 0.10);
    background:
        linear-gradient(180deg, rgba(11, 16, 32, 0.56), rgba(5, 7, 11, 0.96)),
        var(--black);
    padding: 28px max(22px, calc((100vw - var(--max)) / 2)) 30px;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
    padding: 28px 0 36px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.10);
}

.footer-cta h2 {
    margin: 0;
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 2.15rem;
    line-height: 1.05;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.9fr 0.9fr 1fr;
    gap: 38px;
}

.footer-grid p {
    max-width: 420px;
    color: var(--muted);
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: #FFFFFF;
    font-size: 1rem;
}

.footer-grid a {
    display: block;
    margin: 8px 0;
}

.footer-company-meta {
    display: grid;
    gap: 5px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-company-meta strong {
    color: #FFFFFF;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(229, 231, 235, 0.10);
    color: var(--muted);
    font-size: 0.92rem;
}

.cookie-banner {
    position: fixed;
    left: max(18px, calc((100vw - var(--max)) / 2));
    right: max(18px, calc((100vw - var(--max)) / 2));
    bottom: 18px;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(0, 209, 255, 0.24);
    border-radius: var(--radius);
    padding: 16px;
    background:
        linear-gradient(135deg, rgba(0, 209, 255, 0.10), rgba(201, 162, 39, 0.06)),
        rgba(5, 7, 11, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    color: #FFFFFF;
    font-family: "Space Grotesk", Inter, sans-serif;
}

.cookie-banner p {
    max-width: 680px;
    margin: 4px 0 0;
    color: var(--muted);
}

.cookie-banner a {
    display: inline-flex;
    margin-top: 6px;
    color: var(--cyan);
    font-weight: 800;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

@media (max-width: 1120px) {
    .hero h1 {
        font-size: 4.1rem;
    }

    .hero-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(520px, 100%);
        margin-top: 34px;
    }

    .hero {
        min-height: auto;
        align-items: start;
    }

    .hero-gridline {
        display: none;
    }

    .creation-grid,
    .metric-strip,
    .project-grid,
    .finish-grid,
    .contact-section {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .material-layout,
    .color-panel,
    .quote-shell,
    .tracking-shell,
    .product-page {
        grid-template-columns: 1fr;
    }

    .quote-stepper,
    .tracking-card {
        position: static;
    }

    .quote-stepper {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-stepper div {
        grid-template-columns: 1fr;
    }

    .color-swatches {
        max-width: 420px;
    }

    .tracking-timeline {
        grid-template-columns: repeat(4, 1fr);
    }

    .tracking-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .site-header {
        min-height: 72px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand small {
        display: none;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 91;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 85;
        border: 0;
        background: rgba(0, 0, 0, 0.48);
    }

    .nav-backdrop.is-open {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 84px;
        left: 18px;
        right: 18px;
        z-index: 90;
        display: grid;
        gap: 8px;
        padding: 14px;
        border: 1px solid rgba(0, 209, 255, 0.22);
        border-radius: var(--radius);
        background:
            linear-gradient(145deg, rgba(0, 209, 255, 0.10), transparent),
            rgba(5, 7, 11, 0.96);
        box-shadow: var(--shadow);
        backdrop-filter: blur(22px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        visibility: hidden;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .site-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .site-nav a {
        justify-content: flex-start;
        min-height: 48px;
        padding: 0 14px;
    }

    .site-nav .nav-cta {
        justify-content: center;
        margin-left: 0;
        margin-top: 4px;
    }

    .hero {
        padding: 74px 18px 82px;
    }

    .hero h1,
    .compact-hero h1 {
        font-size: 3.05rem;
        line-height: 1;
    }

    .hero-copy {
        font-size: 1.16rem;
    }

    .section,
    .form-section,
    .contact-section,
    .product-page,
    .legal-page,
    .cta-band,
    .page-hero {
        width: calc(100% - 36px);
    }

    .featured-section,
    .materials-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .section-heading,
    .cta-band,
    .footer-cta,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2,
    .cta-band h2,
    .legal-page h1,
    .product-info h1 {
        font-size: 2.25rem;
    }

    .form-grid,
    .inline-fields,
    .creation-grid,
    .metric-strip,
    .project-grid,
    .finish-grid,
    .contact-section,
    .footer-grid,
    .timeline,
    .tracking-timeline,
    .tracking-info-grid,
    .empty-showcase {
        grid-template-columns: 1fr;
    }

    .project-card p {
        min-height: 0;
    }

    .quote-form,
    .success-panel,
    .form-errors,
    .tracking-card,
    .tracking-empty,
    .tracking-order,
    .quote-step,
    .cta-band,
    .color-panel,
    .legal-page,
    .product-info {
        padding: 22px;
    }

    .tracking-order-head,
    .tracking-result-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .color-swatches {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .product-characteristics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand strong {
        font-size: 0.94rem;
    }

    .hero h1,
    .compact-hero h1 {
        font-size: 2.55rem;
    }

    .hero-actions,
    .product-actions,
    .quote-form-actions,
    .success-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .hero-proof span,
    .material-tags span {
        width: 100%;
        justify-content: center;
    }

    .color-swatches {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Premium UI polish pass */
:root {
    --control-height: 50px;
    --card-pad: 24px;
    --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.34);
    --shadow-hover: 0 26px 78px rgba(0, 0, 0, 0.44), 0 0 32px rgba(0, 209, 255, 0.08);
}

::selection {
    color: #03101A;
    background: rgba(0, 209, 255, 0.82);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(0, 209, 255, 0.85);
    outline-offset: 3px;
}

.site-header {
    background:
        linear-gradient(180deg, rgba(10, 16, 30, 0.86), rgba(5, 7, 11, 0.68)),
        rgba(5, 7, 11, 0.76);
    border-bottom-color: rgba(0, 209, 255, 0.14);
}

.brand-mark,
.brand-logo,
.nav-toggle,
.site-nav a,
.btn,
.glass-card,
.project-image span,
.project-meta span,
.quote-step,
.quote-stepper div,
.tracking-timeline li,
.tracking-info-grid div,
.tracking-note,
.file-preview,
.flash,
.empty-showcase {
    border-radius: var(--radius);
}

.site-nav a,
.btn,
.card-actions a,
.section-link,
.contact-card a,
.site-footer a {
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn {
    min-height: var(--control-height);
    padding: 0 22px;
    letter-spacing: 0;
    box-shadow: var(--shadow-soft);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary,
.site-nav .nav-cta {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.30), transparent 38%),
        linear-gradient(135deg, var(--cyan), #62E7FF 48%, var(--blue));
}

.btn-secondary {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent),
        rgba(229, 231, 235, 0.055);
}

.section {
    padding-top: 88px;
    padding-bottom: 88px;
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading h2,
.cta-band h2,
.legal-page h1,
.product-info h1,
.compact-hero h1 {
    letter-spacing: 0;
}

.glass-card {
    border-color: rgba(229, 231, 235, 0.13);
    background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(0, 209, 255, 0.13), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
        rgba(11, 16, 32, 0.70);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.075);
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.glass-card:hover {
    border-color: rgba(0, 209, 255, 0.28);
    box-shadow: var(--shadow-hover);
}

.project-grid,
.creation-grid,
.finish-grid,
.timeline,
.contact-section {
    align-items: stretch;
}

.project-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.project-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0;
    padding: var(--card-pad);
}

.project-card p {
    min-height: 0;
}

.card-actions {
    margin-top: auto;
    padding-top: 18px;
}

.creation-card,
.timeline article,
.finish-grid article,
.contact-card,
.material-copy,
.product-info,
.tracking-card,
.tracking-empty,
.tracking-order {
    padding: var(--card-pad);
}

.creation-card,
.finish-grid article,
.timeline article,
.contact-card {
    min-height: auto;
}

.empty-showcase {
    border-color: rgba(0, 209, 255, 0.18);
    background:
        linear-gradient(145deg, rgba(0, 209, 255, 0.075), transparent 42%),
        rgba(11, 16, 32, 0.72);
}

input,
select,
textarea {
    min-height: var(--control-height);
    line-height: 1.35;
    border-color: rgba(229, 231, 235, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
        rgba(5, 7, 11, 0.76);
    caret-color: var(--cyan);
}

textarea {
    min-height: 132px;
}

input::placeholder,
textarea::placeholder {
    color: rgba(148, 163, 184, 0.76);
}

select {
    color: var(--silver);
}

.quote-form,
.success-panel,
.form-errors {
    padding: 30px;
}

.quote-step {
    padding: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
        rgba(5, 7, 11, 0.30);
}

.quote-step.has-error,
.form-errors,
.flash-error {
    border-color: rgba(255, 107, 107, 0.48);
    background:
        linear-gradient(135deg, rgba(255, 107, 107, 0.10), transparent),
        rgba(11, 16, 32, 0.72);
}

.flash-success,
.success-protocol {
    border-color: rgba(52, 211, 153, 0.38);
    background:
        linear-gradient(135deg, rgba(52, 211, 153, 0.10), transparent),
        rgba(11, 16, 32, 0.72);
}

.file-preview {
    min-height: 86px;
    border-color: rgba(0, 209, 255, 0.34);
}

.tracking-timeline li {
    min-height: 112px;
}

.tracking-info-grid div,
.tracking-note,
.tracking-item {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
        rgba(5, 7, 11, 0.34);
}

.status-pill {
    letter-spacing: 0;
}

.site-footer {
    background:
        linear-gradient(180deg, rgba(11, 16, 32, 0.64), rgba(5, 7, 11, 0.98)),
        radial-gradient(circle at 80% 0%, rgba(0, 209, 255, 0.08), transparent 32%),
        var(--black);
}

@media (max-width: 820px) {
    .section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .site-nav {
        max-height: calc(100svh - 108px);
        overflow-y: auto;
    }

    .quote-form,
    .success-panel,
    .form-errors,
    .tracking-card,
    .tracking-empty,
    .tracking-order,
    .quote-step,
    .cta-band,
    .color-panel,
    .legal-page,
    .product-info,
    .creation-card,
    .timeline article,
    .finish-grid article,
    .contact-card,
    .material-copy {
        padding: 20px;
    }

    input,
    select,
    textarea,
    .btn {
        min-height: 50px;
    }

    .tracking-timeline li {
        min-height: 92px;
    }
}

@media (max-width: 520px) {
    .hero-actions,
    .product-actions,
    .quote-form-actions,
    .success-actions,
    .tracking-actions {
        gap: 10px;
    }

    .project-card-body,
    .empty-showcase {
        padding: 18px;
    }
}

/* Responsive audit pass: 360px to large desktop */
html,
body {
    max-width: 100%;
}

body {
    overflow-x: clip;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

.hero,
.site-header,
.site-footer,
.featured-section,
.materials-section {
    max-width: 100%;
}

.hero h1,
.compact-hero h1,
.section-heading h2,
.product-info h1,
.cta-band h2,
.footer-cta h2,
.success-protocol strong,
.tracking-order-head strong {
    overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
    .hero-media {
        opacity: 0.46;
    }

    .product-gallery,
    .product-info,
    .quote-form,
    .tracking-card,
    .tracking-order,
    .glass-card {
        backdrop-filter: blur(14px);
    }

    .tracking-timeline {
        overflow-x: auto;
        grid-template-columns: repeat(7, minmax(118px, 1fr));
        padding-bottom: 8px;
        scrollbar-width: thin;
    }
}

@media (max-width: 768px) {
    .particle-field {
        animation: none;
        opacity: 0.10;
    }

    .site-bg::before {
        opacity: 0.78;
    }

    .site-header {
        min-height: 68px;
    }

    .site-nav {
        top: 78px;
    }

    .hero {
        padding-top: 66px;
        padding-bottom: 72px;
    }

    .hero h1,
    .compact-hero h1 {
        font-size: 2.82rem;
    }

    .hero-copy,
    .lead {
        font-size: 1.08rem;
    }

    .page-hero {
        padding-top: 72px;
        padding-bottom: 34px;
    }

    .tracking-timeline {
        grid-template-columns: 1fr;
        overflow-x: visible;
    }

    .tracking-timeline li {
        min-height: 84px;
    }

    .quote-stepper {
        position: static;
    }
}

@media (max-width: 414px) {
    .site-header {
        padding-left: 14px;
        padding-right: 14px;
        gap: 12px;
    }

    .site-nav {
        left: 14px;
        right: 14px;
    }

    .brand {
        gap: 10px;
    }

    .brand strong {
        max-width: 178px;
        overflow-wrap: anywhere;
    }

    .hero,
    .featured-section,
    .materials-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .section,
    .form-section,
    .contact-section,
    .product-page,
    .legal-page,
    .cta-band,
    .page-hero {
        width: calc(100% - 28px);
    }

    .hero h1,
    .compact-hero h1 {
        font-size: 2.36rem;
    }

    .section-heading h2,
    .cta-band h2,
    .legal-page h1,
    .product-info h1 {
        font-size: 2rem;
    }

    .tracking-item {
        grid-template-columns: 58px 1fr;
    }

    .tracking-item img {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 390px) {
    .brand strong {
        max-width: 150px;
        font-size: 0.9rem;
    }

    .hero h1,
    .compact-hero h1 {
        font-size: 2.18rem;
    }

    .hero-proof span,
    .material-tags span,
    .btn {
        min-height: 48px;
    }
}

@media (max-width: 360px) {
    .brand strong {
        max-width: 126px;
    }

    .brand-mark,
    .brand-logo,
    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .hero h1,
    .compact-hero h1 {
        font-size: 2.04rem;
    }

    .quote-form,
    .success-panel,
    .form-errors,
    .tracking-card,
    .tracking-empty,
    .tracking-order,
    .quote-step,
    .cta-band,
    .color-panel,
    .legal-page,
    .product-info,
    .creation-card,
    .timeline article,
    .finish-grid article,
    .contact-card,
    .material-copy {
        padding: 16px;
    }
}

@media (max-width: 900px) {
    .footer-grid,
    .legal-company-box,
    .legal-index {
        grid-template-columns: 1fr;
    }

    .footer-company-meta {
        font-size: 0.84rem;
    }

    .cookie-banner,
    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 520px) {
    .legal-lead {
        font-size: 1rem;
    }

    .legal-company-box,
    .legal-index {
        padding: 14px;
    }
}
