@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-latin-800-normal.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}

:root {
  --ink: #1a1d24;
  --ink-muted: #676d78;
  --spine-bg: #1c2128;
  --section-entities: #2f6f62;
  --section-snaps: #a1477a;
  --section-journeys: #3d4b94;
  --section-workflows: #b3413f;
  --section-settings: #a58323;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #dfe7f2 0%, #f3ecdd 55%, #f6ddc4 100%);
  overflow: hidden;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 6vw;
  gap: 24px;
}

.copy {
  max-width: 480px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.tagline {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  white-space: nowrap;
}

.subtag {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
}

.stamp {
  display: block;
  width: 168px;
  height: 168px;
  margin: 28px 0 0;
  color: var(--section-workflows);
  fill: currentColor;
  opacity: 0.82;
  mix-blend-mode: multiply;
  transform: rotate(-11deg);
}

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

.hero-image img {
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(20, 20, 30, 0.18));
}

.footer {
  background: var(--spine-bg);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 14px;
}

.footer .tag {
  opacity: 0.6;
}

.footer .connect {
  color: white;
  opacity: 0.85;
  text-decoration: none;
}

.footer .connect:hover {
  opacity: 1;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 48px;
  }

  .copy {
    max-width: none;
    margin: 0 auto;
  }

  .brand {
    justify-content: center;
  }

  .tagline {
    font-size: clamp(20px, 6.5vw, 26px);
  }

  .hero-image img {
    width: min(70%, 300px);
  }

  .footer {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 16px 6vw;
  }
}
