:root {
  color-scheme: dark;
  --bg: #080c10;
  --surface: #0e151b;
  --panel: #101820;
  --panel-2: #14202a;
  --line: rgba(255,255,255,.14);
  --line-strong: rgba(255,255,255,.24);
  --text: #f3f7fa;
  --soft: #dbe5ec;
  --muted: #a9b7c2;
  --blue: #62b1ff;
  --green: #39d48f;
  --amber: #f0b65f;
  --danger: #ff8b7d;
  --shadow: 0 24px 80px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.58;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(920px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8,12,16,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--text);
  font-weight: 860;
  font-size: 30px;
  line-height: 1.02;
}
.brand img { width: 58px; height: 58px; }
.brand span { display: block; white-space: nowrap; }
.brand small {
  display: block;
  margin-top: 3px;
  color: #d3e4ef;
  font-size: 13px;
  font-weight: 760;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}
.nav-links a:hover, .nav-links a[aria-current="page"], footer a:hover { color: var(--text); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  color: var(--text);
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
}
.button.primary {
  background: #f2f6fa;
  border-color: #f2f6fa;
  color: #081018;
}
.button.secondary { background: transparent; color: var(--soft); }
.button.disabled {
  opacity: .72;
  cursor: not-allowed;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(57,212,143,.12), transparent 34%),
    linear-gradient(35deg, transparent 50%, rgba(98,177,255,.12));
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .76fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(57,212,143,.34);
  border-radius: 999px;
  background: rgba(57,212,143,.08);
  color: #bff5df;
  font-size: 13px;
  font-weight: 800;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(57,212,143,.16);
}
h1, h2, h3 { margin: 0; letter-spacing: 0; line-height: 1.08; }
h1 { max-width: 900px; font-size: 60px; }
h2 { font-size: 42px; }
h3 { font-size: 21px; }
p { color: var(--muted); }
.lead { max-width: 760px; margin: 24px 0 0; color: var(--soft); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-clarifier {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--soft);
  font-size: 16px;
  font-weight: 740;
}
.note {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(240,182,95,.34);
  border-radius: 8px;
  background: rgba(240,182,95,.1);
  color: #ffe2b5;
  font-weight: 700;
}
.visual {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(16,24,32,.96), rgba(8,12,16,.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.phone-frame {
  width: min(330px, 70vw);
  margin: 28px auto;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  background: #05080b;
  box-shadow: 0 18px 42px rgba(0,0,0,.4);
}
.phone-frame img { border-radius: 20px; aspect-ratio: 1080 / 2408; object-fit: contain; }
section { padding: 72px 0; }
.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c1218;
}
.section-head { max-width: 780px; margin-bottom: 30px; }
.section-head p { margin: 14px 0 0; font-size: 18px; }
.proof-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 11px;
  border: 1px solid rgba(57,212,143,.36);
  border-radius: 999px;
  background: rgba(57,212,143,.1);
  color: #bff5df;
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.cards, .pricing-grid, .screenshot-grid, .checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.supplier-cards .card { min-height: 230px; }
.checklist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.app-tour {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.screenshot-grid { grid-template-columns: repeat(2, 1fr); }
.card, .doc, .price-card, .shot-card, .tour-panel, .download-box, .form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), transparent 58%), var(--panel);
}
.card, .price-card { padding: 24px; min-height: 210px; }
.doc, .form-panel { padding: 32px; }
.card p, .price-card p, .doc p { margin: 10px 0 0; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(220,229,236,.24);
  border-radius: 999px;
  background: rgba(220,229,236,.08);
  color: #edf3f7;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.gateway-section { align-items: center; }
.gateway-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 42%, rgba(57,212,143,.16), transparent 18%),
    radial-gradient(circle at 52% 35%, rgba(98,177,255,.14), transparent 20%),
    radial-gradient(circle at 78% 58%, rgba(240,182,95,.16), transparent 19%),
    linear-gradient(145deg, rgba(255,255,255,.055), transparent 58%),
    #0b1117;
  box-shadow: var(--shadow);
}
.gateway-map::before {
  content: "";
  position: absolute;
  inset: 42px 34px 58px;
  opacity: .42;
  background:
    radial-gradient(ellipse at 18% 45%, rgba(219,229,236,.32) 0 8%, transparent 9%),
    radial-gradient(ellipse at 47% 36%, rgba(219,229,236,.3) 0 12%, transparent 13%),
    radial-gradient(ellipse at 61% 50%, rgba(219,229,236,.25) 0 7%, transparent 8%),
    radial-gradient(ellipse at 76% 59%, rgba(219,229,236,.3) 0 11%, transparent 12%),
    radial-gradient(ellipse at 86% 44%, rgba(219,229,236,.2) 0 5%, transparent 6%);
  filter: blur(.2px);
}
.gateway-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 78%);
}
.gateway-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}
.gateway-point span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
  box-shadow:
    0 0 0 6px rgba(57,212,143,.14),
    0 0 26px rgba(57,212,143,.9);
}
.gateway-point strong {
  padding: 3px 7px;
  border: 1px solid rgba(57,212,143,.24);
  border-radius: 999px;
  background: rgba(8,12,16,.62);
}
.gateway-point.seattle { left: 11%; top: 38%; }
.gateway-point.paris { left: 46%; top: 35%; }
.gateway-point.stockholm { left: 50%; top: 22%; }
.gateway-point.telaviv { left: 55%; top: 47%; }
.gateway-point.mumbai { left: 69%; top: 59%; }
.gateway-point.singapore { left: 80%; top: 70%; }
.gateway-status {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(57,212,143,.3);
  border-radius: 999px;
  background: rgba(57,212,143,.09);
  color: #c9f8e3;
  font-size: 13px;
  font-weight: 860;
}
.list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: var(--soft);
}
.check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(57,212,143,.14);
  color: #98f0c9;
  font-size: 14px;
  font-weight: 900;
}
.price { margin: 8px 0 14px; font-size: 30px; color: var(--text); font-weight: 860; }
.price small { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; font-weight: 700; }
.roadmap {
  display: grid;
  gap: 14px;
}
.roadmap-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), transparent 58%), var(--panel);
}
.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(57,212,143,.4);
  border-radius: 8px;
  background: rgba(57,212,143,.12);
  color: #bff5df;
  font-size: 20px;
  font-weight: 900;
}
.roadmap-step h3 { margin-top: 0; }
.roadmap-step p { margin: 10px 0 0; }
.shot-card { overflow: hidden; }
.shot-card img { width: 100%; background: #111b24; }
.shot-card figcaption { padding: 16px; color: var(--soft); font-size: 15px; }
.shot-card figcaption span {
  display: block;
  margin-bottom: 7px;
  color: #bff5df;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.tour-panel {
  margin: 0;
  overflow: hidden;
}
.tour-panel img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #111b24;
}
.tour-panel.tablet-shot { grid-column: 1 / -1; }
.tour-panel.tablet-shot {
  overflow: visible;
  padding: 18px;
}
.tour-panel.tablet-shot img {
  aspect-ratio: auto;
  display: block;
  height: auto;
  width: min(100%, 760px);
  margin: 0 auto;
  max-height: none;
  object-fit: initial;
}
.tour-panel.tablet-shot figcaption { padding: 20px 2px 2px; }
.tour-panel figcaption { padding: 20px; }
.tour-panel figcaption span {
  display: block;
  margin-bottom: 8px;
  color: #bff5df;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.tour-panel strong {
  display: block;
  color: var(--text);
  font-size: 19px;
  line-height: 1.15;
}
.tour-panel p { margin: 10px 0 0; }
.demo-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
}
.demo-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.demo-video-grid.single { grid-template-columns: minmax(0, 520px); }
.demo-card video {
  width: 100%;
  aspect-ratio: 720 / 1152;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: #05080b;
  object-fit: cover;
}
.demo-card h3 { margin-top: 16px; }
.demo-card p { margin: 10px 0 0; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--panel); }
th, td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--text); }
td { color: var(--soft); }
tr:last-child td { border-bottom: 0; }
.download-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
}
.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.meta-item { padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.04); }
.meta-item strong { display: block; color: var(--text); font-size: 13px; }
.meta-item span { display: block; margin-top: 4px; color: var(--soft); overflow-wrap: anywhere; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; color: var(--soft); font-weight: 740; font-size: 14px; }
.field > span { display: block; }
.field b { color: var(--amber); }
.field.full { grid-column: 1 / -1; }
.honey { display: none; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  color: var(--text);
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
select option { color: #071018; }
.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--soft);
  font-weight: 650;
}
.checkbox input { min-height: auto; margin-top: 5px; }
.success {
  display: none;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(57,212,143,.34);
  border-radius: 8px;
  color: #bff5df;
  background: rgba(57,212,143,.08);
}
.success.error {
  border-color: rgba(255,139,125,.4);
  color: #ffd0ca;
  background: rgba(255,139,125,.1);
}
.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
}
.foot p { max-width: 760px; margin: 0; }
.foot-links { display: flex; gap: 16px; flex-wrap: wrap; }
.foot-links a, .inline-link { color: var(--blue); }
.doc h2 { margin-top: 30px; font-size: 24px; }
.doc ul, .doc ol { color: var(--muted); padding-left: 22px; }
.updated { margin-top: 0; color: var(--muted); }

