/* ===================================================
   TrustMe Landing Page – style.css  (v2 – no emoji)
   =================================================== */

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

:root {
  --accent:   #6C63FF;
  --teal:     #00D4FF;
  --pink:     #FF6B6B;
  --gold:     #FFD700;
  --green:    #2ECC71;
  --bg:       #060610;
  --bg2:      #0C0C1E;
  --card:     #0F0F24;
  --card2:    #13132C;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(108,99,255,0.25);
  --text:     #EEEEFF;
  --muted:    rgba(238,238,255,0.5);
  --radius:   18px;
  --radius-sm:12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 20%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── GRID BACKGROUND ── */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(108,99,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(6,6,16,0.88);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-size: 1.2rem; font-weight: 800; letter-spacing: -.5px;
}
.logo-shield { width: 26px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: .88rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--teal)) !important;
  color: #fff !important;
  padding: 9px 22px; border-radius: 50px;
  font-weight: 700 !important;
  transition: opacity .2s, transform .2s, box-shadow .2s !important;
  box-shadow: 0 4px 20px rgba(108,99,255,.35);
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(108,99,255,.5) !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── SECTION COMMONS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); padding: 5px 14px; border-radius: 50px;
  border: 1px solid rgba(108,99,255,.3);
  background: rgba(108,99,255,.08); margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ── ORBS ── */
.orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.orb1 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(108,99,255,.22), transparent 65%); top: -120px; left: -120px; animation: float1 9s ease-in-out infinite; }
.orb2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(0,212,255,.18), transparent 65%); bottom: -100px; right: -100px; animation: float2 11s ease-in-out infinite; }
.orb3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(255,107,107,.13), transparent 65%); top: 55%; left: 60%; animation: float3 13s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(28px,28px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-22px,-22px)} }
@keyframes float3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(18px,-28px)} }

/* ── HERO ── */
.hero {
  min-height: 100svh; position: relative;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 120px 28px 80px;
  max-width: 1200px; margin: 0 auto;
  gap: 60px;
}
.hero-inner { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(108,99,255,.12); border: 1px solid rgba(108,99,255,.28);
  color: rgba(180,175,255,.9); font-size: .8rem; font-weight: 600;
  padding: 7px 15px; border-radius: 50px; margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-weight: 900;
  line-height: 1.06; letter-spacing: -2.5px; margin-bottom: 22px;
  animation: fadeUp .6s .1s ease both;
}
.hero-sub {
  font-size: 1.05rem; color: var(--muted); margin-bottom: 38px; max-width: 460px;
  animation: fadeUp .6s .2s ease both;
}
.hero-sub strong { color: rgba(238,238,255,.85); }

.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp .6s .3s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #fff; text-decoration: none; font-weight: 700; font-size: .93rem;
  padding: 14px 28px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(108,99,255,.38);
  transition: transform .22s, box-shadow .22s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(108,99,255,.55); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); text-decoration: none; font-weight: 500; font-size: .93rem;
  padding: 14px 22px; border-radius: 50px; border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.18); }

.hero-stats {
  display: flex; align-items: center; gap: 28px;
  animation: fadeUp .6s .4s ease both;
}
.stat {
  display: flex; align-items: center; gap: 8px;
  flex-direction: column; align-items: flex-start;
}
.stat-icon { flex-shrink: 0; }
.stat-num {
  font-size: .95rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .7rem; color: var(--muted); margin-top: 1px; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ── PHONE MOCKUP ── */
.hero-phone-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp .8s .15s ease both;
}
.phone-glow {
  position: absolute; inset: -80px;
  background: radial-gradient(ellipse at center, rgba(108,99,255,.28), transparent 65%);
  pointer-events: none;
}
.phone-ring {
  position: absolute;
  width: 320px; height: 620px;
  border-radius: 46px;
  border: 1px solid rgba(108,99,255,.3);
  pointer-events: none;
  animation: pulseRing 4s ease-in-out infinite;
}
@keyframes pulseRing {
  0%,100% { opacity:.4; transform: scale(1); }
  50% { opacity:.15; transform: scale(1.04); }
}

.phone-mockup {
  width: 285px;
  background: #08080E;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow:
    0 50px 120px rgba(0,0,0,.85),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden; position: relative;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #08080E; border-radius: 0 0 20px 20px; z-index: 10;
}
.phone-screen { padding: 0 0 18px; background: #07070D; }
.phone-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px 10px; font-size: .68rem; color: var(--muted); font-weight: 700;
}
.status-icons { display: flex; align-items: center; gap: 5px; }
.phone-feed { padding: 0 12px; }
.feed-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0 14px;
}
.feed-logo {
  display: flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: .88rem; color: var(--text);
}

.trustbit-card {
  display: flex; gap: 9px; margin-bottom: 9px;
  background: rgba(255,255,255,.04); border-radius: 14px;
  padding: 10px; border: 1px solid var(--border);
  transition: border-color .2s;
}
.tb-avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem; color: #fff;
}
.tb-body { flex: 1; min-width: 0; }
.tb-meta { font-size: .67rem; margin-bottom: 5px; display: flex; gap: 4px; align-items: baseline; }
.tb-meta strong { color: var(--text); }
.tb-meta span { color: var(--muted); }
.tb-text { font-size: .72rem; color: rgba(238,238,255,.8); margin-bottom: 8px; line-height: 1.45; }
.tb-actions { display: flex; gap: 14px; }
.tb-action {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .64rem; color: var(--muted); letter-spacing: .02em;
}

