:root {
    --bg: #0d0d0f;
    --bg-deep: #060607;
    --surface: rgba(56, 60, 65, 0.82);
    --surface-strong: #383c41;
    --ink: #f4f4f5;
    --ink-soft: #bbbdc2;
    --line: rgba(244, 244, 245, 0.1);
    --accent: #ff4a1c;
    --accent-deep: #ff7345;
    --steel: #bbbdc2;
    --sand: #bbbdc2;
    --success: rgba(63, 125, 74, 0.32);
    --error: rgba(138, 54, 43, 0.34);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
    --radius: 26px;
    --radius-sm: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
    radial-gradient(circle at top left, rgba(255, 74, 28, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 74, 28, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(56, 60, 65, 0.15), transparent 28%),
    linear-gradient(180deg, #0d0d0f 0%, #0b0b0c 52%, #060607 100%);
}

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

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

p,
li,
dd,
dt,
label,
input,
textarea,
button {
    font-size: 1rem;
    line-height: 1.65;
}

h1,
h2,
h3 {
    margin: 0 0 0.5rem;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 0.95;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3.4rem, 8vw, 6.7rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
}

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

.eyebrow,
.site-footer__eyebrow {
    margin: 0 0 1rem;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(13, 13, 15, 0.85);
    border-bottom: 1px solid rgba(244, 244, 245, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.site-logo img {
    width: 244px;
}

.site-nav {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.site-nav a {
    position: relative;
    padding-bottom: 0.2rem;
    font-weight: 700;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.hero,
.page-hero {
    position: relative;
    overflow: clip;
    padding: 4.5rem 0 3rem;
}

.page-hero--compact {
    padding-bottom: 1rem;
}

.hero__grid,
.product-hero,
.split-panel,
.contact-layout,
.detail-grid,
.site-footer__grid {
    display: grid;
    gap: 2rem;
}

.hero__grid,
.product-hero,
.split-panel,
.contact-layout,
.site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero__copy {
    max-width: 52rem;
    margin: 1rem 0 0;
    font-size: 1.15rem;
    color: var(--ink-soft);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    background: linear-gradient(135deg, var(--accent) 0%, #ff7345 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(255, 74, 28, 0.24);
}

.button--secondary,
.button--ghost {
    border-color: rgba(244, 244, 245, 0.14);
    background: rgba(56, 60, 65, 0.78);
    color: var(--ink);
}

.hero-panel,
.story-card,
.pillar-card,
.product-card,
.detail-card,
.contact-card,
.contact-form,
.checklist-panel,
.cta-panel {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(46, 50, 55, 0.9) 0%, rgba(30, 33, 37, 0.92) 100%);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 1.3rem;
}

.hero-panel::before,
.product-card::before,
.detail-card::before,
.contact-card::before,
.contact-form::before,
.story-card::before,
.pillar-card::before,
.checklist-panel::before,
.cta-panel::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(244, 244, 245, 0.05);
    border-radius: calc(var(--radius) - 8px);
    pointer-events: none;
}

.hero-panel--product img,
.hero-panel img {
    border-radius: calc(var(--radius) - 8px);
}

.stat-band {
    padding: 0 0 1.5rem;
}

.stat-band__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-band__grid > div {
    padding: 1.2rem 1.3rem;
    border-top: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(46, 50, 55, 0.8) 0%, rgba(30, 33, 37, 0.82) 100%);
    border-radius: 18px;
    border-left: 1px solid rgba(244, 244, 245, 0.06);
    border-right: 1px solid rgba(244, 244, 245, 0.06);
    border-bottom: 1px solid rgba(244, 244, 245, 0.06);
}

.stat-band__value {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
}

.stat-band__label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
}

.section {
    padding: 4.5rem 0;
}

.section--dark {
    background: linear-gradient(180deg, rgba(46, 50, 55, 0.98) 0%, rgba(38, 42, 46, 0.98) 100%);
    color: #f4f4f5;
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading p:last-child {
    max-width: 48rem;
    color: inherit;
    opacity: 0.82;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

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

.card-grid--product-list {
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.product-card,
.story-card,
.detail-card,
.contact-card,
.contact-form,
.checklist-panel,
.cta-panel {
    padding: 1.6rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card img {
    border-radius: calc(var(--radius) - 8px);
}

.product-card h2,
.product-card h3,
.product-card p {
    margin-top: 0;
}

.product-card__tier {
    margin: 0;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.product-card--full {
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
}

.product-card--full img {
    width: 100%;
    max-width: 240px;
}

.product-card__body {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.product-card__body .feature-list {
    margin-top: 0.2rem;
}

.product-card--full,
.detail-grid {
    display: grid;
}

.pillar-grid,
.value-row {
    display: grid;
    gap: 1rem;
}

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

.pillar-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.text-link {
    color: var(--accent-deep);
    font-weight: 800;
}

.feature-list,
.checklist-panel ul {
    margin: 0;
    padding-left: 1.2rem;
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li,
.checklist-panel li,
.social-list li {
    margin-bottom: 0.55rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    padding: 0;
    text-decoration: none;
    transition: color 160ms ease, transform 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-1px);
}

.social-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    flex: 0 0 auto;
}

.social-link__icon svg {
    width: 100%;
    height: 100%;
}

.social-link__meta {
    display: grid;
    gap: 0.1rem;
}

.social-link__label {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.1;
}

.social-link:hover .social-link__label,
.social-link:focus-visible .social-link__label,
.social-link:hover .social-link__icon,
.social-link:focus-visible .social-link__icon {
    color: var(--accent-deep);
}

.social-link__handle {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.1;
}

.spec-list {
    display: grid;
    gap: 1rem;
    margin: 0;
}

.spec-list div {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.spec-list dt {
    font-weight: 800;
}

.spec-list dd {
    margin: 0.35rem 0 0;
    color: var(--ink-soft);
}

.split-panel--stacked {
    gap: 1.5rem;
}

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

.value-pill {
    padding: 1rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.field label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 800;
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(244, 244, 245, 0.12);
    border-radius: 14px;
    background: rgba(13, 13, 15, 0.78);
    color: var(--ink);
    font: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(187, 189, 194, 0.72);
}

.field input:focus,
.field textarea:focus {
    outline: 2px solid rgba(255, 74, 28, 0.5);
    outline-offset: 2px;
}

.field ul {
    margin: 0.45rem 0 0;
    padding-left: 1.1rem;
    color: var(--accent-deep);
}

.message-strip {
    padding-top: 1rem;
}

.message-strip__item {
    padding: 0.95rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.6rem;
}

.message-strip__item--success {
    background: var(--success);
    border: 1px solid rgba(122, 207, 119, 0.22);
}

.message-strip__item--error {
    background: var(--error);
    border: 1px solid rgba(255, 138, 117, 0.2);
}

.cta-panel {
    text-align: center;
}

.site-footer {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, rgba(13, 13, 15, 0) 0%, rgba(13, 13, 15, 0.78) 26%, rgba(13, 13, 15, 1) 100%);
}

.site-footer__grid {
    align-items: start;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: var(--ink-soft);
}

.site-footer h2,
.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--ink);
}

.social-list--stacked {
    display: grid;
    gap: 0.75rem;
}

.social-list--stacked li {
    margin-bottom: 0;
}

@media (max-width: 960px) {
    .hero__grid,
    .product-hero,
    .split-panel,
    .contact-layout,
    .site-footer__grid,
    .card-grid--products,
    .pillar-grid,
    .value-row,
    .detail-grid,
    .stat-band__grid,
    .product-card--full {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2.8rem, 11vw, 4.6rem);
    }

    .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .product-card--full img {
        max-width: 220px;
    }
}

@media (max-width: 640px) {
    .site-nav {
        gap: 0.85rem 1rem;
    }

    .hero,
    .page-hero,
    .section {
        padding: 3.2rem 0;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }
}