/* ============================================================
   Padeja — shared stylesheet
   Brand palette: teal #00D4AA · gold #FFD166 · coral #FF6B6B
   Navy backgrounds: #0A1523 / #0D1B2A
   ============================================================ */

:root {
  --teal: #00D4AA;
  --teal-dark: #00b492;
  --gold: #FFD166;
  --coral: #FF6B6B;
  --navy: #0A1523;
  --navy-2: #0D1B2A;
  --navy-3: #12263c;
  --card: #0f2135;
  --line: rgba(255, 255, 255, 0.10);
  --white: #ffffff;
  --muted: #9fb3c8;
  --muted-2: #7c93aa;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--white);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }

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

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 21, 35, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  transition: color .15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 800 !important;
}
.nav-cta:hover { background: #24e6c3; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: #24e6c3; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #ffdc85; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--teal); }

/* ---------- Store badges ---------- */
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 20px;
  border-radius: 14px;
  background: #ffffff;
  color: #0a1523;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .12s ease;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge .glyph { font-size: 24px; line-height: 1; }
.store-badge .l1 { font-size: 11px; color: #55606c; line-height: 1.1; }
.store-badge .l2 { font-size: 16px; font-weight: 800; line-height: 1.15; }

/* ---------- Section scaffolding ---------- */
section { padding: 84px 0; }
.eyebrow {
  color: var(--teal);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 14px;
}
h1, h2, h3 { line-height: 1.12; margin: 0; }
h1 { font-size: clamp(38px, 6vw, 62px); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -0.01em; }
h3 { font-size: 20px; font-weight: 800; }
.lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--muted); }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 52px; }
.section-head.left { margin-left: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 84px;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(0,212,170,.18), transparent 60%),
    radial-gradient(800px 480px at 100% 0%, rgba(255,107,107,.14), transparent 55%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 span { color: var(--teal); }
.hero .lead { margin: 22px 0 30px; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { color: var(--muted-2); font-size: 14px; margin-top: 18px; }
.hero-art {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-art img { width: 100%; height: auto; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: linear-gradient(180deg, var(--card), var(--navy-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.card .ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 26px;
  background: rgba(0,212,170,.12);
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: 15px; }

/* app split cards */
.app-card { position: relative; overflow: hidden; }
.app-card .tag {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.tag-social { background: rgba(0,212,170,.15); color: var(--teal); }
.tag-live { background: rgba(255,209,102,.16); color: var(--gold); }
.feature-list { list-style: none; padding: 0; margin: 18px 0 22px; }
.feature-list li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--muted); font-size: 15px; padding: 7px 0;
}
.feature-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
  flex: 0 0 auto;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal); color: var(--navy);
  font-weight: 900; font-size: 19px; margin-bottom: 16px;
}

/* ---------- Stat band ---------- */
.band {
  background: linear-gradient(180deg, var(--navy-2), var(--navy-3));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; text-align: center; }
.stat .n { font-size: clamp(30px,4vw,44px); font-weight: 900; color: var(--gold); }
.stat .t { color: var(--muted); font-size: 15px; }

/* ---------- CTA strip ---------- */
.cta-strip {
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(0,212,170,.16), transparent 60%),
    var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 56px 28px;
}
.cta-strip .stores { justify-content: center; margin-top: 24px; }

/* ---------- Forms ---------- */
.form-card {
  background: linear-gradient(180deg, var(--card), var(--navy-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { color: var(--muted-2); font-size: 13px; margin-top: 4px; }
.form-ok {
  display: none;
  background: rgba(0,212,170,.12);
  border: 1px solid rgba(0,212,170,.4);
  border-radius: 14px;
  padding: 20px;
  margin-top: 18px;
}
.form-ok.show { display: block; }

/* ---------- FAQ ---------- */
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 20px;
  margin-bottom: 12px;
  background: var(--navy-2);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal); font-size: 22px; font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 0 0 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  padding: 52px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}
.foot-logo img { height: 28px; margin-bottom: 14px; }
.foot-grid p { color: var(--muted); font-size: 14px; margin: 0; max-width: 260px; }
.foot-col h4 {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-2); margin: 0 0 14px;
}
.foot-col a { display: block; color: var(--muted); font-size: 15px; padding: 5px 0; }
.foot-col a:hover { color: var(--white); }
.foot-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: var(--muted-2); font-size: 14px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 72px 0 40px;
  background:
    radial-gradient(700px 360px at 12% -20%, rgba(0,212,170,.16), transparent 60%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
}
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.page-hero .lead { margin-top: 18px; max-width: 620px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .cols-3 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--navy-2);
    border-bottom: 1px solid var(--line);
    padding: 16px 22px 22px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 8px 0; font-size: 17px; }
  .nav-toggle { display: block; }
  .cols-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
