/* ============================================================
   EFFY MOBILE — STATIC THEME STYLESHEET
   NiishForge SOP v1.2 compliant
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  --cricket-green: #13E200;
  --cricket-dark-green: #008A00;
  --cricket-black: #000000;
  --cricket-white: #FFFFFF;
  --cricket-gray: #F2F2F2;
  --nav-height: 37px;
  --navbar-height: 96px;
  --total-header: 133px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #333333;
  transition: background-color 0.3s, color 0.3s;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.dark {
  background-color: #000000;
  color: #f3f4f6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ============================================================
   SCROLLBAR HIDE
   ============================================================ */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: #13E200; color: #000; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.font-inter { font-family: 'Inter', sans-serif; }
.font-mono  { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

.text-xs    { font-size: 0.75rem;  line-height: 1rem; }
.text-sm    { font-size: 0.875rem; line-height: 1.25rem; }
.text-base  { font-size: 1rem;     line-height: 1.5rem; }
.text-lg    { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl    { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl   { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl   { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl   { font-size: 2.25rem;  line-height: 2.5rem; }
.text-5xl   { font-size: 3rem;     line-height: 1; }
.text-6xl   { font-size: 3.75rem;  line-height: 1; }
.text-7xl   { font-size: 4.5rem;   line-height: 1; }

.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }
.font-bold    { font-weight: 700; }
.font-black   { font-weight: 900; }

.tracking-tight   { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wide    { letter-spacing: 0.025em; }
.tracking-wider   { letter-spacing: 0.05em; }
.tracking-widest  { letter-spacing: 0.1em; }

.uppercase { text-transform: uppercase; }
.italic    { font-style: italic; }
.line-through { text-decoration: line-through; }

.leading-tight   { line-height: 1.25; }
.leading-snug    { line-height: 1.375; }
.leading-normal  { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }

/* ============================================================
   COLOR UTILITIES
   ============================================================ */
.text-white       { color: #ffffff; }
.text-black       { color: #000000; }
.text-gray-300    { color: #d1d5db; }
.text-gray-400    { color: #9ca3af; }
.text-gray-500    { color: #6b7280; }
.text-gray-600    { color: #4b5563; }
.text-gray-700    { color: #374151; }
.text-green       { color: #13E200; }
.text-yellow      { color: #FFF200; }
.text-red-500     { color: #ef4444; }
.text-blue-500    { color: #3b82f6; }
.text-blue-600    { color: #2563eb; }
.text-blue-400    { color: #60a5fa; }
.text-orange-500  { color: #f97316; }
.text-purple-500  { color: #a855f7; }
.text-green-500   { color: #22c55e; }

body.dark .dark\:text-white     { color: #ffffff; }
body.dark .dark\:text-gray-100  { color: #f3f4f6; }
body.dark .dark\:text-gray-300  { color: #d1d5db; }
body.dark .dark\:text-gray-400  { color: #9ca3af; }
body.dark .dark\:text-gray-500  { color: #6b7280; }
body.dark .dark\:text-gray-600  { color: #4b5563; }
body.dark .dark\:text-green     { color: #13E200; }
body.dark .dark\:text-yellow    { color: #FFF200; }
body.dark .dark\:text-8f9cae    { color: #8F9CAE; }

.bg-white         { background-color: #ffffff; }
.bg-black         { background-color: #000000; }
.bg-gray-50       { background-color: #f9fafb; }
.bg-gray-100      { background-color: #f3f4f6; }
.bg-gray-200      { background-color: #e5e7eb; }
.bg-green         { background-color: #13E200; }
.bg-green-dark    { background-color: #008A00; }
.bg-red-500       { background-color: #ef4444; }
.bg-blue-500      { background-color: #3b82f6; }
.bg-blue-600      { background-color: #2563eb; }
.bg-yellow        { background-color: #FFF200; }

body.dark .dark\:bg-black       { background-color: #000000; }
body.dark .dark\:bg-0e131f      { background-color: #0E131F; }
body.dark .dark\:bg-090d1a      { background-color: #090D1A; }
body.dark .dark\:bg-05080f      { background-color: #05080f; }

.border-black     { border-color: #000000; }
.border-white     { border-color: #ffffff; }
.border-gray-100  { border-color: #f3f4f6; }
.border-gray-200  { border-color: #e5e7eb; }
.border-gray-300  { border-color: #d1d5db; }
.border-green     { border-color: #13E200; }
.border-blue-500  { border-color: #3b82f6; }
.border-red-500   { border-color: #ef4444; }
.border-yellow    { border-color: #FFF200; }

body.dark .dark\:border-white   { border-color: #ffffff; }
body.dark .dark\:border-white10 { border-color: rgba(255,255,255,0.1); }
body.dark .dark\:border-white20 { border-color: rgba(255,255,255,0.2); }

.opacity-50  { opacity: 0.5; }
.opacity-70  { opacity: 0.7; }
.opacity-80  { opacity: 0.8; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { width: 100%; }
.max-w-md  { max-width: 28rem; }
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto   { margin-left: auto; margin-right: auto; }

.flex        { display: flex; }
.inline-flex { display: inline-flex; }
.grid        { display: grid; }
.block       { display: block; }
.inline-block{ display: inline-block; }
.hidden      { display: none; }

.flex-col        { flex-direction: column; }
.flex-row        { flex-direction: row; }
.flex-wrap       { flex-wrap: wrap; }
.flex-1          { flex: 1 1 0%; }
.flex-shrink-0   { flex-shrink: 0; }
.shrink-0        { flex-shrink: 0; }

.items-center    { align-items: center; }
.items-start     { align-items: flex-start; }
.items-end       { align-items: flex-end; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end     { justify-content: flex-end; }
.justify-start   { justify-content: flex-start; }
.self-end        { align-self: flex-end; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }

.inset-0  { top: 0; right: 0; bottom: 0; left: 0; }
.top-0    { top: 0; }
.right-0  { right: 0; }
.bottom-0 { bottom: 0; }
.left-0   { left: 0; }
.top-4    { top: 1rem; }
.right-4  { right: 1rem; }
.bottom-4 { bottom: 1rem; }
.left-4   { left: 1rem; }
.top-2    { top: 0.5rem; }
.right-2  { right: 0.5rem; }
.bottom-2 { bottom: 0.5rem; }
.left-2   { left: 0.5rem; }
.-top-4   { top: -1rem; }
.-right-6 { right: -1.5rem; }
.-bottom-6{ bottom: -1.5rem; }
.-left-9  { left: calc(-9px); }
.-z-10    { z-index: -10; }

.z-10  { z-index: 10; }
.z-20  { z-index: 20; }
.z-50  { z-index: 50; }
.z-100 { z-index: 100; }
.z-110 { z-index: 110; }
.z-200 { z-index: 200; }
.z-60  { z-index: 60; }

.overflow-hidden  { overflow: hidden; }
.overflow-y-auto  { overflow-y: auto; }
.overflow-x-auto  { overflow-x: auto; }
.overflow-visible { overflow: visible; }

.w-full   { width: 100%; }
.h-full   { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }

.w-2  { width: 0.5rem;  } .h-2  { height: 0.5rem;  }
.w-3  { width: 0.75rem; } .h-3  { height: 0.75rem; }
.w-4  { width: 1rem;    } .h-4  { height: 1rem;    }
.w-5  { width: 1.25rem; } .h-5  { height: 1.25rem; }
.w-6  { width: 1.5rem;  } .h-6  { height: 1.5rem;  }
.w-7  { width: 1.75rem; } .h-7  { height: 1.75rem; }
.w-8  { width: 2rem;    } .h-8  { height: 2rem;    }
.w-10 { width: 2.5rem;  } .h-10 { height: 2.5rem;  }
.w-12 { width: 3rem;    } .h-12 { height: 3rem;    }
.w-14 { width: 3.5rem;  } .h-14 { height: 3.5rem;  }
.w-16 { width: 4rem;    } .h-16 { height: 4rem;    }
.w-20 { width: 5rem;    } .h-20 { height: 5rem;    }
.w-24 { width: 6rem;    } .h-24 { height: 6rem;    }
.w-32 { width: 8rem;    } .h-32 { height: 8rem;    }
.w-48 { width: 12rem;   } .h-48 { height: 12rem;   }
.w-64 { width: 16rem;   } .h-64 { height: 16rem;   }
.w-96 { width: 24rem;   } .h-96 { height: 24rem;   }
.w-1  { width: 1px; }     .h-1  { height: 1px; }
.h-1\.5 { height: 0.375rem; }
.h-px { height: 1px; }
.w-px { width: 1px; }

/* ============================================================
   SPACING UTILITIES (padding / margin / gap)
   ============================================================ */
.p-0  { padding: 0; }
.p-1  { padding: 0.25rem; }
.p-2  { padding: 0.5rem; }
.p-3  { padding: 0.75rem; }
.p-4  { padding: 1rem; }
.p-5  { padding: 1.25rem; }
.p-6  { padding: 1.5rem; }
.p-7  { padding: 1.75rem; }
.p-8  { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-1\.5 { padding: 0.375rem; }

.px-2  { padding-left: 0.5rem;  padding-right: 0.5rem;  }
.px-3  { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4  { padding-left: 1rem;    padding-right: 1rem;    }
.px-5  { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6  { padding-left: 1.5rem;  padding-right: 1.5rem;  }
.px-8  { padding-left: 2rem;    padding-right: 2rem;    }
.px-12 { padding-left: 3rem;    padding-right: 3rem;    }

.py-1  { padding-top: 0.25rem;  padding-bottom: 0.25rem;  }
.py-1\.5{ padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2  { padding-top: 0.5rem;   padding-bottom: 0.5rem;   }
.py-3  { padding-top: 0.75rem;  padding-bottom: 0.75rem;  }
.py-4  { padding-top: 1rem;     padding-bottom: 1rem;     }
.py-5  { padding-top: 1.25rem;  padding-bottom: 1.25rem;  }
.py-6  { padding-top: 1.5rem;   padding-bottom: 1.5rem;   }
.py-8  { padding-top: 2rem;     padding-bottom: 2rem;     }
.py-10 { padding-top: 2.5rem;   padding-bottom: 2.5rem;   }
.py-12 { padding-top: 3rem;     padding-bottom: 3rem;     }
.py-16 { padding-top: 4rem;     padding-bottom: 4rem;     }
.py-20 { padding-top: 5rem;     padding-bottom: 5rem;     }
.py-24 { padding-top: 6rem;     padding-bottom: 6rem;     }

.pt-2  { padding-top: 0.5rem;  }
.pt-4  { padding-top: 1rem;    }
.pt-6  { padding-top: 1.5rem;  }
.pt-8  { padding-top: 2rem;    }
.pt-12 { padding-top: 3rem;    }
.pb-4  { padding-bottom: 1rem; }
.pb-6  { padding-bottom: 1.5rem; }
.pb-8  { padding-bottom: 2rem; }
.pl-2  { padding-left: 0.5rem; }
.pl-4  { padding-left: 1rem; }
.pl-6  { padding-left: 1.5rem; }
.pl-8  { padding-left: 2rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-12 { padding-left: 3rem; }
.pr-4  { padding-right: 1rem; }

.m-0  { margin: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10{ margin-bottom: 2.5rem; }
.mb-12{ margin-bottom: 3rem; }
.mb-16{ margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }
.ml-1 { margin-left: 0.25rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.-ml-2 { margin-left: -0.5rem; }

.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-5  { gap: 1.25rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-1\.5 { gap: 0.375rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem;  }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem;    }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem;  }
.space-y-8 > * + * { margin-top: 2rem;    }

.space-x-8 > * + * { margin-left: 2rem; }

/* ============================================================
   BORDER UTILITIES
   ============================================================ */
.border     { border-width: 1px; border-style: solid; }
.border-0   { border-width: 0; }
.border-2   { border-width: 2px; border-style: solid; }
.border-4   { border-width: 4px; border-style: solid; }
.border-8   { border-width: 8px; border-style: solid; }
.border-b   { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-b-4 { border-bottom-width: 4px; border-bottom-style: solid; }
.border-b-8 { border-bottom-width: 8px; border-bottom-style: solid; }
.border-t   { border-top-width: 1px; border-top-style: solid; }
.border-t-8 { border-top-width: 8px; border-top-style: solid; }
.border-l   { border-left-width: 1px; border-left-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-r   { border-right-width: 1px; border-right-style: solid; }
.border-y   { border-top-width: 1px; border-top-style: solid; border-bottom-width: 1px; border-bottom-style: solid; }
.border-dashed { border-style: dashed; }

/* Border colors */
.border-transparent     { border-color: transparent; }
.border-c-black         { border-color: #000000; }
.border-c-white         { border-color: #ffffff; }
.border-c-gray-100      { border-color: #f3f4f6; }
.border-c-gray-200      { border-color: #e5e7eb; }
.border-c-gray-300      { border-color: #d1d5db; }
.border-c-green         { border-color: #13E200; }
.border-c-green-20      { border-color: rgba(19,226,0,0.2); }
.border-c-green-30      { border-color: rgba(19,226,0,0.3); }
.border-c-blue-500      { border-color: #3b82f6; }
.border-c-yellow        { border-color: #FFF200; }
.border-c-white-10      { border-color: rgba(255,255,255,0.1); }
.border-c-white-20      { border-color: rgba(255,255,255,0.2); }

/* ============================================================
   BORDER RADIUS
   ============================================================ */
.rounded    { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl{ border-radius: 1rem; }
.rounded-3xl{ border-radius: 1.5rem; }
.rounded-full{ border-radius: 9999px; }
.rounded-tl-none { border-top-left-radius: 0; }
.rounded-tr-none { border-top-right-radius: 0; }
.rounded-r-2xl { border-top-right-radius: 1rem; border-bottom-right-radius: 1rem; }

/* ============================================================
   SHADOWS
   ============================================================ */
.shadow-sm  { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow     { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-md  { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg  { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl  { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.shadow-none{ box-shadow: none; }

.shadow-green  { box-shadow: 0 0 20px rgba(19,226,0,0.3); }
.shadow-green2 { box-shadow: 0 0 30px rgba(19,226,0,0.4); }
.shadow-yellow { box-shadow: 0 0 30px rgba(255,242,0,0.3); }
.shadow-yellow2{ box-shadow: 0 0 20px rgba(255,242,0,0.3); }

/* ============================================================
   TRANSFORMS & TRANSITIONS
   ============================================================ */
.transition       { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-all   { transition: all 0.15s cubic-bezier(0.4,0,0.2,1); }
.transition-colors{ transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.transition-transform { transition: transform 0.2s; }
.duration-200     { transition-duration: 200ms; }
.duration-300     { transition-duration: 300ms; }
.duration-500     { transition-duration: 500ms; }

.transform         { }
.scale-105         { transform: scale(1.05); }
.translate-x-6    { transform: translateX(1.5rem); }
.translate-x-0    { transform: translateX(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.rotate-135        { transform: rotate(135deg); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:translate-x-1:hover { transform: translateX(0.25rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-pointer { cursor: pointer; }

/* ============================================================
   ASPECT RATIOS
   ============================================================ */
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-4\/3  { aspect-ratio: 4 / 3; }

/* ============================================================
   OBJECT FIT
   ============================================================ */
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ============================================================
   BACKGROUND SIZING / POSITION
   ============================================================ */
.bg-center  { background-position: center; }
.bg-cover   { background-size: cover; }
.bg-no-repeat{ background-repeat: no-repeat; }

/* ============================================================
   GRID UTILITIES
   ============================================================ */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0,1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.col-span-2  { grid-column: span 2 / span 2; }

/* ============================================================
   DISPLAY / VISIBILITY AT BREAKPOINTS
   — handled with media queries below
   ============================================================ */

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50%       { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scan {
  0%, 100% { top: 0; }
  50%       { top: calc(100% - 4px); }
}
@keyframes dial-press {
  0%   { transform: scale(1); }
  50%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}

.animate-pulse     { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.animate-ping      { animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.animate-spin      { animation: spin 1s linear infinite; }
.animate-bounce    { animation: bounce 1s infinite; }
.animate-fade-in-up{ animation: fadeInUp 0.4s ease forwards; }
.animate-fade-in   { animation: fadeIn 0.3s ease forwards; }
.animate-scale-in  { animation: scaleIn 0.3s ease forwards; }
.animate-slide-right { animation: slideInRight 0.4s ease forwards; }
.animate-scan      { animation: scan 2s ease-in-out infinite; }

.duration-300 { transition-duration: 300ms; }

/* ============================================================
   EFFY COMPONENT CLASSES
   ============================================================ */

/* Buttons */
.cricket-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #13E200;
  color: #000;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background-color 0.2s;
  text-decoration: none;
}
.cricket-btn-primary:hover { background-color: #008A00; }

.cricket-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background-color 0.2s;
  text-decoration: none;
}
.cricket-btn-secondary:hover { background-color: #1f2937; }
body.dark .cricket-btn-secondary { background-color: #fff; color: #000; }
body.dark .cricket-btn-secondary:hover { background-color: #e5e7eb; }

/* Nav Link */
.cricket-nav-link {
  color: #000;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cricket-nav-link:hover { color: #13E200; }
body.dark .cricket-nav-link { color: #fff; }
body.dark .cricket-nav-link:hover { color: #13E200; }

/* Card */
.cricket-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.cricket-card:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
body.dark .cricket-card { background: #0E131F; border-color: rgba(255,255,255,0.1); }

/* ============================================================
   TOP BANNER
   ============================================================ */
.top-banner {
  background-color: #111111;
  color: #fff;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
}
.top-banner__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.top-banner__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  overflow-x: auto;
  padding: 0.25rem 0;
  list-style: none;
}
@media (min-width: 640px) {
  .top-banner__list { justify-content: flex-end; gap: 2rem; }
}
.top-banner__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.top-banner__link:hover { color: #13E200; }
.top-banner__icon { color: #13E200; width: 12px; height: 12px; }
.top-banner__link:hover .top-banner__icon { transform: scale(1.1); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 37px;
  left: 0; right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .navbar { background: #0E131F; border-bottom-color: rgba(255,255,255,0.1); }

.navbar__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .navbar__inner { padding: 0 1.5rem; } }
@media (min-width: 1024px){ .navbar__inner { padding: 0 2rem; } }

.navbar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 96px;
}

.navbar__logo img {
  height: 6rem;
  width: auto;
  object-fit: contain;
  transition: all 0.3s;
}
body.dark .navbar__logo img {
  background: #fff;
  padding: 6px;
  border-radius: 8px;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .navbar__links { display: flex; } }

.navbar__actions {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) { .navbar__actions { display: flex; } }

.navbar__signin {
  font-size: 0.75rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}
.navbar__signin:hover { color: #13E200; }
body.dark .navbar__signin { color: #fff; }
body.dark .navbar__signin:hover { color: #13E200; }

.navbar__mobile-btn {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { .navbar__mobile-btn { display: none; } }

.navbar__hamburger {
  color: #000;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}
.navbar__hamburger:hover { color: #13E200; }
body.dark .navbar__hamburger { color: #fff; }

.navbar__mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.5rem 1rem 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.navbar__mobile-menu.open { display: block; }
body.dark .navbar__mobile-menu { background: #0E131F; border-bottom-color: rgba(255,255,255,0.1); }

.navbar__mobile-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.navbar__mobile-actions { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid #e5e7eb; }
body.dark .navbar__mobile-actions { border-top-color: rgba(255,255,255,0.1); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #13E200;
  transition: background-color 0.3s;
}
body.dark .hero { background-color: #090D1A; }

.hero__grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1fr 1fr; padding: 0 2rem; } }

.hero__content { padding: 3rem 0; }

.hero__title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 0.3s;
}
body.dark .hero__title { color: #fff; }
@media (min-width: 640px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1024px){ .hero__title { font-size: 4.5rem; } }

.hero__highlight {
  background: #000;
  color: #fff;
  padding: 0.25rem 1rem;
  display: inline-block;
  margin-top: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}
body.dark .hero__highlight { background: #13E200; color: #000; }

.hero__desc {
  font-size: 1.125rem;
  color: rgba(0,0,0,0.87);
  font-weight: 700;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  line-height: 1.625;
  transition: color 0.3s;
}
body.dark .hero__desc { color: #d1d5db; }

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .hero__cta-group { flex-direction: row; flex-wrap: wrap; } }

.hero__btn-primary {
  background: #000;
  color: #fff;
  font-weight: 900;
  padding: 1rem 3rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #000;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  width: 100%;
}
@media (min-width: 640px) { .hero__btn-primary { width: auto; } }
.hero__btn-primary:hover { background: #1f2937; }

.hero__btn-secondary {
  background: #fff;
  color: #000;
  font-weight: 900;
  padding: 1rem 3rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #000;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  width: 100%;
}
@media (min-width: 640px) { .hero__btn-secondary { width: auto; } }
.hero__btn-secondary:hover { background: #f3f4f6; }

.hero__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.7);
}
body.dark .hero__badges { color: #9ca3af; }

.hero__badge { display: flex; align-items: center; gap: 0.5rem; }
.hero__badge-icon { width: 1rem; height: 1rem; color: #000; }
body.dark .hero__badge-icon { color: #13E200; }

/* Hero Provision Card */
.hero__card {
  display: none;
  position: relative;
}
@media (min-width: 1024px) { .hero__card { display: block; } }

.hero__card-inner {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border: 4px solid #000;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .hero__card-inner { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.hero__tab-group {
  display: flex;
  padding: 0.25rem;
  background: #f3f4f6;
  border-radius: 9999px;
  margin-bottom: 2rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e5e7eb;
  transition: background-color 0.3s;
}
body.dark .hero__tab-group { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.05); }

.hero__tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: none;
  border: none;
  color: #6b7280;
  transition: all 0.2s;
}
.hero__tab-btn.active { background: #13E200; color: #000; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
body.dark .hero__tab-btn { color: #9ca3af; }
body.dark .hero__tab-btn:hover { color: #fff; }

.hero__tab-panel { display: none; }
.hero__tab-panel.active { display: block; animation: fadeIn 0.3s ease; }

.hero__qr-box {
  width: 12rem;
  height: 12rem;
  background: #f9fafb;
  padding: 1rem;
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d1d5db;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .hero__qr-box { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }

.hero__mascot {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
}
.hero__mascot img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }

/* Internet Panel */
.hero__internet-panel {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .hero__internet-panel { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.1); }

.hero__internet-icon-wrap {
  width: 4rem;
  height: 4rem;
  background: rgba(19,226,0,0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(19,226,0,0.2);
}

.hero__zip-group {
  position: relative;
}
.hero__zip-input {
  width: 100%;
  background: #fff;
  border: 2px solid #000;
  border-radius: 9999px;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  outline: none;
  transition: all 0.3s;
}
.hero__zip-input:focus { box-shadow: 0 0 0 4px rgba(19,226,0,0.2); }
.hero__zip-input::placeholder { color: #d1d5db; }
body.dark .hero__zip-input { background: #0E131F; border-color: rgba(255,255,255,0.2); color: #fff; }
body.dark .hero__zip-input::placeholder { color: #374151; }

.hero__zip-btn {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  background: #000;
  color: #fff;
  padding: 0 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.hero__zip-btn:hover { background: #13E200; color: #000; }
body.dark .hero__zip-btn { background: #13E200; color: #000; }
body.dark .hero__zip-btn:hover { background: #008A00; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  padding: 5rem 0;
  background: #fff;
  transition: background-color 0.3s;
}
body.dark .pricing-section { background: #000; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-style: italic;
  color: #000;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
body.dark .section-title { color: #fff; }
@media (min-width: 640px) { .section-title { font-size: 3rem; } }

.section-subtitle {
  color: #6b7280;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  line-height: 1.625;
  max-width: 42rem;
  margin: 0 auto;
  transition: color 0.3s;
}
body.dark .section-subtitle { color: #9ca3af; }

.pricing__sub-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-align: center;
  transition: color 0.3s;
}
body.dark .pricing__sub-title { color: #fff; }

.pricing__grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .pricing__grid { grid-template-columns: 1fr 1fr; } }

/* Pricing Card */
.pricing-card {
  position: relative;
  border-radius: 1.5rem;
  border: 4px solid transparent;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
body.dark .pricing-card { background: #0E131F; }
.pricing-card:hover { border-color: #13E200; }
.pricing-card.selected { border-color: #13E200; transform: scale(1.05); z-index: 10; box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.pricing-card.basic { border-color: #e5e7eb; }
.pricing-card.basic.selected { border-color: #000; }
body.dark .pricing-card.basic { border-color: rgba(255,255,255,0.1); }
body.dark .pricing-card.basic.selected { border-color: #fff; }
.pricing-card.popular { border-color: #000; }
body.dark .pricing-card.popular { border-color: #fff; }

.pricing-card__badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #13E200;
  color: #000;
  border: 2px solid #000;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  white-space: nowrap;
  z-index: 20;
}

.pricing-card__img {
  height: 12rem;
  width: 100%;
  position: relative;
}
.pricing-card__img img { width: 100%; height: 100%; object-fit: cover; }
.pricing-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.pricing-card__promo {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  animation: pulse 2s infinite;
  margin-bottom: 0.5rem;
}

.pricing-card__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }

.pricing-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }

.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: #000;
  transition: color 0.3s;
}
body.dark .pricing-card__name { color: #fff; }

.pricing-card__price { display: flex; align-items: baseline; gap: 0.25rem; }
.pricing-card__original { font-size: 0.875rem; font-weight: 700; color: #9ca3af; text-decoration: line-through; margin-right: 0.25rem; }
.pricing-card__amount { font-size: 1.875rem; font-weight: 900; color: #000; }
.pricing-card__amount.popular { color: #13E200; }
body.dark .pricing-card__amount { color: #fff; }
.pricing-card__period { font-size: 10px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.1em; }

.pricing-card__desc { font-size: 0.875rem; color: #4b5563; margin-bottom: 1.5rem; min-height: 40px; transition: color 0.3s; }
body.dark .pricing-card__desc { color: #9ca3af; }

.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #000;
  transition: color 0.3s;
}
body.dark .pricing-card__feature { color: #fff; }

.pricing-card__check { width: 1rem; height: 1rem; flex-shrink: 0; color: #000; }
.pricing-card__check.popular { color: #13E200; }
body.dark .pricing-card__check { color: #fff; }

.pricing-card__cta {
  margin-top: auto;
  width: 100%;
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  font-weight: 900;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid #000;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  transition: background-color 0.2s;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.pricing-card__cta:hover { background: #1f2937; }
body.dark .pricing-card__cta { background: #fff; color: #000; border-color: #fff; }
body.dark .pricing-card__cta:hover { background: #e5e7eb; }

/* Pricing CTA Banner */
.pricing-cta-banner {
  width: 100%;
  background: #000;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s;
}
body.dark .pricing-cta-banner { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.pricing-cta-banner__glow {
  position: absolute;
  top: 0; right: 0;
  width: 16rem; height: 16rem;
  background: rgba(19,226,0,0.1);
  filter: blur(80px);
  border-radius: 9999px;
}

.pricing-cta-banner__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) { .pricing-cta-banner__inner { flex-direction: row; } }

@media (min-width: 640px) { .pricing-cta-banner { padding: 6rem 0; } }

.pricing-cta-banner__title {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-style: italic;
}
@media (min-width: 640px) { .pricing-cta-banner__title { font-size: 3rem; } }

.pricing-cta-banner__card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 4px solid #13E200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  transition: background-color 0.3s;
}
body.dark .pricing-cta-banner__card { background: #000; }

/* ============================================================
   CONSOLE MOCKUP
   ============================================================ */
.console-section {
  width: 100%;
  background: #f9fafb;
  padding: 5rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.3s;
}
body.dark .console-section { background: #05080f; border-color: rgba(255,255,255,0.1); }

.console-section__inner { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .console-section__inner { padding: 0 1.5rem; } }
@media (min-width: 1024px){ .console-section__inner { padding: 0 2rem; } }

.console-wrap {
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
  border: 4px solid #000;
  max-width: 72rem;
  margin: 0 auto;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .console-wrap { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.console-titlebar {
  background: #f3f4f6;
  border-bottom: 2px solid #000;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .console-titlebar { background: rgba(0,0,0,0.5); border-bottom-color: rgba(255,255,255,0.1); }

.console-titlebar__dots { display: flex; gap: 0.375rem; }
.console-titlebar__dot  { width: 0.75rem; height: 0.75rem; border-radius: 9999px; background: #d1d5db; }
body.dark .console-titlebar__dot { background: rgba(255,255,255,0.2); }
.console-titlebar__sep  { height: 1rem; width: 1px; background: #d1d5db; margin: 0 0.5rem; }
body.dark .console-titlebar__sep{ background: rgba(255,255,255,0.2); }
.console-titlebar__label{ font-size: 0.65rem; font-family: ui-monospace, monospace; color: #9ca3af; }
.console-titlebar__status{ display: flex; align-items: center; gap: 0.5rem; }
.console-titlebar__status-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: #13E200; animation: pulse 2s infinite; }
.console-titlebar__status-text { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #000; transition: color 0.3s; }
body.dark .console-titlebar__status-text { color: #fff; }

.console-body {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .console-body { flex-direction: row; height: 600px; } }

/* Console Sidebar */
.console-sidebar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  overflow-x: auto;
  transition: background-color 0.3s;
}
body.dark .console-sidebar { background: #0E131F; border-color: rgba(255,255,255,0.05); }
@media (min-width: 1024px) {
  .console-sidebar {
    width: 16rem;
    flex-direction: column;
    border-bottom: none;
    border-right: 1px solid #f3f4f6;
    overflow-x: unset;
  }
  body.dark .console-sidebar { border-right-color: rgba(255,255,255,0.05); }
}

.console-sidebar__btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: none;
  border: 2px solid transparent;
  color: #9ca3af;
  transition: all 0.2s;
  white-space: nowrap;
}
@media (min-width: 1024px) { .console-sidebar__btn { padding: 1rem; } }
.console-sidebar__btn:hover { background: #f9fafb; color: #000; }
body.dark .console-sidebar__btn:hover { background: rgba(255,255,255,0.05); color: #fff; }
.console-sidebar__btn.active {
  background: #13E200;
  border-color: #000;
  color: #000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Console Middle */
.console-middle {
  flex: 1;
  padding: 1.5rem;
  border-right: 1px solid #f3f4f6;
  overflow-y: auto;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s;
}
body.dark .console-middle { background: rgba(0,0,0,0.2); border-color: rgba(255,255,255,0.05); }

/* Dialer inside console */
.console-dialer {
  width: 100%;
  max-width: 24rem;
  background: #fff;
  border-radius: 2rem;
  border: 4px solid #000;
  padding: 1.5rem;
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .console-dialer { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.console-dialer__display {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 900;
  height: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
body.dark .console-dialer__display { color: #fff; }
.console-dialer__placeholder { color: #d1d5db; }
body.dark .console-dialer__placeholder { color: #374151; }

.console-dialer__keypad { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2rem; }

.console-dialer__key {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: #f3f4f6;
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  border: 2px solid transparent;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
body.dark .console-dialer__key { background: rgba(255,255,255,0.05); color: #fff; }
.console-dialer__key:hover { background: #e5e7eb; border-color: #000; }
body.dark .console-dialer__key:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.console-dialer__key:active { animation: dial-press 0.15s ease; }

.console-dialer__actions { display: flex; justify-content: center; gap: 1.5rem; }

.console-dialer__call-btn {
  width: 4rem; height: 4rem;
  border-radius: 9999px;
  background: #13E200;
  color: #000;
  border: 2px solid #000;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.console-dialer__call-btn:hover { transform: scale(1.05); }
.console-dialer__call-btn.hangup { background: #ef4444; color: #fff; }

.console-dialer__status {
  text-align: center;
  margin-top: 1rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}
.console-dialer__status.calling  { animation: pulse 2s infinite; }
.console-dialer__status.connected{ color: #13E200; animation: pulse 2s infinite; }

/* Chat inside console */
.console-chat {
  width: 100%;
  max-width: 24rem;
  background: #fff;
  border-radius: 2rem;
  border: 4px solid #000;
  padding: 1.5rem;
  height: 500px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .console-chat { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.console-chat__header {
  border-bottom: 2px solid #f3f4f6;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  transition: border-color 0.3s, color 0.3s;
}
body.dark .console-chat__header { border-color: rgba(255,255,255,0.1); color: #fff; }

.console-chat__msgs { flex: 1; display: flex; flex-direction: column; gap: 1rem; overflow-y: auto; }

.console-chat__msg-in {
  background: #f3f4f6;
  padding: 1rem;
  border-radius: 1rem;
  border-top-left-radius: 0;
  font-size: 0.875rem;
  width: 83%;
  color: #000;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  transition: background-color 0.3s;
}
body.dark .console-chat__msg-in { background: rgba(255,255,255,0.05); color: #fff; border-color: rgba(255,255,255,0.1); }

.console-chat__msg-out {
  background: rgba(19,226,0,0.2);
  border: 2px solid rgba(19,226,0,0.5);
  padding: 1rem;
  border-radius: 1rem;
  border-top-right-radius: 0;
  font-size: 0.875rem;
  width: 83%;
  align-self: flex-end;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}
body.dark .console-chat__msg-out { color: #fff; }

/* Console Right Panel */
.console-right {
  width: 100%;
  padding: 1.5rem;
  background: #fff;
  overflow-y: auto;
  position: relative;
  transition: background-color 0.3s;
}
body.dark .console-right { background: #090D1A; }
@media (min-width: 1024px) { .console-right { width: 24rem; } }

.console-right__live-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  z-index: 10;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
body.dark .console-right__live-badge { background: #fff; color: #000; border-color: #fff; }
.console-right__live-dot { width: 6px; height: 6px; background: #13E200; border-radius: 9999px; }

.console-right__title {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
body.dark .console-right__title { color: #fff; }

.console-right__empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0.5;
}

.console-right__transcription {
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s;
}
body.dark .console-right__transcription { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.1); }

.console-right__data {
  padding: 1rem;
  background: rgba(19,226,0,0.1);
  border: 2px solid rgba(19,226,0,0.3);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.console-right__action-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: #fff;
  border: 2px solid #000;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s;
  margin-bottom: 0.75rem;
}
body.dark .console-right__action-btn { background: #0E131F; border-color: rgba(255,255,255,0.1); }
.console-right__action-btn:hover { border-color: #13E200; }

/* ============================================================
   DEVICE MARKETPLACE
   ============================================================ */
.marketplace-section {
  padding: 5rem 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  transition: background-color 0.3s, border-color 0.3s;
  position: relative;
}
body.dark .marketplace-section { background: #000; border-color: rgba(255,255,255,0.1); }

.marketplace__pre-label {
  display: inline-block;
  background: #000;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 2px solid #000;
  transition: background-color 0.3s, color 0.3s;
}
body.dark .marketplace__pre-label { background: #fff; color: #000; border-color: #fff; }

.marketplace__header-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  border-bottom: 4px solid #13E200;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) { .marketplace__header-row { flex-direction: row; } }

.marketplace__title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-style: italic;
  color: #000;
  transition: color 0.3s;
}
body.dark .marketplace__title { color: #fff; }

.marketplace__see-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  color: #000;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.marketplace__see-all:hover { color: #13E200; }
body.dark .marketplace__see-all { color: #fff; }
body.dark .marketplace__see-all:hover { color: #13E200; }

.marketplace__grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .marketplace__grid { grid-template-columns: repeat(3,1fr); } }

/* Device Card */
.device-card {
  background: #fff;
  border-radius: 1.5rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.device-card:hover { border-color: #13E200; box-shadow: 0 20px 25px rgba(0,0,0,0.1); }
body.dark .device-card { background: #0E131F; border-color: rgba(255,255,255,0.1); }
body.dark .device-card:hover { border-color: #fff; }

.device-card__add-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: #13E200;
  color: #000;
  border: 2px solid #000;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  z-index: 10;
}

.device-card__img-wrap {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #f9fafb;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
body.dark .device-card__img-wrap { background: rgba(0,0,0,0.5); }

.device-card__img { max-height: 100%; object-fit: contain; transition: transform 0.5s; }
.device-card:hover .device-card__img { transform: scale(1.05); }

.device-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  transition: background-color 0.3s, color 0.3s;
}
body.dark .device-card__tag { background: #fff; color: #000; }

.device-card__body { padding: 1.5rem; }

.device-card__brand {
  font-size: 10px;
  font-weight: 900;
  color: #13E200;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.device-card__name {
  font-size: 1.25rem;
  font-weight: 900;
  color: #000;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
body.dark .device-card__name { color: #fff; }

.device-card__prices { margin-bottom: 1.5rem; }
.device-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  transition: border-color 0.3s;
}
body.dark .device-card__price-row { border-color: rgba(255,255,255,0.1); }
.device-card__price-row:last-child { border-bottom: none; }
.device-card__price-label { font-size: 0.65rem; color: #6b7280; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.3s; }
body.dark .device-card__price-label { color: #9ca3af; }
.device-card__price-value { font-size: 0.875rem; font-weight: 900; color: #000; transition: color 0.3s; }
body.dark .device-card__price-value { color: #fff; }
.device-card__price-monthly { font-size: 1.125rem; font-weight: 900; color: #13E200; }
.device-card__price-monthly span { font-size: 10px; color: #9ca3af; transition: color 0.3s; }
body.dark .device-card__price-monthly span { color: #6b7280; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000;
  color: #fff;
  padding: 4rem 0;
  border-top: 1px solid transparent;
  transition: background-color 0.3s;
}
body.dark .site-footer { background: #090D1A; border-top-color: rgba(255,255,255,0.1); }

.site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .site-footer__inner { padding: 0 1.5rem; } }
@media (min-width: 1024px){ .site-footer__inner { padding: 0 2rem; } }

.site-footer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}
@media (min-width: 768px) { .site-footer__row { flex-direction: row; justify-content: space-between; text-align: left; } }

.site-footer__logo img {
  height: 6rem;
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
}

.site-footer__links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.site-footer__link  { font-size: 0.875rem; color: #6b7280; transition: color 0.2s; }
.site-footer__link:hover { color: #fff; }

.site-footer__copy { font-size: 0.65rem; color: #374151; font-family: ui-monospace, monospace; }

/* ============================================================
   DASHBOARD LAYOUT
   ============================================================ */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
  background: #f9fafb;
  color: #000;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.3s, color 0.3s;
}
body.dark .dashboard-layout { background: #000; color: #fff; }

/* Dashboard Sidebar */
.dashboard-sidebar {
  display: none;
  width: 16rem;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
  transition: background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) { .dashboard-sidebar { display: flex; } }
body.dark .dashboard-sidebar { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.dashboard-sidebar__logo {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  transition: border-color 0.3s;
}
body.dark .dashboard-sidebar__logo { border-color: rgba(255,255,255,0.1); }
.dashboard-sidebar__logo img { height: 6rem; width: auto; object-fit: contain; transition: all 0.3s; }
body.dark .dashboard-sidebar__logo img { background: #fff; padding: 6px; border-radius: 8px; }

.dashboard-sidebar__nav { flex: 1; overflow-y: auto; padding: 1.5rem 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

.dashboard-sidebar__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: none;
  border: none;
  color: #6b7280;
  transition: all 0.2s;
  text-align: left;
}
.dashboard-sidebar__btn:hover { background: #f9fafb; color: #000; }
body.dark .dashboard-sidebar__btn { color: #8F9CAE; }
body.dark .dashboard-sidebar__btn:hover { background: rgba(255,255,255,0.05); color: #fff; }
.dashboard-sidebar__btn.active {
  background: rgba(19,226,0,0.1);
  color: #13E200;
  border: 1px solid rgba(19,226,0,0.2);
}
body.dark .dashboard-sidebar__btn.active { color: #FFF200; }

.dashboard-sidebar__btn .icon { width: 1rem; height: 1rem; color: #6b7280; }
.dashboard-sidebar__btn.active .icon { color: #13E200; }
body.dark .dashboard-sidebar__btn.active .icon { color: #FFF200; }

.dashboard-sidebar__footer { padding: 1rem; border-top: 1px solid #e5e7eb; transition: border-color 0.3s; }
body.dark .dashboard-sidebar__footer { border-color: rgba(255,255,255,0.1); }

.dashboard-sidebar__signout {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: none;
  border: none;
  color: #FF3366;
  transition: background-color 0.2s;
}
.dashboard-sidebar__signout:hover { background: rgba(255,51,102,0.1); }

/* Dashboard Main */
.dashboard-main { flex: 1; display: flex; flex-direction: column; height: 100vh; overflow: hidden; position: relative; }

.dashboard-header {
  height: 5rem;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  flex-shrink: 0;
  z-index: 20;
  transition: background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) { .dashboard-header { padding: 0 2rem; } }
body.dark .dashboard-header { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.dashboard-header__mobile { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .dashboard-header__mobile { display: none; } }

.dashboard-header__title {
  font-size: 1.125rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
@media (min-width: 768px) { .dashboard-header__title { font-size: 1.5rem; } }
body.dark .dashboard-header__title { color: #FFF200; filter: drop-shadow(0 0 8px rgba(255,242,0,0.5)); }

.dashboard-header__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(19,226,0,0.1);
  border: 1px solid rgba(19,226,0,0.2);
}
.dashboard-header__status-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: #13E200; animation: pulse 2s infinite; }
.dashboard-header__status-text { font-size: 10px; font-weight: 900; color: #13E200; text-transform: uppercase; letter-spacing: 0.1em; display: none; }
@media (min-width: 640px) { .dashboard-header__status-text { display: inline; } }

/* Dashboard Mobile Nav */
.dashboard-mobile-nav {
  display: none;
  position: absolute;
  top: 5rem; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  z-index: 10;
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
}
.dashboard-mobile-nav.open { display: block; }
body.dark .dashboard-mobile-nav { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.dashboard-mobile-nav__inner { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

/* Dashboard Content */
.dashboard-content { flex: 1; overflow-y: auto; padding: 1rem; }
@media (min-width: 768px) { .dashboard-content { padding: 2rem; } }

/* Dashboard Panels */
.dashboard-panel { display: none; }
.dashboard-panel.active { display: block; animation: fadeInUp 0.3s ease; }

/* KYC Verification Gate */
.kyc-gate { max-width: 48rem; margin: 0 auto; }
.kyc-gate__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .kyc-gate__card { background: #0E131F; border-color: rgba(255,255,255,0.1); }

/* Dialer FAB */
.dialer-fab {
  position: fixed;
  bottom: 1rem; right: 1rem;
  z-index: 110;
  width: 3.5rem; height: 3.5rem;
  background: #13E200;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(19,226,0,0.4);
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
@media (min-width: 768px) { .dialer-fab { width: 4rem; height: 4rem; bottom: 1.5rem; right: 1.5rem; } }
.dialer-fab:hover { transform: scale(1.1); }
.dialer-fab.hidden { display: none; }

/* ============================================================
   PHONE DIALER WIDGET
   ============================================================ */
.phone-dialer-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .phone-dialer-overlay {
    inset: auto;
    bottom: 1.5rem;
    right: 1.5rem;
    display: block;
  }
}
.phone-dialer-overlay.open { display: block; pointer-events: all; }

.phone-dialer {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  pointer-events: none;
}
@media (min-width: 768px) {
  .phone-dialer {
    width: 300px;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  }
}
.phone-dialer-overlay.open .phone-dialer {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.phone-dialer__header {
  background: #13E200;
  padding: 3rem 1rem 1.25rem;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 768px) { .phone-dialer__header { padding-top: 0.75rem; } }

.phone-dialer__header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }

.phone-dialer__back-btn {
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  margin-left: -0.5rem;
}
@media (min-width: 768px) { .phone-dialer__back-btn { display: none; } }
.phone-dialer__back-btn:hover { background: rgba(0,0,0,0.1); }

.phone-dialer__minimize {
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
}
.phone-dialer__minimize:hover { background: rgba(0,0,0,0.1); }

.phone-dialer__input-wrap {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
}
.phone-dialer__input {
  width: 100%;
  background: transparent;
  color: #000;
  font-size: 0.875rem;
  font-weight: 500;
  outline: none;
  border: none;
}
.phone-dialer__input::placeholder { color: rgba(0,0,0,0.5); }

.phone-dialer__clock-btn {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  width: 2rem; height: 2rem;
  background: #fff;
  border-radius: 9999px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  cursor: pointer;
  transition: background-color 0.2s;
}
.phone-dialer__clock-btn:hover { background: #f9fafb; }

.phone-dialer__body { padding: 2rem 1.5rem 2rem; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; }

.phone-dialer__caller-id { font-size: 0.65rem; color: #6b7280; margin-bottom: 2rem; width: 100%; text-align: center; }
.phone-dialer__caller-id span { color: #000; font-weight: 500; margin-left: 0.25rem; }

.phone-dialer__keypad { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem 2rem; width: 100%; max-width: 280px; margin-bottom: 2.5rem; }

.phone-dialer__key {
  width: 4rem; height: 4rem;
  border-radius: 9999px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: background-color 0.2s;
}
.phone-dialer__key:hover { background: #f3f4f6; }
.phone-dialer__key:active { background: #e5e7eb; }
.phone-dialer__key-digit { font-size: 1.875rem; font-weight: 300; color: #000; line-height: 1; margin-bottom: 0.125rem; }
.phone-dialer__key-letters { font-size: 9px; color: #9ca3af; font-weight: 500; letter-spacing: 0.1em; line-height: 1; }

.phone-dialer__actions { position: relative; width: 100%; display: flex; justify-content: center; margin-top: auto; }

.phone-dialer__call-btn {
  width: 4rem; height: 4rem;
  border-radius: 9999px;
  background: #34a853;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s, background-color 0.2s;
}
.phone-dialer__call-btn:hover { background: #16a34a; }
.phone-dialer__call-btn:active { transform: scale(0.95); }

.phone-dialer__delete-btn {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 0.5rem;
  transition: color 0.2s;
  display: none;
}
.phone-dialer__delete-btn:hover { color: #6b7280; }
.phone-dialer__delete-btn.visible { display: block; }

/* ============================================================
   MODAL BASE
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
@media (min-width: 640px) { .modal-overlay { padding: 1.5rem; } }
.modal-overlay.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 42rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  animation: scaleIn 0.25s ease;
  transition: background-color 0.3s;
}
body.dark .modal-box { background: #0E131F; border-color: rgba(255,255,255,0.1); }
.modal-box.wide { max-width: 36rem; }

.modal-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: #f9fafb;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .modal-header { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.1); }

.modal-header__info { display: flex; align-items: center; gap: 0.75rem; }

.modal-header__title {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #000;
  transition: color 0.3s;
}
body.dark .modal-header__title { color: #fff; }

.modal-close {
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.modal-close:hover { color: #000; }
body.dark .modal-close:hover { color: #fff; }

.modal-body { padding: 1.5rem; overflow-y: auto; flex: 1; }
@media (min-width: 640px) { .modal-body { padding: 2rem; } }

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3rem;
}
.stepper__track-bg {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: #f3f4f6;
  border-radius: 9999px;
  z-index: -1;
}
body.dark .stepper__track-bg { background: rgba(255,255,255,0.05); }

.stepper__track-fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: #13E200;
  border-radius: 9999px;
  z-index: -1;
  transition: width 0.5s ease;
}
.stepper__track-fill.blue { background: #3b82f6; }

.stepper__step {
  width: 2rem; height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #9ca3af;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
body.dark .stepper__step { background: #000; border-color: rgba(255,255,255,0.1); }
.stepper__step.completed { background: #13E200; border-color: #13E200; color: #000; }
.stepper__step.completed.blue { background: #3b82f6; border-color: #3b82f6; color: #fff; }
.stepper__step.current { background: #000; border-color: #13E200; color: #13E200; }
body.dark .stepper__step.current { background: #0E131F; }
.stepper__step.current.blue { border-color: #3b82f6; color: #3b82f6; }

/* Form fields */
.form-group { display: flex; flex-direction: column; gap: 0.25rem; }
.form-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #6b7280; }
.form-input {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #000;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: #13E200; }
body.dark .form-input { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.1); color: #fff; }

.form-input.pl-icon { padding-left: 2.75rem; }

.form-input-wrap { position: relative; }
.form-input-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 1.25rem; height: 1.25rem; color: #9ca3af; pointer-events: none; }

.form-grid-2 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-span-2 { }
@media (min-width: 640px) { .form-span-2 { grid-column: span 2; } }

/* Upload zone */
.upload-zone {
  border: 2px dashed #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.2s;
}
.upload-zone:hover { background: #f3f4f6; border-color: #13E200; }
body.dark .upload-zone { background: rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.1); }
body.dark .upload-zone:hover { background: rgba(0,0,0,0.5); border-color: rgba(19,226,0,0.3); }

/* Selfie circle */
.selfie-circle {
  width: 16rem; height: 16rem;
  margin: 0 auto;
  background: #f3f4f6;
  border-radius: 9999px;
  border: 4px dashed #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .selfie-circle { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }

.selfie-circle__scan {
  position: absolute;
  inset: 0;
  background: rgba(19,226,0,0.2);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.selfie-circle__scan.active { display: flex; }
.selfie-circle__scan-line {
  width: 100%;
  height: 4px;
  background: #13E200;
  position: absolute;
  top: 0;
  animation: scan 2s ease-in-out infinite;
}

/* Timeline */
.timeline { position: relative; border-left: 2px solid #e5e7eb; margin-left: 1rem; padding-bottom: 2rem; }
body.dark .timeline { border-color: rgba(255,255,255,0.1); }
.timeline__item { position: relative; padding-left: 2rem; margin-bottom: 2rem; }
.timeline__dot {
  position: absolute;
  left: -9px;
  top: 4px;
  width: 1rem; height: 1rem;
  border-radius: 9999px;
  border: 2px solid #d1d5db;
  background: #fff;
  transition: background-color 0.3s;
}
body.dark .timeline__dot { background: #0E131F; border-color: #4b5563; }
.timeline__dot.done { background: #13E200; border-color: #13E200; }
.timeline__dot.processing { border-color: #FFF200; animation: pulse 2s infinite; }
.timeline__label { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.timeline__label.done { color: #000; }
body.dark .timeline__label.done { color: #fff; }
.timeline__label.processing { color: #FFF200; }
.timeline__label.pending { color: #9ca3af; }
.timeline__note { font-size: 0.65rem; color: #6b7280; margin-top: 0.25rem; }

/* Success state */
.success-circle {
  width: 6rem; height: 6rem;
  background: rgba(19,226,0,0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
}
.success-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19,226,0,0.2);
  border-radius: 9999px;
  animation: ping 1s infinite;
}

.success-circle.yellow { background: rgba(255,242,0,0.2); }
.success-circle.yellow::before { background: rgba(255,242,0,0.2); }
.success-circle.blue { background: rgba(59,130,246,0.2); }
.success-circle.blue::before { background: rgba(59,130,246,0.2); }

/* Unlock features list */
.unlock-list {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
body.dark .unlock-list { background: rgba(255,255,255,0.05); }
.unlock-list__title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #6b7280; margin-bottom: 1rem; }
body.dark .unlock-list__title { color: #9ca3af; }
.unlock-list__item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; color: #000; margin-bottom: 0.75rem; }
body.dark .unlock-list__item { color: #fff; }

/* ============================================================
   DASHBOARD PANELS DETAIL STYLES
   ============================================================ */

/* SIM Management */
.sim-quick-actions { display: grid; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .sim-quick-actions { grid-template-columns: 1fr 1fr; } }

.sim-action-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  transition: border-color 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.sim-action-card:hover { border-color: #13E200; }
body.dark .sim-action-card { background: #0E131F; border-color: rgba(255,255,255,0.1); }
body.dark .sim-action-card:hover { border-color: #13E200; }

.sim-action-card__icon-wrap {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.sim-action-card__icon-wrap.green { background: rgba(19,226,0,0.1); }
.sim-action-card__icon-wrap.blue  { background: rgba(59,130,246,0.1); }
.sim-action-card:hover .sim-action-card__icon-wrap.green { background: #13E200; }
.sim-action-card:hover .sim-action-card__icon-wrap.blue  { background: #3b82f6; }
.sim-action-card__icon { width: 1.5rem; height: 1.5rem; transition: color 0.2s; }
.sim-action-card__icon.green { color: #13E200; }
.sim-action-card__icon.blue  { color: #3b82f6; }
.sim-action-card:hover .sim-action-card__icon.green { color: #000; }
.sim-action-card:hover .sim-action-card__icon.blue  { color: #fff; }

.sim-lines-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .sim-lines-grid { grid-template-columns: 1fr 1fr; } }

.sim-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .sim-card { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.sim-card__status-badge {
  position: absolute;
  top: 0; right: 0;
  padding: 1rem;
}
.sim-card__badge {
  background: rgba(19,226,0,0.1);
  color: #13E200;
  border: 1px solid rgba(19,226,0,0.2);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.sim-card__info { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.sim-card__icon-box {
  width: 3rem; height: 3rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .sim-card__icon-box { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.05); }

.sim-card__number { font-size: 1.125rem; font-weight: 900; color: #000; letter-spacing: 0.025em; transition: color 0.3s; }
body.dark .sim-card__number { color: #fff; }
.sim-card__type { font-size: 10px; color: #6b7280; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.3s; }
body.dark .sim-card__type { color: #8F9CAE; }

.sim-card__data-row { display: flex; justify-content: space-between; font-size: 0.65rem; font-weight: 500; margin-bottom: 0.75rem; }
.sim-card__data-label { color: #6b7280; }
body.dark .sim-card__data-label { color: #8F9CAE; }
.sim-card__data-value { color: #000; font-family: ui-monospace, monospace; }
body.dark .sim-card__data-value { color: #fff; }

.sim-card__progress { height: 0.375rem; width: 100%; background: #f3f4f6; border-radius: 9999px; overflow: hidden; }
body.dark .sim-card__progress { background: rgba(255,255,255,0.1); }
.sim-card__progress-fill { height: 100%; background: #13E200; }

.sim-card__actions { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.sim-card__action-btn {
  flex: 1;
  padding: 0.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.sim-card__action-btn:hover { background: #f3f4f6; }
body.dark .sim-card__action-btn { background: rgba(255,255,255,0.05); color: #fff; }
body.dark .sim-card__action-btn:hover { background: rgba(255,255,255,0.1); }

/* Call Log Cards */
.call-log-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: border-color 0.2s, background-color 0.3s;
}
.call-log-card:hover { border-color: #13E200; }
@media (min-width: 640px) { .call-log-card { flex-direction: row; align-items: center; justify-content: space-between; } }
body.dark .call-log-card { background: #0E131F; border-color: rgba(255,255,255,0.1); }
body.dark .call-log-card:hover { border-color: #13E200; }

.call-log-card__left { display: flex; align-items: center; gap: 1rem; }

.call-log-card__type-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.call-log-card__type-icon.inbound  { background: rgba(59,130,246,0.1); color: #3b82f6; }
.call-log-card__type-icon.outbound { background: rgba(34,197,94,0.1);  color: #22c55e; }
.call-log-card__type-icon.missed   { background: rgba(239,68,68,0.1);  color: #ef4444; }

.call-log-card__name { font-size: 0.875rem; font-weight: 900; color: #000; text-transform: uppercase; letter-spacing: 0.025em; transition: color 0.3s; }
body.dark .call-log-card__name { color: #fff; }
.call-log-card__number { font-size: 0.65rem; font-family: ui-monospace, monospace; color: #6b7280; margin-top: 0.25rem; transition: color 0.3s; }
body.dark .call-log-card__number { color: #8F9CAE; }

.call-log-card__right { display: flex; align-items: center; justify-content: space-between; gap: 3rem; width: 100%; }
@media (min-width: 640px) { .call-log-card__right { justify-content: flex-end; width: auto; } }

.call-log-card__time { font-size: 0.65rem; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.3s; }
body.dark .call-log-card__time { color: #fff; }
.call-log-card__dur  { font-size: 10px; font-family: ui-monospace, monospace; color: #6b7280; margin-top: 0.25rem; transition: color 0.3s; }
body.dark .call-log-card__dur { color: #8F9CAE; }

.call-log-card__ai-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s;
}
.call-log-card__ai-btn:hover { background: rgba(19,226,0,0.1); border-color: rgba(19,226,0,0.3); color: #13E200; }
body.dark .call-log-card__ai-btn { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: #d1d5db; }

/* Empty module placeholder */
.module-placeholder {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2rem;
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .module-placeholder { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.module-placeholder__inner { text-align: center; }
.module-placeholder__icon-box {
  width: 4rem; height: 4rem;
  background: rgba(19,226,0,0.1);
  border: 1px solid rgba(19,226,0,0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Settings Panel */
.settings-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .settings-toggle-row { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.05); }

.toggle-btn {
  width: 3.5rem; height: 2rem;
  border-radius: 9999px;
  padding: 0.25rem;
  cursor: pointer;
  background: #d1d5db;
  border: none;
  transition: background-color 0.3s;
  position: relative;
}
.toggle-btn.on { background: #13E200; }

.toggle-btn__thumb {
  width: 1.5rem; height: 1.5rem;
  background: #fff;
  border-radius: 9999px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transform: translateX(0);
  transition: transform 0.3s;
}
.toggle-btn.on .toggle-btn__thumb { transform: translateX(1.5rem); }

/* ============================================================
   SIGNUP PAGE
   ============================================================ */
.signup-page {
  min-height: 100vh;
  background: #f9fafb;
  color: #000;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s, color 0.3s;
}
body.dark .signup-page { background: #000; color: #fff; }

.signup-header {
  height: 7rem;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  flex-shrink: 0;
  z-index: 20;
  transition: background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) { .signup-header { padding: 0 2rem; } }
body.dark .signup-header { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.signup-header__logo img { height: 6rem; width: auto; object-fit: contain; transition: all 0.3s; }
body.dark .signup-header__logo img { background: #fff; padding: 8px; border-radius: 12px; }

.signup-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 1rem; }

.signup-step { display: none; width: 100%; }
.signup-step.active { display: block; animation: fadeInUp 0.3s ease; }

.signup-card {
  max-width: 28rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border: 1px solid #e5e7eb;
  padding: 2rem;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .signup-card { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.signup-divider {
  position: relative;
  margin: 2rem 0;
}
.signup-divider::before { content: ''; display: block; position: absolute; inset-y: 0; left: 0; right: 0; top: 50%; height: 1px; background: #e5e7eb; }
body.dark .signup-divider::before { background: rgba(255,255,255,0.1); }
.signup-divider__label {
  display: inline-block;
  position: relative;
  background: #fff;
  padding: 0 1rem;
  font-size: 0.65rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
body.dark .signup-divider__label { background: #0E131F; }

.signup-social-btn {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #000;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background-color 0.2s;
}
.signup-social-btn:hover { background: #f3f4f6; }
body.dark .signup-social-btn { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.1); color: #fff; }
body.dark .signup-social-btn:hover { background: rgba(255,255,255,0.05); }

/* Plan selection step */
.signup-plans-step { max-width: 72rem; margin: 0 auto; }

.consumer-plans-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .consumer-plans-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px){ .consumer-plans-grid { grid-template-columns: repeat(4,1fr); } }

.plan-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
  cursor: pointer;
}
.plan-card:hover { border-color: #13E200; }
body.dark .plan-card { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.plan-card__icon-wrap {
  width: 3rem; height: 3rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background-color 0.2s;
}
.plan-card:hover .plan-card__icon-wrap { background: rgba(19,226,0,0.1); }
body.dark .plan-card__icon-wrap { background: rgba(0,0,0,0.5); }

.plan-card__icon { width: 1.5rem; height: 1.5rem; color: #000; transition: color 0.2s; }
body.dark .plan-card__icon { color: #fff; }
.plan-card:hover .plan-card__icon { color: #13E200; }

.plan-card__name { font-size: 1.125rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.025em; margin-bottom: 0.25rem; color: #000; }
body.dark .plan-card__name { color: #fff; }
.plan-card__desc { font-size: 0.65rem; color: #6b7280; font-weight: 500; margin-bottom: 1.5rem; transition: color 0.3s; }
body.dark .plan-card__desc { color: #9ca3af; }
.plan-card__features { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.plan-card__feature { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: #000; }
body.dark .plan-card__feature { color: #fff; }

.plan-card__cta {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.65rem;
}
.plan-card__cta:hover { background: #000; color: #fff; }
body.dark .plan-card__cta { border-color: #fff; color: #fff; }
body.dark .plan-card__cta:hover { background: #fff; color: #000; }

/* Business Plan Banner */
.business-plan-banner {
  background: linear-gradient(135deg, #000 0%, #0E131F 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
@media (min-width: 768px) { .business-plan-banner { padding: 3rem; } }

.business-plan-banner__glow {
  position: absolute;
  top: 0; right: 0;
  width: 24rem; height: 24rem;
  background: rgba(255,242,0,0.1);
  filter: blur(100px);
  border-radius: 9999px;
}

.business-plan-banner__inner { position: relative; z-index: 10; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .business-plan-banner__inner { grid-template-columns: 1fr 1fr; } }

.business-plan-banner__features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.business-plan-banner__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   BUSINESS PAGE
   ============================================================ */
.business-hero {
  padding: 6rem 1rem;
  background: #13E200;
  text-align: center;
  border-bottom: 8px solid #000;
  transition: background-color 0.3s;
}
body.dark .business-hero { background: #090D1A; border-bottom-color: rgba(255,255,255,0.1); }

.business-hero__inner { max-width: 56rem; margin: 0 auto; }

.business-hero__title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  transition: color 0.3s;
}
body.dark .business-hero__title { color: #fff; }
@media (min-width: 768px) { .business-hero__title { font-size: 4.5rem; } }

.business-hero__highlight {
  background: #000;
  color: #fff;
  padding: 0.25rem 1rem;
  display: inline-block;
  margin-top: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}
body.dark .business-hero__highlight { background: #13E200; color: #000; }

.business-hero__desc {
  font-size: 1.25rem;
  color: rgba(0,0,0,0.8);
  font-weight: 700;
  margin-bottom: 2.5rem;
  transition: color 0.3s;
}
body.dark .business-hero__desc { color: #d1d5db; }
@media (min-width: 768px) { .business-hero__desc { font-size: 1.5rem; } }

.business-hero__btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.business-about { padding: 5rem 1rem; max-width: 64rem; margin: 0 auto; text-align: center; }
@media (min-width: 640px) { .business-about { padding: 5rem 1.5rem; } }
@media (min-width: 1024px){ .business-about { padding: 5rem 2rem; } }

.business-about__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
body.dark .business-about__title { color: #fff; }

.business-divider { width: 100%; height: 1px; background: #e5e7eb; max-width: 80rem; margin: 0 auto; }
body.dark .business-divider { background: rgba(255,255,255,0.1); }

.business-alternating { padding: 5rem 1rem; max-width: 80rem; margin: 0 auto; display: flex; flex-direction: column; gap: 8rem; }
@media (min-width: 640px) { .business-alternating { padding: 5rem 1.5rem; } }
@media (min-width: 1024px){ .business-alternating { padding: 5rem 2rem; } }

.business-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) { .business-row { flex-direction: row; } }
.business-row.reverse { }
@media (min-width: 768px) { .business-row.reverse { flex-direction: row-reverse; } }

.business-row__content { flex: 1; }
.business-row__image  { flex: 1; width: 100%; }
.business-row__image img {
  border-radius: 2rem;
  border: 4px solid #000;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: border-color 0.3s;
}
body.dark .business-row__image img { border-color: rgba(255,255,255,0.1); }

.business-row__icon-wrap {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid transparent;
}
.business-row__icon-wrap.red    { background: #fee2e2; border-color: rgba(239,68,68,0.2); }
.business-row__icon-wrap.orange { background: #ffedd5; border-color: rgba(249,115,22,0.2); }
.business-row__icon-wrap.blue   { background: #dbeafe; border-color: rgba(59,130,246,0.2); }
body.dark .business-row__icon-wrap.red    { background: rgba(239,68,68,0.1); }
body.dark .business-row__icon-wrap.orange { background: rgba(249,115,22,0.1); }
body.dark .business-row__icon-wrap.blue   { background: rgba(59,130,246,0.1); }

.business-row__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
body.dark .business-row__title { color: #fff; }

.business-row__solution {
  padding: 1.5rem;
  background: rgba(19,226,0,0.1);
  border-left: 4px solid #13E200;
  border-radius: 0 1rem 1rem 0;
}
.business-row__solution-title {
  font-size: 0.75rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
body.dark .business-row__solution-title { color: #fff; }

.business-cta {
  padding: 6rem 1rem;
  background: #000;
  text-align: center;
  border-top: 8px solid #13E200;
  transition: background-color 0.3s;
}
body.dark .business-cta { background: #0E131F; }
.business-cta__inner { max-width: 48rem; margin: 0 auto; }

/* ============================================================
   COVERAGE PAGE
   ============================================================ */
.coverage-hero {
  padding: 5rem 1rem;
  text-align: center;
  background: #13E200;
  transition: background-color 0.3s;
}
body.dark .coverage-hero { background: #090D1A; }

.coverage-hero__title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
body.dark .coverage-hero__title { color: #fff; }

.coverage-hero__desc {
  font-size: 1.25rem;
  color: rgba(0,0,0,0.8);
  font-weight: 700;
  max-width: 42rem;
  margin: 0 auto;
  transition: color 0.3s;
}
body.dark .coverage-hero__desc { color: #d1d5db; }

.coverage-content {
  padding: 5rem 1rem;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 640px) { .coverage-content { padding: 5rem 1.5rem; } }
@media (min-width: 1024px){ .coverage-content { padding: 5rem 2rem; } }

.coverage-icon-wrap {
  width: 6rem; height: 6rem;
  background: rgba(19,226,0,0.1);
  border-radius: 9999px;
  border: 2px solid rgba(19,226,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.coverage-zip-box {
  background: #f9fafb;
  border-radius: 1.5rem;
  border: 2px solid #e5e7eb;
  padding: 2rem;
  transition: background-color 0.3s, border-color 0.3s;
}
body.dark .coverage-zip-box { background: #0E131F; border-color: rgba(255,255,255,0.1); }

.coverage-zip-input-wrap { position: relative; max-width: 28rem; margin: 0 auto; }
.coverage-zip-input {
  width: 100%;
  background: #fff;
  border: 2px solid #000;
  border-radius: 9999px;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  outline: none;
  transition: box-shadow 0.3s;
}
.coverage-zip-input:focus { box-shadow: 0 0 0 4px rgba(19,226,0,0.2); }
body.dark .coverage-zip-input { background: #000; border-color: rgba(255,255,255,0.2); color: #fff; }

.coverage-zip-btn {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem; bottom: 0.5rem;
  background: #13E200;
  color: #000;
  padding: 0 1.5rem;
  border-radius: 9999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.coverage-zip-btn:hover { background: #008A00; color: #fff; }

/* ============================================================
   PAGE HERO BANNER (shop / plans)
   ============================================================ */
.page-hero-banner {
  padding: 5rem 1rem;
  text-align: center;
  background: #13E200;
  transition: background-color 0.3s;
}
body.dark .page-hero-banner { background: #090D1A; }

.page-hero-banner__title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #000;
  text-transform: uppercase;
  transition: color 0.3s;
}
body.dark .page-hero-banner__title { color: #fff; }

/* ============================================================
   PORTING MODAL SPECIFIC
   ============================================================ */
.port-review-box {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}
body.dark .port-review-box { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }

.port-review-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}
.port-review-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
body.dark .port-review-row { border-color: rgba(255,255,255,0.1); }

.port-review-row__label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #6b7280; }
.port-review-row__value { font-size: 0.875rem; font-weight: 700; color: #000; font-family: ui-monospace, monospace; }
body.dark .port-review-row__value { color: #fff; }

.port-info-box {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

/* What happens next list */
.next-steps { display: flex; flex-direction: column; gap: 0.75rem; }
.next-step { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; color: #000; }
body.dark .next-step { color: #fff; }
.next-step__num {
  width: 1.5rem; height: 1.5rem;
  border-radius: 9999px;
  background: rgba(59,130,246,0.2);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE BREAKPOINT UTILITIES
   ============================================================ */
@media (min-width: 640px) {
  .sm\:flex  { display: flex; }
  .sm\:grid  { display: grid; }
  .sm\:hidden{ display: none; }
  .sm\:block { display: block; }
  .sm\:inline{ display: inline; }
  .sm\:flex-row  { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .sm\:col-span-2  { grid-column: span 2 / span 2; }
  .sm\:items-center{ align-items: center; }
  .sm\:justify-end { justify-content: flex-end; }
  .sm\:px-6  { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:text-xl  { font-size: 1.25rem;  line-height: 1.75rem; }
  .sm\:text-5xl { font-size: 3rem;     line-height: 1; }
  .sm\:text-sm  { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-xs  { font-size: 0.75rem;  line-height: 1rem; }
  .sm\:w-auto { width: auto; }
  .sm\:p-6    { padding: 1.5rem; }
  .sm\:p-8    { padding: 2rem; }
  .sm\:px-6   { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:inline { display: inline; }
}

@media (min-width: 768px) {
  .md\:flex    { display: flex; }
  .md\:grid    { display: grid; }
  .md\:block   { display: block; }
  .md\:hidden  { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:px-8    { padding-left: 2rem; padding-right: 2rem; }
  .md\:p-12    { padding: 3rem; }
  .md\:text-2xl{ font-size: 1.5rem;  line-height: 2rem; }
  .md\:text-7xl{ font-size: 4.5rem;  line-height: 1; }
  .md\:text-5xl{ font-size: 3rem;    line-height: 1; }
  .md\:text-4xl{ font-size: 2.25rem; line-height: 2.5rem; }
  .md\:gap-12  { gap: 3rem; }
  .md\:items-end{ align-items: flex-end; }
  .md\:justify-start{ justify-content: flex-start; }
  .md\:w-auto  { width: auto; }
}

@media (min-width: 1024px) {
  .lg\:block  { display: block; }
  .lg\:flex   { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .lg\:px-8   { padding-left: 2rem; padding-right: 2rem; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:w-96   { width: 24rem; }
  .lg\:h-\[600px\] { height: 600px; }
  .lg\:border-r { border-right: 1px solid; }
  .lg\:border-b-0 { border-bottom: none; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .lg\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
}

/* ============================================================
   MISC HELPER UTILITIES
   ============================================================ */
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgba(0,0,0,0.3)); }
.blur-80        { filter: blur(80px); }
.blur-100       { filter: blur(100px); }

.min-h-\[40px\] { min-height: 40px; }
.min-w-\[300px\] { min-width: 300px; }

.h-\[68px\]    { height: 68px; }
.h-\[600px\]   { height: 600px; }
.h-\[500px\]   { height: 500px; }

.w-\[40\%\]    { width: 40%; }
.w-\[42\%\]    { width: 42%; }
.w-5\/6        { width: 83.333%; }
.w-1\/3        { width: 33.333%; }
.w-2\/3        { width: 66.667%; }

.max-h-full    { max-height: 100%; }
.h-auto        { height: auto; }
.w-auto        { width: auto; }
.w-fit         { width: fit-content; }

.flex-none     { flex: none; }
.shrink        { flex-shrink: 1; }
.grow          { flex-grow: 1; }

.pt-\[133px\]  { padding-top: 133px; }

.z-\[60\]  { z-index: 60; }
.z-\[100\] { z-index: 100; }
.z-\[110\] { z-index: 110; }
.z-\[200\] { z-index: 200; }

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.select-none { user-select: none; }

.appearance-none { appearance: none; -webkit-appearance: none; }

.origin-bottom-right { transform-origin: bottom right; }

.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* Focus ring */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px rgba(19,226,0,0.2); }
.focus\:border-green:focus { border-color: #13E200; }
.focus\:border-blue:focus  { border-color: #3b82f6; }

/* Gradient overlays */
.gradient-to-t { background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.gradient-black-card { background: linear-gradient(135deg, #000 0%, #0E131F 100%); }

/* Fill current for SVG icons */
.fill-current { fill: currentColor; }

/* Hover states for groups */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group-hover\:opacity-100 { opacity: 0; }
.group:hover .group-hover\:text-green { color: #13E200; }
.group:hover .group-hover\:bg-green   { background: #13E200; }
.group:hover .group-hover\:bg-blue    { background: #3b82f6; }
.group:hover .group-hover\:text-black { color: #000; }
.group:hover .group-hover\:text-white { color: #fff; }

/* Animate-in helper used in console right panel */
.animate-in { animation: fadeInUp 0.5s ease forwards; }

/* Line-clamp */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
