/* mtSEO Site Analyzer — static site (no JavaScript)
   Schwarz-Gold look, matching S.I.G. Personal */

:root {
  --bg: #0a0c0f;
  --fg: #d4cfc8;
  --border: #1e2630;
  --card: #111418;
  --primary: #c8960c;   /* Brand Gold */
  --secondary: #e8b84b; /* Highlight Gold */
  --muted: #5a6270;
  --success: #2ecc71;
  --amber: #e8b84b;
  --red: #e74c3c;
  --grey: #5a6270;

  --font-display: 'Cinzel', serif;
  --font-serif: 'Crimson Text', serif;
  --font-sans: 'Inter', sans-serif;

  --maxw: 72rem;
  --maxw-narrow: 56rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(200,150,12,.3); color: var(--bg); }

h1, h2, h3 { font-family: var(--font-display); color: var(--primary); font-weight: 400; line-height: 1.2; }

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }

.accent, .brand-accent { color: var(--secondary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  height: 3.5rem;
  padding: 0 2.5rem;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(200,150,12,.3);
}
.btn-primary:hover {
  background: var(--secondary);
  box-shadow: 0 0 30px rgba(232,184,75,.5);
}
.btn-store svg { width: 1.2rem; height: 1.2rem; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,12,15,.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,38,48,.5);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .12em;
  color: var(--primary);
}
.brand-mark.small { font-size: 1.25rem; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s ease;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  padding: 0 1.4rem;
  border: 1px solid rgba(200,150,12,.3);
  color: var(--primary) !important;
}
.nav-cta:hover { background: var(--primary); color: var(--bg) !important; }

/* ---------- Language switcher ---------- */
.nav-right { display: flex; align-items: center; gap: 1.6rem; }
.lang-switch { display: inline-flex; align-items: center; gap: .45rem; }
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 1.3rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  opacity: .55;
  transition: opacity .25s ease, border-color .25s ease;
}
.lang-flag .flag-img { width: 100%; height: 100%; object-fit: cover; }
.lang-flag:hover { opacity: 1; border-color: rgba(200,150,12,.5); }
.lang-flag.active { opacity: 1; border-color: var(--primary); box-shadow: 0 0 0 1px rgba(200,150,12,.35); }
@media (max-width: 560px) {
  .nav-right { gap: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  max-width: 120vw;
  background: rgba(200,150,12,.05);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 56rem; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
}
.hero-tagline {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: var(--fg);
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, rgba(200,150,12,.5), transparent);
  opacity: .5;
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: .08em; margin-bottom: 1rem; }
.rule { width: 3rem; height: 1px; background: rgba(200,150,12,.5); margin: 0 auto; }
.section-lead { font-family: var(--font-serif); font-size: 1.2rem; color: var(--fg); max-width: 36rem; margin: 0 auto; }

/* ---------- Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }

/* ---------- Pillars ---------- */
.pillars { padding: 8rem 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pillar { text-align: center; }
.pillar-icon {
  width: 4rem; height: 4rem;
  margin: 0 auto 2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color .5s ease;
}
.pillar:hover .pillar-icon { border-color: rgba(200,150,12,.5); }
.pillar-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.pillar h3 { font-size: 1.25rem; color: var(--fg); letter-spacing: .04em; margin-bottom: 1rem; }
.pillar p { color: var(--muted); }

/* ---------- Steps ---------- */
.steps { padding: 8rem 0; }
.steps-grid { gap: 2rem; }
.step {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color .5s ease;
}
.step:hover { border-color: rgba(200,150,12,.3); }
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; color: var(--fg); letter-spacing: .04em; margin-bottom: .8rem; }
.step p { color: var(--muted); font-size: 1rem; }

/* ---------- Details / features ---------- */
.details { padding: 8rem 0; background: var(--card); border-top: 1px solid var(--border); }
.details-head { margin-bottom: 3.5rem; }
.details-head h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.details-head .section-lead { margin: 0; }

.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: 0; }
.diamond { color: var(--primary); font-size: .8rem; margin-top: .45rem; flex-shrink: 0; }
.feature-list h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .6rem;
}
.feature-list p { color: rgba(212,207,200,.7); }
.note-inline {
  margin-top: .8rem;
  font-style: italic;
  color: rgba(232,184,75,.85) !important;
  font-size: .98rem;
}

