/* ============================================================
   SYNCS — global styles
   Brand: #1e2361 navy · #7551e9 violet · #603fca purple
   Type:  Montserrat
   ============================================================ */

:root {
  --syncs-navy:    #1e2361;
  --syncs-navy-2:  #181c50;
  --syncs-navy-3:  #14174a;
  --syncs-violet:  #7551e9;
  --syncs-purple:  #603fca;
  --syncs-gradient: linear-gradient(135deg, #7551e9 0%, #603fca 100%);
  --syncs-gradient-soft: linear-gradient(135deg, rgba(117,81,233,0.12) 0%, rgba(96,63,202,0.12) 100%);
  --ink:           #0f1240;
  --ink-2:         #3a3f7a;
  --paper:         #ffffff;
  --paper-2:       #f6f6fb;
  --paper-3:       #eef0f9;
  --grey:          #eceaf3;
  --border:        #e3e1ee;
  --border-2:      #d7d4e6;
  --success:       #2bcd8d;
  --success-ink:   #0a8b54;
  --warn:          #ffb547;
  --radius:        18px;
  --radius-sm:     10px;
  --max:           1200px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ---------- typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(40px, 5.6vw, 72px); }
.h-section { font-size: clamp(32px, 4.2vw, 52px); }
h3 { font-size: 22px; letter-spacing: -0.01em; }
h4 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: #cdcaf5; margin-bottom: 22px;
}
.eyebrow-dark { color: var(--syncs-purple); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--syncs-violet); box-shadow: 0 0 0 3px rgba(117,81,233,0.25); }
.eyebrow .dot-dark { background: var(--syncs-purple); box-shadow: 0 0 0 3px rgba(96,63,202,0.16); }

.grad-text {
  background: var(--syncs-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lede, .section-lede {
  font-size: 18px; line-height: 1.6; color: var(--ink-2);
  max-width: 560px; margin: 20px 0 32px;
}
.section-dark .lede, .section-dark .section-lede { color: #c9c7e8; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 22px; font-weight: 700; font-size: 14px;
  letter-spacing: 0.02em; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, border-color .2s;
}
.btn-pill { border-radius: 999px; }
.btn-lg   { padding: 16px 26px; font-size: 15px; }
.btn-grad {
  background: var(--syncs-gradient); color: #fff;
  box-shadow: 0 12px 30px -10px rgba(96,63,202,0.6);
}
.btn-grad:hover { transform: translateY(-1px); box-shadow: 0 18px 36px -12px rgba(96,63,202,0.7); }
.btn-ghost {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-solid-dark {
  background: var(--syncs-navy); color: #fff;
}
.btn-solid-dark:hover { background: var(--syncs-navy-3); }
.btn-outline {
  background: transparent; color: var(--syncs-navy);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--syncs-violet); color: var(--syncs-violet); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: background .25s ease, box-shadow .25s ease, padding .25s;
  background: transparent;
}
.nav.scrolled {
  background: var(--syncs-navy);
  box-shadow: 0 8px 30px -10px rgba(0,0,0,0.4);
  padding: 12px 32px;
}
.nav.solid {
  background: var(--syncs-navy);
}
.brand { display: inline-flex; align-items: center; color: #fff; }
.brand-logo {
  height: 36px; width: auto; display: block;
  filter: drop-shadow(0 4px 10px rgba(117,81,233,0.35));
}
/* On dark backgrounds the navy wordmark/mark are invisible — render in white. */
.nav .brand-logo, .footer .brand-logo { filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(117,81,233,0.35)); }
@media (max-width: 720px) { .brand-logo { height: 30px; } }
.nav-links {
  display: flex; gap: 30px; align-items: center;
  font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--syncs-gradient); border-radius: 2px;
}
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: transparent; border: 0; padding: 8px; cursor: pointer;
}
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 64px 0 auto 0; z-index: 49;
  background: var(--syncs-navy); padding: 24px 24px 32px;
  display: none; flex-direction: column; gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-weight: 600; font-size: 18px; }
