/* ─────────────────────────────────────────────────────────────
   AndLake landing — base tokens, resets and shared primitives.
   Light/white theme with a restrained cyan accent.
   ───────────────────────────────────────────────────────────── */

:root {
  --bg: #05080d;
  --bg-2: #0a121c;
  --panel: #0c1723;
  --panel-2: #12212f;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --text: #eaf0f6;
  --text-2: #a6b4c2;
  --text-3: #7c8a99;
  --accent: #37b6ec;
  --accent-2: #6cccf3;
  --glow: rgba(55, 182, 236, 0.45);
  --green: #35c98a;
  --violet: #9a7cff;
  --radius: 14px;
  --radius-lg: 18px;
  --maxw: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(1100px 620px at 50% -8%, rgba(55,182,236,.10), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  overflow-x: hidden;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1.4px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000, transparent 76%);
  mask-image: radial-gradient(ellipse at 50% 35%, #000, transparent 76%);
  opacity: .5;
}

::selection { background: rgba(22,153,214,.20); color: var(--text); }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.08; font-weight: 700; }
.accent { color: var(--accent); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 10px var(--glow); }

/* ── Buttons & CTA (sales actions) ───────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; padding: 11px 20px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; white-space: nowrap; transition: transform .2s cubic-bezier(.22,1,.36,1), box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.btn svg { width: 16px; height: 16px; }
.btn .arw { transition: transform .2s ease; }
.btn:hover .arw { transform: translateX(3px); }
.btn-primary { background: linear-gradient(135deg, #1aa1de, #0f86c4); color: #fff; box-shadow: 0 10px 26px var(--glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px var(--glow); }
.btn-ghost { background: var(--panel); color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent-2); }
.btn-lg { font-size: 15.5px; padding: 13px 24px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
