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

:root {
  --black:   #111110;
  --white:   #fafaf8;
  --cream:   #f4f4ef;
  --muted:   #888886;
  --border:  #e4e4df;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--black); }

/* ── HERO ── */
.hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 56px 96px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 112px);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.025em;
  margin-bottom: 44px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  max-width: 440px;
  font-size: 18px;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── PRODUCTS ── */
.products {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 56px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s;
}

.product-card:hover { border-color: #bbb; }

.product-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
}

.product-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.product-platform {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

.product-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
}

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

.product-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.product-cta:hover { opacity: 0.45; }

.badge {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px;
}

/* ── MORE COMING ── */
.more-coming {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 56px 128px;
}

.more-coming h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 40px 0 28px;
}

.more-coming h2 em {
  font-style: italic;
  font-weight: 400;
}

.more-desc {
  max-width: 400px;
  font-size: 16px;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-left {
  font-size: 13px;
  color: var(--muted);
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--black); }

/* ── MOBILE ── */
@media (max-width: 640px) {
  nav { padding: 20px 24px; }
  .hero { padding: 72px 24px 64px; }
  .products { padding: 56px 24px; }
  .product-card { padding: 28px 24px; }
  .more-coming { padding: 56px 24px 80px; }
  footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
