/* ============================================================
   VERIFY PAGE — Shekhawati Fashion | Gudha Gorji
   Framer-inspired 3D Modern Design · Orange Brand Theme
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --or1: #FF6B00;
  --or2: #FF8C38;
  --or3: rgba(255,107,0,0.12);
  --or4: rgba(255,107,0,0.06);
  --glow: 0 0 40px rgba(255,107,0,0.45), 0 0 80px rgba(255,107,0,0.15);
  --bg: #080400;
  --font: 'Inter', system-ui, sans-serif;
  --brand: 'Rajdhani', sans-serif;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: #f0ece8;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  perspective: 1000px;
}

/* ── BACKGROUND ── */
.scene-bg {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.scene-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(255,107,0,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 75%, rgba(180,50,0,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,80,0,0.04) 0%, transparent 70%);
}
.scene-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,0,0.11) 0%, transparent 65%);
  top: -200px; left: -200px;
  animation: drift1 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,50,0,0.08) 0%, transparent 65%);
  bottom: -150px; right: -100px;
  animation: drift2 15s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,150,0,0.06) 0%, transparent 65%);
  top: 50%; left: 60%;
  animation: drift3 18s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,30px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,-25px)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(20px,-20px)} 66%{transform:translate(-15px,15px)} }

/* Floating particles */
.particle {
  position: absolute; border-radius: 50%;
  background: var(--or1); opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.1; }
  100% { transform: translateY(-120vh) scale(1.5); opacity: 0; }
}

/* ── NAVBAR ── */
.vfy-nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 68px;
  background: rgba(8,4,0,0.7);
  backdrop-filter: blur(28px) saturate(1.4);
  border-bottom: 1px solid rgba(255,107,0,0.1);
}
.nav-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-logo {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--or1) 0%, #c93800 100%);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  box-shadow: 0 4px 18px rgba(255,107,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.nav-logo:hover { transform: rotate(-8deg) scale(1.1); box-shadow: 0 8px 30px rgba(255,107,0,0.5); }
.nav-title {
  font-family: var(--brand);
  font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: 0.3px; line-height: 1.1;
}
.nav-sub { font-size: 0.65rem; color: rgba(255,140,56,0.6); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-admin {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
  text-decoration: none; transition: color 0.25s; padding: 8px 12px; border-radius: 8px;
}
.nav-admin:hover { color: var(--or2); background: rgba(255,107,0,0.06); }

/* ── HERO ── */
.vfy-hero {
  position: relative; z-index: 1;
  min-height: calc(100vh - 68px);
  display: flex; align-items: center; justify-content: center;
  padding: 50px 20px 60px;
}
.vfy-wrap { width: 100%; max-width: 580px; }

/* ── BRAND HEADER ── */
.brand-header {
  text-align: center; margin-bottom: 36px;
  animation: slideUp 0.7s var(--ease-smooth) both;
}
.brand-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: 100px; padding: 7px 18px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--or2); margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(255,107,0,0.1);
}
.brand-pill i { font-size: 10px; }
.brand-name {
  font-family: var(--brand);
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 700; line-height: 1.05; letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 20%, var(--or2) 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-location {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.78rem; color: rgba(255,160,60,0.55);
  letter-spacing: 2px; text-transform: uppercase; margin-top: 10px;
}
.brand-location .dot {
  width: 24px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,107,0,0.5));
}
.brand-location .dot.rev { background: linear-gradient(to left, transparent, rgba(255,107,0,0.5)); }

/* ── 3D CARD ── */
.card-3d-wrap { perspective: 1000px; }
.vfy-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,107,0,0.13);
  backdrop-filter: blur(40px) saturate(1.2);
  border-radius: 28px;
  padding: 48px 44px;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  animation: slideUp 0.8s var(--ease-smooth) 0.1s both;
  transition: transform 0.08s linear, box-shadow 0.3s;
  box-shadow:
    0 2px 0 rgba(255,107,0,0.15) inset,
    0 30px 80px rgba(0,0,0,0.5),
    0 8px 32px rgba(255,107,0,0.06);
  will-change: transform;
}
/* sheen top line */
.vfy-card::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,160,80,0.8), transparent);
}
/* inner glow corner */
.vfy-card::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}

