/* ============================================================
   Nectar.Pay Warning — standalone stylesheet
   Self-hosted replacement for the compiled Tailwind bundle that
   was previously served from nectarpaywarning.lovable.app.
   Covers every class actually used in index.html.
   ============================================================ */

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPQ.ttf) format('truetype');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPQ.ttf) format('truetype');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPQ.ttf) format('truetype');
}

:root {
  --primary: #f4a261;
  --primary-foreground: #111111;
  --danger: #e76f51;
  --background: #0a0a0a;
  --foreground: #f5f5f5;
  --card: #1a1a1a;
  --border: #333333;
  --muted-foreground: #9a9a9a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3 { font-family: "Space Grotesk", system-ui, sans-serif; font-weight: 700; margin: 0; }

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

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

ul { list-style: none; margin: 0; padding: 0; }

/* ---------- layout / display ---------- */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-shrink-0 { flex-shrink: 0; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
[class~="inset-[6px]"] { top: 6px; right: 6px; bottom: 6px; left: 6px; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.w-8 { width: 32px; }
.h-8 { height: 32px; }
[class~="w-[calc(100%-12px)]"] { width: calc(100% - 12px); }
[class~="h-[calc(100%-12px)]"] { height: calc(100% - 12px); }
.opacity-60 { opacity: 0.6; }

/* ---------- max-widths / containers ---------- */
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-sm { max-width: 24rem; }

/* ---------- grid ---------- */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
[class~="lg:grid-cols-[1.1fr_1fr]"],
[class~="lg:grid-cols-[1.4fr_1fr]"],
.lg\:grid-cols-2 { grid-template-columns: 1fr; }

/* ---------- gap ---------- */
.gap-0 { gap: 0; }
.gap-2 { gap: 0.5rem; }
[class~="gap-2.5"] { gap: 0.625rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* ---------- spacing: margin-top ---------- */
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* ---------- spacing: padding ---------- */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
[class~="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-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pt-10 { padding-top: 2.5rem; }

/* ---------- borders ---------- */
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-dashed { border-style: dashed; }
.border-border { border-color: var(--border); }
[class~="border-border/60"] { border-color: rgba(51, 51, 51, 0.6); }
[class~="border-primary/40"] { border-color: rgba(244, 162, 97, 0.4); }
[class~="border-[color:var(--danger)]/40"] { border-color: rgba(231, 111, 81, 0.4); }
[class~="border-[color:var(--danger)]/30"] { border-color: rgba(231, 111, 81, 0.3); }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ---------- backgrounds ---------- */
.bg-primary { background: var(--primary); }
[class~="bg-primary/5"] { background: rgba(244, 162, 97, 0.05); }
[class~="bg-card/40"] { background: rgba(26, 26, 26, 0.4); }
[class~="bg-background/40"] { background: rgba(10, 10, 10, 0.4); }
[class~="bg-[color:var(--danger)]/5"] { background: rgba(231, 111, 81, 0.05); }
[class~="bg-[color:var(--danger)]/10"] { background: rgba(231, 111, 81, 0.1); }

/* ---------- text color ---------- */
.text-foreground { color: var(--foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
[class~="text-[color:var(--danger)]"] { color: var(--danger); }

/* ---------- typography ---------- */
.font-display { font-family: "Space Grotesk", system-ui, sans-serif; }
.font-mono { font-family: "JetBrains Mono", ui-monospace, monospace; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-widest { letter-spacing: 0.15em; }
.leading-relaxed { line-height: 1.7; }
[class~="leading-[1.05]"] { line-height: 1.05; }

.text-xs { font-size: 0.75rem; line-height: 1.2rem; }
.text-sm { font-size: 0.875rem; line-height: 1.4rem; }
.text-lg { font-size: 1.125rem; line-height: 1.7rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
[class~="text-[11px]"] { font-size: 11px; }

/* ---------- sizes (dot badges) ---------- */
[class~="size-1.5"] { width: 0.375rem; height: 0.375rem; }

/* ---------- effects ---------- */
.transition { transition: all 0.15s ease; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:text-primary:hover { color: var(--primary); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* ---------- responsive: >= 640px (sm) ---------- */
@media (min-width: 640px) {
  [class~="sm:block"] { display: block; }
  [class~="sm:flex-row"] { flex-direction: row; }
  [class~="sm:p-10"] { padding: 2.5rem; }
  [class~="sm:text-5xl"] { font-size: 3rem; line-height: 1.1; }
  [class~="sm:text-6xl"] { font-size: 3.75rem; line-height: 1.1; }
}

/* ---------- responsive: >= 1024px (lg) ---------- */
@media (min-width: 1024px) {
  [class~="lg:border-l"] { border-left: 1px solid var(--border); }
  [class~="lg:border-t-0"] { border-top: 0; }
  [class~="lg:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  [class~="lg:grid-cols-[1.1fr_1fr]"] { grid-template-columns: 1.1fr 1fr; }
  [class~="lg:grid-cols-[1.4fr_1fr]"] { grid-template-columns: 1.4fr 1fr; }
  [class~="lg:pb-28"] { padding-bottom: 7rem; }
  [class~="lg:pt-20"] { padding-top: 5rem; }
  [class~="lg:text-7xl"] { font-size: 4.5rem; line-height: 1.05; }
}

/* ---------- small helper classes kept from original stub ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.bg-primary.link-button { color: var(--primary-foreground); }
