/*
Theme Name: Verifeye Pro
Theme URI: https://example.com/verifeye-pro
Author: Verifeye Pro
Description: A landing-page-first WordPress theme for a global compliance and identity verification company. Dark ink hero, live verification ledger signature element, teal brand accent, editable via the Customizer.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: verifeye-pro
*/

/* ==========================================================================
   0. DESIGN TOKENS
   Palette sourced from the Verifeye Pro mark:
   teal  #48C5BD  (brand / "verified" signal)
   ink   #111111  (wordmark black, used as our near-black)
   ========================================================================== */

:root{
  /* core palette */
  --ink:        #0B0E11;   /* deep near-black, hero/header/footer bg */
  --ink-soft:   #151A20;   /* raised panels on ink */
  --ink-line:   rgba(255,255,255,0.10);
  --paper:      #FAFAF8;   /* body background, close to logo's white */
  --paper-dim:  #F1F0EC;
  --line:       #E4E2DC;
  --slate:      #4B5560;
  --slate-dim:  #838B94;
  --text-ink:   #111111;   /* matches wordmark black */

  /* brand */
  --teal:       #48C5BD;
  --teal-deep:  #2E9E97;
  --teal-tint:  #E4F6F4;
  --amber:      #E8A33D;   /* secondary accent, used sparingly for status */
  --amber-tint: #FBF0DD;

  /* type */
  --font-display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;

  /* rhythm */
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ==========================================================================
   1. RESET / BASE
   ========================================================================== */

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--paper);
  color:var(--text-ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{
  outline:2.5px solid var(--teal);
  outline-offset:3px;
  border-radius:4px;
}

.screen-reader-text{
  position:absolute !important;
  width:1px; height:1px;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}
.skip-link{
  position:absolute;
  left:12px; top:-60px;
  background:var(--teal);
  color:var(--ink);
  padding:10px 16px;
  border-radius:var(--radius-s);
  z-index:1000;
  font-weight:600;
  transition:top .2s ease;
}
.skip-link:focus{ top:12px; }

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding-left:var(--gutter);
  padding-right:var(--gutter);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:500;
}
.eyebrow::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background:var(--teal);
  flex:none;
}

h1,h2,h3,.font-display{ font-family:var(--font-display); letter-spacing:-0.01em; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 24px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  border:1.5px solid transparent;
  transition:transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--teal); color:var(--ink); }
.btn-primary:hover{ background:#5ED0C8; }
.btn-ghost-dark{ border-color:var(--ink-line); color:#fff; }
.btn-ghost-dark:hover{ border-color:var(--teal); color:var(--teal); }
.btn-ghost-light{ border-color:var(--line); color:var(--text-ink); }
.btn-ghost-light:hover{ border-color:var(--teal-deep); color:var(--teal-deep); }
.btn-sm{ padding:9px 18px; font-size:13.5px; }

/* ==========================================================================
   2. HEADER
   ========================================================================== */

.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(11,14,17,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--ink-line);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
}
.site-logo{ display:flex; align-items:center; gap:10px; flex:none; }
.site-logo img{ height:26px; width:auto; }
.site-logo .logo-text{
  font-family:var(--font-display);
  font-weight:700;
  font-size:18px;
  color:#fff;
  letter-spacing:-0.01em;
}

.primary-nav{ display:flex; align-items:center; gap:36px; }
.primary-nav ul{ display:flex; align-items:center; gap:32px; }
.primary-nav a{
  color:rgba(255,255,255,0.78);
  font-size:14.5px;
  font-weight:500;
  transition:color .15s ease;
}
.primary-nav a:hover{ color:#fff; }
.header-actions{ display:flex; align-items:center; gap:14px; }
.header-actions .btn-ghost-dark{ display:none; }

.menu-toggle{
  display:none;
  background:none; border:none; padding:8px;
  color:#fff;
}
.menu-toggle svg{ width:24px; height:24px; }

@media (min-width: 861px){
  .header-actions .btn-ghost-dark{ display:inline-flex; }
}

@media (max-width: 960px){
  .primary-nav{ display:none; }
  .menu-toggle{ display:inline-flex; }
  .site-header.nav-open .primary-nav{
    display:flex;
    position:absolute;
    top:76px; left:0; right:0;
    background:var(--ink);
    border-bottom:1px solid var(--ink-line);
    flex-direction:column;
    align-items:flex-start;
    padding:20px var(--gutter) 28px;
  }
  .site-header.nav-open .primary-nav ul{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    width:100%;
  }
}

/* ==========================================================================
   3. HERO + VERIFICATION LEDGER (signature element)
   ========================================================================== */

.hero{
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(72,197,189,0.16), transparent 60%),
    var(--ink);
  color:#fff;
  padding:96px 0 80px;
  overflow:hidden;
}
.hero .wrap{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}
.hero-eyebrow{ color:var(--teal); margin-bottom:22px; }
.hero h1{
  font-size:clamp(34px, 4.4vw, 58px);
  line-height:1.06;
  font-weight:600;
  color:#fff;
  max-width:16ch;
}
.hero h1 em{
  font-style:normal;
  color:var(--teal);
}
.hero-sub{
  margin-top:22px;
  font-size:17.5px;
  line-height:1.65;
  color:rgba(255,255,255,0.68);
  max-width:46ch;
}
.hero-ctas{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }
.hero-trust{
  margin-top:38px;
  display:flex;
  align-items:center;
  gap:14px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.04em;
  color:var(--slate-dim);
  flex-wrap:wrap;
}
.hero-trust span{ display:inline-flex; align-items:center; gap:6px; }
.hero-trust svg{ width:14px; height:14px; color:var(--teal); flex:none; }

/* Ledger panel */
.ledger{
  background:var(--ink-soft);
  border:1px solid var(--ink-line);
  border-radius:var(--radius-l);
  padding:22px;
  box-shadow:0 30px 80px -30px rgba(0,0,0,0.6);
}
.ledger-head{
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:16px; margin-bottom:6px;
  border-bottom:1px solid var(--ink-line);
}
.ledger-head .title{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.6);
}
.ledger-live{
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--teal);
}
.ledger-live .dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--teal);
  animation:pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.35; transform:scale(.75); }
}

