/* ============================================================
   FlightMoneyBack.eu - design system
   Inspiratie: GasenLichtCheck (mesh-gradients, soft cards, pill buttons)
   Thema: aviation navy + sky blue + sunset accent
   ============================================================ */

:root {
  /* Primair: aviation navy */
  --ink-900: #0a2540;
  --ink-800: #102a47;
  --ink-700: #1e3a5f;
  --ink-600: #334155;
  --ink-500: #475569;
  --ink-400: #64748b;
  --ink-300: #94a3b8;
  --ink-200: #cbd5e1;
  --ink-100: #e2e8f0;
  --ink-50:  #f1f5f9;

  /* Sky - primaire CTA-kleur (helder hemelblauw) */
  --sky-900: #0c4a6e;
  --sky-800: #075985;
  --sky-700: #0369a1;
  --sky-600: #0284c7;
  --sky-500: #0ea5e9;
  --sky-400: #38bdf8;
  --sky-300: #7dd3fc;
  --sky-200: #bae6fd;
  --sky-100: #e0f2fe;
  --sky-50:  #f0f9ff;

  /* Sunset accent - gebruikt voor highlights, badges */
  --sunset-700: #c2410c;
  --sunset-600: #ea580c;
  --sunset-500: #f97316;
  --sunset-400: #fb923c;
  --sunset-300: #fdba74;
  --sunset-200: #fed7aa;
  --sunset-100: #ffedd5;
  --sunset-50:  #fff7ed;

  /* Mint - eligibility/success */
  --mint-700: #047857;
  --mint-600: #059669;
  --mint-500: #10b981;
  --mint-400: #34d399;
  --mint-300: #6ee7b7;
  --mint-100: #d1fae5;
  --mint-50:  #ecfdf5;

  /* Cloud - soft backgrounds */
  --cloud:    #f8fafc;
  --cloud-warm: #f7fbfd;
  --paper:    #ffffff;
  --soft-border: #e2e8f0;

  /* Schaduwen */
  --shadow-soft: 0 1px 3px rgba(10, 37, 64, 0.06), 0 8px 24px -8px rgba(10, 37, 64, 0.10);
  --shadow-lift: 0 4px 8px rgba(10, 37, 64, 0.08), 0 18px 40px -12px rgba(10, 37, 64, 0.18);
  --shadow-glow-sky: 0 10px 36px -12px rgba(14, 165, 233, 0.55);
  --shadow-glow-sunset: 0 10px 30px -10px rgba(249, 115, 22, 0.55);
}

* { box-sizing: border-box; }
[x-cloak] { display: none !important; }

html, body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--ink-900);
  background:
    radial-gradient(at 5% 0%, rgba(56, 189, 248, 0.08), transparent 45%),
    radial-gradient(at 95% 12%, rgba(249, 115, 22, 0.06), transparent 50%),
    var(--cloud);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   Typography helpers
   ============================================================ */

.display {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 800;
}
.display-tight {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-weight: 900;
  font-feature-settings: "ss01", "cv11";
}

/* ============================================================
   Eyebrow badge
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eyebrow-sky    { background: var(--sky-100);  color: var(--sky-700); }
.eyebrow-sunset { background: #ffedd5;          color: var(--sunset-600); }
.eyebrow-mint   { background: var(--mint-100); color: var(--mint-600); }

/* ============================================================
   Buttons - pill stijl, met glow op CTA
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--sky-500);
  color: white;
  box-shadow: var(--shadow-glow-sky);
}
.btn-primary:hover { background: var(--sky-600); }

.btn-cta {
  background: linear-gradient(135deg, var(--sunset-500), var(--sunset-400));
  color: white;
  box-shadow: var(--shadow-glow-sunset);
  font-size: 1.05rem;
  padding: 1rem 2rem;
}
.btn-cta:hover { filter: brightness(1.07); }

.btn-ghost {
  background: white;
  color: var(--ink-800);
  border: 1px solid var(--soft-border);
}
.btn-ghost:hover { border-color: var(--sky-400); }

.btn-on-dark {
  background: white;
  color: var(--ink-900);
}
.btn-on-dark:hover { background: var(--sky-50); }

/* ============================================================
   Inputs - groot, ademend, leesbaar
   ============================================================ */

.input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1.5px solid var(--soft-border);
  background: white;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.input:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}
.input-lg {
  padding: 1.1rem 1.25rem;
  font-size: 1.15rem;
  border-radius: 0.85rem;
}
.input-mono { font-family: "SF Mono", Menlo, Consolas, monospace; letter-spacing: 0.05em; }

