@charset "utf-8";

/*
 * e2shoppe — the platform landing page.
 *
 * Its own stylesheet rather than the vendor panel's. This page is seen once, by
 * a shop owner deciding whether to ring us, usually on a phone — it has nothing
 * in common with a dashboard, and borrowing the panel's stylesheet would make
 * the one page that must load fast the heaviest thing we serve.
 *
 * Colours are taken from the mark: the deep blue of the "e" and "s", and the
 * charcoal of the "2".
 */

:root {
  --ink: #0f1729;
  --muted: #5d6779;
  --line: #e6eaf2;
  --bg: #ffffff;
  --wash: #f7f9fc;

  --brand: #1b3a73;
  --brand-dark: #12274f;
  --brand-tint: #eef3fb;
  --charcoal: #3c3f44;

  --green: #25d366;      /* WhatsApp, and the "it works" ticks */
  --green-ink: #128c3e;
  --red: #e03131;
  --amber: #f59f00;

  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 41, .04);
  --shadow: 0 2px 6px rgba(15, 23, 41, .05), 0 12px 32px rgba(15, 23, 41, .06);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  /*
   * Poppins, with a real fallback stack behind it. A landing page has to render
   * in roughly the right shape before a webfont arrives — on a village
   * connection that can be a second or more, and a page that reflows under the
   * reader is worse than one that never had the font.
   */
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/*
 * Inline SVGs carry a viewBox but no width or height, so without this an icon
 * in a context I have not written a rule for expands to fill whatever box it
 * lands in — which is how a "no internet" tick ended up the size of the hero.
 */
svg { width: 18px; height: 18px; flex: 0 0 auto; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

.center { text-align: center; }

.eyebrow {
  display: block;
  margin-bottom: .5rem;
  color: var(--brand);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h2.section-title {
  margin: 0 auto 2.5rem;
  max-width: 22ch;
  font-size: clamp(1.5rem, 3.6vw, 2.05rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.025em;
}
h2.section-title b { color: var(--brand); font-weight: 600; }

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 500;
  font-size: .92rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .16s, border-color .16s, color .16s, transform .16s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }

.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }

.btn-quiet { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-quiet:hover { border-color: var(--brand); color: var(--brand); }

.btn-wa .wa { color: var(--green); }

.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { background: var(--brand-tint); }

/* ------------------------------------------------------------------- header */

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.masthead .wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: .85rem;
  padding-bottom: .85rem;
}

.logo { display: block; width: 74px; height: auto; }

/* Shown when the logo file is not in place — better than a broken image. */
.logo-fallback {
  font-size: 1.55rem; font-weight: 700; letter-spacing: -.04em;
  color: var(--brand); line-height: 1;
}
.logo-fallback span { color: var(--charcoal); }

.nav {
  display: flex;
  gap: 1.5rem;
  margin: 0 auto;
}
.nav a {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover { color: var(--brand); }

.masthead .cta { display: flex; gap: .6rem; }

/* Small screens: the nav folds away and the buttons stay. */
@media (max-width: 900px) {
  .nav { display: none; }
  .masthead .cta { margin-left: auto; }
}
@media (max-width: 520px) {
  .masthead .cta .btn span { display: none; }
  .masthead .cta .btn { padding: .7rem .85rem; }
}

/* --------------------------------------------------------------------- hero */

.hero {
  position: relative;
  padding: 3.5rem 0 3rem;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1.2rem;
  padding: .38rem .85rem;
  border-radius: 999px;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: .76rem;
  font-weight: 600;
}
.pill::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.9rem, 4.6vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: -.035em;
  font-weight: 700;
}
.hero h1 em { font-style: normal; color: var(--brand); }

.hero .lede {
  margin: 0;
  max-width: 46ch;
  font-size: .98rem;
  color: var(--muted);
}

.hero .actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.9rem; }

/* ---- the mock till, built rather than photographed ---- */

/*
 * The till and its status card, side by side.
 *
 * The card was absolutely positioned over the monitor to begin with, which
 * looked right at one width and covered the bill at every other. A two-column
 * grid cannot overlap, whatever the screen does.
 */