/* legend */
.legend { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1rem; font-family: var(--font-sans); font-size: .8rem; letter-spacing: .05em; color: var(--muted); }
.legend span { display: inline-flex; align-items: center; gap: .4rem; }
.dot { display: inline-block; width: .7rem; height: .7rem; border-radius: 50%; }
.dot.green { background: var(--success); }
.dot.amber { background: var(--amber); }
.dot.red { background: var(--red); }
.dot.grey { background: var(--grey); }

/* notice */
.notice {
  margin-top: 3rem;
  padding: 1.75rem;
  border: 1px solid rgba(200,150,12,.3);
  background: var(--bg);
}
.notice h3 { font-family: var(--font-display); font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: .8rem; }
.notice p { font-size: .95rem; color: rgba(212,207,200,.65); }

.dev-by {
  margin-top: 2.5rem;
  text-align: right;
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Compare table ---------- */
.compare { padding: 8rem 0; }
.vh { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-serif);
}
.compare-table th, .compare-table td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table thead th {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(200,150,12,.3);
  text-align: center;
}
.compare-table thead th:first-child { text-align: left; color: var(--fg); }
.compare-table thead th.us { color: var(--primary); }
.compare-table tbody th[scope="row"] {
  text-align: left;
  font-weight: 400;
  color: var(--fg);
  font-size: 1rem;
}
.compare-table td { text-align: center; font-size: 1.3rem; width: 22%; }
.compare-table td.no { color: var(--muted); }
.compare-table td.yes { color: var(--success); }
.compare-table .us { background: rgba(200,150,12,.06); }
.compare-table thead th.us,
.compare-table td.us {
  border-left: 1px solid rgba(200,150,12,.25);
  border-right: 1px solid rgba(200,150,12,.25);
}
.compare-table tbody tr:last-child td.us { border-bottom: 1px solid rgba(200,150,12,.25); }
.compare-note {
  margin-top: 1.5rem;
  font-size: .85rem;
  font-style: italic;
  color: var(--muted);
}
@media (max-width: 560px) {
  .compare-table th, .compare-table td { padding: .85rem .5rem; }
  .compare-table tbody th[scope="row"] { font-size: .9rem; }
  .compare-table td { font-size: 1.1rem; }
}

/* ---------- Exclusive values ---------- */
.exclusive { padding: 8rem 0; }
.exclusive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.exclusive-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(200,150,12,.05), rgba(255,255,255,.01));
  transition: border-color .25s ease;
}
.exclusive-item:hover { border-color: rgba(200,150,12,.4); }
.exclusive-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
  min-width: 2.4rem;
}
.exclusive-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .04em;
  color: var(--fg);
  margin: .1rem 0 .5rem;
}
.exclusive-body p {
  font-family: var(--font-serif);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 560px) {
  .exclusive-item { gap: 1rem; padding: 1.25rem; }
  .exclusive-num { font-size: 1.5rem; min-width: 1.9rem; }
}

/* ---------- Standards / Seit 2024 ---------- */
.standards { padding: 8rem 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.standard {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  border-left: 2px solid rgba(200,150,12,.5);
  background: rgba(200,150,12,.04);
}
.standard h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .03em;
  color: var(--fg);
  margin: 0 0 .6rem;
}
.standard p {
  font-family: var(--font-serif);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .standards-grid { grid-template-columns: 1fr; }
}

/* ---------- Download ---------- */
.download { padding: 8rem 0; }
.download h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: .08em; margin-bottom: 1rem; }
.download-actions { display: flex; justify-content: center; gap: 1.5rem; margin: 2.5rem 0; flex-wrap: wrap; }
.supported {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans); font-size: .75rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 5rem 0 2.5rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-bottom: 3rem; }
.footer-brand { display: flex; flex-direction: column; gap: .5rem; }
.footer-tag { font-family: var(--font-serif); font-size: .9rem; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; font-family: var(--font-sans); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.footer-links a:hover { color: var(--primary); }
.footer-links .sep { color: var(--border); }
.footer-copy { text-align: center; font-size: .85rem; color: rgba(90,98,112,.7); padding-top: 2rem; border-top: 1px solid var(--border); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { align-items: center; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .nav-links { gap: 1rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  section { padding-left: 0; padding-right: 0; }
}

/* ---------- Legal pages ---------- */
.legal { padding: 9rem 0 6rem; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: .06em; margin-bottom: 2rem; }
.legal h2 { font-size: 1.3rem; letter-spacing: .06em; margin: 2.5rem 0 1rem; }
.legal p { color: rgba(212,207,200,.8); margin-bottom: 1rem; }
.legal a { color: var(--secondary); text-decoration: underline; }
.legal .back { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.legal .back:hover { color: var(--primary); }
