/* ============================================================
   OMNIGO — Landing Page Styles
   Brand palette & type from OMNIGO Style Guide v3
   ============================================================ */

:root {
  /* Primary */
  --sea-foam:   #00D2E6;
  --summer-sky: #0CA2ED;
  --deep-blue:  #003352;
  --cool-black: #0A0E13;
  --white:      #FFFFFF;

  /* Secondary */
  --storm:        #214AA4;
  --violet:       #6252F2;
  --light-purple: #BA7EDD;
  --cotton-candy: #E8E2FB;
  --clouds:       #E3F5FF;

  /* Gradients */
  --grad-purple:    linear-gradient(120deg, #6252F2 0%, #BA7EDD 100%);
  --grad-blue:      linear-gradient(120deg, #214AA4 0%, #0CA2ED 100%);
  --grad-darkblue:  linear-gradient(135deg, #003352 0%, #214AA4 100%);
  --grad-irridesc:  linear-gradient(120deg, #E8E2FB 0%, #E3F5FF 100%);
  --grad-brand:     linear-gradient(95deg, #6252F2 0%, #0CA2ED 55%, #00D2E6 100%);

  --ink:    #0A0E13;
  --muted:  #5b6573;
  --line:   rgba(10, 14, 19, 0.10);

  --maxw: 1200px;
  --radius: 16px;

  --font-head: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Inter', Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn--primary {
  color: #fff; background: var(--grad-brand);
  box-shadow: 0 8px 24px rgba(98, 82, 242, 0.35);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(98, 82, 242, 0.45); }
.btn--ghost {
  color: #fff; border-color: rgba(255,255,255,0.55); background: transparent;
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

.link-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid currentColor; opacity: .9;
  transition: background .2s ease, color .2s ease;
}
.link-more::after { content: "→"; font-size: 13px; }
.link-more:hover { background: var(--grad-brand); border-color: transparent; color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 14, 19, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  height: 64px; display: flex; align-items: center; gap: 24px;
}
.nav__logo img { height: 22px; width: auto; }
.nav__links {
  display: flex; gap: 28px; margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
  transition: color .2s ease;
}
.nav__links a:hover { color: #fff; }
.nav__cta { padding: 8px 20px; font-size: 14px; }
.nav__burger {
  display: none; margin-left: auto; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav__burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,14,19,0) 60%, rgba(10,14,19,0.18) 100%),
    url('/assets/gradients/teal-purple.png') center/cover no-repeat,
    var(--grad-purple);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px;
  align-items: center; padding: 84px 28px 96px;
}
.hero__copy h1 {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.015em;
  max-width: 14ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.18);
}
.hero__sub {
  margin-top: 26px; font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.45;
  color: rgba(255,255,255,0.95);
}
.hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* hero mockups */
.hero__visual { position: relative; min-height: 340px; }
.mock {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.mock--laptop {
  position: relative; z-index: 1; padding: 12px; margin-left: auto;
  width: 100%; max-width: 460px;
  background: rgba(255,255,255,0.95); color: var(--ink);
}
.mock__bar { display: flex; gap: 6px; padding: 4px 4px 12px; }
.mock__bar span { width: 9px; height: 9px; border-radius: 50%; background: #d6dbe2; }
.mock__bar span:nth-child(1){ background:#ff6058; }
.mock__bar span:nth-child(2){ background:#ffbd2e; }
.mock__bar span:nth-child(3){ background:#28c840; }
.mock__screen { background: #f5f7fa; border-radius: 8px; padding: 14px; }
.mock__screen--light { min-height: 230px; }
.mock__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock__card { background: #fff; border-radius: 10px; padding: 12px 14px; box-shadow: 0 4px 14px rgba(10,14,19,0.06); }
.mock__label { font-size: 11px; color: var(--muted); font-weight: 600; }
.mock__big { font-size: 26px; font-weight: 700; margin-top: 4px; color: var(--deep-blue); }
.mock__big small { font-size: 14px; color: var(--muted); }
.mock__spark {
  height: 34px; margin-top: 8px; border-radius: 6px;
  background: var(--grad-brand); opacity: .85;
  clip-path: polygon(0 75%, 15% 60%, 30% 70%, 45% 40%, 60% 52%, 75% 25%, 90% 38%, 100% 18%, 100% 100%, 0 100%);
}
.mock__bars { display: flex; align-items: flex-end; gap: 6px; height: 34px; margin-top: 8px; }
.mock__bars i { flex: 1; background: var(--summer-sky); border-radius: 3px; opacity: .8; }
.mock__bars i:nth-child(1){ height: 40%; } .mock__bars i:nth-child(2){ height: 70%; }
.mock__bars i:nth-child(3){ height: 55%; } .mock__bars i:nth-child(4){ height: 90%; }
.mock__bars i:nth-child(5){ height: 65%; } .mock__bars i:nth-child(6){ height: 80%; }
.mock__chart {
  margin-top: 12px; height: 96px; border-radius: 10px; background: #fff;
  box-shadow: 0 4px 14px rgba(10,14,19,0.06);
  background-image:
    linear-gradient(180deg, rgba(12,162,237,0.18), rgba(12,162,237,0) 70%);
  position: relative; overflow: hidden;
}
.mock__chart::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; top: 30%;
  background:
    repeating-linear-gradient(90deg, transparent 0 14%, rgba(10,14,19,0.05) 14% 14.4%);
}
.mock--phone {
  position: absolute; left: -8px; bottom: -18px; z-index: 2;
  width: 130px; padding: 10px;
  background: rgba(255,255,255,0.95); color: var(--ink);
}
.mock--phone-dark { background: rgba(10,14,19,0.92); color: #fff; }
.mock__pscreen { background: linear-gradient(160deg, #0c1018, #11202b); border-radius: 10px; padding: 12px; color: #fff; }
.mock--phone-dark .mock__pscreen { background: linear-gradient(160deg, #0c1018, #07262b); }
.mock__plabel { font-size: 10px; color: rgba(255,255,255,0.6); font-weight: 600; }
.mock__pbig { font-size: 22px; font-weight: 700; margin: 4px 0 10px; }
.mock__pbars { display: flex; align-items: flex-end; gap: 5px; height: 40px; }
.mock__pbars i { flex: 1; border-radius: 3px; background: var(--violet); }
.mock__pbars--teal i { background: var(--sea-foam); }
.mock__pbars i:nth-child(1){ height: 50%; } .mock__pbars i:nth-child(2){ height: 80%; }
.mock__pbars i:nth-child(3){ height: 60%; } .mock__pbars i:nth-child(4){ height: 95%; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { background: #f3f5f7; padding: 30px 0; border-bottom: 1px solid var(--line); }
.partners__eyebrow {
  text-align: center; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 18px;
}
.partners__logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 42px;
}
.partners__logos li {
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  letter-spacing: .04em; color: #8a93a0; filter: grayscale(1);
  transition: color .2s ease;
}
.partners__logos li:hover { color: var(--deep-blue); }

/* ============================================================
   ACCELERATE
   ============================================================ */
.accelerate { background: #fff; padding: 88px 0; }
.accelerate__grid {
  display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: center;
}
.accelerate__mark img { width: 180px; }
.accelerate__copy {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem); line-height: 1.28;
  color: var(--summer-sky); letter-spacing: -0.01em;
}
.accelerate__copy strong { color: var(--violet); font-weight: 500; }

/* ============================================================
   EXPLORE
   ============================================================ */
.explore { position: relative; color: #fff; overflow: hidden; }
.explore__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(10,14,19,0.25), rgba(10,14,19,0.05)),
              url('/assets/gradients/teal-purple.png') center/cover no-repeat,
              var(--grad-blue);
}
.explore__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px;
  align-items: center; padding: 90px 28px;
}
.explore__visual { position: relative; min-height: 300px; }
.mock--stack { padding: 12px; max-width: 380px; background: rgba(255,255,255,0.95); }
.mock__list { display: flex; flex-direction: column; gap: 10px; }
.mock__list span { height: 16px; border-radius: 5px; background: linear-gradient(90deg, #e7ebf0, #f3f5f7); }
.mock__list span:nth-child(odd){ width: 90%; }
.mock__list span:nth-child(even){ width: 70%; }
.explore .mock--phone { left: auto; right: -6px; bottom: -24px; }

.explore__title {
  font-family: var(--font-head); font-weight: 200;
  font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; margin-bottom: 26px;
}
.explore__features { border-top: 1px solid rgba(255,255,255,0.25); max-width: 520px; }
.explore__features li {
  padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.22);
  font-size: clamp(.95rem, 1.4vw, 1.1rem); font-weight: 500;
}
.explore__text {
  margin-top: 26px; display: grid; gap: 14px; max-width: 460px;
  color: rgba(255,255,255,0.92); font-size: 15px;
}
.explore__text p { margin: 0; }

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); letter-spacing: -0.01em;
}
.section-head p { margin: 12px 0 0; color: rgba(255,255,255,0.7); font-size: 15px; }
.section-head--light p { color: rgba(255,255,255,0.85); }

/* ============================================================
   DARK SECTIONS / PLATFORM
   ============================================================ */
.section--dark { background: var(--cool-black); color: #fff; }
.platform { padding: 90px 0; }
.cards { display: grid; gap: 22px; }
.cards--2 { grid-template-columns: 1fr 1fr; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.pcard {
  position: relative; padding: 28px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(33,74,164,0.18), rgba(10,14,19,0.6));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.pcard:nth-child(1){ background: linear-gradient(160deg, rgba(0,210,230,0.16), rgba(10,14,19,0.7)); }
.pcard:nth-child(2){ background: linear-gradient(160deg, rgba(98,82,242,0.18), rgba(10,14,19,0.7)); }
.pcard:nth-child(3){ background: linear-gradient(160deg, rgba(33,74,164,0.16), rgba(10,14,19,0.7)); }
.pcard:nth-child(4){ background: linear-gradient(160deg, rgba(12,162,237,0.16), rgba(10,14,19,0.7)); }
.pcard:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.2); }
.pcard__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.pcard h3 { font-size: 22px; font-weight: 600; }
.pcard__sub { margin: 4px 0 0; font-size: 13px; color: rgba(255,255,255,0.6); }
.pcard p { color: rgba(255,255,255,0.78); font-size: 14.5px; margin: 0 0 22px; }
.pcard__icon {
  font-size: 22px; width: 44px; height: 44px; flex: none;
  display: grid; place-items: center; border-radius: 10px;
  background: rgba(255,255,255,0.06); color: var(--sea-foam);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { position: relative; color: #fff; overflow: hidden; padding: 90px 0; }
.services__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(33,74,164,0.4), rgba(12,162,237,0.2)),
              url('/assets/gradients/blue.png') center/cover no-repeat,
              var(--grad-blue);
}
.services .container { position: relative; z-index: 1; }
.services__list { max-width: 980px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.25); }
.services__list li {
  display: grid; grid-template-columns: 260px 1fr; gap: 24px;
  padding: 30px 4px; border-bottom: 1px solid rgba(255,255,255,0.22);
  align-items: baseline;
}
.services__list h3 {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.services__list h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.services__list p { margin: 0; color: rgba(255,255,255,0.85); font-size: 15px; }

/* ============================================================
   ECOSYSTEM
   ============================================================ */
.ecosystem { position: relative; overflow: hidden; padding: 90px 0; }
.ecosystem__bg {
  position: absolute; inset: 0; z-index: 0; opacity: .9;
  background: linear-gradient(180deg, rgba(10,14,19,0.85), rgba(10,14,19,0.6)),
              url('/assets/prisms/prism-2.jpg') center/cover no-repeat;
}
.ecosystem .container { position: relative; z-index: 1; }
.ecard {
  display: grid; grid-template-columns: 220px 1fr 90px; gap: 32px; align-items: center;
  padding: 36px; margin-bottom: 22px; border-radius: var(--radius);
  background: rgba(10,14,19,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}
.ecard__brand img { width: 150px; }
.ecard__tag {
  display: block; margin-top: 8px; font-family: var(--font-head);
  letter-spacing: .42em; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85);
  padding-left: 4px;
}
.ecard__body h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.ecard__body p { color: rgba(255,255,255,0.78); font-size: 14.5px; margin: 0 0 12px; }
.ecard__body .link-more { margin-top: 6px; }
.ecard__icon { font-size: 54px; color: var(--sea-foam); text-align: center; opacity: .85; }

/* ============================================================
   POWERED BY
   ============================================================ */
.powered { position: relative; overflow: hidden; padding: 90px 0; color: #fff; }
.powered__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(186,126,221,0.5), rgba(98,82,242,0.35)),
              url('/assets/gradients/purple.png') center/cover no-repeat,
              var(--grad-purple);
}
.powered .container { position: relative; z-index: 1; }
.wcard {
  background: #fff; color: var(--ink); border-radius: var(--radius);
  padding: 30px; box-shadow: 0 24px 50px rgba(20,10,60,0.22);
  display: flex; flex-direction: column;
}
.wcard__logo { height: 46px; display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.wcard__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--cool-black); }
.wcard__dash { width: 26px; height: 12px; border-radius: 999px; background: var(--cool-black); transform: rotate(-35deg); }
.wcard__logo--mrs, .wcard__logo--ibu {
  font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--deep-blue);
}
.wcard__logo--mrs { letter-spacing: -.02em; }
.wcard h3 { font-size: 19px; font-weight: 700; }
.wcard__tag { font-weight: 600; color: var(--violet); font-size: 14px; margin: 6px 0 12px; }
.wcard p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin: 0 0 18px; }
.wcard .link-more { margin-top: auto; align-self: flex-start; color: var(--violet); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; overflow: hidden; padding: 100px 0; color: var(--ink); }
.contact__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(232,226,251,0.9), rgba(227,245,255,0.9)),
              url('/assets/gradients/teal-purple.png') center/cover no-repeat;
  opacity: .96;
}
.contact__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.contact__intro h2 {
  font-family: var(--font-head); font-weight: 200;
  font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--light-purple); letter-spacing: -0.01em;
}
.contact__intro p { margin-top: 18px; max-width: 360px; color: #44506a; font-size: 15px; }

.contact__form {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius); padding: 30px;
  box-shadow: 0 24px 50px rgba(20,10,60,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label { font-size: 12px; font-weight: 600; color: #46506a; margin-bottom: 6px; }
.field label span { color: var(--violet); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid rgba(10,14,19,0.14); border-radius: 10px;
  background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(98,82,242,0.15);
}
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact__submit { width: 100%; margin-top: 6px; }
.contact__status { margin: 14px 0 0; font-size: 14px; font-weight: 600; min-height: 20px; }
.contact__status.is-ok { color: #0a8f57; }
.contact__status.is-err { color: #d23b3b; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--cool-black); color: #fff; padding: 54px 0; }
.footer__grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer__brand img { height: 24px; margin-bottom: 14px; }
.footer__brand p { color: rgba(255,255,255,0.55); font-size: 13px; margin: 0; }
.footer__cols { display: flex; gap: 60px; }
.footer__cols a { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 2.1; transition: color .2s; }
.footer__cols a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__links.is-open {
    display: flex; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 10px 28px 20px;
    background: rgba(10,14,19,0.96); backdrop-filter: blur(14px);
  }
  .nav__links.is-open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__burger { display: flex; }

  .hero__grid { grid-template-columns: 1fr; padding: 60px 28px 72px; }
  .hero__visual { min-height: 280px; margin-top: 20px; }
  .explore__grid { grid-template-columns: 1fr; gap: 40px; }
  .accelerate__grid { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .accelerate__mark img { width: 120px; }
  .cards--2, .cards--3 { grid-template-columns: 1fr; }
  .services__list li { grid-template-columns: 1fr; gap: 8px; }
  .ecard { grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .ecard__icon { display: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .partners__logos { gap: 12px 24px; }
  .partners__logos li { font-size: 14px; }
  .footer__grid { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