.vfy-icon {
  width: 88px; height: 88px;
  background: var(--or3);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; color: var(--or1);
  margin: 0 auto 28px;
  animation: iconPop 1s var(--ease-spring) 0.4s both;
  box-shadow: 0 8px 28px rgba(255,107,0,0.15), 0 0 0 0 rgba(255,107,0,0.2);
  position: relative; z-index: 1;
}
.vfy-icon::after {
  content: '';
  position: absolute; inset: -12px;
  border-radius: 32px;
  background: transparent;
  border: 1px solid rgba(255,107,0,0.1);
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.18);opacity:0} }
@keyframes iconPop { from{transform:scale(0) rotate(-15deg);opacity:0} to{transform:scale(1) rotate(0);opacity:1} }

.vfy-heading {
  font-size: clamp(1.7rem, 4vw, 2rem);
  font-weight: 800; color: #fff; text-align: center; line-height: 1.15; margin-bottom: 10px;
}
.vfy-heading em { font-style: normal; color: var(--or1); }
.vfy-sub {
  text-align: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-bottom: 36px; max-width: 380px; margin-left: auto; margin-right: auto;
}

/* ── FORM ── */
.field-label {
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,140,56,0.75);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.input-wrap { position: relative; margin-bottom: 14px; }
.vfy-input {
  width: 100%;
  background: rgba(255,107,0,0.05);
  border: 1px solid rgba(255,107,0,0.18);
  border-radius: 14px;
  padding: 17px 20px 17px 54px;
  color: #fff; font-family: var(--font); font-size: 1rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; outline: none;
  transition: all 0.3s var(--ease-smooth);
}
.vfy-input:focus {
  border-color: var(--or1);
  background: rgba(255,107,0,0.09);
  box-shadow: 0 0 0 4px rgba(255,107,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
}
.vfy-input::placeholder { color: rgba(255,255,255,0.18); text-transform: none; letter-spacing: 0; font-weight: 400; }
.input-ico {
  position: absolute; left: 19px; top: 50%; transform: translateY(-50%);
  color: rgba(255,107,0,0.35); font-size: 17px; pointer-events: none;
  transition: color 0.3s;
}
.vfy-input:focus ~ .input-ico { color: var(--or1); }

.btn-verify {
  width: 100%; padding: 17px 24px;
  background: linear-gradient(135deg, var(--or1) 0%, #c93800 100%);
  color: #fff; border: none; border-radius: 14px;
  font-family: var(--font); font-size: 0.95rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s var(--ease-smooth);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px; position: relative; overflow: hidden;
  box-shadow: 0 6px 28px rgba(255,107,0,0.35), 0 2px 0 rgba(255,255,255,0.1) inset;
}
.btn-verify::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s;
}
.btn-verify:hover::before { left: 100%; }
.btn-verify:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.btn-verify:active { transform: translateY(-1px); }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.or-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 22px 0; color: rgba(255,255,255,0.18); font-size: 0.75rem; font-weight: 500; letter-spacing: 1px;
}
.or-divider::before, .or-divider::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,107,0,0.1);
}