.mobile-menu .btn { align-self: flex-start; }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 80% at 80% 0%, #2a2f8a 0%, var(--syncs-navy) 55%, #14174a 100%);
  color: #fff;
  padding: 160px 32px 120px;
}
.chev-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.chev-bg.chev-light { color: #fff; }

.hero-grid {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
.hero h1 { color: #fff; }
.hero .lede { color: #c9c7e8; font-size: 19px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.trust-row {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 18px 26px;
  font-size: 13px; color: #b3b0d8; font-weight: 500;
}
.trust-row li { display: inline-flex; align-items: center; gap: 8px; }
.trust-row .tick { color: var(--syncs-violet); font-weight: 900; }

/* ---- hero mock cards ---- */
.hero-mocks { position: relative; height: 460px; }
.mock {
  position: absolute; background: #fff; color: var(--ink);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  width: 280px;
}
.mock-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--syncs-violet); }
.dot-2 { background: var(--success); }
.dot-3 { background: var(--warn); }
.mock-title { font-weight: 800; font-size: 14px; letter-spacing: 0.02em; flex: 1; }
.mock-pill {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(117,81,233,0.14); color: var(--syncs-purple);
  padding: 4px 8px; border-radius: 999px;
}
.mock-pill.pill-2 { background: rgba(43,205,141,0.14); color: var(--success-ink); }
.mock-amount { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; }
.mock-sub { font-size: 12px; color: var(--ink-2); margin-bottom: 14px; }
.mock-bar { height: 6px; background: var(--grey); border-radius: 4px; overflow: hidden; margin-bottom: 12px; }
.mock-bar span { display: block; height: 100%; background: var(--syncs-gradient); border-radius: 4px; }
.mock-row { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; }
.mock-row .ok { color: var(--success-ink); }
.mock-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.mock-rows > div {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--paper-2); border-radius: 8px; padding: 8px 10px;
  font-size: 12px; color: var(--ink-2);
}
.mock-rows > div b { color: var(--ink); font-weight: 800; }
.mock-foot { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-2); font-weight: 600; }
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(43,205,141,0.6); animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(43,205,141,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(43,205,141,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,205,141,0); }
}
.mock-route { display: flex; align-items: center; gap: 10px; font-weight: 800; margin-bottom: 12px; }
.mock-route .dash { flex: 1; color: var(--syncs-violet); height: 8px; }
.mock-bids { display: flex; flex-direction: column; gap: 6px; }
.bid {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--paper-2); padding: 8px 10px; border-radius: 8px;
  font-size: 12px; color: var(--ink-2); font-weight: 600;
}
.bid b { color: var(--ink); font-weight: 800; }
.bid-win {
  background: rgba(117,81,233,0.10);
  outline: 1.5px solid rgba(117,81,233,0.35);
}
.bid-win b { color: var(--syncs-purple); }

.mock-paid    { top: 0;   left: 0;   transform: rotate(-2deg); }
.mock-invoice { top: 130px; right: 0; transform: rotate(2deg); }
.mock-market  { bottom: 0; left: 60px; transform: rotate(-1deg); }

.float-a { animation: floatA 7s ease-in-out infinite; }
.float-b { animation: floatB 8s ease-in-out infinite; }
.float-c { animation: floatC 9s ease-in-out infinite; }
@keyframes floatA { 0%,100%{ transform: translateY(0) rotate(-2deg);} 50%{ transform: translateY(-10px) rotate(-2deg);} }
@keyframes floatB { 0%,100%{ transform: translateY(0) rotate(2deg);}  50%{ transform: translateY(12px) rotate(2deg);}  }
@keyframes floatC { 0%,100%{ transform: translateY(0) rotate(-1deg);} 50%{ transform: translateY(-8px) rotate(-1deg);} }

