:root {
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #fa7e1b;
  --accent-dark: #e06a0a;
  --bg: #f4f4f6;
  --surface: #ffffff;
  --border: #e4e4e8;
  --header-bg: #1f2430;
  --header-text: #f5f5f7;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--accent-dark);
}

a:hover {
  color: var(--accent);
}

code {
  font-size: 0.92em;
  background: #f0f0f2;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.site-header {
  background: var(--header-bg);
  color: var(--header-text);
}

.site-header__inner,
.site-footer__inner,
.site-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.site-logo img {
  border-radius: 10px;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: var(--header-text);
  text-decoration: none;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  color: #fff;
}

.site-main {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.hero__badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #fff3ea;
  color: var(--accent-dark);
  font-size: 0.85rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.hero__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero__note,
.hero__actions {
  margin: 1.25rem 0 0;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__visual img {
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.features,
.disclaimer,
.contact,
.privacy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

.features h2,
.disclaimer h2,
.contact h2,
.privacy h1 {
  margin-top: 0;
}

.features__list {
  margin: 0;
  padding-left: 1.2rem;
}

.features__list li + li {
  margin-top: 0.35rem;
}

.disclaimer p:last-child,
.contact p:last-child {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #ececf0;
  padding: 1.5rem 0 2rem;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer__brand,
.site-footer__copy {
  color: var(--muted);
}

.privacy__meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.privacy__lang-switch {
  margin: 0.75rem 0 1.25rem;
  font-size: 0.9rem;
}

.privacy__lang-switch a {
  margin-right: 1rem;
}

.privacy h2 {
  margin-top: 1.75rem;
  font-size: 1.15rem;
  color: var(--accent-dark);
}

.privacy table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0;
}

.privacy th,
.privacy td {
  border: 1px solid var(--border);
  padding: 0.5rem 0.65rem;
  text-align: left;
  vertical-align: top;
}

.privacy th {
  background: #f3f3f5;
}

.privacy__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__visual img {
    width: 120px;
    height: 120px;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
}
