:root {
    --ink: #f7f7f7;
    --muted: #b7bbc2;
    --paper: #090a0c;
    --panel: #15171a;
    --line: rgb(255 255 255 / 0.16);
    --silver: #f2f2f2;
    --steel: #8d939c;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #070809;
    font-family: Inter, Arial, Helvetica, sans-serif;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(
            125deg,
            transparent 0 58%,
            rgb(255 255 255 / 0.045) 58% 59%,
            transparent 59% 100%
        ),
        linear-gradient(180deg, #101215, #070809 62%, #101215);
}

a {
    color: inherit;
}

main {
    width: 100%;
    overflow: hidden;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 40px;
    align-items: center;
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: clamp(28px, 4vw, 64px);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #070809;
  border-bottom: 1px solid var(--line);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: slideShow 60s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }
.hero-slide:nth-child(6) { animation-delay: 25s; }
.hero-slide:nth-child(7) { animation-delay: 30s; }
.hero-slide:nth-child(8) { animation-delay: 35s; }
.hero-slide:nth-child(9) { animation-delay: 40s; }
.hero-slide:nth-child(10) { animation-delay: 45s; }
.hero-slide:nth-child(11) { animation-delay: 50s; }
.hero-slide:nth-child(12) { animation-delay: 55s; }

@keyframes slideShow {
  0% { opacity: 0; }
  1% { opacity: 1; }
  7% { opacity: 1; }
  8.33% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-content {
    max-width: 780px;
    padding-top: 28px;
}

.brand {
    position: absolute;
    top: clamp(28px, 4vw, 64px);
    left: clamp(28px, 4vw, 64px);
    z-index: 1;
}

.brand img {
    display: block;
    max-width: 120px;
    height: auto;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--silver);
    font-size: 0.96rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    color: white;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-style: italic;
    font-weight: 1000;
    letter-spacing: 0;
    line-height: 0.92;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(4rem, 11vw, 8rem);
    text-shadow:
        0 3px 0 #73777e,
        0 22px 42px rgb(0 0 0 / 0.56);
}

h2 {
    max-width: 800px;
    margin-bottom: 0;
    font-size: clamp(2.7rem, 7vw, 5.2rem);
}

h3 {
    margin-bottom: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 950;
    text-transform: uppercase;
}

.tagline {
    max-width: 560px;
    color: var(--muted);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 850;
    text-transform: uppercase;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 18px;
    border: 1px solid var(--silver);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.button svg,
.service-item a svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.button.primary {
    color: #090a0c;
    background: var(--silver);
}

.button.secondary {
    color: white;
    background: #15181c;
}

.button:hover,
.service-item a:hover {
    box-shadow: 0 0 24px rgb(255 255 255 / 0.16);
    transform: translateY(-1px);
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 760px;
    justify-self: end;
    padding: 12px;
    background: #171a1f;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 26px 80px rgb(0 0 0 / 0.46);
}

.hero-card img {
    display: block;
    width: 100%;
    border-radius: 4px;
}

.services,
.contact-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(64px, 8vw, 110px) clamp(28px, 4vw, 64px);
}

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

.service-list {
    display: grid;
    gap: 12px;
}

.service-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    min-height: 128px;
    padding: 24px;
    background: linear-gradient(135deg, #1b1e22, #0d0e10);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.service-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.proof-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    object-fit: contain;
}

.service-item p {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.5;
}

.service-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 96px;
    min-height: 44px;
    color: #090a0c;
    background: var(--silver);
    border-radius: 4px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 clamp(28px, 4vw, 64px);
}

.proof article {
    min-height: 160px;
    padding: 28px;
    color: #090a0c;
    background: linear-gradient(135deg, #eeeeee, var(--steel));
    text-transform: uppercase;
}

.proof strong,
.proof span {
    display: block;
}

.proof strong {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 950;
}

.proof span {
    color: #34383d;
    font-size: 0.86rem;
    font-weight: 850;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 38px;
    align-items: end;
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    .hero,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-card {
        justify-self: stretch;
        max-width: none;
    }

    .brand {
        margin-bottom: 52px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .hero,
    .services,
    .contact-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-background {
        inset: 0;
    }

    .hero-card {
        padding: 8px;
    }

    .service-item,
    .proof {
        grid-template-columns: 1fr;
    }

    .service-item {
        align-items: start;
    }

    .proof {
        padding-left: 18px;
        padding-right: 18px;
    }

    .button,
    .service-item a {
        width: 100%;
    }
}
