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

:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #edf3fa;
  --ink: #071225;
  --body: #2b3a52;
  --muted: #66758c;
  --faint: #8b99ad;
  --line: rgba(15, 23, 42, 0.12);
  --line-strong: rgba(15, 23, 42, 0.18);
  --brand: #047857;
  --brand-dark: #03664f;
  --blue: #1f5fcf;
  --hero: #071225;
  --hero-raised: #0b1a34;
  --hero-text: #e8eef8;
  --hero-muted: #aab8d0;
  --font-body: "Plus Jakarta Sans", "Inter", "Segoe UI", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  background-size: 112px 112px, 112px 112px, 100% 100%;
  color: var(--body);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 20;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus { top: 16px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  background: #fff;
  padding: 6px;
}

.logo strong {
  display: block;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 900;
  text-transform: uppercase;
}

.logo > span {
  display: block;
}

.logo > span > span {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 17px;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.btn-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(4, 120, 87, 0.18);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(4, 120, 87, 0.28);
  background: #fff;
  transform: translateY(-1px);
}

.hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(135deg, rgba(18, 185, 129, 0.16), transparent 42%),
    linear-gradient(180deg, #06101f 0%, #07172b 62%, #0d2436 100%);
  background-size: 96px 96px, 96px 96px, 100% 100%, 100% 100%;
  color: var(--hero-text);
  padding: 54px 0 44px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: rgba(232, 238, 248, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumb a {
  color: #c6f4df;
  text-decoration: none;
}

.hero-copy {
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid rgba(154, 213, 189, 0.26);
  border-radius: 999px;
  background: rgba(154, 213, 189, 0.08);
  color: #c6f4df;
  padding: 6px 10px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  color: #fff;
  font-size: 4.65rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-sub {
  max-width: 780px;
  margin-top: 16px;
  color: var(--hero-muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero .btn-ghost {
  border-color: rgba(154, 213, 189, 0.24);
  background: rgba(255, 255, 255, 0.055);
  color: #e5f8ef;
}

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

.proof-item {
  min-height: 82px;
  border: 1px solid rgba(154, 213, 189, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 14px;
}

.proof-item strong {
  display: block;
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.25;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: rgba(232, 238, 248, 0.64);
  font-size: 0.78rem;
}

.product-frame {
  display: block;
  margin-top: 34px;
  border-radius: 14px;
  background: transparent;
  padding: 0;
  box-shadow: 0 36px 90px rgba(2, 8, 24, 0.38);
}

.product-frame img {
  width: 100%;
  border-radius: 14px;
}

.section {
  padding: 70px 0;
}

.section.tight {
  padding-top: 42px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.label {
  margin-bottom: 9px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  color: var(--ink);
  font-size: 2.85rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.06;
}

.section-desc {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.content-block {
  display: grid;
  gap: 18px;
}

.content-block p {
  color: var(--body);
  font-size: 1rem;
}

.content-block ul {
  display: grid;
  gap: 11px;
  list-style: none;
}

.content-block li {
  position: relative;
  padding-left: 24px;
  color: var(--body);
}

.content-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}

.side-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.07);
}

.logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.logo-panel img {
  max-width: 210px;
  max-height: 58px;
  object-fit: contain;
}

.side-panel h3 {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.25;
}

.side-panel p,
.side-panel small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.feature span {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.1);
  color: var(--brand);
  padding: 5px 9px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature h3 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.feature p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compare-table td {
  color: var(--body);
  font-size: 0.92rem;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.faq h3 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.faq p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cross-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cross-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 9px 13px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.cross-links a:hover {
  border-color: rgba(4, 120, 87, 0.3);
  color: var(--brand);
}

.cta {
  padding: 70px 0;
  background: #071225;
  color: var(--hero-text);
}

.cta-box {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.cta h2 {
  max-width: 800px;
  color: #fff;
}

.cta p {
  max-width: 680px;
  color: var(--hero-muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-grid a {
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--brand);
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.55rem;
  }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-proof,
  .grid-3,
  .split,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

  .container {
    width: min(100% - 32px, 1120px);
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }
}
