:root {
  --bg: #ffffff;
  --bg-elev: #f5f5f7;
  --bg-card: #ffffff;
  --bg-card-2: #fbfbfd;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --border: #d2d2d7;
  --accent: #0071e3;
  --accent-dark: #1c4c85;
  --accent-2: #0058b0;
  --radius: 18px;
  --max-w: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: block; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Decorative glow blobs */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}
.glow-1 { width: 520px; height: 520px; background: #b9d9ff; top: -180px; left: -140px; }
.glow-2 { width: 460px; height: 460px; background: #d6ecff; top: -80px; right: -160px; }
.glow-3 { width: 420px; height: 420px; background: #cfe6ff; bottom: -200px; left: 40%; }

/* Header — full-width dark bar, Apple style */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #17181c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  width: 100%;
}

.logo {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: #101114;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px 16px 6px 6px;
}
.logo img.mark {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: block;
}

nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  position: fixed;
  inset: 70px 16px auto 16px;
  background: rgba(20, 20, 22, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
nav.main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }

nav.main-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: #fff; }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}
.nav-cta:hover { background: var(--accent-2); }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--accent);
  border-radius: 10px;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* Hero */
.hero {
  padding: 140px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
  border: 1px solid rgba(0, 113, 227, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 650;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-art {
  max-width: 760px;
  margin: 0 auto;
}
.hero-art-logo {
  display: flex;
  justify-content: center;
}
.hero-art-logo img {
  width: 220px;
  height: 220px;
  border-radius: 44px;
  box-shadow: 0 30px 70px -20px rgba(28, 76, 133, 0.35);
}

.hero-art-photo img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 40px 90px -30px rgba(28, 76, 133, 0.4);
  border: 1px solid var(--border);
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0, 113, 227, 0.5);
}
.btn-primary:hover { background: var(--accent-2); }
.btn-secondary {
  background: rgba(0,0,0,0.03);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Sections */
section { padding: 90px 0; position: relative; }
section.alt { background: var(--bg-elev); }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 650;
}
.section-head p { color: var(--text-muted); margin: 0; font-size: 1.05rem; }

.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 227, 0.35);
  box-shadow: 0 20px 44px -24px rgba(0, 113, 227, 0.35);
}
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.12), rgba(28, 76, 133, 0.08));
  border: 1px solid rgba(0, 113, 227, 0.2);
  color: var(--accent);
}
.icon.icon-photo {
  overflow: hidden;
  background: none;
  border: 1px solid var(--border);
  padding: 0;
}
.icon.icon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 650;
}
.card p { color: var(--text-muted); margin: 0; font-size: 0.96rem; }
.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px -28px rgba(0, 113, 227, 0.4); }
.product-card h3 { margin: 0; font-size: 1.5rem; font-weight: 650; }
.product-card p { color: var(--text-muted); margin: 0; }
.product-card .btn { align-self: flex-start; }

.steps {
  counter-reset: step;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--bg-card);
}
.step .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

/* About / image + text */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 70px -30px rgba(28, 76, 133, 0.4);
}
.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 650;
}
.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

/* Location / map */
.map-section {
  position: relative;
  padding: 0;
  height: 460px;
  overflow: hidden;
}
.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}
.map-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.25);
  max-width: 320px;
}
.map-card h3 { margin: 0 0 6px; font-size: 1.2rem; font-weight: 650; }
.map-card p { margin: 0; color: var(--text-muted); }

/* CTA band */
.cta-band {
  text-align: center;
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg-elev), #eef4fc);
}
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0 0 14px; font-weight: 650; }
.cta-band p { color: var(--text-muted); margin: 0 0 32px; font-size: 1.05rem; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info h2 { margin-top: 0; font-weight: 650; }
.contact-info .item {
  margin-bottom: 20px;
  color: var(--text-muted);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info .item .icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.12), rgba(28, 76, 133, 0.08));
  border: 1px solid rgba(0, 113, 227, 0.2);
  color: var(--accent);
}
.contact-info .item strong { display: block; color: var(--text); margin-bottom: 4px; }
.contact-info .item a { color: var(--accent); }

form.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 16px;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,0.15);
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.field input,
.field textarea {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.form-note a { color: var(--accent); text-decoration: underline; }

/* Prose (policy pages) */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 8px; font-weight: 650; }
.prose .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.prose h2 { font-size: 1.3rem; margin: 36px 0 12px; font-weight: 650; }
.prose p, .prose li { color: var(--text-muted); }
.prose ul { padding-left: 20px; }
.prose strong { color: var(--text); }

/* Disclaimer box */
.disclaimer {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 12px 0 0; color: var(--text-muted); }

/* Footer */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--bg-elev);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { text-decoration: underline; }

/* Scroll reveal (Apple-style fade + rise) */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view .reveal-child {
  opacity: 1;
  transform: translateY(0);
}
.reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-child:nth-child(1) { transition-delay: 0.05s; }
.reveal-child:nth-child(2) { transition-delay: 0.15s; }
.reveal-child:nth-child(3) { transition-delay: 0.25s; }
.reveal-child:nth-child(4) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 480px) {
  .nav-inner { padding: 12px 14px; }
}
