:root {
  --orange: #ef4b2a;
  --orange-dark: #d83d20;
  --ink: #111827;
  --muted: #5f6673;
  --line: #e2e5ea;
  --panel: #ffffff;
  --page: #ffffff;
  --soft: #f7f7f8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.page {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 28px 20px 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 38px;
  padding: 4px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.toplinks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  padding: 0;
  color: #4b5563;
  font-size: 14px;
  font-weight: 800;
}

.toplinks a {
  border-radius: 999px;
  padding: 10px 14px;
}

.toplinks a:hover {
  color: var(--orange);
}

.toplinks .top-donate {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(239, 75, 42, 0.18);
}

.toplinks .top-donate:hover {
  background: var(--orange-dark);
  color: #ffffff;
}

.toplinks .language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #4b5563;
  min-width: 48px;
}

.toplinks .language-switch:hover {
  border-color: rgba(239, 75, 42, 0.35);
  color: var(--orange);
}

.flag {
  display: block;
  width: 24px;
  height: 16px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.16);
}

.flag-de {
  background: linear-gradient(#111827 0 33.333%, #dd2c20 33.333% 66.666%, #ffd342 66.666% 100%);
}

.flag-en {
  position: relative;
  background: #1f4fa3;
}

.flag-en::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(33deg, transparent 43%, #ffffff 43% 48%, #d21f3c 48% 52%, #ffffff 52% 57%, transparent 57%),
    linear-gradient(-33deg, transparent 43%, #ffffff 43% 48%, #d21f3c 48% 52%, #ffffff 52% 57%, transparent 57%),
    linear-gradient(90deg, transparent 39%, #ffffff 39% 45%, #d21f3c 45% 55%, #ffffff 55% 61%, transparent 61%),
    linear-gradient(0deg, transparent 35%, #ffffff 35% 43%, #d21f3c 43% 57%, #ffffff 57% 65%, transparent 65%);
}

.language-code {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

main {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(30px, 6vw, 58px);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

p,
li,
dd {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

dl {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

dt {
  color: var(--ink);
  font-weight: 900;
}

dd {
  margin: 4px 0 0;
}

.notice {
  border: 1px solid #ffd8cd;
  border-radius: 20px;
  background: #fff3ee;
  padding: 14px 18px;
  color: #9d321c;
  font-weight: 750;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 16px;
  padding: 0 24px;
  font-weight: 900;
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(240, 75, 44, 0.24);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: #ffffff;
}

.donate-note {
  width: fit-content;
  max-width: 640px;
  margin: 18px 0 0;
  border-left: 3px solid var(--orange);
  padding: 3px 0 3px 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
  padding: 14px 16px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 170px;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(239, 75, 42, 0.12);
}

.form-note {
  width: fit-content;
  max-width: 760px;
  margin: 4px 0 0;
  border-left: 3px solid var(--orange);
  padding: 3px 0 3px 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.form-status[data-kind="success"] {
  color: #17803a;
}

.form-status[data-kind="error"] {
  color: var(--orange-dark);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.76;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(22px, 4vw, 34px);
  align-items: center;
  margin-bottom: 30px;
}

.contact-hero-copy p:last-child {
  margin-bottom: 0;
}

.contact-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  margin: 0;
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.14);
}

.contact-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.download-panel {
  display: grid;
  gap: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(239, 75, 42, 0.08), rgba(255, 255, 255, 0) 36%),
    rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.page-kicker {
  margin: 0 0 -8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.download-panel h1,
.download-panel p {
  color: inherit;
}

.download-panel p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.download-actions {
  align-items: center;
}

.download-panel .btn-primary {
  width: fit-content;
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(240, 75, 44, 0.24);
}

.download-panel .btn-primary:hover {
  background: var(--orange-dark);
  color: #ffffff;
}

.download-note {
  margin-top: 0;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.trust-note {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.trust-note h2,
.guide-card h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.045em;
}

.trust-note p + p {
  margin-top: 12px;
}

.guide-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.08);
}

.guide-copy p {
  margin-bottom: 0;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(239, 75, 42, 0.08), rgba(255, 255, 255, 0) 34%),
    rgba(255, 255, 255, 0.92);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.08);
}

.contact-card h2 {
  margin-top: 0;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.donate-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(17, 24, 39, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.donate-gate.is-open {
  opacity: 1;
  pointer-events: auto;
}

.donate-gate-panel {
  position: relative;
  width: min(100%, 480px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(239, 75, 42, 0.11), rgba(255, 255, 255, 0) 44%),
    #ffffff;
  padding: 30px;
  box-shadow: 0 32px 90px rgba(17, 24, 39, 0.24);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.donate-gate.is-open .donate-gate-panel {
  transform: translateY(0) scale(1);
}

.donate-gate-panel h2 {
  margin-top: 0;
}

.donate-gate-panel p {
  margin-bottom: 0;
}

.donate-gate-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f3f5f8;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.donate-gate-close:hover {
  background: var(--orange);
  color: #ffffff;
}

.donate-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.warning-shot {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.16);
}

.browser-shot {
  border: 1px solid #e3e5e8;
  background: #ffffff;
}

.browser-bar {
  display: flex;
  justify-content: space-between;
  background: #f2f2f3;
  padding: 11px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.download-item {
  padding: 18px;
}

.download-item strong {
  display: block;
  margin-bottom: 6px;
}

.download-item p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.download-item button,
.smart-shot button {
  border: 0;
  background: #f1f1f1;
  color: #000000;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 18px;
}

.smart-screen-grid {
  display: grid;
  gap: 14px;
}

.smart-shot {
  position: relative;
  min-height: 260px;
  background: #1178c8;
  color: #ffffff;
  padding: 24px;
}

.smart-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #f2f2f2;
  color: #000000;
  font-size: 22px;
  line-height: 1;
}

.smart-title {
  max-width: 560px;
  margin: 0 42px 22px 0;
  font-size: clamp(27px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.15;
}

.smart-shot p {
  max-width: 680px;
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
}

.smart-shot a {
  color: #ffffff;
  font-size: 17px;
  text-decoration: underline;
}

.smart-shot dl {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  color: #ffffff;
}

.smart-shot dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.smart-shot dt,
.smart-shot dd {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
}

.smart-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 68px;
}

.smart-actions-right {
  margin-top: 114px;
}

.smart-shot button {
  min-width: 170px;
  border-radius: 0;
}

footer {
  display: grid;
  gap: 14px;
  padding: 28px 0 0;
  color: #8a93a3;
  text-align: center;
  font-size: 14px;
  font-weight: 750;
}

.footer-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 44px;
  border-radius: 15px;
  background: var(--orange);
  color: #ffffff;
  padding: 0 22px;
  box-shadow: 0 14px 30px rgba(239, 75, 42, 0.22);
}

.footer-donate:hover {
  background: var(--orange-dark);
  color: #ffffff;
}

.footer-made {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: center;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.footer-fox-head {
  width: 17px;
  height: 17px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-copy {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 6px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
}

.footer-links a + a::before {
  content: "•";
  margin: 0 12px;
  color: inherit;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-heart {
  color: var(--orange);
}
/* BEGIN LANDING SEO */
.seo-landing p {
  max-width: 760px;
}

.landing-section {
  margin-top: 34px;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.landing-grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  padding: 20px;
}

.landing-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.landing-grid p {
  margin: 0;
  font-size: 15px;
}

.landing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.landing-links a:hover {
  border-color: rgba(239, 75, 42, 0.45);
  color: var(--orange);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  font-size: 15px;
}

@media (max-width: 760px) {
  .landing-grid {
    grid-template-columns: 1fr;
  }
}
/* END LANDING SEO */

@media (max-width: 680px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
  }

  .brand {
    justify-content: center;
  }

  .toplinks {
    justify-content: center;
    font-size: 12px;
  }

  .toplinks a {
    padding: 9px 10px;
  }

  main {
    border-radius: 24px;
  }

  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-photo {
    max-width: 340px;
  }

  .guide-card {
    grid-template-columns: 1fr;
  }

  .contact-card {
    display: grid;
    border-radius: 24px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .smart-shot {
    padding: 18px;
  }

  .smart-actions,
  .smart-actions-right {
    align-items: stretch;
    flex-direction: column;
    margin-top: 42px;
  }

  .smart-shot button {
    width: 100%;
  }
}
