/*
Theme Name: Wota Passport
Theme URI: https://wotapassport.com/
Author: Immutifi
Description: A clean, fast landing theme for Wota Passport.
Version: 1.0.0
License: MIT
Text Domain: wota-passport
*/

:root{
  --wp--preset--color--wota-ink:#0b1220;
  --wp--preset--color--wota-muted:#5b677a;
  --wp--preset--color--wota-surface:#ffffff;
  --wp--preset--color--wota-border:rgba(0,0,0,.08);
  --wp--preset--color--wota-accent:#2f6bff;
  --wp--preset--color--wota-accent2:#14b8a6;
  --wota-radius:18px;
  --wota-shadow: 0 10px 30px rgba(0,0,0,.10);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--wp--preset--color--wota-ink);
  background: #f6f8fc;
}

a{color:inherit;}
a:hover{opacity:.9;}

.wota-container{
  width:min(1120px, calc(100% - 36px));
  margin-inline:auto;
}

.wota-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,248,252,.75);
  border-bottom: 1px solid var(--wp--preset--color--wota-border);
}
.wota-header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.wota-brand{display:flex; align-items:center; gap:10px; text-decoration:none;}
.wota-brand svg{width:30px;height:30px;flex:0 0 auto;}
.wota-brand-name{font-weight:700; letter-spacing:.2px;}
.wota-nav{display:flex; align-items:center; gap:18px;}
.wota-nav a{opacity:.85; text-decoration:none; font-weight:600; font-size:14px;}
.wota-nav a:hover{opacity:1;}
.wota-menu-toggle{
  display:none;
  border:1px solid var(--wp--preset--color--wota-border);
  background:#fff;
  border-radius: 999px;
  padding:10px 12px;
}

@media (max-width: 860px){
  .wota-nav{display:none;}
  .wota-menu-toggle{display:inline-flex; align-items:center; gap:8px;}
  .wota-nav.is-open{
    display:flex;
    position:absolute;
    left:0; right:0; top:58px;
    padding: 14px 18px;
    background: rgba(246,248,252,.98);
    border-bottom: 1px solid var(--wp--preset--color--wota-border);
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
}

.wota-hero{
  padding: 78px 0 40px;
}
.wota-hero-card{
  border-radius: calc(var(--wota-radius) + 8px);
  box-shadow: var(--wota-shadow);
  overflow:hidden;
  background:
    radial-gradient(900px 420px at 10% 10%, rgba(47,107,255,.22), transparent 55%),
    radial-gradient(700px 360px at 90% 20%, rgba(20,184,166,.18), transparent 55%),
    linear-gradient(180deg, #ffffff, #f7f9ff);
  border: 1px solid var(--wp--preset--color--wota-border);
}
.wota-hero-inner{
  padding: 56px 46px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items:center;
}
@media (max-width: 860px){
  .wota-hero-inner{grid-template-columns:1fr; padding: 46px 22px;}
}
.wota-kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--wp--preset--color--wota-border);
  background: rgba(255,255,255,.8);
  font-weight:700; font-size:12px;
}
.wota-h1{margin:14px 0 10px; font-size: clamp(32px, 4.6vw, 54px); line-height:1.05; letter-spacing:-.8px;}
.wota-sub{margin:0; color: var(--wp--preset--color--wota-muted); font-size: 16px; line-height:1.55; max-width: 62ch;}
.wota-cta{display:flex; gap:12px; margin-top: 22px; flex-wrap:wrap;}
.wota-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--wp--preset--color--wota-border);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  background:#fff;
}
.wota-btn.primary{
  border-color: rgba(47,107,255,.35);
  background: linear-gradient(180deg, rgba(47,107,255,1), rgba(47,107,255,.9));
  color:#fff;
}
.wota-pill{
  border-radius: var(--wota-radius);
  border: 1px solid var(--wp--preset--color--wota-border);
  background:#fff;
  padding: 16px 16px 14px;
}
.wota-pill h3{margin:0 0 8px; font-size:14px;}
.wota-pill p{margin:0; color: var(--wp--preset--color--wota-muted); font-size:13px; line-height:1.45;}

.wota-section{padding: 22px 0 54px;}
.wota-grid{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px){ .wota-grid{grid-template-columns:1fr;} }

.wota-card{
  background:#fff;
  border:1px solid var(--wp--preset--color--wota-border);
  border-radius: var(--wota-radius);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  padding: 18px 18px 16px;
}
.wota-card h3{margin: 0 0 8px; font-size: 16px;}
.wota-card p{margin:0; color:var(--wp--preset--color--wota-muted); line-height:1.6; font-size:14px;}

.wota-content{
  background:#fff;
  border:1px solid var(--wp--preset--color--wota-border);
  border-radius: var(--wota-radius);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  padding: 26px 22px;
}

.wota-footer{
  padding: 34px 0;
  color: var(--wp--preset--color--wota-muted);
  font-size: 13px;
}
.wota-footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  border-top: 1px solid var(--wp--preset--color--wota-border);
  padding-top: 16px;
}
.wota-footer a{color: inherit;}
.wota-footer small{display:block;}
