/** Shopify CDN: Minification failed

Line 519:12 Expected identifier but found whitespace
Line 519:13 Unexpected "10px"

**/
/* =============================================
   UNOO Authentication Page Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Base --- */
.unoo-page {
  font-family: 'Inter', sans-serif;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  background: #fff;
  color: #111;
}

.unoo-purple { color: #A855F7; }

/* --- Buttons --- */
.unoo-btn-primary {
  background: #000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
}
.unoo-btn-primary:hover { background: #A855F7; color: #fff; }

.unoo-btn-secondary {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  color: #9ca3af;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
}
.unoo-btn-secondary:hover { border-color: #A855F7; color: #000; }

/* --- Main Container --- */
.unoo-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

/* --- Hero --- */
.hero-gradient {
  background: radial-gradient(circle at top right, rgba(168,85,247,0.03) 0%, transparent 70%);
}

.unoo-hero {
  padding-top: 40px;
  margin-bottom: 48px;
}

.unoo-hero-tag {
  display: inline-block;
  padding: 5px 14px;
  background: #faf5ff;
  color: #A855F7;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  border-radius: 9999px;
  border: 1px solid rgba(168,85,247,0.3);
  margin-bottom: 20px;
}

.unoo-hero-title {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 36px;
}

.unoo-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.unoo-hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
}

/* --- Scanner Card --- */
.unoo-scanner-card {
  position: relative;
  min-height: 400px;
  height: 100%;
  background: #f9fafb;
  border: 1px solid rgba(168,85,247,0.1);
  box-shadow: 0 40px 100px -20px rgba(168,85,247,0.08);
  border-radius: 40px;
  overflow: hidden;
}

.auth-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#A855F7 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.05;
  z-index: 1;
}

.scanner-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #A855F7, transparent);
  position: absolute;
  width: 100%;
  z-index: 20;
  animation: scan 4s ease-in-out infinite;
}

@keyframes scan {
  0%   { top: 0%; }
  50%  { top: 100%; }
  100% { top: 0%; }
}

.unoo-scanner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  z-index: 2;
}
.unoo-scanner-card:hover .unoo-scanner-img { transform: scale(1.05); }

.unoo-live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 12px;
  border-radius: 9999px;
  z-index: 30;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000;
}

.unoo-live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Hero Copy --- */
.unoo-hero-copy {
  border-left: 4px solid #A855F7;
  padding-left: 20px;
}
.unoo-hero-copy p {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.4;
}
.unoo-hero-copy strong { color: #000; font-weight: 900; }

.unoo-hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.unoo-hero-ctas .unoo-btn-primary { width: 224px; padding: 16px; border-radius: 16px; font-size: 9px; }
.unoo-hero-ctas .unoo-btn-secondary { width: 208px; }

/* --- Steps Card --- */
.unoo-steps-card {
  height: fit-content !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 48px;
  background: #fff;
  border: 1px solid rgba(168, 85, 247, .1);
  box-shadow: 0 0 30px #a855f71a;
  box-sizing: border-box;
}

.unoo-steps-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #A855F7;
  margin-bottom: 4px;
}

.unoo-steps-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

/* --- Steps list (ol) --- */
.unoo-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  flex: 1;
  list-style: none;
  margin: 0;
}

.unoo-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-circle {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: #A855F7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  box-shadow: 0 4px 10px rgba(168,85,247,0.3);
}

.unoo-step h3 {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 2px;
}

.unoo-step p {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
  line-height: 1.4;
}

.unoo-steps-footer {
  padding-top: 16px;
  border-top: 1px solid #f9fafb;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #d1d5db;
}

/* --- Sections --- */
.unoo-section {
  padding: 48px 0;
  border-top: 1px solid #f3f4f6;
}

.unoo-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.unoo-section-header h2 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 4px;
  text-align: center;
}