.phone-navbar {
  display: flex; justify-content: space-around; align-items: center;
  padding: 10px 0 0;
  border-top: 1px solid var(--border);
  margin: 8px 12px 0;
}
.nb-item {
  color: var(--muted); padding: 4px;
  transition: color .2s;
}
.nb-item.active { color: var(--accent); }
.nb-item svg { display: block; }

/* ── FEATURES ── */
.features { padding: 130px 0; position: relative; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: transform .28s, border-color .28s, box-shadow .28s;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, color-mix(in srgb, var(--clr, #6C63FF) 10%, transparent), transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(108,99,255,.3);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}

.feature-icon {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--clr, #6C63FF) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--clr, #6C63FF) 30%, transparent);
  color: var(--clr, #6C63FF);
  transition: background .3s;
}
.feature-card:hover .feature-icon {
  background: color-mix(in srgb, var(--clr, #6C63FF) 22%, transparent);
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 9px; }
.feature-card p { font-size: .87rem; color: var(--muted); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how {
  padding: 110px 0;
  background: linear-gradient(180deg, transparent, rgba(108,99,255,.04) 40%, transparent);
}
.how .section-header { margin-bottom: 56px; }

.steps {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.step {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px; flex: 1; max-width: 280px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.step:hover {
  border-color: var(--border2);
  box-shadow: 0 20px 56px rgba(108,99,255,.1);
  transform: translateY(-3px);
}
.step-icon-wrap {
  position: relative; display: inline-block;
  margin-bottom: 18px;
}
.step-num-badge {
  position: absolute; top: -8px; right: -10px;
  background: var(--bg); border: 1px solid var(--border2);
  color: var(--accent); font-size: .65rem; font-weight: 800; letter-spacing: .08em;
  padding: 2px 7px; border-radius: 50px;
}
.step-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-body p { font-size: .86rem; color: var(--muted); line-height: 1.6; }

.step-connector { flex-shrink: 0; opacity: .5; }

/* ── DOWNLOAD ── */
.download {
  padding: 130px 0; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(108,99,255,.12), transparent 70%);
}
.download-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.download-inner {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 80px;
}
.download-sub { color: var(--muted); margin-bottom: 32px; font-size: 1rem; }
.download-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }

.btn-download {
  padding: 13px 22px !important;
  gap: 13px !important;
}
.btn-download div { display: flex; flex-direction: column; text-align: left; }
.btn-download small { font-size: .67rem; font-weight: 400; opacity: .8; }
.btn-download strong { font-size: .92rem; }

.btn-store {
  display: inline-flex; align-items: center; gap: 13px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); text-decoration: none; font-weight: 600;
  padding: 13px 22px; border-radius: 50px;
  transition: border-color .2s;
}
.btn-store div { display: flex; flex-direction: column; text-align: left; }
.btn-store small { font-size: .67rem; font-weight: 400; color: var(--muted); }
.btn-store strong { font-size: .92rem; }
.btn-disabled { opacity: .4; pointer-events: none; }

.download-note {
  display: inline-flex; align-items: flex-start; gap: 8px;
  font-size: .78rem; color: var(--muted);
  background: rgba(255,213,0,.07); border: 1px solid rgba(255,213,0,.18);
  border-radius: 10px; padding: 10px 14px; max-width: 440px; line-height: 1.5;
}
.download-note svg { flex-shrink: 0; margin-top: 1px; }

.qr-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(108,99,255,.1), 0 30px 80px rgba(0,0,0,.3);
}
.qr-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,99,255,.6), transparent);
}
.qr-label {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--muted); font-weight: 500;
}
.qr-box {
  background: rgba(108,99,255,.1); border: 1px solid rgba(108,99,255,.2);
  border-radius: 14px; padding: 20px;
}
.qr-domain { font-size: .75rem; font-weight: 700; color: var(--accent); }
.qr-version {
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; color: var(--green); font-weight: 500;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border); padding: 52px 28px 32px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px; flex-wrap: wrap; gap: 20px;
}
.footer-brand .nav-logo { margin-bottom: 8px; }
.footer-brand p { font-size: .85rem; color: var(--muted); }
.footer-links {
  display: flex; gap: 32px;
}
.footer-links a {
  text-decoration: none; color: var(--muted); font-size: .87rem; font-weight: 500;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .77rem; color: var(--muted); flex-wrap: wrap; gap: 8px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.footer-made { display: flex; align-items: center; gap: 5px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 110px; gap: 48px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-phone-wrap { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .download-inner { grid-template-columns: 1fr; }
  .download-visual { display: none; }
  .section-title { text-align: center !important; }
  .download-note { max-width: 100%; }
}
@media (max-width: 750px) {
  .steps { flex-direction: column; align-items: stretch; }
  .step { max-width: 100%; }
  .step-connector { transform: rotate(90deg); align-self: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(6,6,16,.97); backdrop-filter: blur(24px);
    padding: 28px; gap: 22px; border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .hero-title { font-size: 2.3rem; }
  .download-btns { flex-direction: column; }
}
