/* site.css — eazy data marketing + auth. Reuses css/tokens.css for fonts/vars */
:root { --maxw: 1200px; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
img, svg { display: block; }

/* type */
.display { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; }
.eyebrow { font-family: var(--body); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-50); }
.lead { font-family: var(--body); font-size: 18px; line-height: 1.55; color: var(--ink-70); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; border-radius: 999px;
  cursor: pointer; transition: transform .15s var(--ease), background .15s, box-shadow .15s, color .15s; white-space: nowrap; }
.btn-lg { height: 54px; padding: 0 26px; font-size: 16px; }
.btn-md { height: 46px; padding: 0 20px; font-size: 15px; }
.btn-lime { background: var(--lime); color: var(--ink); box-shadow: 0 6px 18px color-mix(in srgb, var(--lime) 46%, transparent); }
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 10px 26px color-mix(in srgb, var(--lime) 55%, transparent); }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink-15); }
.btn-ghost:hover { background: var(--card); border-color: var(--ink-35); }
.btn:active { transform: scale(.97); }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s, background .2s; }
.nav.scrolled { border-bottom-color: var(--hairline); background: color-mix(in srgb, var(--bg) 94%, transparent); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: 12px; }
.nav-links a { font-family: var(--body); font-size: 14.5px; font-weight: 500; color: var(--ink-70); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* wordmark */
.wordmark { font-family: var(--display); font-weight: 700; letter-spacing: -0.04em; color: var(--ink); display: inline-flex; align-items: baseline; }
.wordmark .d { opacity: .42; margin-left: .14em; }

/* sections */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.center { text-align: center; }

/* cards */
.card { background: var(--card); border: 1px solid var(--hairline); border-radius: 24px; box-shadow: var(--sh-card); }
.lift { transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.lift:hover { transform: translateY(-4px); box-shadow: var(--sh-pop); }

/* chips */
.netchip { display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--ink-70); }
.dot { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }

/* hero phone */
.phone { width: 300px; border-radius: 42px; background: #0c0d0a; padding: 10px; box-shadow: 0 40px 80px rgba(16,18,8,.26); flex-shrink: 0; }
.phone-screen { border-radius: 33px; overflow: hidden; background: var(--bg); position: relative; }

/* feature icon tile */
.itile { width: 52px; height: 52px; border-radius: 15px; background: var(--lime-cream); display: flex; align-items: center; justify-content: center; }

/* footer */
.footer { background: var(--ink); color: var(--bg); padding: 72px 0 36px; }
.footer a { color: rgba(250,250,246,.66); font-family: var(--body); font-size: 14px; transition: color .15s; }
.footer a:hover { color: var(--bg); }

/* login */
.auth { min-height: 100vh; display: grid; grid-template-columns: 1.05fr 1fr; }
.auth-brand { background: linear-gradient(165deg, var(--lime-cream), var(--lime-cream-edge)); padding: 56px; display: flex; flex-direction: column; }
.auth-form { display: flex; align-items: center; justify-content: center; padding: 48px 40px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--body); font-size: 13px; font-weight: 600; color: var(--ink-70); }
.input { height: 54px; border-radius: 14px; border: 1.5px solid var(--ink-15); background: var(--card); padding: 0 16px;
  font-family: var(--body); font-size: 15.5px; color: var(--ink); outline: none; transition: border-color .15s, box-shadow .15s; width: 100%; }
.input::placeholder { color: var(--ink-35); }
.input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px color-mix(in srgb, var(--lime) 40%, transparent); }

/* responsive */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .section { padding: 72px 0; }
  .auth { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
}
@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .phone { margin: 0 auto; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .display-hero { font-size: 44px !important; }
}