.ledger-rows{ display:flex; flex-direction:column; }
.ledger-row{
  display:grid;
  grid-template-columns:44px 1fr auto auto;
  gap:12px;
  align-items:center;
  padding:13px 4px;
  border-bottom:1px solid var(--ink-line);
  opacity:0;
  transform:translateY(6px);
  animation:rowIn .5s ease forwards;
}
.ledger-row:last-child{ border-bottom:none; }
.ledger-flag{
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--slate-dim);
  background:rgba(255,255,255,0.06);
  border-radius:6px;
  width:38px; height:26px;
  display:flex; align-items:center; justify-content:center;
  letter-spacing:.03em;
}
.ledger-name{ font-size:13.5px; color:rgba(255,255,255,0.85); }
.ledger-name small{
  display:block;
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--slate-dim);
  margin-top:2px;
}
.ledger-time{
  font-family:var(--font-mono);
  font-size:11.5px;
  color:var(--slate-dim);
  text-align:right;
}
.pill{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.03em;
  padding:4px 10px;
  border-radius:999px;
  white-space:nowrap;
}
.pill-verified{ background:rgba(72,197,189,0.14); color:var(--teal); }
.pill-review{ background:rgba(232,163,61,0.14); color:var(--amber); }
.pill-pending{ background:rgba(255,255,255,0.08); color:var(--slate-dim); }

@keyframes rowIn{ to{ opacity:1; transform:translateY(0); } }

.ledger-foot{
  margin-top:16px; padding-top:16px;
  border-top:1px solid var(--ink-line);
  display:flex; justify-content:space-between; align-items:baseline;
}
.ledger-foot .num{ font-family:var(--font-mono); font-size:22px; color:#fff; }
.ledger-foot .lbl{ font-size:12px; color:var(--slate-dim); }

/* ==========================================================================
   4. TRUST / LOGO MARQUEE
   ========================================================================== */

.trust-bar{ background:var(--ink); border-top:1px solid var(--ink-line); padding:34px 0 44px; }
.trust-bar .label{
  text-align:center;
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--slate-dim);
  margin-bottom:24px;
}
.logo-row{
  display:flex; align-items:center; justify-content:center;
  gap:52px; flex-wrap:wrap;
}
.logo-row span{
  font-family:var(--font-display);
  font-weight:600;
  font-size:19px;
  color:rgba(255,255,255,0.38);
  letter-spacing:-0.01em;
}

