:root {
    --bg: #0b0b0b;
    --panel: #121212;
    --sand: #e6d9c7;
    --text: #cfc6b9;
    --muted: #a89e93;
    --chip: #1e1e1e;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 16px/1.6 "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Typography */
h1,
h2,
h3 {
    margin: 0 0 16px;
    color: var(--sand);
    font-family: "Comfortaa", "Nunito", system-ui, sans-serif
}

h1 {
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.1
}

h2 {
    font-size: clamp(28px, 3.6vw, 36px)
}

h3 {
    font-size: 18px
}

p {
    margin: 0 0 14px;
    color: var(--sand)
}

/* Layout */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 72px 0
}

.section--text {
    padding-top: 64px
}

/* Nav */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 10;
    background: transparent;
    transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease
}

.nav__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand img {
    height: 60px;
    display: block
}

.links {
    display: flex;
    gap: 18px;
    align-items: center
}

.links a {
    color: var(--sand);
    text-decoration: none;
    font-size: 16px;
    opacity: .92
}

.links .cta {
    background: rgba(255, 255, 255, .06);
    padding: 8px 16px;
    border-radius: 18px;
    border: none;
    color: var(--sand)
}

.links .cta:hover {
    background: rgba(255, 255, 255, .10)
}

.nav--solid {
    background: rgba(10, 10, 10, .88);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .05)
}

/* Hero */
.hero {
    position: relative;
    padding: 144px 0 80px;
    text-align: left
}

.hero__content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px
}

.hero .sub {
    opacity: .9
}

.hero .btn {
    margin: 14px 0 22px
}

.hero .proof {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    opacity: .9
}

.hero .proof span {
    background: var(--chip);
    color: var(--sand);
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    font-size: 14px
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("./assets/board-hero.svg") center/cover no-repeat;
    opacity: .25;
    z-index: -1;
    pointer-events: none
}

/* Buttons */
.btn {
    background: rgba(255, 255, 255, .08);
    color: var(--sand);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 20px;
    display: inline-block;
    border: none
}

.btn:hover {
    background: rgba(255, 255, 255, .12)
}

/* Cards */
.how,
.cards {
    display: grid;
    gap: 24px
}

@media (min-width:900px) {

    .how,
    .cards {
        grid-template-columns: repeat(3, 1fr)
    }
}

.step,
.card {
    background: var(--panel);
    border: none;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    min-height: 220px;
    position: relative
}

.card__cta {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: flex;
    justify-content: center
}

/* Trusted by */
.strip {
    background: var(--bg);
    padding: 28px 0
}

.strip__inner {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center
}

.strip .label {
    color: var(--muted)
}

.strip__logos {
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: center
}

.strip__logos img {
    height: 32px;
    filter: grayscale(1) contrast(1)
}

.strip__logos img[alt="Cowboys & Caftans"],
.strip__logos img[alt="Tenzing"] {
    height: 36px
}

/* Contact / footer */
.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.footer {
    padding: 48px 0;
    background: var(--bg)
}

.foot {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 14px
}