/* Zyntra Vision — one stylesheet for the whole site. No frameworks, no external requests. */

:root {
  --bg: #0a0e1a;
  --bg2: #0f1524;
  --card: #141b2d;
  --line: #1e2740;
  --ink: #eef2f9;
  --muted: #8b97ad;
  --brand: #5b8cff;
  --brand2: #7aa2ff;
  --accent: #22d3a6;
  --todo-bg: rgba(245, 179, 1, .11);
  --todo-line: rgba(245, 179, 1, .38);
  --todo-ink: #f3c64f;
}

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

html { scroll-behavior: smooth; }

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

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

a { text-decoration: none; color: var(--brand2); }
a:hover { text-decoration: underline; }

/* ---------- nav ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 26, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

nav.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .2px;
}

.brand:hover { text-decoration: none; }

.logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  flex: none;
}

.navlinks { display: flex; gap: 30px; align-items: center; }

.navlinks a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .2s;
}

.navlinks a:hover { color: #fff; text-decoration: none; }

/* the CTA in the nav is a button, not a nav link — keep its own colour */
.navlinks a.btn, .navlinks a.btn:hover { color: #fff; }

@media (max-width: 860px) { .navlinks { display: none; } }

/* ---------- buttons ---------- */

.btn {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  display: inline-block;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(91, 140, 255, .32);
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(91, 140, 255, .45); text-decoration: none; }

.btn-ghost { background: transparent; color: #fff; border: 1.5px solid var(--line); box-shadow: none; }
.btn-ghost:hover { border-color: var(--brand); background: rgba(91, 140, 255, .08); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 90px;
  background:
    radial-gradient(900px 420px at 75% -5%, rgba(91, 140, 255, .18), transparent),
    radial-gradient(700px 400px at 10% 20%, rgba(34, 211, 166, .10), transparent);
}

.hero.compact { padding: 76px 0 56px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 140, 255, .1);
  border: 1px solid rgba(91, 140, 255, .28);
  color: var(--brand2);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(34, 211, 166, .22);
  flex: none;
}

h1 {
  font-size: 58px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -1.4px;
  margin-bottom: 22px;
  max-width: 860px;
}

h1 .grad {
  background: linear-gradient(120deg, var(--brand2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead { font-size: 19px; color: var(--muted); max-width: 640px; margin-bottom: 32px; }
.lead:last-child { margin-bottom: 0; }

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

@media (max-width: 760px) { h1 { font-size: 38px; letter-spacing: -1px; } .lead { font-size: 17px; } }

/* ---------- sections ---------- */

section { padding: 84px 0; }
section.tight { padding: 52px 0; }

.eyebrow {
  color: var(--brand2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.h2 { font-size: 36px; font-weight: 800; letter-spacing: -.8px; margin-bottom: 16px; line-height: 1.15; }
.h3 { font-size: 20px; font-weight: 700; margin: 34px 0 12px; }

.sub { color: var(--muted); max-width: 620px; font-size: 17px; margin-bottom: 14px; }

@media (max-width: 760px) { .h2 { font-size: 28px; } section { padding: 60px 0; } }

/* prose */

.prose p { color: var(--muted); font-size: 16px; margin-bottom: 16px; max-width: 70ch; }
.prose p strong, .prose li strong { color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 18px 20px; color: var(--muted); max-width: 70ch; }
.prose li { margin-bottom: 9px; }
.note { font-size: 14px; color: var(--muted); }

/* ---------- alternating band ---------- */

.band { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- product / feature cards ---------- */

.prods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.prods.two { grid-template-columns: repeat(2, 1fr); }

.prod {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  transition: transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}

a.prod:hover { transform: translateY(-5px); border-color: rgba(91, 140, 255, .4); text-decoration: none; }

.prod-ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: rgba(91, 140, 255, .12);
  border: 1px solid rgba(91, 140, 255, .25);
}

.prod h3 { font-size: 21px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.prod p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.prod .link { color: var(--brand2); font-size: 14px; font-weight: 600; }

.tag { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .5px; }
.tag-live { background: rgba(34, 211, 166, .14); color: var(--accent); border: 1px solid rgba(34, 211, 166, .3); }
.tag-soon { background: rgba(139, 151, 173, .12); color: var(--muted); border: 1px solid var(--line); }

@media (max-width: 900px) { .prods, .prods.two { grid-template-columns: 1fr; } }

/* ---------- three-up "what we do" ---------- */

.dos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.do-ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(91, 140, 255, .12);
  border: 1px solid rgba(91, 140, 255, .25);
  display: grid; place-items: center;
  font-size: 22px; margin-bottom: 16px;
}
.do h3 { font-size: 18px; margin-bottom: 8px; }
.do p { color: var(--muted); font-size: 15px; }

@media (max-width: 900px) { .dos { grid-template-columns: 1fr; } }

/* ---------- numbered steps ---------- */

ol.steps { list-style: none; margin: 34px 0 0; padding: 0; counter-reset: step; }

ol.steps li {
  counter-increment: step;
  padding-left: 56px;
  position: relative;
  margin-bottom: 26px;
  max-width: 74ch;
}

ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(91, 140, 255, .12);
  border: 1px solid rgba(91, 140, 255, .3);
  color: var(--brand2);
  font-size: 15px; font-weight: 800;
  display: grid; place-items: center;
}

ol.steps h3 { font-size: 17px; margin-bottom: 5px; }
ol.steps p { color: var(--muted); font-size: 15px; }

/* ---------- tables ---------- */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  margin-bottom: 16px;
}

table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: 15px; }

th, td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
th { font-weight: 700; color: var(--ink); }
td { color: var(--muted); }
thead th { background: rgba(255, 255, 255, .025); font-size: 13px; letter-spacing: .4px; text-transform: uppercase; }

/* ---------- payment badges ---------- */

.pay-methods { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; padding: 0; list-style: none; }

.pay-methods li {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* ---------- placeholder marker ---------- */

.todo {
  background: var(--todo-bg);
  color: var(--todo-ink);
  border: 1px dashed var(--todo-line);
  border-radius: 6px;
  padding: 1px 8px;
  font-size: .92em;
  font-weight: 600;
}

.draft-banner {
  background: var(--todo-bg);
  border: 1px solid var(--todo-line);
  border-radius: 16px;
  padding: 24px 26px;
  margin: 34px 0 8px;
  max-width: 74ch;
}

.draft-banner p { color: var(--todo-ink); font-size: 15px; margin-bottom: 12px; }
.draft-banner p:last-child { margin-bottom: 0; }
.draft-banner strong { color: #ffdf94; }

/* ---------- cta box ---------- */

.cta-sec { text-align: center; }

.cta-box {
  background: linear-gradient(135deg, rgba(91, 140, 255, .14), rgba(34, 211, 166, .1));
  border: 1px solid rgba(91, 140, 255, .28);
  border-radius: 26px;
  padding: 60px 40px;
  max-width: 820px;
  margin: 0 auto;
}

.cta-box .h2 { margin-bottom: 14px; }
.cta-box p { color: var(--muted); font-size: 18px; max-width: 520px; margin: 0 auto 28px; }

/* ---------- contact cards ---------- */

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }

.contact-grid .prod h3 { font-size: 17px; }
.contact-grid .prod p { font-size: 15px; margin-bottom: 8px; }
.contact-grid .prod p:last-child { margin-bottom: 0; }

address { font-style: normal; color: var(--muted); font-size: 15px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- language bar ---------- */

.langbar { font-size: 14px; color: var(--muted); padding-top: 22px; }
.langbar a { color: var(--brand2); }

/* ---------- footer ---------- */

footer.site { padding: 56px 0 30px; border-top: 1px solid var(--line); }

.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 40px; }
.foot-grid h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.foot-grid a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.foot-grid a:hover { color: var(--brand2); text-decoration: none; }

.foot-brand { color: #fff; font-weight: 800; font-size: 18px; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-p { font-size: 14px; max-width: 280px; color: var(--muted); }

.foot-bot {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--muted);
}

@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
