/* PalinDrone Lite — plain CSS, no build step */

:root {
  --brand-deep: #13293d;
  --brand-accent: #0f96f7;
  --brand-blue-600: #2563eb;
  --brand-blue-900: #1e3a8a;
  --cta-gold: #facc15;
  --cta-gold-hover: #eab308;
  --surface: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--brand-accent);
  color: #fff;
  z-index: 1000;
  border-radius: 0.375rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 2.75rem;
  width: auto;
}

@media (min-width: 640px) {
  .brand img {
    height: 3.25rem;
  }
}

.fine-print {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.fine-print--spaced {
  margin-top: 0.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.link-quiet {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9375rem;
}

.link-quiet:hover {
  color: var(--brand-accent);
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.125rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--brand-blue-600);
  color: #fff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-hero {
  background: var(--cta-gold);
  color: #0f172a;
}

.btn-hero:hover {
  background: var(--cta-gold-hover);
}

/*.hero {*/
/*  position: relative;*/
/*  color: #fff;*/
/*  text-align: center;*/
/*  overflow: hidden;*/
/*  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-blue-900) 55%, #0f172a 100%);*/
/*}*/

.hero {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background-image: url("assets/hero.png");
  background-size: cover;
  background-position: center;
}

/* Optional hero imagery: set a photo as assets/hero.jpg and uncomment background-image in index.html inline style, or add a .hero--photo class here. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle at 20% 30%, rgba(15, 150, 247, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(250, 204, 21, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-size: 24px 24px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 4.5rem;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 5.5rem 1.5rem 5rem;
  }
}

.hero-eyebrow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-sub {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: rgba(226, 232, 240, 0.95);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

@media (min-width: 768px) {
  .section {
    padding: 3rem 1.5rem;
  }
}

.section--muted {
  background: var(--surface);
}

.section h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 40rem;
}

.notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  border-radius: 0.5rem;
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  color: #0c4a6e;
  font-size: 0.9375rem;
}

.notice strong {
  color: #075985;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-list li {
  padding: 1.125rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.service-list h3 {
  margin: 0 0 0.375rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand-deep);
}

.service-list p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: #e0f2fe;
  color: #0369a1;
}

.contact-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: #fff;
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.contact-email {
  font-weight: 700;
  font-size: 1.125rem;
  word-break: break-all;
}

.contact-email a {
  color: var(--brand-blue-600);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-card .contact-email {
  margin-bottom: 0;
}

.contact-card .fine-print {
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--brand-accent);
}

.site-footer a:hover {
  text-decoration: underline;
}

.logo {
  height: 3rem;
  width: auto;
}