/* Custom styles on top of Tailwind. Brand: #2563EB / #0EA5E9, font Inter. */

:root {
  --brand: #2563eb;
  --brand-sky: #0ea5e9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Subtle technical grid background for hero */
.tech-grid {
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.brand-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-sky) 100%);
}

.text-brand-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Tabular numbers for prices */
.tabular-nums {
  font-variant-numeric: tabular-nums;
}

/* Custom range / select polish */
select,
input {
  outline: none;
}

select:focus,
input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
