:root {
  --bg: #090b10;
  --bg-soft: #0e1118;
  --card: #111621;
  --card-2: #151b27;
  --text: #f4f7fb;
  --muted: #a3adbd;
  --line: rgba(255,255,255,.09);
  --accent: #6ee7b7;
  --accent-strong: #34d399;
  --accent-deep: #10b981;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,11,16,.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 760;
  letter-spacing: -.025em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #07110d;
  background: linear-gradient(145deg, #a7f3d0, var(--accent-strong));
  box-shadow: 0 8px 28px rgba(52,211,153,.24);
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c8d0dc;
  font-size: 14px;
  font-weight: 620;
}

.nav > a:not(.nav-cta):hover { color: white; }

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(110,231,183,.32);
  background: rgba(110,231,183,.08);
  border-radius: 10px;
  color: #baf5da;
}

.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 102px 0 92px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  right: -150px;
  top: -220px;
  background: radial-gradient(circle, rgba(52,211,153,.16), transparent 68%);
}

.hero-glow-two {
  width: 430px;
  height: 430px;
  left: -240px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(59,130,246,.08), transparent 67%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 76px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 24px;
  font-size: clamp(43px, 5.2vw, 70px);
  line-height: .99;
  letter-spacing: -.058em;
  max-width: 760px;
}

h1 span {
  color: #a7f3d0;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #b9c2d0;
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 760;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: linear-gradient(145deg, #8af0c7, #42d89f);
  color: #07100d;
  box-shadow: 0 13px 36px rgba(52,211,153,.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: #e5e9f0;
}

.button-full { width: 100%; }
.button-light { background: white; color: #0c1017; }

.hero-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
  color: #8e99a9;
  font-size: 13px;
}

.hero-points span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--accent);
  font-weight: 900;
}

.browser-card {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  overflow: hidden;
  background: #0d1118;
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.browser-top {
  height: 47px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 14px;
  background: #161b24;
  border-bottom: 1px solid var(--line);
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: #3c4450; }

.browser-address {
  flex: 1;
  padding: 5px 10px;
  max-width: 245px;
  border-radius: 6px;
  background: #0e1219;
  color: #758092;
  font-size: 10px;
}

.demo-site {
  position: relative;
  min-height: 390px;
  padding: 25px;
  background:
    radial-gradient(circle at 90% 12%, rgba(110,231,183,.12), transparent 31%),
    linear-gradient(145deg, #0e1219, #0a0d12);
}

.demo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-logo { width: 84px; height: 9px; border-radius: 10px; background: #eef3f7; }
.demo-links { display: flex; gap: 9px; }
.demo-links i { width: 30px; height: 5px; border-radius: 9px; background: #4b5563; }

.demo-content {
  padding: 72px 0 52px;
  width: 63%;
}

.demo-tag { display: block; width: 64px; height: 6px; border-radius: 10px; background: var(--accent); margin-bottom: 13px; }
.demo-title { width: 100%; height: 22px; border-radius: 4px; background: #f1f5f9; margin-bottom: 8px; }
.demo-title.short { width: 78%; }
.demo-text { width: 91%; height: 7px; border-radius: 8px; background: #657080; margin-top: 18px; }
.demo-text.short { width: 66%; margin-top: 8px; }
.demo-button { width: 86px; height: 27px; border-radius: 7px; background: var(--accent-strong); margin-top: 23px; }

.demo-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.demo-panel div {
  height: 69px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.035);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #0b0e14;
}

.trust-grid {
  min-height: 102px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-grid div {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border-right: 0; }

.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 16px; }
.trust-grid span { margin-top: 2px; color: #8792a3; font-size: 12px; }

.section { padding: 104px 0; }
.section-muted { background: var(--bg-soft); border-block: 1px solid var(--line); }

.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-heading h2, .price-copy h2, .cta-card h2 {
  margin-bottom: 17px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading > p:last-child, .price-copy > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}

.feature-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border-radius: 10px;
  background: rgba(110,231,183,.09);
  border: 1px solid rgba(110,231,183,.17);
  color: #8cefc9;
  font-size: 11px;
  font-weight: 850;
}

.feature-card h3 { margin-bottom: 10px; font-size: 18px; letter-spacing: -.02em; }
.feature-card p { margin-bottom: 0; color: #99a4b4; font-size: 14px; }

.price-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 100px;
  align-items: center;
}

.price-copy { max-width: 570px; }

.price-card {
  padding: 34px;
  border: 1px solid rgba(110,231,183,.19);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(52,211,153,.12), transparent 35%),
    #111620;
  box-shadow: var(--shadow);
}

.price-label {
  margin-bottom: 24px;
  color: #91f1ca;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.price-main strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -.045em;
}

.price-main span, .price-monthly span {
  color: #8995a6;
  font-size: 13px;
}

.price-monthly {
  margin: 24px 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.price-monthly strong {
  display: block;
  margin-bottom: 2px;
  font-size: 18px;
}

.price-card ul {
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: #c5ccd7;
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.price-note {
  margin: 13px 0 0;
  text-align: center;
  color: #768294;
  font-size: 11px;
}

.steps {
  border-top: 1px solid var(--line);
}

.steps article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.steps article > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.steps h3 { margin-bottom: 6px; font-size: 21px; letter-spacing: -.025em; }
.steps p { max-width: 740px; margin: 0; color: #909bac; font-size: 14px; }

.cta-section { padding: 0 0 104px; }

.cta-card {
  padding: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0, rgba(255,255,255,.2), transparent 28%),
    linear-gradient(125deg, #0ca678, #34d399);
  color: #06110d;
}

.cta-card .eyebrow { color: #073c2b; }
.cta-card h2 { margin-bottom: 9px; }
.cta-card p:last-child { margin-bottom: 0; color: rgba(4,26,19,.75); }

footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: #7e8999;
  font-size: 12px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-wrap p { margin: 0; }
.footer-brand { color: #dfe5ec; font-size: 13px; }
.footer-brand .brand-mark { width: 27px; height: 27px; border-radius: 8px; font-size: 11px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

@media (max-width: 900px) {
  .hero { padding-top: 74px; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .browser-card { max-width: 640px; transform: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .price-layout { grid-template-columns: 1fr; gap: 45px; }
  .price-card { max-width: 560px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid div:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 20px; }
  .trust-grid div:nth-child(even) { padding-left: 20px; }
  .trust-grid div:nth-last-child(-n+2) { border-bottom: 0; }
  .cta-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav-wrap { min-height: 65px; }
  .menu-button {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
  }
  .menu-button span:not(.sr-only) { display: block; width: 17px; height: 1px; background: #dce2e9; }
  .nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #10141c;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px; }
  .nav-cta { margin-top: 5px; text-align: center; }
  .hero { padding: 66px 0 65px; }
  h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-points { display: grid; }
  .demo-site { min-height: 310px; padding: 20px; }
  .demo-content { padding: 55px 0 42px; width: 72%; }
  .section { padding: 76px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
  .feature-icon { margin-bottom: 30px; }
  .price-card { padding: 27px 22px; }
  .steps article { grid-template-columns: 38px 1fr; }
  .cta-section { padding-bottom: 76px; }
  .cta-card { padding: 34px 24px; }
  .footer-wrap { align-items: flex-start; flex-direction: column; gap: 12px; }
}