.article-page {
  background:
    radial-gradient(circle at 16% 0%, rgba(57,212,143,.12), transparent 31rem),
    radial-gradient(circle at 88% 12%, rgba(98,177,255,.12), transparent 34rem),
    var(--bg);
}
.article-page .site-header { background: rgba(8,12,16,.9); }
.article-page .nav-links a[aria-current="page"] { color: var(--text); }
.article-hero {
  padding: 78px 0 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(57,212,143,.11), transparent 38%),
    linear-gradient(35deg, transparent 52%, rgba(98,177,255,.12));
}
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 0;
  align-items: center;
}
.article-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.02;
}
.article-date {
  margin: 0 0 18px;
  color: #bff5df;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.article-hero-media,
.article-figure,
.article-cta-panel {
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), transparent 58%), var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.article-hero-media img,
.article-figure img {
  width: 100%;
  aspect-ratio: 1376 / 768;
  object-fit: cover;
}
.article-body { padding: 76px 0 82px; }
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  gap: 58px;
  align-items: start;
  min-width: 0;
}
.article-content {
  display: grid;
  gap: 34px;
  min-width: 0;
}
.article-section,
.article-sidebar,
.table-wrap {
  min-width: 0;
}
.article-section h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 3.5vw, 46px);
  line-height: 1.06;
}
.article-section p {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 18px;
}
.article-section p:last-child { margin-bottom: 0; }
.article-section strong { color: var(--text); }
.article-callout {
  padding: 22px 24px;
  border: 1px solid rgba(57,212,143,.32);
  border-radius: 8px;
  background: rgba(57,212,143,.09);
  color: #d5fbe9;
  font-size: 19px;
  font-weight: 770;
}
.article-figure {
  box-shadow: 0 18px 54px rgba(0,0,0,.28);
}
.article-figure.wide {
  margin-left: calc((min(1160px, 100vw - 40px) - min(760px, 100%)) / -2);
}
.article-figure.bottom-visual img {
  aspect-ratio: 1376 / 768;
  object-fit: contain;
  background: #101820;
}
.home-bottom-visual {
  padding-top: 0;
}
.home-bottom-visual figure {
  width: 70%;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), transparent 58%), var(--panel);
  box-shadow: 0 18px 54px rgba(0,0,0,.28);
  overflow: hidden;
}
.home-bottom-visual img {
  width: 100%;
  aspect-ratio: 963 / 538;
  object-fit: contain;
  background: #101820;
}
.article-cta-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}
.article-cta-panel img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1376 / 768;
  object-fit: contain;
  background: #101820;
}
.article-cta-panel > div {
  padding: 30px;
}
.article-cta-panel h2 {
  font-size: clamp(29px, 3.2vw, 42px);
}
.article-cta-panel p {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 18px;
}
.article-sidebar {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 14px;
}
.article-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), transparent 58%), var(--panel);
}
.article-card h3 {
  margin: 0;
  font-size: 20px;
}
.article-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.article-page .sources {
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .article-hero-grid, .article-shell, .article-cta-panel { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .article-figure.wide { margin-left: 0; }
  .home-bottom-visual figure { width: 100%; }
  .cards, .pricing-grid, .screenshot-grid, .app-tour, .demo-video-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .tour-panel.tablet-shot { grid-column: auto; }
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
}
@media (max-width: 620px) {
  .wrap, .narrow { width: min(100% - 28px, 1160px); }
  .brand { font-size: 25px; }
  .brand img { width: 50px; height: 50px; }
  .nav-links { gap: 8px; flex-wrap: wrap; overflow: visible; }
  .nav-links a:not(.button) { font-size: 13px; }
  .nav-links a { white-space: nowrap; }
  .nav-links .button { width: auto; min-height: 36px; padding: 9px 12px; }
  .hero { padding: 44px 0 46px; }
  h1 { font-size: 39px; }
  h2 { font-size: 29px; }
  .lead { font-size: 18px; }
  .hero-actions, .download-box { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; min-width: 0; padding: 12px 14px; white-space: normal; }
  section { padding: 56px 0; }
  .article-hero { padding: 46px 0 42px; }
  .article-body { padding: 52px 0 60px; }
  .article-content { gap: 28px; }
  .article-section p, .article-cta-panel p { font-size: 17px; }
  .article-callout { padding: 18px; font-size: 17px; }
  .article-cta-panel > div { padding: 22px; }
  .doc, .form-panel { padding: 22px; }
  .form-grid, .meta-grid { grid-template-columns: 1fr; }
  .roadmap-step { grid-template-columns: 1fr; }
}
