:root {
  --ink: #1a1a1a;
  --ink-soft: #3a4248;
  --muted: #6b757c;
  --accent: #4a6670;
  --line: rgba(26, 26, 26, 0.14);
  --bg0: #e8eef1;
  --bg1: #d5dde3;
  --bg2: #c4ced6;
  --font: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 18% 0%, #f3f6f8 0%, transparent 55%),
    linear-gradient(165deg, var(--bg0) 0%, var(--bg1) 48%, var(--bg2) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:hover {
  color: var(--accent);
}

.page {
  min-height: 100vh;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  display: flex;
  flex-direction: column;
}

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

.wordmark {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-contact {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 8vh, 5rem) 0;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.tagline {
  margin: 1.15rem 0 0;
  max-width: 28ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-soft);
}

.channels {
  margin: 1.35rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--accent);
}

.dot {
  opacity: 0.7;
}

.email {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}

.email:hover {
  color: var(--accent);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-art {
  width: min(100%, 380px);
  height: auto;
}

.foot {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.foot p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2.5rem 0 1.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .product-art {
    width: min(72%, 280px);
  }

  .tagline {
    max-width: 36ch;
  }
}

@media (max-width: 480px) {
  .wordmark {
    font-size: 0.95rem;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
  }
}
