@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600;700&family=Syne:wght@700;800&display=swap");

:root {
  --bg: #0f1a14;
  --paper: #f7f4ec;
  --accent: #e85d4c;
  --soft: #b8e05a;
  --cup: #8ec8d8;
  --muted: rgba(247, 244, 236, 0.68);
  --line: rgba(247, 244, 236, 0.14);
  --font-display: "Syne", "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  color: var(--paper);
  font-family: var(--font-body);
  background: var(--bg);
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 85% 50% at 12% -8%, rgba(184, 224, 90, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 92% 8%, rgba(142, 200, 216, 0.22), transparent 50%),
    radial-gradient(ellipse 55% 40% at 80% 90%, rgba(232, 93, 76, 0.12), transparent 50%),
    linear-gradient(180deg, #15241c 0%, #0a120e 100%);
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo .brand-mark,
.logo img.brand-mark {
  display: block;
  height: 1.65rem;
  width: auto;
}
.logo .brand-cups { color: var(--soft); }
.top nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.top a { color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 600; }
.top a:hover,
.top a.logo:hover { color: var(--paper); }

.hero {
  max-width: 44rem;
  padding: clamp(2.5rem, 10vh, 5.5rem) clamp(1rem, 4vw, 2.5rem) 2.5rem;
}
.hero-brand {
  display: block;
  width: min(280px, 72vw);
  height: auto;
  margin-bottom: 1.25rem;
  animation: logo-settle 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes logo-settle {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cup);
  margin-bottom: 0.85rem;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7.5vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  animation: logo-settle 1s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}
h1 em {
  font-style: normal;
  color: var(--soft);
  animation: zest-pulse 2.8s ease-in-out infinite;
}
@keyframes zest-pulse {
  0%, 100% { color: var(--soft); }
  50% { color: var(--cup); }
}
.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.5;
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 1.5rem;
}
.lead strong { color: var(--paper); }
.cta { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1.25rem; }
.btn {
  display: inline-block;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
  border: 1px solid var(--line);
  color: var(--paper);
}
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.ghost { background: transparent; }
.btn.kit {
  background: var(--soft);
  border-color: var(--soft);
  color: #0f1a14;
}
.btn:hover { filter: brightness(1.08); }
.micro { font-size: 0.9rem; color: var(--muted); }
.micro strong { color: var(--paper); }

.strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 40rem;
  margin: 0 clamp(1rem, 4vw, 2.5rem) 3rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 560px) { .strip { grid-template-columns: 1fr; } }
.strip .big {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  color: var(--soft);
  line-height: 1;
  display: block;
}
.strip p { color: var(--muted); margin-top: 0.35rem; }

.one-job {
  max-width: 36rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem) 3rem;
}
.one-job h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.one-job p, .one-job li {
  color: var(--muted);
  line-height: 1.5;
  font-size: 1.05rem;
}
.one-job ol { margin: 0.75rem 0 1.25rem 1.1rem; display: grid; gap: 0.45rem; }

.measure-duel {
  max-width: 40rem;
  margin: 0 clamp(1rem, 4vw, 2.5rem) 2.5rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
  background: rgba(142, 200, 216, 0.06);
}
.measure-duel h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.measure-duel ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.measure-duel li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.75rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.measure-duel .from { text-decoration: line-through; opacity: 0.7; }
.measure-duel .arrow { color: var(--cup); font-weight: 700; }
.measure-duel .to {
  color: var(--soft);
  font-weight: 800;
  font-family: var(--font-display);
}

.foot {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.foot a { color: var(--soft); text-decoration: none; }