.btn-qr {
  width: 100%; padding: 13px;
  background: rgba(255,107,0,0.05);
  border: 1px dashed rgba(255,107,0,0.22);
  border-radius: 14px; color: rgba(255,255,255,0.4); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all 0.3s; font-family: var(--font);
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.btn-qr:hover { border-color: var(--or1); color: var(--or2); background: rgba(255,107,0,0.08); transform: translateY(-1px); }
#reader { border-radius: 14px; overflow: hidden; margin-top: 16px; }

/* ── RESULT ── */
.result-card {
  margin-top: 24px; border-radius: 22px; padding: 34px;
  text-align: center; position: relative; overflow: hidden;
  animation: resultPop 0.55s var(--ease-spring) both;
}
@keyframes resultPop { from{opacity:0;transform:scale(0.82) translateY(16px)} to{opacity:1;transform:scale(1) translateY(0)} }
.result-valid  { background: rgba(0,255,153,0.04); border: 1px solid rgba(0,255,153,0.25); }
.result-valid::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 50% -10%, rgba(0,255,153,0.06), transparent 60%); pointer-events:none; }
.result-used   { background: rgba(255,50,80,0.07); border: 1px solid rgba(255,50,80,0.25); }
.result-expired{ background: rgba(100,100,100,0.06); border: 1px solid rgba(140,140,140,0.18); }
.result-inactive{ background: rgba(120,120,120,0.04); border: 1px solid rgba(120,120,120,0.15); }
.result-pending-activation{ background: rgba(255,204,0,0.04); border: 1px solid rgba(255,204,0,0.22); }
.result-invalid{ background: rgba(80,80,80,0.06); border: 1px solid rgba(120,120,120,0.15); }
.result-icon { font-size: 56px; margin-bottom: 16px; display: block; animation: iconPop 0.5s var(--ease-spring) 0.25s both; }
.result-status { font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; opacity: 0.7; }
.result-title  { font-size: 1.55rem; font-weight: 800; line-height: 1.2; margin-bottom: 8px; }
.result-msg    { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 20px; }
.result-details {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,107,0,0.1);
  border-radius: 14px; padding: 16px; text-align: left;
}
.detail-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.045); font-size: 0.84rem; }
.detail-row:last-child { border-bottom: none; }
.detail-label { color: rgba(255,255,255,0.38); }
.detail-value { font-weight: 700; color: #fff; }
.code-badge {
  font-family: 'Courier New', monospace; font-size: 1.35rem; font-weight: 700;
  letter-spacing: 4px; color: var(--or1);
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.25);
  border-radius: 10px; padding: 8px 20px; display: inline-block; margin: 8px 0; cursor: pointer;
  transition: background 0.25s;
}
.code-badge:hover { background: rgba(255,107,0,0.18); }
.store-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.2);
  border-radius: 50px; padding: 10px 22px;
  font-size: 0.84rem; font-weight: 600; color: var(--or2); margin-top: 12px;
}

/* ── INFO STRIP ── */
.info-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px;
  animation: slideUp 0.8s var(--ease-smooth) 0.2s both;
}
.info-tile {
  background: rgba(255,107,0,0.04);
  border: 1px solid rgba(255,107,0,0.09);
  border-radius: 16px; padding: 18px 12px; text-align: center;
  transition: all 0.3s var(--ease-smooth);
  position: relative; overflow: hidden;
}
.info-tile::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.3), transparent);
}
.info-tile:hover {
  background: rgba(255,107,0,0.09);
  border-color: rgba(255,107,0,0.22);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.info-tile i { color: var(--or1); font-size: 20px; margin-bottom: 10px; display: block; }
.info-label { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; }

/* ── ABOUT SECTION ── */
.about-card {
  margin-top: 20px;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,107,0,0.09);
  border-radius: 24px; padding: 32px 36px;
  position: relative; overflow: hidden;
  animation: slideUp 0.8s var(--ease-smooth) 0.3s both;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.4), transparent);
}
.about-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--or2); margin-bottom: 12px;
}
.about-badge::before { content:''; width:18px; height:2px; background: var(--or1); border-radius:2px; }
.about-title {
  font-family: var(--brand); font-size: 1.4rem; font-weight: 700;
  color: #fff; margin-bottom: 12px; letter-spacing: 0.5px;
}
.about-text {
  font-size: 0.88rem; color: rgba(255,255,255,0.42);
  line-height: 1.8; margin-bottom: 20px;
}
.features-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.feat-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,107,0,0.07); border: 1px solid rgba(255,107,0,0.14);
  border-radius: 100px; padding: 5px 13px;
  font-size: 0.72rem; font-weight: 600; color: rgba(255,150,60,0.9);
}
.feat-chip i { font-size: 9px; color: var(--or1); }
.store-info { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 18px; border-top: 1px solid rgba(255,107,0,0.07); }
.store-info-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.store-info-item i { color: var(--or1); font-size: 13px; width: 16px; text-align: center; }

/* ── FOOTER ── */
.vfy-footer {
  position: relative; z-index: 1;
  text-align: center; padding: 22px 24px;
  border-top: 1px solid rgba(255,107,0,0.07);
  color: rgba(255,255,255,0.17); font-size: 0.74rem;
}
.vfy-footer b { color: var(--or2); font-weight: 600; }

/* ── ANIMATIONS ── */
@keyframes slideUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: rgba(255,107,0,0.25); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .vfy-card { padding: 32px 22px; border-radius: 22px; }
  .vfy-heading { font-size: 1.55rem; }
  .info-strip { grid-template-columns: repeat(2, 1fr); }
  .brand-name { font-size: 2rem; }
  .about-card { padding: 24px 22px; }
  .vfy-nav { padding: 0 18px; }
}