label.field {
  display: block;
  margin-bottom: 1rem;
}
label.field > .label-txt {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 0.4rem;
}

/* ============================================================
   Cards - soft met cream-tinted border
   ============================================================ */

.card {
  background: var(--paper);
  border: 1px solid var(--soft-border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.card-glow {
  position: relative;
  overflow: hidden;
}
.card-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--sky-400), var(--sunset-400));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.4;
  filter: blur(12px);
}

/* ============================================================
   Hero mesh-gradient (zoals GasenLichtCheck)
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 50%, var(--sky-700) 100%);
  color: white;
}
.hero-blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  border-radius: 9999px;
}
.hero-blob-sky    { background: var(--sky-400);    width: 380px; height: 380px; top: -100px; left: -80px; }
.hero-blob-sunset { background: var(--sunset-400); width: 320px; height: 320px; bottom: -80px; right: -60px; opacity: 0.3; }
.hero-blob-mint   { background: var(--mint-400);   width: 280px; height: 280px; top: 30%; right: 20%; opacity: 0.2; }

/* Animated subtle pulse */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-y { animation: float-y 6s ease-in-out infinite; }

/* ============================================================
   Boarding-pass style (claim cards)
   ============================================================ */

.boarding-pass {
  background: linear-gradient(135deg, white 60%, var(--sky-50) 100%);
  border: 1px solid var(--soft-border);
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.boarding-pass::before,
.boarding-pass::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--cloud);
  border-radius: 9999px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--soft-border);
}
.boarding-pass::before { left: -11px; }
.boarding-pass::after  { right: -11px; }

.bp-divider {
  height: 100%;
  border-left: 2px dashed var(--soft-border);
}

/* ============================================================
   Pricing card (highlight)
   ============================================================ */

.pricing-card {
  background: var(--paper);
  border: 2px solid var(--sky-500);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-glow-sky);
}
.pricing-card .price {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--sky-600), var(--sky-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Status-badges voor claim-statussen
   ============================================================ */

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-draft       { background: #f1f5f9; color: var(--ink-700); }
.status-paid        { background: var(--sky-100);  color: var(--sky-700); }
.status-verstuurd   { background: var(--sky-100);  color: var(--sky-700); }
.status-in_review   { background: #fef3c7; color: #b45309; }
.status-toegekend   { background: var(--mint-100); color: var(--mint-600); }
.status-uitbetaald  { background: #a7f3d0; color: #047857; }
.status-geweigerd   { background: #fee2e2; color: #b91c1c; }
.status-ingebreke   { background: #fed7aa; color: var(--sunset-600); }
.status-eskalatie_ilt { background: #ddd6fe; color: #6d28d9; }

/* ============================================================
   Prose styling (vervangt Tailwind Typography plugin)
   Voor lange teksten in juridische pagina's
   ============================================================ */

.prose {
  color: var(--ink-700);
  line-height: 1.7;
  max-width: 65ch;
}
.prose.max-w-none { max-width: none; }
.prose h1, .prose h2, .prose h3, .prose h4 {
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.3;
}
.prose h1 { font-size: 2rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }

.prose p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.prose ul, .prose ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
}
.prose ul > li {
  list-style-type: disc;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.prose ol > li {
  list-style-type: decimal;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.prose a {
  color: var(--sky-600);
  text-decoration: underline;
}
.prose a:hover {
  color: var(--sky-700);
}
.prose strong {
  color: var(--ink-900);
  font-weight: 700;
}
.prose code {
  background: var(--cloud-warm);
  padding: 0.15rem 0.4rem;
  border-radius: 0.3rem;
  font-size: 0.9em;
  font-family: "SF Mono", Menlo, Consolas, monospace;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--soft-border);
  margin: 2rem 0;
}
.prose blockquote {
  border-left: 3px solid var(--sky-300);
  padding-left: 1rem;
  font-style: italic;
  color: var(--ink-500);
  margin: 1.5rem 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.prose th, .prose td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--soft-border);
}
.prose th {
  background: var(--cloud-warm);
  font-weight: 600;
}

.prose-sm { font-size: 0.95rem; }
.prose-sm h1 { font-size: 1.75rem; }
.prose-sm h2 { font-size: 1.35rem; }
.prose-sm h3 { font-size: 1.15rem; }


/* ============================================================
   Decoratieve flight-path SVG-context
   ============================================================ */

.flight-path {
  stroke-dasharray: 5 8;
  animation: dash-move 8s linear infinite;
}
@keyframes dash-move {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -52; }
}
