:root {
  --bg: #050b14;
  --bg-2: #08111f;
  --panel: #0c1727;
  --panel-2: #101d30;
  --text: #f6f8fb;
  --muted: #94a6bd;
  --line: rgba(255,255,255,.08);
  --cyan: #18d5ff;
  --blue: #198cff;
  --blue-2: #1167ff;
  --purple: #8c4dff;
  --green: #10d994;
  --orange: #ff9d24;
  --red: #ff4a5f;
  --shadow: 0 30px 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:
    radial-gradient(
      circle at 75% 10%,
      rgba(24,141,255,.11),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #050b14 0%,
      #07111d 100%
    );
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(5,11,20,.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand-main {
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -.045em;
}

.brand-main span {
  background:
    linear-gradient(
      90deg,
      var(--cyan),
      var(--blue)
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .47em;
  color: #bdc9d7;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: #c3cfdd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 29px 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--cyan);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--cyan);
  border-radius: 999px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border: 1px solid var(--cyan);
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  box-shadow:
    0 0 22px rgba(24,213,255,.14);
}

.header-contact:hover {
  background: rgba(24,213,255,.08);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 48%,
      rgba(24,141,255,.08) 48.2%,
      rgba(24,141,255,.03) 73%,
      transparent 73.2%
    );
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: #8ea2b9;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .28em;
}

.hero h1 {
  margin: 0;
  max-width: 600px;
  font-size: clamp(48px, 5.8vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero h1 span,
.apps-heading h2 span {
  background:
    linear-gradient(
      90deg,
      var(--cyan),
      var(--blue)
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.btn-primary {
  color: #00141d;
  background:
    linear-gradient(
      90deg,
      var(--cyan),
      #46e3ff
    );
  box-shadow:
    0 0 30px rgba(24,213,255,.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid #5e7897;
  color: white;
  background: rgba(255,255,255,.025);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 42px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: none;
}

.benefit-icon {
  font-size: 28px;
}

.benefit div:last-child {
  display: flex;
  flex-direction: column;
}

.benefit strong {
  font-size: 13px;
}

.benefit span {
  color: var(--muted);
  font-size: 12px;
}


/* =========================================================
   STORE360 SHOWCASE
   ========================================================= */

.product-showcase {
  position: relative;
}

.showcase-glow {
  position: absolute;
  inset: 10% 5% -5% 12%;
  background:
    radial-gradient(
      circle,
      rgba(25,140,255,.30),
      transparent 67%
    );
  filter: blur(35px);
}

.showcase-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(53,157,255,.26);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(14,32,56,.97),
      rgba(5,14,25,.97)
    );
  box-shadow: var(--shadow);
}

.showcase-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(24,213,255,.08);
  filter: blur(15px);
  pointer-events: none;
}

.showcase-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
}

.store360-title {
  font-size: 35px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.store360-title span,
.preview-logo span {
  color: var(--cyan);
}

.showcase-top p {
  margin: 4px 0 0;
  color: var(--muted);
}

.coming-badge {
  padding: 6px 10px;
  border: 1px solid rgba(24,213,255,.30);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}


/* dashboard fake-but-realistic */

.dashboard-preview {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #07111f;
}

.preview-sidebar {
  padding: 16px 10px;
  border-right: 1px solid var(--line);
  background: #081523;
}

.preview-logo {
  padding: 8px 7px 14px;
  font-size: 15px;
  font-weight: 900;
}

.preview-link {
  margin: 4px 0;
  padding: 8px 9px;
  border-radius: 8px;
  color: #94a6bb;
  font-size: 10px;
}

.preview-link.active {
  background: rgba(26,141,255,.18);
  color: var(--cyan);
}

.preview-main {
  padding: 16px;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 14px;
}

.preview-header > div:first-child {
  display: flex;
  flex-direction: column;
}

.preview-header strong {
  font-size: 18px;
}

.preview-header span {
  color: var(--muted);
  font-size: 9px;
}

.period {
  height: fit-content;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #becbdd;
  font-size: 9px;
}

.preview-stats {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0,1fr));
  gap: 8px;
}

.stat {
  min-height: 84px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid;
  display: flex;
  flex-direction: column;
}

.stat span {
  color: #d7e0ec;
  font-size: 9px;
}

.stat strong {
  margin-top: 3px;
  font-size: 17px;
}

.stat small {
  margin-top: auto;
  font-size: 9px;
}

.stat.green {
  background: rgba(0,121,83,.22);
  border-color: rgba(16,217,148,.45);
}

.stat.green small {
  color: var(--green);
}

.stat.blue {
  background: rgba(22,93,166,.24);
  border-color: rgba(25,140,255,.48);
}

.stat.blue small {
  color: #42beff;
}

.stat.purple {
  background: rgba(92,47,145,.29);
  border-color: rgba(140,77,255,.48);
}

.stat.purple small {
  color: #b886ff;
}

.stat.orange {
  background: rgba(119,68,17,.28);
  border-color: rgba(255,157,36,.48);
}

.stat.orange small {
  color: #ffc15d;
}

.chart-card {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.018);
}

.chart-title {
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 800;
}

.bars {
  height: 90px;
  display: flex;
  align-items: end;
  gap: 5px;
  padding-top: 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.bars span {
  flex: 1;
  min-width: 3px;
  border-radius: 3px 3px 0 0;
  background:
    linear-gradient(
      180deg,
      #26dbff,
      #1472ff
    );
  box-shadow:
    0 0 8px rgba(24,213,255,.18);
}

.preview-bottom {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0,1fr));
  gap: 8px;
  margin-top: 10px;
}

