:root {
  --navy-950: #070d1a;
  --navy-900: #0b1220;
  --navy-850: #101827;
  --navy-800: #131d2e;
  --navy-700: #1c2940;
  --line: rgba(178, 202, 233, 0.18);
  --text: #f7fbff;
  --muted: #b8c8e6;
  --soft: #8092b2;
  --green: #35c653;
  --green-dark: #159c37;
  --blue: #3b82f6;
  --shadow: 0 28px 90px rgba(0,0,0,.35);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --max: 1440px;
}

* { 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 8% 8%, rgba(37, 194, 92, .18), transparent 34%),
              linear-gradient(135deg, #08101e 0%, #0a1322 45%, #111d33 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 70%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(11, 18, 32, .86);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.1rem; }
.brand-icon { width: 42px; height: 42px; border-radius: 14px; box-shadow: 0 0 28px rgba(53, 198, 83, .16); }
.nav { display: flex; gap: 32px; color: var(--muted); font-weight: 800; }
.nav a:hover { color: var(--text); }

.section-pad { padding: 92px 0; }
.compact-top { padding-top: 40px; }
.hero { min-height: calc(100vh - 76px); display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.hero-copy { max-width: 710px; }
.eyebrow { margin: 0 0 14px; color: var(--green); text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 900; }
h1, h2, h3 { margin: 0; line-height: .97; letter-spacing: -.055em; }
h1 { font-size: clamp(4.3rem, 8vw, 8.8rem); }
h2 { font-size: clamp(3rem, 5.4vw, 6.2rem); max-width: 900px; }
h3 { font-size: clamp(1.45rem, 2.2vw, 2.4rem); }
p { color: var(--muted); }
.lead { font-size: clamp(1.18rem, 1.7vw, 1.55rem); max-width: 780px; margin: 28px 0 0; }
.section-lead { font-size: 1.2rem; max-width: 780px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.14);
}
.button.primary { background: linear-gradient(180deg, #4ee76d, var(--green)); color: #04120a; border-color: rgba(255,255,255,.1); box-shadow: 0 20px 45px rgba(53,198,83,.18); }
.button.secondary { background: rgba(255,255,255,.06); color: var(--text); }
.button.disabled { opacity: .7; cursor: not-allowed; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.pill-row span { color: var(--muted); padding: 9px 14px; border: 1px solid var(--line); background: rgba(255,255,255,.045); border-radius: 999px; }

.hero-visual {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -90px -80px auto auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(53,198,83,.22), transparent 70%);
  filter: blur(16px);
  z-index: -1;
}
.logo-strip { background: var(--navy-700); border-radius: 18px; padding: 18px; margin-bottom: 24px; }
.logo-strip img { width: min(520px, 82%); margin: 0 auto; }
.app-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.17);
  background: #090f1d;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 20px 50px rgba(0,0,0,.28);
}
.hero-frame img { width: 100%; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.feature-card, .module-card, .price-card, .download-card, .screen-block {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-radius: var(--radius-md);
  box-shadow: 0 16px 50px rgba(0,0,0,.17);
}
.feature-card { padding: 30px; min-height: 245px; }
.feature-icon { font-size: 2rem; display: block; margin-bottom: 24px; }
.feature-card h3 { font-size: 1.45rem; letter-spacing: -.03em; line-height: 1.1; }
.feature-card p { font-size: 1.02rem; }

.showcase { background: rgba(2, 8, 19, .22); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.showcase-header { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.screen-block { padding: clamp(22px, 3vw, 46px); margin-bottom: 38px; }
.screen-block-wide { display: grid; grid-template-columns: .42fr .58fr; gap: 42px; align-items: center; }
.screen-copy p:not(.eyebrow) { font-size: 1.13rem; max-width: 620px; }
.screen-copy h3 { margin-bottom: 20px; }
.screen-block.split { display: grid; grid-template-columns: .42fr .58fr; gap: 42px; align-items: center; }
.screen-block.reverse .screen-copy { order: 1; }
.two-shot { display: grid; gap: 18px; }
.two-shot .app-frame:first-child { transform: translateX(24px); }
.two-shot .app-frame:last-child { transform: translateX(-24px); opacity: .92; }

.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 38px 0; }
.module-card { padding: 20px; }
.module-card .app-frame { height: 240px; display: flex; align-items: center; }
.module-card .app-frame img { width: 100%; height: 100%; object-fit: cover; object-position: left top; }
.module-card h3 { font-size: 1.5rem; margin: 26px 0 12px; letter-spacing: -.03em; }
.module-card p { font-size: 1.04rem; }

.ai-block { display: grid; grid-template-columns: 1fr 390px; gap: 56px; align-items: center; overflow: hidden; }
.phone-frame {
  width: min(100%, 390px);
  max-height: 720px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--navy-850);
  box-shadow: var(--shadow);
  justify-self: center;
}
.phone-frame img { width: 100%; }
.check-list { margin: 28px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; color: var(--muted); font-weight: 800; }
.check-list li::before { content: "✓"; color: var(--green); margin-right: 10px; }

.pricing-grid-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: start; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.price-card { position: relative; padding: 32px; }
.price-card h3 { font-size: 1.35rem; letter-spacing: -.02em; }
.price { font-size: 2rem; color: var(--text); font-weight: 950; margin: 22px 0; line-height: 1.1; }
.price-card ul { color: var(--muted); padding-left: 22px; margin-bottom: 28px; }
.price-card.pro { border-color: rgba(53,198,83,.75); box-shadow: 0 0 0 1px rgba(53,198,83,.15), 0 24px 80px rgba(53,198,83,.08); }
.planned { position: absolute; top: 24px; right: 24px; background: rgba(53,198,83,.18); color: #8cff9f; border: 1px solid rgba(53,198,83,.5); padding: 6px 12px; border-radius: 999px; font-size: .8rem; font-weight: 900; }

.download-card { display: grid; grid-template-columns: 100px 1fr auto; gap: 28px; align-items: center; padding: 34px; }
.download-card img { width: 86px; border-radius: 24px; }
.download-card h2 { font-size: clamp(2.6rem, 4vw, 4.8rem); }

.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: rgba(6,12,23,.6); }
.footer-grid { display: flex; justify-content: space-between; color: var(--soft); }

@media (max-width: 1100px) {
  .hero-grid, .screen-block-wide, .screen-block.split, .pricing-grid-wrap, .ai-block { grid-template-columns: 1fr; }
  .feature-grid, .module-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .screen-block.reverse .screen-copy { order: initial; }
  .two-shot .app-frame:first-child, .two-shot .app-frame:last-child { transform: none; }
  .download-card { grid-template-columns: 80px 1fr; }
  .download-card .button { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 34px, var(--max)); }
  .site-header { padding: 0 18px; }
  .nav { display: none; }
  .section-pad { padding: 64px 0; }
  h1 { font-size: 4rem; }
  h2 { font-size: 3.2rem; }
  .feature-grid, .module-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero-visual { padding: 14px; }
  .logo-strip { display: none; }
  .module-card .app-frame { height: 220px; }
  .footer-grid { display: grid; gap: 8px; }
}


/* Screenshot lightbox */
.app-frame img,
.phone-frame img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(3, 7, 15, .86);
  backdrop-filter: blur(14px);
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: min(96vw, 1800px);
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 30px 100px rgba(0,0,0,.62);
  background: #08101e;
  cursor: zoom-out;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(19, 29, 46, .9);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(53,198,83,.22);
  border-color: rgba(53,198,83,.55);
}

