/* =============================================================================
   1ops — Landing Page styles
   Dark theme (#080808) · lime accent (#e8ff00) · DM Sans / Space Grotesk
   ============================================================================= */

:root {
  --bg:        #080808;
  --bg-2:      #0d0d0d;
  --bg-3:      #111111;
  --line:      #1c1c1c;
  --line-2:    #262626;
  --txt:       #ededed;
  --txt-2:     #9a9a9a;
  --txt-3:     #5e5e5e;
  --accent:    #e8ff00;
  --accent-dk: #c5d800;
  --radius:    16px;
  --maxw:      1140px;
  --ease:      cubic-bezier(.22,1,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name { font-family: 'Space Grotesk', 'DM Sans', sans-serif; letter-spacing: -.02em; }

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

.accent { color: var(--accent); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 10px; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 15px; line-height: 1;
  padding: 13px 22px; transition: transform .15s var(--ease), box-shadow .2s, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-sm  { padding: 9px 16px; font-size: 14px; border-radius: 9px; }
.btn-lg  { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--accent); color: #0a0a0a;
  box-shadow: 0 0 0 0 rgba(232,255,0,.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px rgba(232,255,0,.45); }
.btn-ghost { background: transparent; color: var(--txt); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ---- Nav ----------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(8,8,8,.9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.brand-logo {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px;
  background: var(--accent); color: #0a0a0a;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 9px; }
.brand-name { font-size: 19px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; color: var(--txt-2); transition: color .15s; }
.nav-links a:hover { color: var(--txt); }
.nav-links a.btn-primary { color: #0a0a0a; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--txt); border-radius: 2px; transition: .25s; }

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 90px; }
.hero-glow {
  position: absolute; top: -260px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(232,255,0,.16), rgba(232,255,0,.03) 40%, transparent 68%);
  filter: blur(10px);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-3); border: 1px solid var(--line-2); color: var(--txt-2);
  font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 30px; margin-bottom: 24px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(232,255,0,.5)} 70%{box-shadow:0 0 0 9px rgba(232,255,0,0)} 100%{box-shadow:0 0 0 0 rgba(232,255,0,0)} }

.hero-title { font-size: clamp(38px, 6vw, 62px); font-weight: 700; line-height: 1.04; }
.hero-sub { margin-top: 22px; font-size: 18px; color: var(--txt-2); max-width: 520px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; font-size: 14px; color: var(--txt-3); }
.hero-trust strong { color: var(--txt); font-weight: 700; }
.hero-trust > div { position: relative; padding-left: 18px; }
.hero-trust > div::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---- Hero mockup --------------------------------------------------------- */
.hero-visual { position: relative; }
.mock {
  display: grid; grid-template-columns: 116px 1fr;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(232,255,0,.04);
}
.mock-side { background: #0a0a0a; border-right: 1px solid var(--line); padding: 14px 10px; display: flex; flex-direction: column; gap: 5px; }
.mock-logo { width: 26px; height: 26px; border-radius: 7px; background: var(--accent); color: #0a0a0a; display: flex; align-items: center; justify-content: center; font-size: 14px; margin-bottom: 10px; }
.mock-nav { font-size: 11px; color: var(--txt-3); padding: 7px 8px; border-radius: 6px; white-space: nowrap; }
.mock-nav.active { background: var(--accent); color: #0a0a0a; font-weight: 700; }
.mock-main { padding: 16px; }
.mock-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.mock-h1 { font-size: 15px; font-weight: 700; font-family: 'Space Grotesk'; }
.mock-h2 { font-size: 11px; color: var(--txt-3); }
.mock-badge { background: #2a1a00; color: #fb923c; font-size: 10px; font-weight: 700; padding: 5px 9px; border-radius: 20px; }
.mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 14px; }
.mock-stat { position: relative; background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px 12px; display: flex; flex-direction: column; gap: 3px; overflow: hidden; }
.mock-stat i { position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.ms-l { font-size: 9px; color: var(--txt-3); text-transform: uppercase; letter-spacing: .08em; }
.ms-v { font-size: 19px; font-weight: 800; font-family: 'Space Grotesk'; }
.mock-chart { background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.mc-title { font-size: 10px; color: var(--txt-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.mc-bars { display: flex; align-items: flex-end; gap: 8px; height: 64px; }
.mc-bars span { flex: 1; background: linear-gradient(to top, var(--accent-dk), var(--accent)); border-radius: 3px 3px 0 0; opacity: .85; }

.mock-wa {
  position: absolute; right: -14px; bottom: -22px;
  display: flex; align-items: center; gap: 11px; max-width: 290px;
  background: #0e1a12; border: 1px solid #1d3a28; border-radius: 13px; padding: 12px 14px;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.8);
  animation: floaty 5s ease-in-out infinite;
}
.wa-dot { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: #25d366; color: #04210f; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.mock-wa strong { display: block; font-size: 12px; color: #d6ffe6; }
.mock-wa span { font-size: 11px; color: #8fb6a0; line-height: 1.4; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

/* ---- Trust strip --------------------------------------------------------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 20px; padding: 26px 0; }
.strip-item { font-size: 15px; color: var(--txt-2); }
.strip-item b { color: var(--accent); font-family: 'Space Grotesk'; font-size: 20px; font-weight: 700; margin-right: 4px; }

/* ---- Sections ------------------------------------------------------------ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.1; }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--txt-2); }

/* ---- Feature grid -------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; transition: transform .25s var(--ease), border-color .25s, background .25s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--line-2); background: #141414; }
.feature-ico {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: rgba(232,255,0,.1); color: var(--accent); border: 1px solid rgba(232,255,0,.18);
}
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--txt-2); }

/* ---- Split / how it works ------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 40px; }
.split + .split { margin-top: 88px; }
.split.reverse .split-copy { order: 2; }
.split-copy h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.split-copy p { color: var(--txt-2); font-size: 16px; }
.ticks { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.ticks li { position: relative; padding-left: 30px; font-size: 15px; color: var(--txt); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 21px; height: 21px; border-radius: 50%; background: rgba(232,255,0,.13); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
}

.split-visual { display: flex; justify-content: center; }
.chat { width: 100%; max-width: 360px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 18px; padding: 18px; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.chat-bubble { align-self: flex-start; max-width: 88%; background: #15241a; border: 1px solid #1d3a28; color: #d8ffe8; font-size: 13px; padding: 11px 14px; border-radius: 14px 14px 14px 4px; }
.chat-bubble.out { align-self: flex-end; background: #1e1e1e; border-color: var(--line-2); color: var(--txt); border-radius: 14px 14px 4px 14px; }
.chat-link { align-self: flex-start; font-size: 12px; color: var(--accent); background: rgba(232,255,0,.08); border: 1px dashed rgba(232,255,0,.3); padding: 9px 13px; border-radius: 12px; font-weight: 600; }
.chat-receipt { align-self: flex-end; font-size: 12px; color: var(--txt-2); background: #1a1a1a; border: 1px solid var(--line-2); padding: 8px 12px; border-radius: 12px; }

.kpi-card { width: 100%; max-width: 380px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 18px; padding: 26px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.kpi-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--txt-2); margin-bottom: 8px; }
.kpi-row b { font-size: 19px; color: var(--txt); font-family: 'Space Grotesk'; }
.kpi-bar { height: 7px; background: #1a1a1a; border-radius: 4px; overflow: hidden; margin-bottom: 22px; }
.kpi-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent-dk), var(--accent)); border-radius: 4px; }

/* ---- Pricing ------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 18px; padding: 30px 26px; position: relative; transition: transform .25s var(--ease), border-color .25s;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.price-card.featured { border-color: rgba(232,255,0,.5); background: linear-gradient(180deg, rgba(232,255,0,.05), transparent 40%), var(--bg-3); box-shadow: 0 0 60px -20px rgba(232,255,0,.3); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #0a0a0a; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.price-name { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--txt-2); }
.price-amount { display: flex; align-items: flex-start; gap: 3px; margin: 16px 0 4px; font-family: 'Space Grotesk'; }
.price-cur { font-size: 22px; font-weight: 600; margin-top: 8px; color: var(--txt); }
.price-val { font-size: 46px; font-weight: 700; line-height: 1; color: var(--txt); }
.price-per { align-self: flex-end; font-size: 14px; color: var(--txt-3); margin-bottom: 7px; }
.price-note { font-size: 13px; color: var(--txt-3); margin-bottom: 18px; }
.price-blurb { font-size: 14px; color: var(--txt-2); margin-bottom: 20px; min-height: 40px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.price-features li { position: relative; padding-left: 26px; font-size: 14px; color: var(--txt); }
.price-features li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.pricing-foot { text-align: center; margin-top: 30px; font-size: 14px; color: var(--txt-3); }
.pricing-foot a { color: var(--accent); }

/* ---- FAQ ----------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 16px; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 22px; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--txt-2); font-size: 15px; padding: 0 0 18px; }

/* ---- Contact ------------------------------------------------------------- */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 24px; padding: 44px;
}
.contact-copy h2 { font-size: clamp(26px, 3.5vw, 38px); margin: 6px 0 14px; }
.contact-copy p { color: var(--txt-2); font-size: 16px; }
.contact-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { font-size: 15px; color: var(--txt); display: flex; align-items: center; gap: 11px; }
.contact-list li:empty { display: none; }
.contact-list a { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 600; color: var(--txt-2); }
.contact-form input, .contact-form textarea {
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px; color: var(--txt);
  padding: 13px 15px; font-size: 15px; font-family: inherit; outline: none; transition: border-color .15s, box-shadow .15s;
  width: 100%; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,255,0,.12); }
.form-note { font-size: 14px; text-align: center; min-height: 20px; margin-top: 2px; }
.form-note.ok  { color: #34d399; }
.form-note.err { color: #f87171; }

/* ---- Footer -------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 56px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer-brand { display: grid; grid-template-columns: auto auto; gap: 0 11px; align-items: center; max-width: 320px; }
.footer-brand .brand-name { grid-column: 2; }
.footer-brand p { grid-column: 1 / -1; margin-top: 12px; font-size: 14px; color: var(--txt-3); }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.footer-links a { font-size: 15px; color: var(--txt-2); transition: color .15s; }
.footer-links a:hover { color: var(--accent); }
.footer-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: var(--txt-3); }

/* ---- Scroll reveal ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; scroll-behavior: auto; }
}

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 520px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse .split-copy { grid-template-columns: 1fr; }
  .split.reverse .split-copy { order: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .contact-wrap { grid-template-columns: 1fr; padding: 32px; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 10px 24px 22px;
    transform: translateY(-120%); transition: transform .3s var(--ease); align-items: stretch;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a.btn-primary { margin-top: 12px; border: 0; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px 24px; }
}
@media (max-width: 460px) {
  .feature-grid { grid-template-columns: 1fr; }
  .mock-wa { right: 0; max-width: 240px; }
}

/* ======================== BIOMETRIC CARD ======================== */
.bio-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 320px;
  margin: 0 auto;
}

.bio-scan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.bio-ring {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-finger {
  font-size: 2.4rem;
  z-index: 1;
}

.bio-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: bio-ripple 1.8s ease-out infinite;
  opacity: 0;
}

.bio-pulse::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: bio-ripple 1.8s ease-out .6s infinite;
  opacity: 0;
}

@keyframes bio-ripple {
  0%   { transform: scale(.8); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.bio-status {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 5px 14px;
  border-radius: 20px;
}

.bio-status.ok {
  background: rgba(52,211,153,.15);
  color: #34d399;
  border: 1px solid rgba(52,211,153,.3);
}

.bio-log {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bio-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-3, rgba(255,255,255,.04));
  border-radius: 8px;
  font-size: .82rem;
}

.bio-row.muted {
  opacity: .55;
  font-size: .76rem;
}

.bio-name { font-weight: 600; color: var(--text-1); }
.bio-time { color: var(--text-2); font-size: .76rem; }
/* ======================== END BIOMETRIC ======================== */
