/* ---- Site tokens (CSS variables you can use in custom rules) ---- */
:root {
  --border: #e2e8f0;
  /* slate-200 */
  --muted: #64748b;
  /* slate-500 */
  --text: #0f172a;
  /* slate-900 */
  --bg: #ffffff;

  --header-bg: #f1f5f9;
  /* slate-100 */
  --header-text: #0f172a;
  --header-link: #334155;
  /* slate-700 */
  --hover: #f1f5f9;

  --footer-bg: #ffffff;
  --footer-text: #334155;

  --hero-text: #0f172a;
  --hero-subtext: #475569;
  /* slate-600 */
  --hero-overlay: transparent;
}

/* ---- Base (only what Tailwind doesn’t cover) ---- */
html,
body {
  height: 100%;
}

body {
  color: var(--text);
  background: var(--bg);
}

.hero h1,
.hero h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.5em;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.hero h2 {
  font-size: 1.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}


/* ---- Layout helpers you actually use (not duplicating Tailwind) ---- */
.container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* ---- Header chrome (structure only; spacing/colors via Tailwind util classes) ---- */
.site-header {
  width: 100%;
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(180%) blur(6px);
}

.brand {
  text-decoration: none;
}

/* ---- Hero (structure only) ---- */
.hero {
  position: relative;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero>.container {
  position: relative;
  z-index: 1;
}

.hero--no-stretch {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 220px;
  background-color: #fff;
}


/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
}

.muted {
  color: var(--muted);
}

/* ---- Forms (small enhancement) ---- */
/* form inputs */
.input {
  width: 100%;
  padding: .5rem .75rem;
  border: 1px solid rgba(148, 163, 184, 1);
  /* slate-400-ish */
  border-radius: .5rem;
  background: #fff;
  font: inherit;
}

.input:focus {
  outline: 2px solid transparent;
  border-color: rgb(14 165 233);
  /* sky-500 */
  box-shadow: 0 0 0 2px rgba(14, 165, 233, .25);
}

.input.input-error,
.input.input-error:focus {
  border: 1px solid #f43f5e;
  background: #fff1f2;
}



/* Full-bleed section helper: make background span the viewport width */
.full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  overflow-x: clip;
  /* avoid tiny horizontal scrollbars */
}



/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.5rem;
  /* default size */
  border-radius: .5rem;
  /* ~ rounded-xl */
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: box-shadow .15s, transform .05s, background-color .15s, color .15s;
}

.btn:focus {
  outline: 2px solid transparent;
}

.btn:focus-visible {
  box-shadow: 0 0 0 2px rgb(14 165 233);
}

/* sky-500 ring */
.btn:active {
  transform: translateY(1px);
}

/* Primary */
.btn-primary {
  background: rgb(2 132 199);
  /* sky-600 */
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  color: rgb(2 132 199);
  background: #fff;
  border-color: rgb(2 132 199);
}

.btn-white-blue {
  background: #fff;
  color: rgb(4, 90, 200);
  border-color: transparent;
}

.btn-white-blue:hover {
  background: rgb(4, 90, 200);
  color: #fff;
  border-color: #fff;
}


/* Optional: outline style if you ever need it */
.btn-outline {
  background: #fff;
  color: rgb(15 23 42);
  /* slate-900 */
  border-color: rgb(154, 161, 170);
  /* slate-300 */
}

.btn-outline:hover {
  background: rgb(220, 229, 237);
}

/* slate-50 */

/* Optional sizes */
.btn-sm {
  padding: .375rem .75rem;
  font-size: .875rem;
}

.btn-lg {
  padding: .75rem 1.25rem;
  font-size: 1.125rem;
}

.btn-nobg-sky {
  text-decoration: none;
  /* no-underline */
  font-weight: 700;
  /* font-semibold */
  color: rgb(7 89 133);
  /* text-sky-700 */
  display: inline-flex;
  /* inline-flex */
  align-items: center;
  /* items-center */
  padding: 0.5rem 0.5rem;
  /* py-1 px-2 */
  font-size: 0.875rem;
  /* text-sm */
  line-height: 1;
  /* leading-none */
  border-radius: 0.375rem;
  /* rounded-md */
  transition: background-color .15s, color .15s;
}