/* ==========================================================================
   5. STATS BAND
   ========================================================================== */

.stats{
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.stats .wrap{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
  transform:translateY(-40px);
  box-shadow:0 20px 50px -20px rgba(11,14,17,0.18);
}
.stat-cell{
  background:#fff;
  padding:34px 26px;
  text-align:left;
}
.stat-cell .num{
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,38px);
  font-weight:600;
  color:var(--ink);
}
.stat-cell .num span{ color:var(--teal-deep); }
.stat-cell .lbl{
  margin-top:6px;
  font-size:13.5px;
  color:var(--slate);
}

/* ==========================================================================
   6. SECTION HEADS
   ========================================================================== */

section{ padding:88px 0; }
.section-head{
  max-width:640px;
  margin-bottom:52px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head .eyebrow{ color:var(--teal-deep); margin-bottom:14px; }
.section-head h2{
  font-size:clamp(26px,3vw,38px);
  font-weight:600;
  line-height:1.15;
  color:var(--ink);
}
.section-head p{
  margin-top:14px;
  font-size:16px;
  color:var(--slate);
  line-height:1.65;
}

/* ==========================================================================
   7. FEATURE GRID
   ========================================================================== */

.features{ background:var(--paper); }
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:28px 24px 30px;
  transition:border-color .2s ease, transform .2s ease;
}
.feature-card:hover{ border-color:var(--teal); transform:translateY(-3px); }
.feature-icon{
  width:42px; height:42px;
  border-radius:11px;
  background:var(--teal-tint);
  color:var(--teal-deep);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.feature-icon svg{ width:22px; height:22px; }
.feature-card h3{ font-size:17.5px; font-weight:600; color:var(--ink); }
.feature-card p{ margin-top:9px; font-size:14.5px; color:var(--slate); line-height:1.6; }
.feature-card a.more{
  display:inline-flex; align-items:center; gap:5px;
  margin-top:16px;
  font-size:13.5px; font-weight:600; color:var(--teal-deep);
}
.feature-card a.more svg{ width:14px; height:14px; transition:transform .15s ease; }
.feature-card a.more:hover svg{ transform:translateX(3px); }

/* ==========================================================================
   8. PROCESS (real sequence, numbered legitimately)
   ========================================================================== */

.process{ background:var(--ink); color:#fff; }
.process .section-head h2{ color:#fff; }
.process .section-head p{ color:var(--slate-dim); }
.process .section-head .eyebrow{ color:var(--teal); }

.process-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid var(--ink-line);
}
.process-step{
  padding:30px 22px 0;
  border-right:1px solid var(--ink-line);
  position:relative;
}
.process-step:last-child{ border-right:none; }
.process-step .step-num{
  font-family:var(--font-mono);
  font-size:12.5px;
  color:var(--teal);
  margin-bottom:14px;
  display:block;
}
.process-step h3{ font-size:16.5px; font-weight:600; }
.process-step p{ margin-top:8px; font-size:14px; color:var(--slate-dim); line-height:1.6; padding-right:6px; }

/* ==========================================================================
   9. TESTIMONIAL
   ========================================================================== */

.testimonial{ background:var(--paper-dim); }
.testimonial .wrap{
  max-width:820px;
  text-align:center;
}
.testimonial blockquote{
  font-family:var(--font-display);
  font-size:clamp(22px,2.6vw,30px);
  line-height:1.4;
  font-weight:500;
  color:var(--ink);
}
.testimonial blockquote::before{ content:"\201C"; color:var(--teal); }
.testimonial blockquote::after{ content:"\201D"; color:var(--teal); }
.testimonial-author{
  margin-top:26px;
  display:flex; align-items:center; justify-content:center; gap:12px;
}
.testimonial-avatar{
  width:44px; height:44px; border-radius:50%;
  background:var(--ink);
  color:var(--teal);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:15px;
}
.testimonial-author .who{ text-align:left; }
.testimonial-author .name{ font-weight:600; font-size:14.5px; color:var(--ink); }
.testimonial-author .role{ font-size:13px; color:var(--slate); }

/* ==========================================================================
   10. COMPLIANCE BADGES
   ========================================================================== */

.compliance{ background:var(--paper); }
.compliance-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
.badge-card{
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:22px 14px;
  text-align:center;
}
.badge-card .mark{
  width:34px; height:34px; margin:0 auto 12px;
  color:var(--teal-deep);
}
.badge-card .mark svg{ width:100%; height:100%; }
.badge-card .name{ font-family:var(--font-mono); font-size:12px; letter-spacing:.03em; color:var(--ink); font-weight:500; }

/* ==========================================================================
   11. CTA BANNER
   ========================================================================== */

.cta-banner{
  background:var(--ink);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(ellipse 700px 400px at 15% 100%, rgba(72,197,189,0.18), transparent 60%);
}
.cta-banner .wrap{
  position:relative;
  display:flex; align-items:center; justify-content:space-between;
  gap:32px; flex-wrap:wrap;
}
.cta-banner h2{
  font-size:clamp(24px,3vw,34px);
  font-weight:600;
  max-width:20ch;
}
.cta-banner .cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ==========================================================================
   12. FOOTER
   ========================================================================== */

.site-footer{ background:var(--ink); color:rgba(255,255,255,0.7); border-top:1px solid var(--ink-line); }
.footer-top{ padding:64px 0 40px; }
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr repeat(4,1fr);
  gap:32px;
}
.footer-brand .site-logo .logo-text{ color:#fff; }
.footer-brand p{ margin-top:16px; font-size:14px; color:var(--slate-dim); max-width:32ch; line-height:1.6; }
.parent-brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:22px;
  padding-top:20px;
  border-top:1px solid var(--ink-line);
}
.parent-brand .parent-logo{ height:26px; width:auto; flex:none; }
.parent-brand span{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--slate-dim);
}
.footer-col h4{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.5);
  margin-bottom:16px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; color:rgba(255,255,255,0.72); transition:color .15s ease; }
