/* Card Wallet Labs — site styles */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy-deep: #122441;
  --navy: #1E3A6E;
  --navy-mid: #27408F;
  --mint: #2DD4A8;
  --mint-deep: #128A6B;
  --gold: #E8B931;
  --light: #F5F7FA;
  --ink: #16294F;
  --grey: #6B7A99;
  --line: rgba(22, 41, 79, 0.10);
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px;
  border-radius: 14px; padding: 15px 26px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--mint); color: var(--navy-deep);
  box-shadow: 0 14px 30px rgba(45, 212, 168, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(45, 212, 168, 0.45); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.10); }
.btn[aria-disabled="true"] { opacity: 0.75; cursor: default; box-shadow: none; }
.btn[aria-disabled="true"]:hover { transform: none; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(45, 212, 168, 0.14);
  border: 1.5px solid rgba(45, 212, 168, 0.55);
  color: var(--mint);
  border-radius: 999px; padding: 9px 18px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 36, 65, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 800; font-size: 19px; }
.brand .logo {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-deep) 100%);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(45, 212, 168, 0.4);
}
.brand .logo svg { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.8); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: #fff; }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(45,212,168,0.22), transparent 60%),
    radial-gradient(1000px 800px at -15% 110%, rgba(39,64,143,0.85), transparent 65%),
    linear-gradient(165deg, #1B3463 0%, #122441 100%);
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 2px, transparent 2px);
  background-size: 46px 46px; pointer-events: none;
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
  padding: 84px 24px 96px;
}
.hero h1 {
  font-size: 60px; line-height: 1.08; font-weight: 800; letter-spacing: -1.5px;
  margin: 22px 0 0;
}
.hero h1 .accent { color: var(--mint); }
.hero p.sub {
  margin-top: 22px; font-size: 20px; font-weight: 500;
  color: rgba(255,255,255,0.82); max-width: 520px;
}
.hero .cta-row { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .micro { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.6); }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual img {
  width: 300px; border-radius: 36px;
  box-shadow: 0 50px 90px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; padding: 64px 24px 72px; }
  .hero h1 { font-size: 44px; }
  .hero .cta-row { justify-content: center; }
  .hero p.sub { margin-left: auto; margin-right: auto; }
  .hero-visual { margin-top: 12px; }
  .hero-visual img { width: 240px; }
}

/* ===== Section base ===== */
section { padding: 92px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow {
  font-size: 14px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mint-deep);
}
.section-head h2 { font-size: 38px; font-weight: 800; letter-spacing: -1px; margin: 12px 0 14px; }
.section-head p { font-size: 18px; color: var(--grey); }
@media (max-width: 720px) { .section-head h2 { font-size: 30px; } }

/* ===== Features grid ===== */
.features { background: var(--light); }
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 30px 28px; transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(22,41,79,0.10); }
.feature-card .ic {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(45,212,168,0.16), rgba(39,64,143,0.10));
  margin-bottom: 18px;
}
.feature-card .ic svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { color: var(--grey); font-size: 16px; }

/* ===== Showcase (alternating) ===== */
.showcase-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  margin-bottom: 96px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse .showcase-text { order: 2; }
.showcase-text .eyebrow { color: var(--mint-deep); }
.showcase-text h3 { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin: 12px 0 14px; }
.showcase-text p { font-size: 17px; color: var(--grey); }
.showcase-text ul { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.showcase-text li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.showcase-text li .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--mint);
  display: grid; place-items: center; margin-top: 1px;
}
.showcase-text li .tick svg { width: 13px; height: 13px; }
.showcase-visual { display: grid; place-items: center; }
.showcase-visual img {
  width: 280px; border-radius: 32px;
  box-shadow: 0 40px 80px rgba(22,41,79,0.22);
}
@media (max-width: 860px) {
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .showcase-row.reverse .showcase-text { order: 0; }
  .showcase-text h3 { font-size: 26px; }
  .showcase-visual img { width: 230px; }
}

/* ===== How it works ===== */
.how { background: var(--navy-deep); color: #fff; }
.how .section-head h2 { color: #fff; }
.how .section-head p { color: rgba(255,255,255,0.7); }
.how .eyebrow { color: var(--mint); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px; padding: 32px 28px;
}
.step .num {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--mint), var(--mint-deep));
  color: var(--navy-deep); font-weight: 800; font-size: 22px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.7); font-size: 16px; }

/* ===== Security highlight ===== */
.security { background: var(--light); }
.security-card {
  background: linear-gradient(165deg, #1B3463 0%, #122441 100%);
  border-radius: 28px; padding: 56px; color: #fff; position: relative; overflow: hidden;
}
.security-card::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,168,0.25), transparent 70%);
}
.security-card .inner { position: relative; z-index: 2; }
.security-card h2 { font-size: 34px; font-weight: 800; letter-spacing: -1px; max-width: 560px; }
.security-card > .inner > p { color: rgba(255,255,255,0.78); font-size: 18px; margin-top: 16px; max-width: 600px; }
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
@media (max-width: 860px) { .sec-grid { grid-template-columns: 1fr; } .security-card { padding: 36px 26px; } }
.sec-item { display: flex; gap: 14px; align-items: flex-start; }
.sec-item .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--mint); display: grid; place-items: center; }
.sec-item .tick svg { width: 14px; height: 14px; }
.sec-item h4 { font-size: 17px; font-weight: 800; }
.sec-item p { font-size: 15px; color: rgba(255,255,255,0.7); }

/* ===== CTA ===== */
.cta { text-align: center; }
.cta h2 { font-size: 40px; font-weight: 800; letter-spacing: -1px; }
.cta p { color: var(--grey); font-size: 18px; margin: 14px auto 30px; max-width: 520px; }
@media (max-width: 720px) { .cta h2 { font-size: 30px; } }

/* ===== Footer ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 56px 0 40px; }
.site-footer .top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.site-footer .brand { color: #fff; }
.site-footer p.tag { margin-top: 14px; max-width: 320px; font-size: 15px; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 { color: #fff; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; margin-bottom: 10px; font-size: 15px; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,0.55);
}

/* ===== Legal pages ===== */
.legal { padding: 64px 0 96px; }
.legal .wrap { max-width: 820px; }
.legal-head { border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 36px; }
.legal-head h1 { font-size: 40px; font-weight: 800; letter-spacing: -1px; }
.legal-head .meta { color: var(--grey); margin-top: 10px; font-size: 15px; }
.legal h2 { font-size: 24px; font-weight: 800; margin: 40px 0 14px; letter-spacing: -0.5px; }
.legal h3 { font-size: 18px; font-weight: 800; margin: 24px 0 10px; }
.legal p { color: #36486b; margin-bottom: 14px; font-size: 16px; }
.legal ul { margin: 0 0 16px 22px; }
.legal li { color: #36486b; margin-bottom: 8px; font-size: 16px; }
.legal a { color: var(--navy-mid); font-weight: 700; text-decoration: underline; }
.legal .callout {
  background: var(--light); border: 1px solid var(--line); border-left: 4px solid var(--mint);
  border-radius: 12px; padding: 18px 22px; margin: 22px 0;
}
.legal .callout p { margin: 0; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-mid); font-weight: 700; margin-bottom: 24px; }