.unoo-section-sub {
  color: #A855F7;
  font-weight: 900;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* --- Benefits --- */
.unoo-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.unoo-benefit-card {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #f3f3f3;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.unoo-benefit-card h3 {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
}
.unoo-benefit-card p {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 4px;
}

/* --- Technology --- */
.unoo-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.unoo-tech-cards { display: flex; flex-direction: column; gap: 16px; }

.unoo-dark-card {
  background: #000;
  color: #fff;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}
.unoo-dark-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 4px; }
.unoo-dark-card p { color: #9ca3af; font-size: 12px; line-height: 1.6; }

.unoo-video-wrap { display: flex; flex-direction: column; gap: 16px; }

.unoo-video-card {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* --- Trust --- */
.unoo-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.unoo-trust-cards { display: flex; flex-direction: column; gap: 16px; }

.unoo-light-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.unoo-light-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 4px; }
.unoo-light-card p { color: #9ca3af; font-size: 12px; font-weight: 500; }

.unoo-cert-wrap { display: flex; justify-content: center; }

.unoo-cert-img {
  width: 50%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* --- Brands --- */
.unoo-brands-section { text-align: center; }
.unoo-brands-section h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.unoo-brands-section .unoo-section-sub { margin-bottom: 32px; }

.unoo-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #f3f4f6;
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-item {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9ca3af;
  padding: 16px 8px;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.3s;
}
.brand-item:hover { color: #000; }

/* --- Pricing --- */
.unoo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 40px;
  border: 1px solid #f3f4f6;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 280px;
  box-sizing: border-box;
}
.pricing-card:hover {
  border-color: #A855F7;
  box-shadow: 0 40px 80px -20px rgba(168,85,247,0.15);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: rgba(168,85,247,0.2);
  background: rgba(250,245,255,0.05);
}
.pricing-card--private {
  border-color: rgba(168,85,247,0.3);
  background: linear-gradient(135deg, rgba(168,85,247,0.04) 0%, rgba(255,255,255,1) 100%);
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #374151;
  margin-bottom: 4px;
}

.pricing-tier {
  font-size: 10px;
  font-weight: 900;
  color: #d1d5db;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.price-text-gradient {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -3px;
  background: linear-gradient(to bottom, #A855F7 0%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.price-text-gradient--range {
  font-size: 36px;
  letter-spacing: -1px;
  white-space: nowrap;
}


  font-size: 10px;
  color: #9ca3af;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.unoo-pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 9px;
  font-weight: 500;
  color: #6b7280;
  font-style: italic;
}

/* --- Article --- */
.unoo-article {
  padding: 48px 32px;
  border-top: 1px solid #f3f4f6;
  background: rgba(249,250,251,0.3);
  border-radius: 40px;
  margin-top: 24px;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.unoo-article-label {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #A855F7;
  margin-bottom: 16px;
  display: block;
}

.unoo-article-body {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 16px;
}
.unoo-article-body strong { color: #000; }

/* --- Visually hidden (accessible labels) --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ddd; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #A855F7; }



/* =============================================
   TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .unoo-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .unoo-brands-grid { grid-template-columns: repeat(4, 1fr); }
  .unoo-tech-grid { grid-template-columns: 1fr; }
  .unoo-trust-grid { grid-template-columns: 1fr; }
}

/* =============================================
   MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  /* Container */
  .unoo-main { padding: 0 20px 20px; }

  /* All grids → single column */
  .unoo-hero-grid,
  .unoo-benefits,
  .unoo-tech-grid,
  .unoo-trust-grid,
  .unoo-pricing-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  /* Brands → 2 columns */
  .unoo-brands-grid { grid-template-columns: repeat(2, 1fr); }

  /* Full width elements */
  .unoo-benefit-card,
  .unoo-dark-card,
  .unoo-light-card,
  .pricing-card,
  .unoo-steps-card,
  .unoo-scanner-card,
  .unoo-video-card {
    width: 100%;
    box-sizing: border-box;
  }

  /* Scanner card shorter on mobile */
  .unoo-scanner-card { min-height: 260px; }

  /* CTAs stack full width */
  .unoo-hero-ctas { flex-direction: column; }
  .unoo-hero-ctas .unoo-btn-primary,
  .unoo-hero-ctas .unoo-btn-secondary { width: 100%; }

  /* Article */
  .unoo-article {
    max-width: 100%;
    padding: 48px 0;
    margin-left: auto;
    margin-right: auto;
  }

  /* Cert image full width on mobile */
  .unoo-cert-img { width: 100%; }

  /* Benefit cards center on mobile */
  .unoo-benefit-card { text-align: center; }

  /* Steps card text center on mobile */
  .unoo-steps-label,
  .unoo-steps-title { text-align: center; }
  .unoo-steps-card { height: fit-content !important; min-height: unset !important; align-self: start; }
  .unoo-steps-list { flex: none; }
  .unoo-hero-left { height: auto; }
  .unoo-hero-grid { align-items: start; }

  /* Typography */
  .unoo-hero-title { font-size: 34px; letter-spacing: -1px; line-height: 1.1; }
  .unoo-hero-copy p { font-size: 14px; }
  .unoo-section-header { text-align: center; width: 100%; }
  .unoo-section-header h2 { font-size: 20px; text-align: center; width: 100%; }
  .unoo-section-header p,
  .unoo-section-header .unoo-section-sub { text-align: center; font-size: 9px; width: 100%; display: block; }
  .unoo-brands-section h2,
  .unoo-brands-section .unoo-section-sub { font-size: 18px; text-align: center; }
  .unoo-brands-section .unoo-section-sub { font-size: 9px; }
  .unoo-article-body { font-size: 14px; }
  .unoo-article-label { font-size: 13px; letter-spacing: 3px; margin-bottom: 20px; }
}

/* =============================================
   APPOINTMENT MODAL
   ============================================= */
.unoo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
}
.unoo-modal.is-open {
  display: flex;
}

.unoo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.unoo-modal-box {
  position: relative;
  z-index: 1;
  background: #111;
  color: #fff;
  border-radius: 32px 32px 0 0;
  padding: 36px 28px 40px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.4);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.unoo-modal-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #fff;
}

.unoo-modal-sub {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
}
.unoo-modal-sub strong { color: #fff; }

.unoo-modal-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.unoo-modal-btn {
  flex: 1;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 16px 8px;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.unoo-modal-btn:hover {
  background: #A855F7;
  color: #fff;
}

.unoo-modal-note {
  background: #1f1f1f;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.6;
}
.unoo-modal-note strong { color: #fff; }

.unoo-modal-close {
  background: #222;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.unoo-modal-close:hover { background: #333; }

@media (min-width: 769px) {
  .unoo-modal {
    align-items: center;
  }
  .unoo-modal-box {
    border-radius: 32px;
    max-width: 520px;
  }
}