.btn-nobg-sky:hover {
  color: rgb(12 74 110);
  /* hover:text-sky-900 */
  background-color: rgb(186 230 253);
  /* hover:bg-sky-200 */
}

.btn-live {
  background: #86efac;
  /* tailwind green-300 */
  color: #0f172a;
  /* slate-900 */
  border-color: transparent;
}

.btn-live:hover {
  background: #bbf7d0;
  /* green-200 */
  color: #0f172a;
}

/* Optional: secondary neutral button */
.btn-soft {
  background: #f8fafc;
  /* slate-50 */
  color: #0f172a;
  border-color: var(--border);
  /* slate-200 */
}

.btn-soft:hover {
  background: #f1f5f9;
  /* slate-100 */
}

/* Optional: "coming soon" pill-like button */
.btn-soon {
  background: #fef3c7;
  /* amber-100 */
  color: #92400e;
  /* amber-800-ish */
  border-color: #fde68a;
  /* amber-200 */
}

.btn-soon:hover {
  background: #fde68a;
  /* amber-200 */
}


/* Menu Navigation in Header */
.nav-link {
  font-weight: 600;
  /* font-semibold */
  color: rgb(31 45 65);
  /* slate-800 */
  padding: .25rem .75rem;
  /* py-1 px-3 */
  border-radius: .375rem;
  /* rounded-md */
  text-decoration: none;
  transition: background-color .15s, color .15s;
}

.nav-link:hover {
  background: rgb(226 232 240);
  /* slate-200 */
  color: rgb(15 23 42);
  /* slate-900 */
}

.nav-link:focus {
  outline: 2px solid transparent;
}

.nav-link:focus-visible {
  box-shadow: 0 0 0 2px rgb(14 165 233);
  /* sky-500 ring */
  border-radius: .375rem;
}

/* Optional: active/current page style */
.nav-link.active {
  background: rgb(226 232 240);
  /* slate-200 */
  color: rgb(15 23 42);
  /* slate-900 */
}


.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: #aaffee;
  color: #11aa33;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  transform: translateY(2px);
  /* move it down a bit */
  -webkit-text-stroke: 0.6px currentColor;
  /* Chrome/Safari */
  text-shadow:
    0 0 0 currentColor,
    0.3px 0 currentColor, -0.3px 0 currentColor,
    0 0.3px currentColor, 0 -0.3px currentColor;
  /* fallback */
}

/* Base circle icon */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  /* 20px */
  height: 1.25rem;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  /* don't squish when text wraps */
  vertical-align: middle;
  /* align with text */
  transform: translateY(2px);
  /* move it down a bit */
  -webkit-text-stroke: 0.6px currentColor;
  /* Chrome/Safari */
  text-shadow:
    0 0 0 currentColor,
    0.3px 0 currentColor, -0.3px 0 currentColor,
    0 0.3px currentColor, 0 -0.3px currentColor;
}

/* Check variant */
.icon-check {
  background: #aaffee;
  color: #11aa33;
}

.icon-check::before,
.icon-check--nobg::before {
  content: "✓";
}

.icon-check--nobg {
  background: transparent;
  color: #11aa33;
  /* optional: a subtle outline/ring so layout stays the same without a fill */
  /* box-shadow: 0 0 0 1px currentColor inset; */
}

/* Cross variant */
.icon-cross {
  background: #ffe8e8;
  color: #d11a2a;
}

.icon-cross::before,
.icon-cross--nobg::before {
  content: "✕";
}

.icon-cross--nobg {
  background: transparent;
  color: #d11a2a;
}

/* Optional: subscript-ish nudge */
.icon--lower {
  transform: translateY(2px);
}

.google-gradient {
  font-weight: 700;
  background: linear-gradient(90deg,
      #4285F4, #EA4335, #FBBC05, #34A853, #4285F4);
  -webkit-background-clip: text;
  color: transparent;
}