:root {
  --blue: #0080ff;
  --blue-deep: #005fcc;
  --yellow: #ffd400;
  --ink: #0b0d12;
  --ink-soft: #2a2e38;
  --paper: #f4f1ea;
  --white: #ffffff;
  --line: rgba(11, 13, 18, 0.12);
  --radius: 28px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.brand span {
  font-size: 15px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--blue);
}

.hero {
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: 48px 0 64px;
  gap: 40px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 9ch;
}

.hero p {
  margin-top: 24px;
  max-width: 38ch;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-logo {
  justify-self: end;
  width: min(420px, 100%);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.22));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.section {
  padding: 96px 0;
}

.section h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 16ch;
}

.lead {
  margin-top: 20px;
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 52ch;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.about p + p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 54ch;
}

.product {
  background: var(--ink);
  color: var(--white);
}

.product .lead {
  color: rgba(255, 255, 255, 0.72);
}

.product-card {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius);
  background: #141820;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card img {
  width: 160px;
  height: 160px;
  border-radius: 36px;
}

.product-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 36px;
  letter-spacing: -0.04em;
}

.product-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 48ch;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.tile {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.tile h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.tile p {
  color: var(--ink-soft);
  font-size: 16px;
}

.footer {
  background: var(--blue);
  color: var(--white);
  padding: 36px 0;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer strong {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.03em;
}

.footer span {
  opacity: 0.8;
  font-size: 14px;
}

@media (max-width: 860px) {
  .hero-grid,
  .split,
  .product-card,
  .grid-2,
  .footer .wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 40px 0 56px;
  }

  .hero-logo {
    justify-self: start;
    width: 220px;
  }

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .brand span {
    display: none;
  }

  .footer .wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