.small-panel {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.022);
  display: flex;
  flex-direction: column;
}

.small-panel span {
  color: var(--muted);
  font-size: 8px;
}

.small-panel strong {
  margin-top: 3px;
  font-size: 14px;
}

.showcase-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.showcase-features span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #bcc9d9;
  font-size: 10px;
}

.showcase-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}


/* =========================================================
   APPS
   ========================================================= */

.apps-section {
  padding: 72px 0 90px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(6,15,26,.96),
      rgba(4,10,18,.98)
    );
}

.apps-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 32px;
}

.apps-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.apps-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.apps-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0,1fr));
  gap: 18px;
}

.app-tile {
  min-height: 128px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    linear-gradient(
      145deg,
      rgba(13,29,48,.92),
      rgba(7,16,28,.92)
    );
  text-decoration: none;
  transition:
    transform .2s ease,
    border-color .2s ease;
}

.app-tile.featured:hover {
  transform: translateY(-3px);
  border-color: rgba(24,213,255,.35);
}

.app-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-size: 30px;
  font-weight: 900;
}

.app-icon.analytics {
  color: var(--cyan);
  border: 1px solid rgba(24,213,255,.48);
  background: rgba(24,141,255,.13);
}

.app-icon.offers {
  color: #a96eff;
  border: 1px solid rgba(169,110,255,.4);
  background: rgba(123,68,196,.12);
}

.app-icon.future {
  color: #44e7ca;
  border: 1px solid rgba(68,231,202,.38);
  background: rgba(68,231,202,.08);
}

.app-info h3 {
  margin: 0 0 5px;
  font-size: 19px;
}

.app-info p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.app-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(24,213,255,.09);
  color: var(--cyan);
  font-size: 19px;
}

.app-status {
  color: #6f8095;
  font-size: 11px;
  font-weight: 800;
}

.app-tile.disabled {
  opacity: .58;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  border-top: 1px solid var(--line);
  background: #030912;
}

.footer-main {
  min-height: 115px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
}

.footer-brand .brand-main {
  font-size: 21px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: #8ea0b5;
  text-decoration: none;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-copy {
  color: #687b91;
  font-size: 11px;
  text-align: right;
}


/* =========================================================
   EXISTING INTERNAL PAGES
   Keep support/privacy/faq readable
   ========================================================= */

.legal-page {
  min-height: calc(100vh - 200px);
  padding: 74px 0 95px;
}

.legal-container {
  width: min(860px, calc(100% - 40px));
}

.legal-container h1 {
  margin: 0 0 12px;
  font-size: clamp(42px, 6vw, 65px);
  line-height: 1.03;
}

.legal-container h2 {
  margin-top: 38px;
  margin-bottom: 9px;
  font-size: 22px;
}

.legal-container p {
  color: var(--muted);
}

.last-updated {
  color: #71869d !important;
  font-size: 13px;
}

.support-box {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-list details {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .header-contact {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-wrap {
    max-width: 760px;
  }

  .product-showcase {
    max-width: 850px;
  }

  .apps-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 30px 0;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 700px) {

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .header-contact {
    padding: 9px 13px;
    font-size: 11px;
  }

  .brand-main {
    font-size: 21px;
  }

  .brand-sub {
    font-size: 7px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit {
    border-right: none;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-stats {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-top {
    flex-direction: column;
  }

  .apps-section {
    padding-top: 55px;
  }
}

@media (max-width: 430px) {

  .header-contact {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }

  .preview-stats {
    grid-template-columns: 1fr;
  }

  .preview-bottom {
    grid-template-columns: 1fr;
  }

  .app-tile {
    grid-template-columns: auto 1fr;
  }

  .app-arrow,
  .app-status {
    display: none;
  }
}
