:root {
  --hm-bg: #0D1117;
  --hm-panel: #12151C;
  --hm-fg: #F2F1ED;
  --hm-border: rgba(242,241,237,0.1);
}
* { box-sizing: border-box; }
body.home-body {
  margin: 0; width: 100%; min-height: 100vh; background: var(--hm-bg); color: var(--hm-fg);
  font-family: 'Helvetica Neue', Arial, sans-serif; position: relative; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--hm-fg); color: var(--hm-bg); }

.home-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(242,241,237,0.06), transparent 70%);
  pointer-events: none;
}

.home-nav {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 26px 56px; background: var(--hm-panel); border-bottom: 1px solid var(--hm-border);
  flex-wrap: wrap; gap: 16px;
}
.home-wordmark { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.home-nav-links { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.home-nav-item { font-size: 12.5px; letter-spacing: 0.06em; color: rgba(242,241,237,0.55); }
.home-nav-link { color: rgba(242,241,237,0.75); }
.home-signup-btn {
  padding: 9px 16px; background: var(--hm-fg); color: var(--hm-bg); border-radius: 4px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
}
.home-signup-btn:hover { background: #D8D6D0; }

.home-hero {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 120px 24px 100px; gap: 26px;
}
.home-eyebrow { font-size: 11.5px; letter-spacing: 0.18em; color: rgba(242,241,237,0.45); }
.home-headline { font-size: clamp(40px, 8vw, 88px); line-height: 1.05; font-weight: 700; letter-spacing: -0.01em; max-width: 900px; }
.home-subhead { font-size: 22px; color: rgba(242,241,237,0.65); max-width: 520px; }
.home-cta {
  margin-top: 14px; padding: 15px 34px; border: 1px solid rgba(242,241,237,0.35); border-radius: 4px;
  font-size: 12px; letter-spacing: 0.1em; white-space: nowrap; display: inline-block;
}
.home-cta:hover { background: var(--hm-fg); color: var(--hm-bg); border-color: var(--hm-fg); }

.home-panel {
  position: relative; background: var(--hm-panel); border-top: 1px solid var(--hm-border);
  border-bottom: 1px solid var(--hm-border); padding: 96px 56px 110px;
  display: flex; flex-direction: column; gap: 48px;
}
.home-panel-title { font-size: 44px; font-weight: 700; }
.home-cards { display: flex; gap: 28px; flex-wrap: wrap; }
.home-card { flex: 1; min-width: 320px; display: flex; flex-direction: column; }
.home-card-visual {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(242,241,237,0.08);
  display: flex; align-items: center; justify-content: center;
}
.home-card-invoice { background: #1A1D24; padding: 24px 24px 88px; }
.home-card-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.home-card-editor { background: repeating-linear-gradient(135deg, #1B1E26, #1B1E26 12px, #21242D 12px, #21242D 24px); }
.home-card-export { background: repeating-linear-gradient(135deg, #1E1B1D, #1E1B1D 12px, #262226 12px, #262226 24px); }
.home-card-soon-mark {
  font-size: 22px; font-weight: 800; letter-spacing: 0.02em; line-height: 1.2;
  color: rgba(242,241,237,0.16); text-align: center; padding: 0 20px;
}
.home-card-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}
.home-card-title { font-size: 28px; font-weight: 700; color: #F5F1E8; }
.home-card-cta-link { display: inline-block; }
.home-card-cta-link:hover { color: rgba(245,241,232,0.7); }
.home-card-disabled .home-card-visual { opacity: 0.55; }

.home-banner {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px; background: var(--hm-fg); color: var(--hm-bg); flex-wrap: wrap; gap: 12px;
}
.home-banner-text { font-size: 12px; letter-spacing: 0.1em; font-weight: 500; }
.home-banner-link { font-size: 12px; letter-spacing: 0.08em; font-weight: 500; }
