:root {
  --bg: #071312;
  --bg-soft: #0b1a18;
  --panel: rgba(15, 38, 35, 0.72);
  --panel-strong: #102824;
  --text: #f4fbfa;
  --muted: #a8c2be;
  --teal: #20d3b0;
  --teal-2: #67f1d6;
  --line: rgba(132, 220, 204, 0.16);
  --warning: #f1c66a;
  --max: 1200px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(32, 211, 176, .11), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(103, 241, 214, .06), transparent 28%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header .container { width: min(calc(100% - 40px), 1360px); }
.section { padding: 110px 0; }
.section-sm { padding: 72px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-2);
  background: rgba(32, 211, 176, .06);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(32, 211, 176, .95);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  max-width: 950px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.065em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
h3 { margin-bottom: 10px; font-size: 1.12rem; letter-spacing: -.02em; }
p { color: var(--muted); }

.text-gradient {
  color: transparent;
  background: linear-gradient(92deg, var(--teal-2), var(--teal), #d5fff7);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(7, 19, 18, .72);
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.035em; }
.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #05221d;
  background: linear-gradient(145deg, var(--teal-2), var(--teal));
  box-shadow: 0 12px 30px rgba(32, 211, 176, .22);
  font-weight: 950;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 13px;
  white-space: nowrap;
  border-radius: 10px;
  color: #bed2cf;
  font-size: .92rem;
  font-weight: 700;
  transition: .2s ease;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,.055); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #05231e;
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  box-shadow: 0 14px 36px rgba(32, 211, 176, .18);
}
.btn-primary:hover { box-shadow: 0 18px 46px rgba(32, 211, 176, .27); }
.btn-ghost { color: white; border-color: var(--line); background: rgba(255,255,255,.035); }
.btn-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(103, 241, 214, .30); }

.menu-btn { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.04); color: white; cursor: pointer; }
.mobile-panel { display: none; }

