:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-400: #60a5fa;

  --orange-500: #f97316;
  --orange-600: #ea580c;

  --radius: 12px;
  --shadow-sm: 0 4px 6px -1px rgba(2, 6, 23, 0.08);
  --shadow-md: 0 10px 20px -10px rgba(2, 6, 23, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
  line-height: 1.6;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--slate-200);
  z-index: 100000;
}

/* Header */
.cph-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.25s ease;
}
.cph-header.is-scrolled { box-shadow: var(--shadow-md); }

.cph-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.cph-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.cph-logo img {
  max-height: 55px;
  width: auto;
  mix-blend-mode: multiply;
}

.cph-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.cph-nav a {
  text-decoration: none;
  color: var(--slate-600);
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
  transition: color 0.2s ease;
}
.cph-nav a:hover { color: var(--blue-600); }
.cph-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--blue-600);
  transition: width 0.25s ease;
}
.cph-nav a:hover::after { width: 100%; }

.cph-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cph-btn {
  background: var(--blue-600);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cph-btn:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.cph-mobile-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--slate-900);
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
}
.cph-mobile-toggle:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

.cph-mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--slate-200);
  padding: 10px 20px 20px 20px;
  box-shadow: var(--shadow-md);
}
.cph-mobile-nav.is-open {
  display: flex;
  flex-direction: column;
}
.cph-mobile-nav a {
  text-decoration: none;
  color: var(--slate-900);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-100);
}
.cph-mobile-nav a.cph-mobile-btn {
  background: var(--blue-600);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  margin-top: 14px;
  border: none;
}

/* Main */
.site-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 60px 20px;
}

.state-wrap {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.state-hero {
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.10), rgba(255, 255, 255, 1));
  border-bottom: 1px solid var(--slate-200);
}
.state-hero h1 {
  margin: 0 0 10px 0;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--slate-900);
}
.state-hero p {
  margin: 0;
  color: var(--slate-600);
  font-size: 1.05rem;
}
.state-content {
  padding: 26px;
}
.state-content h2 {
  margin-top: 0;
  color: var(--slate-900);
}
.state-content p {
  color: var(--slate-600);
}

/* Footer */
.cef-footer {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 60px 20px 20px 20px;
  border-top: 4px solid var(--blue-600);
  font-size: 0.95rem;
}
.cef-container {
  max-width: 1280px;
  margin: 0 auto;
}
.cef-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.cef-col h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  letter-spacing: 0.3px;
}
.cef-col p {
  margin: 0 0 15px 0;
  color: var(--slate-400);
}
.cef-brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  display: inline-block;
  text-decoration: none;
}
.cef-brand span { color: #3b82f6; }

.cef-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cef-list a {
  color: var(--slate-300);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}
.cef-list a:hover {
  color: var(--blue-400);
  transform: translateX(3px);
}

.cef-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cef-contact-item svg { color: #3b82f6; flex-shrink: 0; }
.cef-contact-item a {
  color: var(--slate-300);
  text-decoration: none;
}
.cef-contact-item a:hover { color: #fff; }

.cef-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.cef-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--slate-800);
  border-radius: 10px;
  color: var(--slate-400);
  border: 1px solid var(--slate-700);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cef-social-btn:hover {
  background: var(--blue-600);
  color: #fff;
  border-color: var(--blue-600);
  transform: translateY(-2px);
}

.cef-extension-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-500);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 18px;
}
.cef-extension-btn:hover { background: var(--orange-600); }

.cef-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 28px;
  text-align: center;
}
.cef-disclaimer-box {
  background: var(--slate-950);
  border: 1px solid var(--slate-800);
  border-left: 4px solid #ef4444;
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 22px;
  text-align: left;
}
.cef-disclaimer-box p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--slate-400);
  line-height: 1.7;
}
.cef-disclaimer-box strong { color: var(--slate-200); }
.cef-copyright {
  font-size: 0.95rem;
  color: var(--slate-500);
  margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .cph-nav { display: none; }
  .cph-btn { display: none; }
  .cph-mobile-toggle { display: block; }
  .cph-logo img { max-height: 45px; }
}
@media (max-width: 1024px) {
  .cef-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cef-grid { grid-template-columns: 1fr; }
}
