/* Bricklane landing — brand: primary #207bf1, slate ink, white surfaces. */
:root {
  --blue: #207bf1;
  --blue-dark: #1763cc;
  --ink: #0f172a;
  --slate: #475569;
  --muted: #94a3b8;
  --line: #e6eaf0;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .05);
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem;
  font-weight: 700; color: var(--blue); margin: 0 0 14px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .95rem; border-radius: 10px;
  padding: 11px 20px; border: 1px solid transparent; cursor: pointer;
  transition: transform .04s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(32, 123, 241, .25); }
.btn--primary:hover { background: var(--blue-dark); color: #fff; }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: #cdd6e4; color: var(--ink); }
.btn--lg { padding: 14px 26px; font-size: 1.02rem; }
.btn--sm { padding: 8px 16px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 700; font-size: 1.15rem; }
.brand:hover { color: var(--ink); }
.brand__mark rect { fill: var(--blue); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links > a { color: var(--slate); font-weight: 500; font-size: .95rem; }
.nav__links > a:hover { color: var(--ink); }
.nav__links .btn { color: #fff; }
.nav__links .btn--primary:hover { color: #fff; }
.nav__signin { display: inline; }

/* ---- Hero ---- */
.hero {
  background:
    radial-gradient(900px 380px at 50% -120px, rgba(32, 123, 241, .12), transparent 70%),
    linear-gradient(180deg, #fbfdff, #ffffff);
  border-bottom: 1px solid var(--line);
}
.hero__inner { text-align: center; padding: 96px 24px 88px; max-width: 760px; }
.hero__title { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 800; }
.hero__lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--slate); margin: 22px auto 0; max-width: 620px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero__note { color: var(--muted); font-size: .9rem; margin-top: 18px; }

/* ---- Trust strip ---- */
.strip { border-bottom: 1px solid var(--line); background: var(--bg); }
.strip__inner {
  display: flex; flex-wrap: wrap; gap: 12px 40px; justify-content: center;
  padding: 22px 24px; color: var(--muted); font-weight: 600; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .08em;
}

/* ---- Sections ---- */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; }

/* ---- Grids ---- */
.grid { display: grid; gap: 22px; }
.grid--features { grid-template-columns: repeat(3, 1fr); }
.grid--pricing { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--slate); margin: 0; font-size: .97rem; }
.card__icon {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: 16px;
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 700;
  color: var(--blue); background: rgba(32, 123, 241, .1);
}

/* ---- Steps ---- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.step__num {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 700; margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--slate); margin: 0; font-size: .97rem; }

/* ---- Pricing ---- */
.plan {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative;
}
.plan--featured { border-color: var(--blue); box-shadow: 0 10px 30px rgba(32, 123, 241, .14); }
.plan__badge {
  position: absolute; top: -12px; right: 24px; background: var(--blue); color: #fff;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 5px 12px; border-radius: 999px;
}
.plan__name { font-size: 1.2rem; }
.plan__price { margin: 10px 0 4px; }
.plan__amount { font-size: 2.6rem; font-weight: 800; }
.plan__per { color: var(--muted); font-weight: 600; }
.plan__desc { color: var(--slate); margin: 0 0 18px; font-size: .95rem; }
.plan__features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan__features li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--ink); font-size: .96rem; }
.plan__features li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 800;
}

/* ---- Closing CTA ---- */
.cta { background: linear-gradient(135deg, #1763cc, #207bf1); }
.cta__inner { text-align: center; padding: 80px 24px; }
.cta__title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.cta__lede { color: rgba(255, 255, 255, .9); margin: 14px 0 30px; font-size: 1.1rem; }
.cta .btn--primary { background: #fff; color: var(--blue); box-shadow: 0 8px 24px rgba(0, 0, 0, .18); }
.cta .btn--primary:hover { background: #f1f5fb; color: var(--blue-dark); }

/* ---- Footer ---- */
.footer { background: var(--ink); color: #cbd5e1; padding: 44px 0; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.footer__name { color: #fff; font-weight: 700; font-size: 1.1rem; display: block; }
.footer__tag { color: var(--muted); font-size: .9rem; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { color: #cbd5e1; font-size: .92rem; }
.footer__links a:hover { color: #fff; }
.footer__legal { width: 100%; color: var(--muted); font-size: .85rem; margin: 8px 0 0; }
.footer__legal a { color: #cbd5e1; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .grid--features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__links { gap: 14px; }
  .nav__links a[href="#features"], .nav__links a[href="#how"], .nav__links a[href="#pricing"], .nav__signin { display: none; }
  .grid--features, .grid--pricing { grid-template-columns: 1fr; }
  .hero__inner { padding: 64px 20px 56px; }
  .section { padding: 60px 0; }
}