body.lightbox-lock {
  overflow: hidden;
}


/* Additional site pages */
.page-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.page-hero h1 { font-size: clamp(3.4rem, 6vw, 7.2rem); max-width: 1050px; }
.content-grid { display: grid; gap: 24px; }
.content-grid.three { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: stretch; }
.comparison-grid .price-card { min-height: 520px; }
.download-page-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  padding: 36px;
  margin-bottom: 26px;
}
.download-page-card img { width: 104px; border-radius: 26px; box-shadow: 0 20px 60px rgba(53,198,83,.15); }
.download-page-card h2 { font-size: clamp(2.4rem, 4vw, 4.8rem); }
.faq-list { display: grid; gap: 18px; max-width: 1050px; }
.faq-card, .doc-card, .legal-content, .timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  padding: 28px;
}
.faq-card h3, .doc-card h3, .legal-content h3 { font-size: 1.45rem; letter-spacing: -.03em; margin-bottom: 10px; }
.docs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.legal-content { max-width: 980px; }
.legal-content h2 { font-size: clamp(2.2rem, 4vw, 4rem); margin-bottom: 22px; }
.legal-content p { font-size: 1.08rem; }
.fineprint { color: var(--soft); font-size: .95rem; margin-top: 28px; }
.timeline { display: grid; gap: 22px; max-width: 980px; }
.timeline article span { color: var(--green); font-weight: 950; letter-spacing: .08em; }
.footer-rich { display: grid; grid-template-columns: 1.3fr .6fr .6fr; gap: 28px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.footer-brand img { width: 38px; height: 38px; border-radius: 12px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--muted); font-weight: 800; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { color: var(--soft); padding-top: 18px; font-size: .92rem; }

@media (max-width: 900px) {
  .comparison-grid, .docs-grid, .content-grid.three, .footer-rich { grid-template-columns: 1fr; }
  .download-page-card { grid-template-columns: 1fr; }
}

/* Professional content additions */
.notice-card {
  margin: 24px 0;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(53,198,83,.35);
  background: rgba(53,198,83,.09);
  color: var(--text);
}
.legal-list {
  color: var(--muted);
  margin: 14px 0 24px;
  padding-left: 24px;
}
.legal-list li { margin: 8px 0; }
.legal-content a { color: #8cff9f; font-weight: 800; }
.timeline h4 {
  color: var(--text);
  margin: 18px 0 6px;
  font-size: 1rem;
  letter-spacing: .02em;
}

.footer-contact { margin-top: 10px; font-size: .92rem; }
.footer-contact a { color: var(--muted); font-weight: 800; }
.footer-contact a:hover { color: var(--green); }