.hero { padding: 96px 0 74px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; }
.hero-copy p { max-width: 700px; margin-bottom: 34px; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 34px; color: #c9dcda; font-size: .9rem; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: 9px; }
.hero-proof span::before { content: "✓"; color: var(--teal-2); }

.product-stage { position: relative; min-height: 610px; display: grid; place-items: center; }
.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(32, 211, 176, .14);
  filter: blur(70px);
}
.app-shell {
  position: relative;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(103, 241, 214, .22);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
}
.app-window { overflow: hidden; border: 1px solid rgba(255,255,255,.07); border-radius: 20px; background: #091715; }
.window-bar { height: 46px; padding: 0 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
.window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #33534e; }
.window-body { display: grid; grid-template-columns: 115px 1fr; min-height: 440px; }
.mock-sidebar { padding: 18px 12px; border-right: 1px solid rgba(255,255,255,.06); background: #07110f; }
.mock-brand { width: 35px; height: 35px; border-radius: 11px; background: linear-gradient(135deg, var(--teal-2), var(--teal)); margin-bottom: 24px; }
.mock-link { height: 30px; border-radius: 8px; background: rgba(255,255,255,.04); margin-bottom: 8px; }
.mock-link.active { background: rgba(32, 211, 176, .17); border: 1px solid rgba(32, 211, 176, .23); }
.mock-main { padding: 20px; }
.mock-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mock-title { width: 145px; height: 18px; border-radius: 7px; background: #d9f5f0; opacity: .88; }
.mock-action { width: 86px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, var(--teal-2), var(--teal)); }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-card { padding: 13px; min-height: 84px; border-radius: 13px; border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.035); }
.mock-card b { display: block; width: 45%; height: 8px; border-radius: 99px; background: rgba(168, 194, 190, .35); margin-bottom: 17px; }
.mock-card strong { display: block; width: 70%; height: 18px; border-radius: 6px; background: rgba(244, 251, 250, .82); }
.mock-chart { height: 155px; margin-top: 12px; border-radius: 14px; border: 1px solid rgba(255,255,255,.06); background: linear-gradient(180deg, rgba(32,211,176,.10), rgba(255,255,255,.02)); position: relative; overflow: hidden; }
.mock-chart::after { content: ""; position: absolute; inset: 26px 16px 18px; background: linear-gradient(135deg, transparent 0 8%, rgba(103,241,214,.75) 9% 10%, transparent 11% 23%, rgba(103,241,214,.75) 24% 25%, transparent 26% 42%, rgba(103,241,214,.75) 43% 44%, transparent 45% 61%, rgba(103,241,214,.75) 62% 63%, transparent 64% 78%, rgba(103,241,214,.75) 79% 80%, transparent 81%); transform: skewY(-8deg); }
.mock-table { margin-top: 12px; border-radius: 14px; border: 1px solid rgba(255,255,255,.06); overflow: hidden; }
.mock-row { height: 31px; border-bottom: 1px solid rgba(255,255,255,.05); background: rgba(255,255,255,.018); }
.mock-row:first-child { background: rgba(255,255,255,.045); }
.mock-row:last-child { border-bottom: 0; }

.logo-strip { padding: 26px 0; border-top: 1px solid rgba(255,255,255,.055); border-bottom: 1px solid rgba(255,255,255,.055); }
.logo-strip-inner { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 28px; }
.logo-strip strong { color: #d6e8e5; font-size: .88rem; }
.business-types { display: flex; flex-wrap: wrap; gap: 10px; }
.business-types span { padding: 8px 12px; border-radius: 999px; color: #a9c1bd; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.06); font-size: .84rem; font-weight: 700; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { font-size: 1.08rem; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card, .product-card, .price-card, .info-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
}
.feature-card { padding: 28px; min-height: 230px; transition: .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(103,241,214,.28); background: linear-gradient(180deg, rgba(32,211,176,.08), rgba(255,255,255,.025)); }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--teal-2); background: rgba(32,211,176,.10); border: 1px solid rgba(32,211,176,.17); font-size: 1.2rem; margin-bottom: 25px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.product-card { padding: 18px; }
.product-ui { padding: 26px; min-height: 440px; border-radius: 18px; background: #081613; border: 1px solid rgba(255,255,255,.055); }
.product-ui-top { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.product-ui-search { flex: 1; height: 44px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); }
.product-ui-button { width: 110px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--teal-2), var(--teal)); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-tile { padding: 14px; min-height: 135px; border-radius: 14px; border: 1px solid rgba(255,255,255,.055); background: rgba(255,255,255,.025); }
.product-thumb { height: 58px; border-radius: 10px; background: linear-gradient(145deg, rgba(32,211,176,.15), rgba(255,255,255,.03)); margin-bottom: 13px; }
.product-line { height: 7px; border-radius: 99px; background: rgba(255,255,255,.10); margin-top: 8px; }
.product-line.short { width: 55%; background: rgba(103,241,214,.55); }

.check-list { display: grid; gap: 15px; margin: 28px 0 34px; }
.check-list div { display: flex; gap: 12px; color: #c6d8d5; font-weight: 700; }
.check-list div::before { content: "✓"; width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 50%; color: #06251f; background: var(--teal); font-size: .76rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 30px; border-left: 1px solid var(--line); }
.stat strong { display: block; color: white; font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -.05em; line-height: 1; }
.stat span { display: block; margin-top: 10px; color: var(--muted); }

.cta {
  padding: 56px;
  border: 1px solid rgba(103,241,214,.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 10%, rgba(103,241,214,.13), transparent 28%),
    linear-gradient(135deg, rgba(32,211,176,.11), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.cta h2 { max-width: 700px; margin-bottom: 10px; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.cta p { margin-bottom: 0; max-width: 650px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex: 0 0 auto; }

footer { padding: 58px 0 34px; border-top: 1px solid rgba(255,255,255,.055); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 36px; }
.footer-brand p { max-width: 420px; margin-top: 18px; }
.footer-col strong { display: block; margin-bottom: 17px; font-size: .9rem; }
.footer-col a { display: block; margin: 10px 0; color: #9cb4b0; font-size: .9rem; }
.footer-col a:hover { color: white; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.055); display: flex; justify-content: space-between; gap: 20px; color: #78908c; font-size: .85rem; }

.page-hero { padding: 88px 0 66px; }
.page-hero p { max-width: 760px; font-size: 1.14rem; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { padding: 30px; }
.info-card .label { color: var(--teal-2); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }

.price-card { padding: 34px; }
.price-card.featured { border-color: rgba(103,241,214,.35); background: linear-gradient(180deg, rgba(32,211,176,.10), rgba(255,255,255,.025)); }
.price { margin: 22px 0 10px; font-size: 3rem; font-weight: 900; letter-spacing: -.055em; }
.price small { color: var(--muted); font-size: .95rem; letter-spacing: 0; font-weight: 700; }
.price-features { display: grid; gap: 11px; margin: 26px 0 30px; }
.price-features span { color: #c4d8d4; }
.price-features span::before { content: "✓"; color: var(--teal-2); margin-right: 10px; }

.download-box { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.03); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.version-pill { display: inline-block; padding: 6px 10px; border-radius: 999px; background: rgba(32,211,176,.11); color: var(--teal-2); font-size: .82rem; font-weight: 800; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.input { width: 100%; min-height: 54px; padding: 14px 16px; color: white; border: 1px solid var(--line); border-radius: 13px; outline: 0; background: rgba(255,255,255,.035); }
textarea.input { min-height: 150px; resize: vertical; }
.input:focus { border-color: rgba(103,241,214,.42); box-shadow: 0 0 0 4px rgba(32,211,176,.07); }

.legal { max-width: 860px; }
.legal h2 { margin-top: 48px; font-size: 1.75rem; }
.legal p, .legal li { color: var(--muted); }

@media (max-width: 1180px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-grid; place-items: center; }
  .nav-actions .btn-ghost { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .product-stage { min-height: auto; margin-top: 20px; }
  .app-shell { transform: none; max-width: 760px; margin-inline: auto; }
  .features-grid, .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / 4; }
  .mobile-panel {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7,19,18,.97);
    box-shadow: var(--shadow);
  }
  .mobile-panel.open { display: grid; }
  .mobile-panel a { padding: 13px 14px; border-radius: 10px; color: #bfd3d0; font-weight: 700; cursor: pointer; }
  .mobile-panel a:hover { background: rgba(255,255,255,.05); color: white; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 78px 0; }
  .hero { padding-top: 68px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.65rem); }
  .features-grid, .cards-2, .cards-3, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .footer-col:last-child { grid-column: auto; }
  .logo-strip-inner { grid-template-columns: 1fr; gap: 15px; }
  .cta { padding: 34px 26px; flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 16px; }
  .window-body { grid-template-columns: 78px 1fr; }
  .mock-main { padding: 13px; }
  .mock-kpis { grid-template-columns: 1fr 1fr; }
  .mock-kpis .mock-card:last-child { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .download-box { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 470px) {
  .nav-actions .btn-primary { display: none; }
  .hero-actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
}
