:root {
  --accent: #8B5CF6;
  --text: #0a0a0a;
  --muted: #555;
  --bg: #ffffff;
  --card: #f7f7f7;
  --card-hover: #f0f0f0;
  --border: #e0e0e0;
  --border-subtle: #eaeaea;
  --shadow: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
}

[data-theme="dark"] {
  --bg: #0a0a0a;
  --text: #e8e8e8;
  --muted: #888;
  --card: #141414;
  --card-hover: #1a1a1a;
  --border: #222;
  --border-subtle: #1a1a1a;
  --shadow: 0 2px 8px rgba(255,255,255,0.02);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body { 
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; 
  color: var(--text); 
  background: var(--bg); 
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block }
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px }
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:8px;top:8px;width:auto;height:auto;background:var(--accent);color:white;padding:12px 16px;border-radius:4px;z-index:999}

.site-header { 
  border-bottom: 1px solid var(--border); 
  background: var(--bg);
  position: sticky; 
  top: 0; 
  z-index: 10;
  transition: border-color 0.3s ease;
}
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 24px 0;
  gap: 20px;
}
.logo { 
  font-weight: 800; 
  font-size: 20px;
  color: var(--text); 
  text-decoration: none; 
  letter-spacing: -0.5px;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.7 }

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-selector {
  position: relative;
  display: inline-block;
}
.language-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.language-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}
.language-btn svg path {
  fill: var(--text);
}
.language-btn:hover {
  background: var(--card);
}
.language-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.language-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 150px;
  z-index: 100;
  padding: 4px 0;
}
.language-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 0;
  width: 100%;
  height: 8px;
}
.language-selector:hover .language-dropdown,
.language-dropdown:hover {
  display: block;
}
.language-option {
  display: block;
  padding: 10px 16px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.language-option:last-child {
  border-bottom: none;
}
.language-option:hover {
  background: var(--bg);
  color: var(--text);
}
.language-option.active {
  color: var(--accent);
  font-weight: 600;
}

.theme-toggle { 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  border: 1px solid var(--border); 
  background: var(--bg); 
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}
.theme-toggle svg path {
  fill: var(--text);
}
.theme-toggle:hover { background: var(--card); border-color: var(--muted); transform: scale(1.08) }
.theme-toggle:focus { outline: 2px solid var(--accent); outline-offset: 4px }

main {
  flex: 1;
}

.hero { 
  padding: 180px 0 160px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px),
    linear-gradient(var(--border-subtle) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}
.hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1 }
.hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero h1 { 
  font-size: clamp(44px, 7vw, 76px); 
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
}
.hero h1 .accent {
  color: var(--accent);
}
.subhead { 
  color: var(--muted); 
  font-size: clamp(17px, 2.5vw, 22px); 
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cta-row { 
  display: flex; 
  gap: 16px; 
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn { 
  display: inline-block; 
  padding: 14px 28px; 
  border-radius: 4px; 
  text-decoration: none; 
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary { 
  background: var(--accent); 
  color: white;
  border-color: var(--accent);
}
.btn-primary:hover { 
  background: transparent;
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-secondary { 
  border: 2px solid var(--border); 
  background: transparent; 
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}
.btn:focus { outline: 2px solid var(--accent); outline-offset: 4px }

/* ==========================================
   Brand Statement
   ========================================== */
.brand-statement {
  padding: 100px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.brand-text {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 65ch;
  margin: 0 auto;
}
.brand-text + .brand-text {
  margin-top: 12px;
}

/* ==========================================
   Section Titles (shared)
   ========================================== */
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-align: center;
}

.section-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer { 
  border-top: 1px solid var(--border); 
  padding: 60px 0 40px;
  background: var(--card);
}
.footer-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 20px; 
  flex-wrap: wrap;
}
.footer-inner small {
  color: var(--muted);
  font-size: 14px;
}
.footer-links { 
  list-style: none; 
  display: flex; 
  gap: 24px; 
  margin: 0; 
  padding: 0;
}
.footer-links a { 
  color: var(--muted); 
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--text);
}

/* ==========================================
   Contact
   ========================================== */
.contact { 
  padding: 100px 0;
  max-width: 700px;
  margin: 0 auto;
}
.contact h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: -1px;
}
.contact-list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: grid; 
  gap: 16px;
}
.contact-list li {
  font-size: 16px;
  color: var(--muted);
}
.contact-list a { 
  color: var(--accent); 
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.contact-list a:hover {
  opacity: 0.7;
}

/* ==========================================
   Cookie Consent Banner
   ========================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent__text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.cookie-consent__text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-consent__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.cookie-consent__btn--accept {
  background: var(--accent);
  color: white;
}

.cookie-consent__btn--accept:hover {
  opacity: 0.9;
}

.cookie-consent__btn--deny {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.cookie-consent__btn--deny:hover {
  background: var(--bg);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
  .hero { padding: 100px 0 80px }
  .hero h1 { font-size: 34px; letter-spacing: -1.5px }
  .hero-label { font-size: 11px; margin-bottom: 20px }
  .brand-statement { padding: 60px 0 }
  .brand-text { font-size: 17px }
  .contact { padding: 60px 0 }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px !important;
  }
  .header-inner {
    padding: 16px 0;
  }
  .hero {
    padding: 60px 0;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .contact {
    padding: 60px 0;
  }
  .cookie-consent__content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-consent__buttons {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-consent__btn {
    width: 100%;
    text-align: center;
  }
}