.footer-col a:hover{ color:var(--teal); }
.footer-bottom{
  border-top:1px solid var(--ink-line);
  padding:22px 0;
  display:flex; align-items:center; justify-content:space-between;
  font-size:13px; color:var(--slate-dim);
  flex-wrap:wrap; gap:10px;
}
.footer-bottom .legal-links{ display:flex; gap:20px; }
.footer-bottom a:hover{ color:#fff; }

/* ==========================================================================
   13. GENERIC PAGE / SINGLE CONTENT (non-front-page)
   ========================================================================== */

.content-wrap{ padding:70px 0 90px; }
.content-wrap article{ max-width:760px; margin:0 auto; }
.content-wrap h1.entry-title{
  font-size:clamp(28px,4vw,42px);
  font-weight:600;
  margin-bottom:24px;
  color:var(--ink);
}
.content-wrap .entry-content{ font-size:16.5px; line-height:1.75; color:var(--slate); }
.content-wrap .entry-content h2{ margin-top:2em; margin-bottom:.6em; font-size:24px; color:var(--ink); }
.content-wrap .entry-content h3{ margin-top:1.6em; margin-bottom:.5em; font-size:19px; color:var(--ink); }
.content-wrap .entry-content p{ margin-bottom:1.2em; }
.content-wrap .entry-content a{ color:var(--teal-deep); text-decoration:underline; }
.content-wrap .entry-content img{ border-radius:var(--radius-m); margin:1.6em 0; }
.content-wrap .entry-content ul, .content-wrap .entry-content ol{ margin:0 0 1.2em 1.4em; list-style:revert; }

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */

@media (max-width: 980px){
  .hero .wrap{ grid-template-columns:1fr; }
  .hero{ padding:64px 0 56px; }
  .stats .wrap{ grid-template-columns:repeat(2,1fr); transform:translateY(-24px); }
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .process-steps{ grid-template-columns:repeat(2,1fr); }
  .process-step{ border-bottom:1px solid var(--ink-line); padding-bottom:26px; }
  .compliance-grid{ grid-template-columns:repeat(3,1fr); }
  .footer-grid{ grid-template-columns:repeat(3,1fr); }
}

@media (max-width: 640px){
  section{ padding:64px 0; }
  .stats .wrap{ grid-template-columns:1fr 1fr; }
  .feature-grid{ grid-template-columns:1fr; }
  .process-steps{ grid-template-columns:1fr; }
  .process-step{ border-right:none; }
  .compliance-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1 / -1; margin-bottom:10px; }
  .cta-banner .wrap{ flex-direction:column; align-items:flex-start; }
  .ledger-row{ grid-template-columns:34px 1fr auto; }
  .ledger-time{ display:none; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
}
