/* Self-hosted Inter (variable) — no third-party (Google Fonts) request, so no
   visitor-IP transmission to Google and no cookie/consent banner required for fonts. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin-variable.woff2') format('woff2');
}

:root {
  --green: #70ad47;
  --green-2: #84c562;
  --green-dark: #5a9235;
  --bg: #0b0d0c;
  --bg-2: #11140f;
  --surface: #14180f;
  --surface-2: #1a1f15;
  --border: rgba(255, 255, 255, 0.09);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #eef2ea;
  --muted: #9aa39a;
  --radius: 16px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.bg-glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 75% -5%, rgba(112, 173, 71, 0.20), transparent 70%),
    radial-gradient(45% 40% at 10% 0%, rgba(112, 173, 71, 0.10), transparent 70%);
}
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; color: #fff; margin: 0 0 0.6rem; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
p { margin: 0 0 1rem; }
a { color: var(--green-2); text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 720px; }
.wide { max-width: 640px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.muted { color: var(--muted); }
.accent { color: var(--green-2); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.62rem 1.15rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: all 0.15s; white-space: nowrap;
}
.btn-lg { padding: 0.85rem 1.6rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--green); color: #08110a; box-shadow: 0 6px 22px rgba(112, 173, 71, 0.28); }
.btn-primary:hover { background: var(--green-2); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--green); color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(11, 13, 12, 0.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; padding: 0.8rem 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; color: #fff; font-size: 1.02rem; }
.nav { display: flex; gap: 1.4rem; margin-left: 0.5rem; }
.nav a { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 0.55rem; margin-left: auto; }

/* Language switch */
.lang-switch { display: inline-flex; border: 1px solid var(--border-2); border-radius: 999px; overflow: hidden; }
.lang-switch button { background: transparent; color: var(--muted); border: 0; padding: 0.24rem 0.46rem; font: inherit; font-size: 0.7rem; font-weight: 600; cursor: pointer; line-height: 1; }
.lang-switch button.active { background: var(--green); color: #08110a; }
.lang-switch button:not(.active):hover { color: #fff; }
.legal-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }

/* Hero */
.hero { padding: 4.5rem 0 3.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--green-2); background: rgba(112, 173, 71, 0.12); border: 1px solid rgba(112, 173, 71, 0.3);
  padding: 0.3rem 0.7rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); font-weight: 800; }
.hero .lead { font-size: 1.15rem; color: var(--muted); max-width: 36rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.7rem 0 1rem; }
.hero-note { font-size: 0.88rem; color: var(--muted); }

/* Screenshot placeholders */
.shot {
  position: relative; border: 1px solid var(--border-2); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  aspect-ratio: 16 / 10; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4rem; color: var(--muted); overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.shot::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 28px 28px; opacity: 0.35;
}
.shot span { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-2); z-index: 1; }
.shot small { font-size: 0.85rem; z-index: 1; }
.shot-phone { aspect-ratio: 9 / 16; max-width: 270px; margin: 0 auto; border-radius: 28px; }

/* Screenshot frames holding a real image */
.shot.has-img { aspect-ratio: auto; padding: 0; background: none; align-items: stretch; }
.shot.has-img::before { display: none; }
.shot img { display: block; width: 100%; height: auto; border-radius: inherit; }
.shot-phone.has-img { max-width: 288px; border-radius: 22px; }

/* Value strip */
.strip { border-block: 1px solid var(--border); background: var(--bg-2); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.4rem 1.5rem; }
.strip strong { display: block; color: #fff; font-size: 1.05rem; }
.strip span { color: var(--muted); font-size: 0.88rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-soft { background: var(--bg-2); border-block: 1px solid var(--border); }

/* Feature rows */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 3.25rem; align-items: center; margin-top: 4rem; }
.feature .shot.has-img { max-width: 480px; width: 100%; margin-inline: auto; }
.feature-reverse .feature-text { order: 2; }
.badge {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--green-2);
  margin-bottom: 0.6rem;
}
.feature-text h3 { font-size: 1.5rem; }
.feature-text p { color: var(--muted); margin: 0; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.steps li { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; }
.step-no {
  display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem;
  border-radius: 999px; background: var(--green); color: #08110a; font-weight: 800; margin-bottom: 0.7rem;
}
.steps h4 { font-size: 1.05rem; }
.steps p { color: var(--muted); margin: 0; font-size: 0.92rem; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 720px; margin: 2.5rem auto 0; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem; }
.plan-featured { border-color: rgba(112, 173, 71, 0.5); box-shadow: 0 16px 50px rgba(112, 173, 71, 0.12); }
.plan-badge { position: absolute; top: -0.7rem; left: 1.9rem; background: var(--green); color: #08110a; font-size: 0.72rem; font-weight: 700; padding: 0.22rem 0.7rem; border-radius: 999px; }
.price { font-size: 2.1rem; font-weight: 800; color: #fff; margin: 0.4rem 0 1rem; }
.price span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.plan li { padding: 0.32rem 0 0.32rem 1.5rem; position: relative; color: var(--text); }
.plan li::before { content: '✓'; position: absolute; left: 0; color: var(--green-2); font-weight: 700; }

/* FAQ */
details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 0.9rem 1.1rem; margin-bottom: 0.7rem; }
summary { cursor: pointer; font-weight: 600; color: #fff; list-style: none; }
summary::after { content: '+'; float: right; color: var(--green-2); font-weight: 700; }
details[open] summary::after { content: '–'; }
details p { margin: 0.7rem 0 0; color: var(--muted); }

/* Access / lead form */
.access-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.2rem; }
.lead-form { max-width: 480px; margin: 1.4rem auto 0; display: grid; gap: 0.7rem; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.lead-form input, .lead-form textarea {
  width: 100%; padding: 0.75rem 0.95rem; border-radius: 10px; border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.04); color: #fff; font: inherit;
}
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--green); }
.lead-form ::placeholder { color: #7c857c; }
.lead-msg { min-height: 1.2rem; font-size: 0.9rem; text-align: center; margin: 0; }
.lead-msg.ok { color: var(--green-2); }
.lead-msg.err { color: #ff9a8a; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 2.6rem 0 1.6rem; background: var(--bg-2); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: flex-start; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: #fff; }
.copyright { text-align: center; color: #6b746b; font-size: 0.82rem; margin: 1.6rem 0 0; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem; }
.legal h1 { margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.2rem; margin: 2rem 0 0.6rem; }
.legal p, .legal li { color: var(--muted); }
.legal a.back { color: var(--green-2); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .feature, .feature-reverse { grid-template-columns: 1fr; }
  .feature-reverse .feature-text { order: 0; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: 1fr 1fr; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav { display: none; }
  .pricing, .row2 { grid-template-columns: 1fr; }
  .header-actions .btn-ghost { display: none; }
  /* Keep the header on one tidy line on phones (no overlap). */
  .header-inner { gap: 0.6rem; padding-inline: 1rem; }
  .brand { min-width: 0; font-size: 0.95rem; }
  .brand span { overflow: hidden; text-overflow: ellipsis; }
  .header-actions { gap: 0.45rem; flex-shrink: 0; }
  .header-actions .btn { padding: 0.5rem 0.8rem; font-size: 0.85rem; }
}
@media (max-width: 430px) {
  /* Very small phones: keep the logo mark, drop the wordmark to free space. */
  .brand span { display: none; }
}
