/*
  Alquire emergency site visual polish
  Static CSS only — safe for GitHub Pages
*/

:root {
  color-scheme: light;

  --bg: #f6f8fb;
  --bg-strong: #eef3f8;
  --paper: #ffffff;
  --paper-muted: #f9fbfd;
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --muted: #5b677a;
  --muted-2: #7a8699;
  --line: #dbe3ee;
  --line-soft: #e8eef5;

  --brand: #0f4c81;
  --brand-dark: #082f5f;
  --brand-soft: #e8f2fb;
  --accent: #0f766e;
  --accent-soft: #e7f6f3;
  --gold: #c7922b;
  --dark: #0a1220;

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --max: 1180px;

  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 16px 45px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 76, 129, 0.11), transparent 31rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, #eef3f8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand);
  text-decoration: none;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(15, 76, 129, 0.18);
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 238, 0.88);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand:hover {
  color: var(--ink);
  text-decoration: none;
}

.mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, var(--brand-dark), var(--brand), var(--accent));
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 76, 129, 0.28);
  font-size: 1.02rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.28rem;
  font-size: 0.92rem;
}

.nav-links a {
  color: #334155;
  padding: 0.62rem 0.72rem;
  border-radius: 999px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--brand-dark);
  background: var(--brand-soft);
  text-decoration: none;
}

.nav-links .nav-cta,
.nav-cta {
  margin-left: 0.35rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.24);
}

.nav-links .nav-cta:hover,
.nav-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #06264f, var(--brand-dark));
}

.menu-note {
  display: none;
}

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.82rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 15px 34px rgba(15, 76, 129, 0.28);
}

.btn.primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #06264f, var(--brand-dark));
}

.btn.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.btn.secondary:hover {
  color: var(--brand-dark);
  border-color: rgba(15, 76, 129, 0.3);
  background: #f8fbff;
}

.hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 6.25rem 1.25rem 4.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.43rem 0.78rem;
  color: var(--brand-dark);
  background: rgba(232, 242, 251, 0.82);
  border: 1px solid rgba(15, 76, 129, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 1.1rem 0 1rem;
  color: var(--ink);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 {
  font-size: clamp(2.75rem, 5.4vw, 5.35rem);
  max-width: 11ch;
}

.lead {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.3rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
  color: #415166;
  font-size: 0.9rem;
}

.trust span {
  padding: 0.44rem 0.7rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1px;
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.24), rgba(15, 118, 110, 0.18)),
    #fff;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.18), transparent 16rem),
    radial-gradient(circle at bottom left, rgba(15, 76, 129, 0.15), transparent 14rem);
  pointer-events: none;
}

.score-card {
  position: relative;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 33px;
  backdrop-filter: blur(12px);
}

.score-card p {
  color: var(--muted);
}

.score {
  margin: 0.7rem 0 0.45rem;
  color: var(--brand);
  font-size: clamp(3.3rem, 6vw, 4.9rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.09em;
}

.score-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.92rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: #334155;
}

.score-row:last-child {
  border-bottom: 0;
}

.score-row strong {
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 999px;
  padding: 0.22rem 0.52rem;
  font-size: 0.78rem;
}

.section,
.content,
.page-hero,
.cta,
.footer-inner {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 3.4rem 1.25rem;
}

.section h2,
.prose h2,
.cta h2 {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.2vw, 3.15rem);
  max-width: 19ch;
}

.section > p {
  max-width: 76ch;
  margin-top: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.step,
.faq details,
.prose,
.table {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}

.card {
  min-height: 100%;
  padding: 1.22rem;
  border-radius: var(--radius-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 76, 129, 0.22);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin: 0.1rem 0 0.52rem;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.82rem;
  background: linear-gradient(135deg, var(--brand-soft), var(--accent-soft));
  border: 1px solid rgba(15, 76, 129, 0.10);
  border-radius: 15px;
}

.band {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  color: #fff;
  background:
    radial-gradient(circle at 95% 10%, rgba(20, 184, 166, 0.22), transparent 18rem),
    radial-gradient(circle at 5% 95%, rgba(59, 130, 246, 0.20), transparent 18rem),
    linear-gradient(135deg, #07111f, #0d2744 58%, #0a3a42);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.band h2 {
  color: #fff;
  max-width: 21ch;
}

.band p,
.band li {
  color: #d9e5f2;
}

.band a {
  color: #bfdbfe;
}

.list {
  display: grid;
  gap: 0.72rem;
  padding-left: 0;
  list-style: none;
}

.list li {
  padding: 0.82rem 1rem;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.step {
  position: relative;
  padding: 1.05rem;
  border-radius: 19px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 0.78rem;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  padding: 0 1.25rem;
  margin-top: 2rem;
  margin-bottom: 4.4rem;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.65rem, 4vw, 2.65rem);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 184, 166, 0.20), transparent 17rem),
    linear-gradient(135deg, #08111f, #0f2d4f 60%, #0f4c81);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta h2 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-inner p {
  margin: 0;
  color: #dbe8f7;
}

.footer {
  padding: 3rem 1.25rem;
  color: #cbd5e1;
  background: #07111f;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 2rem;
}

.footer h3 {
  margin-top: 0;
  color: #fff;
}

.footer p {
  color: #cbd5e1;
}

.footer a {
  color: #dbeafe;
}

.page-hero {
  padding: 5rem 1.25rem 2.2rem;
}

.page-hero h1 {
  font-size: clamp(2.45rem, 4.6vw, 4.65rem);
  max-width: 14ch;
}

.content {
  padding: 1rem 1.25rem 4.5rem;
}

.prose {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border-radius: 26px;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.2rem;
}

.table {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 18px;
}

.table th,
.table td {
  padding: 0.95rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}

.table tr:last-child td {
  border-bottom: 0;
}

.table th {
  color: var(--ink-soft);
  background: var(--paper-muted);
  font-size: 0.9rem;
}

.notice {
  margin: 1.1rem 0;
  padding: 1rem 1.08rem;
  color: var(--ink-soft);
  background: var(--brand-soft);
  border-left: 4px solid var(--brand);
  border-radius: 16px;
}

.form {
  display: grid;
  gap: 0.95rem;
}

.input,
label {
  display: block;
}

.input input,
.input textarea,
.input select {
  width: 100%;
  min-height: 46px;
  padding: 0.86rem 0.92rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8e5;
  border-radius: 14px;
  font: inherit;
  outline: none;
}

.input textarea {
  min-height: 140px;
  resize: vertical;
}

.input input:focus,
.input textarea:focus,
.input select:focus {
  border-color: rgba(15, 76, 129, 0.62);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
}

.small {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.faq details {
  margin: 0.75rem 0;
  padding: 1.05rem 1.08rem;
  border-radius: 18px;
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.faq details p {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    max-width: 720px;
    flex-wrap: wrap;
  }
}

@media (max-width: 920px) {
  body {
    font-size: 15.5px;
  }

  .nav {
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .menu-note {
    display: block;
    color: var(--muted-2);
    font-size: 0.86rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .grid,
  .grid.two,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.55rem 1.25rem;
  }

  .cta-inner {
    display: block;
  }

  .cta-inner .btn {
    margin-top: 1.25rem;
  }
}

@media (max-width: 560px) {
  .nav,
  .hero,
  .section,
  .page-hero,
  .content,
  .cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions,
  .trust {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .trust span {
    width: 100%;
  }

  .hero-panel,
  .score-card,
  .band,
  .cta-inner {
    border-radius: 23px;
  }

  .card,
  .prose {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