.shot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 1rem;
  align-items: start;
}

.monitor {
  border-radius: 14px;
  background: #14181f;
  padding: 12px 12px 0;
  box-shadow: var(--shadow);
}

.screen {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  font-size: .68rem;
  line-height: 1.5;
}

.screen .side { background: var(--brand); color: #cddaf0; padding: .6rem .5rem; }
.screen .side .brand { color: #fff; font-weight: 700; font-size: .8rem; letter-spacing: -.03em; margin-bottom: .6rem; }
.screen .side ul { list-style: none; margin: 0; padding: 0; }
.screen .side li { padding: .22rem .3rem; border-radius: 4px; }
.screen .side li.on { background: rgba(255,255,255,.16); color: #fff; }

.screen .body { padding: .7rem .8rem .8rem; }
.screen h4 { margin: 0 0 .5rem; font-size: .78rem; font-weight: 600; }

.screen table { width: 100%; border-collapse: collapse; }
.screen th {
  text-align: left; font-size: .58rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em;
  padding-bottom: .25rem; border-bottom: 1px solid var(--line);
}
.screen td { padding: .28rem 0; border-bottom: 1px solid #f2f4f9; }
.screen .r { text-align: right; }

.screen .total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: .55rem;
}
.screen .total b { font-size: 1.05rem; letter-spacing: -.02em; }

/* Named .billbar, not .foot: the page footer is .foot, and a div inside the
   mock screen was picking up its dark blue background. */
.screen .billbar { display: flex; align-items: center; gap: .4rem; margin-top: .6rem; }
.screen .offline {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--green-ink); font-weight: 600; font-size: .62rem;
}
.screen .offline::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.screen .keys { margin-left: auto; display: flex; gap: .3rem; }
.screen .key { padding: .25rem .7rem; border-radius: 4px; font-size: .62rem; font-weight: 600; }
.screen .key.hold { background: #eef1f6; color: var(--ink); }
.screen .key.pay { background: var(--brand); color: #fff; }

.stand { width: 32%; height: 12px; margin: 0 auto; background: #14181f; }
.stand + .stand { width: 46%; height: 8px; border-radius: 0 0 6px 6px; }

/* The monitor column owns the stands and the caption; the card is column two. */
.shot .till { grid-column: 1; }
.shot .status { grid-column: 2; }
.shot .caption { grid-column: 1 / -1; }

/* the status card, beside the till rather than over it */
.status {
  padding: .9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: .74rem;
}
.status h5 { margin: 0 0 .5rem; font-size: .66rem; font-weight: 600; color: var(--muted); }
.status .no-net { display: flex; align-items: center; gap: .45rem; color: var(--red); font-weight: 600; }
.status .no-net svg { width: 20px; height: 20px; }
.status .no-net small { display: block; color: var(--muted); font-weight: 400; }
.status hr { border: 0; border-top: 1px solid var(--line); margin: .7rem 0; }
.status h6 { margin: 0 0 .45rem; font-size: .76rem; font-weight: 600; }
.status ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; }
.status li { display: flex; align-items: center; gap: .4rem; color: var(--muted); }
.status li svg { width: 14px; height: 14px; color: var(--green-ink); }

.shot .caption {
  display: flex; align-items: center; justify-content: flex-end; gap: .4rem;
  margin: .9rem 0 0; font-size: .76rem; color: var(--muted);
}
.shot .caption svg { width: 15px; height: 15px; }

@media (max-width: 1040px) {
  .shot { grid-template-columns: 1fr; }
  .shot .status { grid-column: 1; }
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .shot .caption { justify-content: flex-start; }
}

/* ------------------------------------------------------------------ strip */

.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: -1.5rem auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.strip .cell {
  display: flex;
  gap: .8rem;
  padding: 1.3rem 1.4rem;
  border-right: 1px solid var(--line);
}
.strip .cell:last-child { border-right: 0; }
.strip h3 { margin: 0 0 .1rem; font-size: .92rem; font-weight: 600; }
.strip p { margin: 0; font-size: .8rem; color: var(--muted); }

.ico {
  display: inline-grid; place-items: center; flex: 0 0 auto;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand-tint); color: var(--brand);
}
.ico svg { width: 18px; height: 18px; }

@media (max-width: 760px) {
  .strip .cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip .cell:last-child { border-bottom: 0; }
}

/* ---------------------------------------------------------------- sections */

section { padding: 4.5rem 0; }
section.tight { padding-top: 3.5rem; }

/* feature grid */
.features {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.feature {
  padding: 1.35rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .16s, box-shadow .16s, transform .16s;
}
.feature:hover { border-color: #cfdcf2; box-shadow: var(--shadow); transform: translateY(-2px); }
.feature .ico { margin-bottom: .85rem; }
.feature h3 { margin: 0 0 .3rem; font-size: .95rem; font-weight: 600; }
.feature p { margin: 0; font-size: .84rem; color: var(--muted); }

/* stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  overflow: hidden;
}
.stats .stat {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.6rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.14);
}
.stats .stat:last-child { border-right: 0; }
.stats svg { width: 26px; height: 26px; color: #a9c2ea; flex: 0 0 auto; }
.stats b { display: block; font-size: 1.3rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
.stats span { font-size: .82rem; color: #b9cbe8; }

@media (max-width: 860px) {
  .stats .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .stats .stat:last-child { border-bottom: 0; }
}

/* demo shops */
.demos { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.demo {
  display: flex; flex-direction: column;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.demo .ico { margin-bottom: .9rem; }
.demo h3 { margin: 0 0 1.2rem; font-size: .95rem; font-weight: 600; }
.demo .btn { align-self: flex-start; margin-top: auto; }

.demo-help {
  padding: 1.4rem 1.3rem;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
}
.demo-help .ico { background: var(--green); color: #fff; margin-bottom: .9rem; }
.demo-help h3 { margin: 0 0 .35rem; font-size: .95rem; font-weight: 600; }
.demo-help p { margin: 0 0 1.1rem; font-size: .84rem; color: #c3d3ec; }

/* testimonials */
.quotes { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.quote {
  position: relative;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.quote p { margin: 0 0 .9rem; font-size: .89rem; }
.quote .stars { color: var(--amber); letter-spacing: .1em; font-size: .85rem; }
.quote .who { display: flex; align-items: center; gap: .6rem; margin-top: .9rem; }
.quote .who .av {
  display: inline-grid; place-items: center; width: 32px; height: 32px;
  border-radius: 50%; background: var(--brand-tint); color: var(--brand); flex: 0 0 auto;
}
.quote .who svg { width: 16px; height: 16px; }
.quote .who b { display: block; font-size: .85rem; font-weight: 600; }
.quote .who small { color: var(--muted); font-size: .76rem; }

/* how it works */
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.step { text-align: center; }
.step .n {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px; margin-bottom: .7rem;
  border-radius: 50%; background: var(--brand); color: #fff;
  font-size: .76rem; font-weight: 600;
}
.step .ring {
  display: grid; place-items: center;
  width: 62px; height: 62px; margin: 0 auto .8rem;
  border-radius: 50%; border: 2px dashed #cfdcf2; color: var(--brand);
}
.step .ring svg { width: 24px; height: 24px; }
.step h3 { margin: 0 0 .3rem; font-size: .92rem; font-weight: 600; }
.step p { margin: 0; font-size: .83rem; color: var(--muted); }

/* ------------------------------------------------------------------ footer */

footer.foot {
  padding: 3.5rem 0 1.5rem;
  background: var(--brand);
  color: #c3d3ec;
  font-size: .87rem;
}

/*
 * Four named columns, not auto-fit.
 *
 * `1.4fr repeat(auto-fit, minmax(140px, 1fr))` collapsed to a single column:
 * auto-fit has no track count to repeat when it follows a sized column, so the
 * whole footer stacked. Stated explicitly it cannot misbehave.
 */
footer.foot .cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
}

@media (max-width: 860px) {
  footer.foot .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  footer.foot .cols { grid-template-columns: 1fr; gap: 1.6rem; }
}

footer.foot .logo-fallback { color: #fff; }
footer.foot .logo-fallback span { color: #9db4d8; }
footer.foot .about { max-width: 30ch; margin: 1rem 0 1.2rem; font-size: .84rem; }

footer.foot h4 {
  margin: 0 0 .9rem;
  color: #fff; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
footer.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
footer.foot a { color: #c3d3ec; text-decoration: none; }
footer.foot a:hover { color: #fff; text-decoration: underline; }
footer.foot li.with-ico { display: flex; align-items: flex-start; gap: .55rem; }
footer.foot li svg { width: 15px; height: 15px; margin-top: .22rem; flex: 0 0 auto; color: #9db4d8; }

footer.foot .btn-wa { background: var(--green); color: #fff; border-color: var(--green); }
footer.foot .btn-wa:hover { background: #1eb955; }
footer.foot .btn-wa .wa { color: #fff; }

footer.foot .bottom {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center;
  margin-top: 2.5rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .81rem;
}
footer.foot .bottom .spacer { margin-left: auto; }

/* Development only — never rendered on a live site. See Platform\Home. */
.devnote {
  margin-top: 2rem;
  padding: .9rem 1.1rem;
  border: 1px dashed #cfdcf2; border-radius: 12px;
  background: var(--wash);
  font-size: .82rem; color: var(--muted);
}

@media (max-width: 640px) {
  section { padding: 3.2rem 0; }
  .hero { padding-top: 2.5rem; }
  .hero .actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
/* Platform homepage refresh */
:root{--brand:#1b477e;--ink:#14263e;--muted:#627184;--line:#e1e8ee}
html{scroll-behavior:smooth;scroll-padding-top:100px}body{background:#fff}.wrap{max-width:1240px;width:calc(100% - 64px)}a:focus-visible{outline:3px solid #35aaac;outline-offset:5px}.masthead{position:sticky;top:0;background:rgba(255,255,255,.97);z-index:20;border-bottom:1px solid var(--line)}.masthead>.wrap{min-height:88px;gap:24px}.brand-link{display:flex;align-items:center;gap:6px;flex-shrink:0;text-decoration:none}.logo{width:68px;height:68px;object-fit:contain}.brand-name{font-size:22px;font-weight:700;letter-spacing:-1px;color:var(--ink)}.brand-name>span{display:block;font-size:8px;letter-spacing:1.5px;font-weight:600;margin-top:2px}.nav{gap:22px}.nav a{font-size:12px}.masthead .cta>.btn-wa{display:none}.btn{border-radius:9px;min-height:46px;padding:12px 20px;font-size:12px;font-weight:600;transition:transform .18s,background .18s}.btn:hover{transform:translateY(-2px)}.hero{padding:78px 0 80px;background:radial-gradient(ellipse at 85% 0%,#e4eff8 0,transparent 60%),#f7f9fb}.hero>.wrap{display:grid;grid-template-columns:1fr 1.08fr;gap:50px;align-items:center}.pill{border:0;background:#e9eef3;color:var(--brand);border-radius:5px;font-size:10px;letter-spacing:1.3px;padding:8px 12px}.hero h1{font-size:clamp(36px,4.1vw,57px);line-height:1.12;letter-spacing:-2.6px;margin:22px 0;max-width:620px}.hero h1 em{font-style:normal;color:var(--brand)}.lede{font-size:14px;line-height:1.85;max-width:470px}.actions{gap:12px;margin-top:27px;display:flex;flex-wrap:wrap}.actions .btn-quiet{padding-left:0;background:transparent;border-color:transparent;font-size:11px}.shot{display:grid;grid-template-columns:minmax(0,1fr) 156px;gap:18px;position:relative;background:#12365c;border:1px solid #244c72;border-radius:20px;padding:24px 20px 16px;box-shadow:0 30px 65px -30px #173b65;transform:rotate(-1deg)}.showcase-label{grid-column:1/-1;display:flex;align-items:center;gap:8px;color:#d2e3f2;font-size:8px;letter-spacing:1px;margin-bottom:12px}.showcase-label>span:last-child{margin-left:auto;font-weight:bold;color:white;letter-spacing:0}.live-dot{width:6px;height:6px;background:#56d6ae;border-radius:100%}.till{min-width:0;align-self:start}.monitor{padding:5px;background:#e8edf2;border-radius:10px;box-shadow:0 12px 25px #09213f44}.screen{display:grid;grid-template-columns:65px minmax(0,1fr);border-radius:6px;overflow:hidden;min-height:235px}.side{background:#eef3f8;color:#607184;padding:12px 5px;font-size:8px}.side .brand{color:#1b477e;font-size:18px;margin:0 0 20px 5px}.side li{font-size:7px;padding:6px 4px}.side li.on{background:#1b477e;color:#fff;border-radius:4px}.screen>.body{padding:14px 8px;background:white;min-width:0}.body h4{font-size:10px;margin:0 0 18px}.body h4 small{display:block;margin-top:5px;font-size:6px;font-weight:500;color:#79899c;letter-spacing:.5px}.body table{font-size:7px;width:100%}.body th{font-size:6px}.body td{padding:9px 2px}.total{padding-top:15px;margin-top:6px;font-size:8px}.total b{font-size:16px}.billbar{margin-top:15px;gap:4px}.offline{font-size:7px}.key{font-size:8px;padding:6px}.stand{display:none}.status{background:#fff;border:0;border-radius:10px;padding:15px 11px;align-self:center;box-shadow:none}.status h5{font-size:9px}.status h6{font-size:9px}.status li{font-size:8px;gap:5px;margin-top:8px}.status li svg{width:11px;height:11px}.no-net{font-size:10px}.no-net small{font-size:7px}.caption{grid-column:1/-1;color:#b6d1e5;font-size:9px;margin:4px 0 0;text-align:center;justify-content:center}.caption svg{width:13px}.strip{margin:0;border-radius:0;border:0;border-bottom:1px solid var(--line);box-shadow:none;padding:26px 0}.strip .cell{padding:12px 20px}.strip .cell:first-child{padding-left:0}.strip h3{font-size:12px}.strip p{font-size:11px}.ico{background:#edf3f8;border-radius:9px;color:var(--brand)}section.tight{padding:82px 0}.eyebrow{font-size:10px;letter-spacing:2px;color:var(--brand)}.section-title{font-size:38px;line-height:1.2;letter-spacing:-1.4px;max-width:650px;margin:15px auto 0}.features{gap:18px;margin-top:38px}.feature{border-radius:12px;border:1px solid var(--line);padding:25px;background:#fff;transition:transform .2s,box-shadow .2s}.feature:hover{transform:translateY(-4px);box-shadow:0 12px 25px #193b6510}.feature h3{font-size:14px;margin-top:20px}.feature p{font-size:12px;line-height:1.8}.feature:first-child{background:#173e68;color:#fff;border-color:#173e68}.feature:first-child h3,.feature:first-child p{color:#fff}.feature:first-child .ico{background:#ffffff1a;color:#a9dce9}#how{background:#f5f8fa}.steps{gap:30px;margin-top:45px}.step{position:relative;text-align:left;padding:24px;background:white;border:1px solid var(--line);border-radius:12px}.step .n{position:absolute;right:20px;top:20px;background:transparent;color:#c7d6e3;font-size:27px;font-weight:500;width:auto;height:auto}.step .ring{margin:0 0 24px;border:0;width:38px;height:38px;background:#eef4f8;border-radius:8px}.step h3{font-size:13px}.step p{font-size:12px;line-height:1.8}.start-section{background:#173e68;color:#fff;padding:64px 0}.start-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:80px;align-items:center}.start-section .eyebrow{color:#a9cce6}.start-section h2{font-size:32px;line-height:1.3;letter-spacing:-1px;margin:16px 0 25px}.start-section .btn-light{background:#fff;color:#173e68}.access-card{padding:26px;border:1px solid #ffffff35;border-radius:12px;background:#ffffff08}.access-card h3{font-size:17px;color:white}.access-card p{font-size:12px;color:#cbdbe9;line-height:1.8}.address-example{background:#102f50;padding:12px;border-radius:6px;font-size:12px;color:#aec5db;margin:18px 0}.address-example strong{color:#fff}.access-card>a{font-size:11px;color:#c7e8ff}.foot{background:#f7f9fb;color:#627184;padding-top:46px}.foot h4{color:#173e68}.foot a{color:#52687f}.foot .about{color:#627184;font-size:12px}.footer-logo{width:80px;height:64px;object-fit:cover;border-radius:7px}.foot .bottom{border-color:#dce5ed;font-size:10px}.foot .btn-wa{background:#e5f3ee;color:#126647}.foot li{font-size:12px}.foot .cols{gap:40px}.demo{border-radius:12px}.center{text-align:center}
@media(min-width:1100px){.features{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media(max-width:1100px){.masthead .nav{gap:14px}.masthead .nav a{font-size:11px}.masthead>.wrap{gap:12px}.brand-name{font-size:18px}.hero>.wrap{gap:24px}.shot{grid-template-columns:minmax(0,1fr);padding:20px}.status{display:none}.screen{min-height:230px}.body table{font-size:9px}.body th{font-size:7px}.steps{gap:12px}.step{padding:18px}.start-grid{gap:32px}}
@media(max-width:760px){.wrap{width:calc(100% - 36px)}.masthead>.wrap{min-height:74px;flex-wrap:wrap;justify-content:space-between;padding:4px 0 10px}.logo{width:50px;height:50px}.brand-name{font-size:19px}.brand-name>span{font-size:6px}.masthead .cta{margin:0}.masthead .btn{min-height:36px;padding:8px 12px;font-size:10px}.masthead .nav{display:flex;order:3;width:100%;justify-content:space-between;overflow:auto;gap:18px;white-space:nowrap;padding-top:4px}.nav a{font-size:10px}.hero{padding:40px 0}.hero>.wrap{grid-template-columns:1fr;gap:35px}.hero h1{font-size:43px;letter-spacing:-1.9px;max-width:500px}.lede{font-size:13px}.actions{margin-top:23px}.shot{transform:none;padding:20px 16px;max-width:500px;width:100%;margin:0 auto}.screen{grid-template-columns:75px minmax(0,1fr);min-height:250px}.side li{font-size:9px}.body h4{font-size:13px}.body h4 small{font-size:7px}.body table{font-size:10px}.body th{font-size:8px}.body td{padding:10px 2px}.total b{font-size:20px}.total{font-size:10px}.offline{font-size:9px}.key{font-size:10px}.strip{display:grid;grid-template-columns:1fr 1fr;padding:15px 0}.strip .cell,.strip .cell:first-child{padding:15px 8px;border:0}.strip .ico{width:30px;height:30px;flex:0 0 30px}.strip h3{font-size:11px}.strip p{font-size:10px}section.tight{padding:48px 0}.section-title{font-size:30px}.features{grid-template-columns:1fr 1fr;gap:10px;margin-top:26px}.feature{padding:18px 14px}.feature h3{font-size:12px}.feature p{font-size:11px}.steps{grid-template-columns:1fr 1fr;margin-top:25px}.step h3{font-size:12px}.step p{font-size:11px}.start-grid{grid-template-columns:1fr;gap:28px}.start-section{padding:45px 0}.start-section h2{font-size:28px}.foot .cols{grid-template-columns:1fr 1fr;gap:28px}.foot .cols>div:first-child{grid-column:1/-1}.foot .bottom{display:flex;flex-wrap:wrap;gap:10px}.foot .bottom .spacer{display:none}.foot{padding-top:30px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.btn,.feature{transition:none}}
footer.foot{background:#f7f9fb;color:#627184}footer.foot h4{color:#173e68}footer.foot a{color:#52687f}footer.foot a:hover{color:#173e68}footer.foot .about{color:#627184}footer.foot .bottom{border-color:#dce5ed;color:#627184}footer.foot .btn-wa{background:#e5f3ee;border-color:#e5f3ee;color:#126647}footer.foot .btn-wa .wa{color:#126647}.shot .caption{color:#bed3e5}
@media(max-width:760px){.masthead .cta .btn>span{display:inline}.masthead .cta .btn svg{display:none}footer.foot .cols{grid-template-columns:1fr 1fr;gap:28px}footer.foot .cols>div:first-child{grid-column:1/-1}}