@media (max-width: 980px) {
  .hero { padding: 130px 24px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-mocks { height: 420px; max-width: 460px; margin: 0 auto; }
  .mock-paid { left: 0; }
  .mock-invoice { right: 0; }
  .mock-market { left: 40px; }
}
@media (max-width: 520px) {
  .hero-mocks { height: 380px; }
  .mock { width: 240px; padding: 14px 16px; }
  .mock-amount { font-size: 22px; }
  .mock-market { left: 20px; }
}

/* ---- Tech-wing hero variant ---- */
.hero-tw .hero-grid { grid-template-columns: 1fr; max-width: 900px; text-align: center; }
.hero-tw .lede { margin-left: auto; margin-right: auto; }
.hero-tw .hero-ctas { justify-content: center; }
.hero-tw .stat-pills {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px;
}
.hero-tw .stat-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 700; font-size: 13px; color: #fff;
}
.hero-tw .stat-pill b {
  background: var(--syncs-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 900; font-size: 15px;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  position: relative; overflow: hidden;
  background: var(--syncs-gradient); color: #fff;
  padding: 56px 32px;
}
.stats-grid {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat b {
  font-size: clamp(36px, 4vw, 56px); font-weight: 900; letter-spacing: -0.03em; line-height: 1;
}
.stat span {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #e5e1ff; font-weight: 600;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { position: relative; padding: 120px 32px; }
.section-light { background: var(--paper); }
.section-grey  { background: var(--paper-2); }
.section-dark  { background: var(--syncs-navy); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head .lede, .section-head .section-lede { margin-left: auto; margin-right: auto; }

@media (max-width: 720px) { .section { padding: 80px 20px; } }

/* ============================================================
   PRODUCTS (homepage)
   ============================================================ */
.prod-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1120px; margin: 0 auto;
}
.prod-card {
  position: relative; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 32px 32px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.prod-card::before {
  content:""; position: absolute; inset:0;
  border-radius: var(--radius);
  padding: 1.5px;
  background: var(--syncs-gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .2s;
  pointer-events: none;
}
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -30px rgba(30,35,97,0.25); }
.prod-card:hover::before { opacity: 1; }
.prod-num {
  font-size: 12px; font-weight: 800; letter-spacing: 0.2em;
  color: var(--syncs-purple); margin-bottom: 18px;
}
.prod-card h3 {
  font-size: 30px; font-weight: 900; letter-spacing: -0.02em;
  color: var(--syncs-navy); margin-bottom: 10px;
}
.prod-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 16px;
}
.prod-tag::before { content:""; width: 6px; height: 6px; border-radius: 50%; }
.tag-live { background: rgba(43,205,141,0.12); color: var(--success-ink); }
.tag-live::before { background: var(--success); box-shadow: 0 0 0 3px rgba(43,205,141,0.2); }
.tag-soon { background: rgba(117,81,233,0.10); color: var(--syncs-purple); }
.tag-soon::before { background: var(--syncs-violet); }
.prod-kicker { font-weight: 700; color: var(--ink); margin: 0 0 8px; font-size: 15px; }
.prod-card p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.prod-foot { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--paper-2); color: var(--ink-2);
  padding: 6px 10px; border-radius: 6px; border: 1px solid var(--border);
}
.prod-soon { background: linear-gradient(180deg, #fff 0%, #faf9ff 100%); }

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

/* ============================================================
   TECH TEASER (homepage)
   ============================================================ */
.tech-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.tech-mini {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12); max-width: 460px;
}
.tech-mini b { display: block; font-size: 24px; font-weight: 900; color: #fff; }
.tech-mini span { font-size: 12px; letter-spacing: 0.06em; color: #a9a6d4; }
.nodes-wrap {
  background: rgba(117,81,233,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 28px;
}
.nodes-svg { width: 100%; height: auto; }
@media (max-width: 880px) { .tech-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-3px); border-color: rgba(117,81,233,0.4); box-shadow: 0 20px 40px -20px rgba(30,35,97,0.18); }
.why-glyph {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(180deg, #f1eefb 0%, #e6e1f7 100%);
  display: grid; place-items: center; margin-bottom: 24px;
}
.why-glyph svg { width: 30px; height: 30px; }
.why-card h3 { margin-bottom: 10px; color: var(--syncs-navy); }
.why-card p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CLIENTS
   ============================================================ */
.client-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.client {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 20px;
  display: flex; align-items: center; justify-content: center;
  min-height: 116px;
  position: relative; transition: transform .15s ease, box-shadow .2s;
}
.client::before {
  content:""; position: absolute; inset: 0; border-radius: 12px;
  padding: 1.5px; background: var(--syncs-gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .2s;
  pointer-events: none;
}
.client img {
  max-height: 60px; max-width: 100%; width: auto;
  object-fit: contain; display: block;
  transition: transform .2s ease;
}
.client:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -20px rgba(30,35,97,0.3); }
.client:hover::before { opacity: 1; }
.client:hover img { transform: scale(1.04); }

@media (max-width: 880px) {
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .client { min-height: 96px; }
  .client img { max-height: 52px; }
}
@media (max-width: 480px) {
  .client-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.cred-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.iso-badge { display: grid; place-items: center; }
.iso-badge svg {
  width: 260px; height: 260px;
  filter: drop-shadow(0 24px 50px rgba(117,81,233,0.35));
}
.cred-list {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px;
}
.cred-list li { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 14px; }
.cred-list b { display: block; font-size: 18px; color: #fff; font-weight: 800; }
.cred-list span { font-size: 13px; color: #a9a6d4; }

@media (max-width: 880px) {
  .cred-grid { grid-template-columns: 1fr; }
  .iso-badge svg { width: 200px; height: 200px; }
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta-strip {
  position: relative; overflow: hidden; color: #fff;
  background: var(--syncs-gradient);
}
.cta-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.cta-strip h2 { color: #fff; }
.cta-strip .section-lede { color: rgba(255,255,255,0.85); }
.contact-meta {
  list-style: none; margin: 32px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-meta li {
  display: flex; gap: 12px; align-items: baseline;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.18);
}
.contact-meta span {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.7); width: 64px;
}
.contact-meta b { font-size: 17px; color: #fff; font-weight: 700; }

.cta-form {
  background: #fff; color: var(--ink);
  border-radius: var(--radius);
  padding: 32px; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.4);
  display: flex; flex-direction: column; gap: 16px;
}
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--ink-2);
}
.cta-form input, .cta-form select, .cta-form textarea {
  font-family: inherit; font-size: 15px; font-weight: 500;
  color: var(--ink); background: var(--paper-2);
  border: 1.5px solid transparent;
  border-radius: 10px; padding: 12px 14px;
  outline: none; transition: border-color .15s, background .15s;
  text-transform: none; letter-spacing: 0;
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
  border-color: var(--syncs-violet); background: #fff;
}
.cta-form .btn { align-self: flex-start; margin-top: 6px; }

.form-success {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(43,205,141,0.10);
  color: var(--success-ink);
  border-radius: 12px; padding: 14px 16px;
}
.form-success[hidden] { display: none; }
.form-success svg { width: 22px; height: 22px; flex: 0 0 22px; margin-top: 2px; }
.form-success b { display: block; font-size: 14px; }
.form-success span { font-size: 13px; color: #0e6e44; }

@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; }
  .cta-form .row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--syncs-navy-3); color: #c9c7e8;
  padding: 80px 32px 28px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand p { margin: 16px 0 18px; font-size: 14px; max-width: 320px; }
.foot-iso {
  display: inline-block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: #fff;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 6px 12px;
}
.brand-light .brand-word { color: #fff; }
.footer h4 { color: #fff; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul li { font-size: 14px; color: #c9c7e8; }
.footer ul a:hover { color: #fff; }
.foot-bottom {
  padding: 20px 32px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: #8a87b6;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-a, .float-b, .float-c, .pulse { animation: none; }
}

/* ============================================================
   TECH-WING — ENGAGEMENT MODELS
   ============================================================ */
.models-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.model-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.model-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(30,35,97,0.25); border-color: rgba(117,81,233,0.3); }
.model-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--syncs-gradient);
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -10px rgba(96,63,202,0.4);
}
.model-icon svg { width: 28px; height: 28px; color: #fff; }
.model-card h3 { color: var(--syncs-navy); font-size: 24px; }
.model-card p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
.model-meta {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.model-meta-row {
  font-size: 12px; color: var(--ink-2);
  display: flex; flex-direction: column; gap: 2px;
}
.model-meta-row span {
  text-transform: uppercase; font-weight: 800; letter-spacing: 0.12em;
  color: var(--syncs-purple); font-size: 10px;
}
.model-meta-row b { color: var(--ink); font-weight: 700; font-size: 13.5px; }
@media (max-width: 980px) { .models-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TECH-WING — COMPARISON TABLE
   ============================================================ */
.compare-wrap {
  max-width: 980px; margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative; z-index: 1;
}
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 14.5px;
}
.compare-table th, .compare-table td {
  padding: 18px 22px; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.compare-table thead th {
  background: rgba(255,255,255,0.03);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 800; color: #cdcaf5;
  padding: 18px 22px;
}
.compare-table thead th.col-syncs {
  background: var(--syncs-gradient);
  color: #fff;
}
.compare-table tbody tr:nth-child(odd) td { background: rgba(255,255,255,0.02); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody td:first-child {
  color: #a9a6d4; font-weight: 600; width: 26%;
}
.compare-table tbody td:nth-child(2) { color: #c9c7e8; }
.compare-table tbody td:nth-child(3) {
  color: #fff; font-weight: 700;
  background: rgba(117,81,233,0.08);
}
@media (max-width: 720px) {
  .compare-table { font-size: 12.5px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
}

/* ============================================================
   TECH-WING — SPECIALISTS GRID
   ============================================================ */
.spec-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.spec-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; gap: 12px;
}
.spec-card:hover { transform: translateY(-3px); border-color: rgba(117,81,233,0.35); box-shadow: 0 20px 40px -20px rgba(30,35,97,0.2); }
.spec-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #f1eefb 0%, #e6e1f7 100%);
}
.spec-icon svg { width: 22px; height: 22px; color: var(--syncs-purple); }
.spec-card h4 {
  font-size: 14px; letter-spacing: -0.005em; text-transform: none;
  color: var(--syncs-navy); font-weight: 800;
  line-height: 1.25;
}
.spec-card p { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.5; }
@media (max-width: 1080px) { .spec-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .spec-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TECH-WING — TECH STACKS
   ============================================================ */
.stacks-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.stack-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.stack-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 800; color: var(--syncs-purple);
}
.stack-card h3 {
  font-size: 20px; color: var(--syncs-navy);
}
.stack-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-chip {
  font-size: 12px; font-weight: 700;
  padding: 7px 12px; border-radius: 8px;
  border: 1px solid var(--border-2);
  background: var(--paper);
  color: var(--syncs-navy);
  transition: border-color .2s, color .2s, background .2s;
}
.stack-chip:hover {
  border-color: var(--syncs-violet);
  color: var(--syncs-violet);
  background: rgba(117,81,233,0.04);
}
@media (max-width: 880px) { .stacks-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TECH-WING — TIMELINE
   ============================================================ */
.timeline {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  position: relative; z-index: 1;
  margin-bottom: 56px;
}
.tl-step {
  position: relative; padding: 0 16px;
  text-align: center;
}
.tl-step::before {
  content: ""; position: absolute;
  top: 22px; left: -50%; right: 50%;
  height: 2px; background: linear-gradient(90deg, rgba(117,81,233,0.6), rgba(117,81,233,0.6));
}
.tl-step:first-child::before { display: none; }
.tl-num {
  position: relative; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--syncs-gradient); color: #fff;
  display: grid; place-items: center;
  font-weight: 900; font-size: 16px;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px -8px rgba(117,81,233,0.55);
}
.tl-step h4 {
  font-size: 14px; text-transform: none; letter-spacing: -0.005em;
  color: #fff; font-weight: 800; margin-bottom: 6px;
}
.tl-step p { margin: 0; font-size: 12.5px; color: #b3b0d8; line-height: 1.5; }

.deploy-speed {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 700px; margin: 0 auto;
}
.speed-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.speed-card span { font-size: 13px; color: #b3b0d8; font-weight: 600; }
.speed-card b {
  background: var(--syncs-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 26px; font-weight: 900; letter-spacing: -0.02em;
}
@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .tl-step { text-align: left; display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 0; }
  .tl-step::before { display: none; }
  .tl-num { margin: 0; }
  .deploy-speed { grid-template-columns: 1fr; }
}

/* ============================================================
   TECH-WING — SECURITY
   ============================================================ */
.sec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.sec-card {
  background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.sec-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--syncs-gradient);
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -10px rgba(96,63,202,0.4);
}
.sec-icon svg { width: 28px; height: 28px; color: #fff; }
.sec-card h3 { color: var(--syncs-navy); font-size: 20px; }
.sec-card p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 880px) { .sec-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TECH-WING — ACHIEVEMENTS
   ============================================================ */
.achv-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  max-width: 1080px; margin: 0 auto;
}
.achv-card {
  position: relative;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  display: flex; gap: 22px;
  transition: transform .2s, box-shadow .2s;
}
.achv-card:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -28px rgba(30,35,97,0.25); }
.achv-num {
  flex: 0 0 auto;
  background: var(--syncs-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 900; font-size: 32px; letter-spacing: -0.02em;
  line-height: 1.1;
  min-width: 120px;
}
.achv-body h4 {
  font-size: 16px; text-transform: none; letter-spacing: -0.005em;
  color: var(--syncs-navy); font-weight: 800;
  margin-bottom: 8px; line-height: 1.3;
}
.achv-body p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
@media (max-width: 880px) {
  .achv-grid { grid-template-columns: 1fr; }
  .achv-card { flex-direction: column; gap: 14px; }
  .achv-num { min-width: 0; }
}

/* ============================================================
   FOCUS STATES (a11y)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--syncs-violet);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }
