/* Lydos — Brand CSS */
/* Self-hosted Manrope variable font */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Brand tokens */
:root {
  --hermos-blue: #0060AE;
  --lydian-purple: #C60751;
  --hermos-blue-dark: #00497f;
  --hermos-blue-light: #e8f2fb;
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-900: #0f172a;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--neutral-900);
  background: #fff;
  margin: 0;
  line-height: 1.6;
}

a {
  color: var(--hermos-blue);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--neutral-200);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo img { height: 32px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-700);
}
.nav-links a:hover { color: var(--hermos-blue); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  border: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--hermos-blue);
  color: #fff;
}
.btn-primary:hover { background: var(--hermos-blue-dark); color: #fff; }

.btn-accent {
  background: var(--lydian-purple);
  color: #fff;
}
.btn-accent:hover { background: #a3043f; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--hermos-blue);
  border: 2px solid var(--hermos-blue);
}
.btn-outline:hover { background: var(--hermos-blue); color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--hermos-blue) 0%, #00497f 60%, #003260 100%);
  color: #fff;
  padding: 96px 0 80px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 span { color: #ffd460; }
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s;
}
.hero-cta .btn-secondary:hover { background: rgba(255,255,255,0.22); text-decoration: none; }

/* Features */
.features {
  padding: 88px 0;
  background: var(--neutral-50);
}
.features-header {
  text-align: center;
  margin-bottom: 56px;
}
.features-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--neutral-900);
  margin: 0 0 12px;
}
.features-header p {
  font-size: 1.05rem;
  color: var(--neutral-600);
  max-width: 500px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 32px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--hermos-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--hermos-blue); }
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 0 0 10px;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.65;
}

/* CTA Section */
.cta-section {
  background: var(--hermos-blue);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 16px;
}
.cta-section p {
  font-size: 1.05rem;
  opacity: 0.88;
  margin: 0 0 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--hermos-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-white:hover { background: var(--hermos-blue-light); color: var(--hermos-blue); text-decoration: none; }

/* Footer */
.footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo img { height: 24px; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 13px; }

/* Inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--hermos-blue) 0%, #00497f 100%);
  color: #fff;
  padding: 56px 0 48px;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 10px;
}
.page-hero p {
  opacity: 0.82;
  font-size: 1rem;
  margin: 0;
}

.page-content {
  padding: 64px 0 80px;
}
.page-content .prose {
  max-width: 760px;
}
.page-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--neutral-200);
}
.page-content h2:first-child { border-top: none; margin-top: 0; }
.page-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neutral-700);
  margin: 24px 0 8px;
}
.page-content p, .page-content li {
  color: var(--neutral-700);
  line-height: 1.75;
  font-size: 0.97rem;
}
.page-content ul { padding-left: 20px; }
.page-content li { margin-bottom: 6px; }
.page-content a { color: var(--hermos-blue); }

.effective-date {
  display: inline-block;
  background: var(--hermos-blue-light);
  color: var(--hermos-blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 32px;
}

/* Support FAQ */
.faq-item {
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--neutral-900);
  cursor: pointer;
  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.2rem;
  color: var(--hermos-blue);
  transition: transform 0.2s;
}
details[open] > summary::after { content: '-'; }
.faq-item p {
  padding: 0 20px 18px;
  color: var(--neutral-600);
  font-size: 0.95rem;
  margin: 0;
}

.support-contact {
  background: linear-gradient(135deg, var(--hermos-blue-light) 0%, #fff 100%);
  border: 1px solid #c5ddf0;
  border-radius: 12px;
  padding: 36px;
  margin-top: 48px;
  text-align: center;
}
.support-contact h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 0 0 10px;
  border: none;
}
.support-contact p {
  color: var(--neutral-600);
  margin: 0 0 20px;
}

/* Responsive */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding: 64px 0 56px; }
  .features { padding: 56px 0; }
  .cta-section { padding: 56px 0; }
  .page-content { padding: 40px 0 56px; }
}
