:root {
  --fu-navy: #111827;
  --fu-concrete: #f3f4f6;
  --fu-orange: #f97316;
  --fu-blue: #2563eb;
  --fu-green: #16a34a;
  --fu-red: #dc2626;
  --fu-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--fu-navy);
  background: var(--fu-concrete);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  font-weight: 700;
}

.hero {
  background: linear-gradient(135deg, #111827 0%, #172033 65%, #1f2937 100%);
  color: var(--fu-white);
  padding: 28px clamp(20px, 5vw, 72px) 72px;
}

nav,
.hero-grid,
.section {
  width: min(1120px, 100%);
  margin: 0 auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
}

.logo {
  width: 180px;
  max-width: 52vw;
  height: auto;
  background: white;
  border-radius: 16px;
  padding: 10px;
}

.hero-grid,
.grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
}

.eyebrow {
  color: var(--fu-orange);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.lead {
  max-width: 760px;
  color: #d1d5db;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.section {
  padding: 56px clamp(20px, 5vw, 72px) 0;
}

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

.two {
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 64px;
}

.card,
article {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.light,
article {
  background: var(--fu-white);
}

li + li,
.card p + p {
  margin-top: 8px;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.swatches span {
  min-height: 120px;
  display: flex;
  align-items: end;
  border-radius: 18px;
  padding: 14px;
  color: var(--text, white);
  background: var(--color);
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 820px) {
  .hero-grid,
  .three,
  .two,
  .swatches {
    grid-template-columns: 1fr;
  }

  nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 48px;
  }
}
