:root {
  --bg: #0f172a;
  --panel: #111827;
  --surface: #ffffff;
  --text: #0b1220;
  --muted: #52607a;
  --brand: #1f6f5f;
  --brand-2: #c0822b;
  --line: #d8dfeb;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: "Segoe UI", Arial, sans-serif; color: var(--text); background: #f4f7fb; }
a { color: #0f4c81; }
a:focus-visible, button:focus-visible { outline: 3px solid #111; outline-offset: 2px; }
.container { width: min(1120px, 92%); margin: 0 auto; }
header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); }
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 12px; }
.brand { font-weight: 800; text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 10px; }
.brand img { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); }
nav { display: flex; flex-wrap: wrap; gap: 8px; }
nav a { text-decoration: none; color: var(--text); font-weight: 600; padding: 8px 10px; border-radius: 10px; }
nav a:hover, nav a.active { background: #e9f5f2; color: #0f5c4e; }
.hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center; padding: 34px 0 20px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08); }
.badge { display: inline-block; background: #eaf6f3; color: #0f5f4f; border: 1px solid #cbe7e0; border-radius: 999px; padding: 5px 10px; font-size: .82rem; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 8px 0 10px; line-height: 1.15; }
h2 { margin: 0 0 8px; font-size: clamp(1.25rem, 2.6vw, 1.9rem); }
p { color: var(--muted); line-height: 1.65; }
.hero img, .media { width: 100%; border-radius: 14px; border: 1px solid var(--line); }
.cta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 12px; min-height: 52px; font-weight: 800; border: 2px solid transparent; }
.btn.primary { background: linear-gradient(90deg, var(--brand), #2f8977); color: #fff; }
.btn.secondary { background: #fff4e5; color: #7b4d10; border-color: #efcf9f; }
.btn.ghost { background: #fff; color: var(--text); border-color: var(--line); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; margin: 24px 0; }
ul { color: var(--muted); }
iframe { width: 100%; min-height: 330px; border: 0; border-radius: 14px; }
footer { margin-top: 28px; padding: 20px 0 28px; border-top: 1px solid var(--line); background: #fff; }
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .92rem; }
.consent { position: fixed; left: 14px; right: 14px; bottom: 14px; background: #111827; color: #e5e7eb; border-radius: 12px; padding: 12px; border: 1px solid #374151; z-index: 90; }
.consent p { margin: 0 0 10px; color: #e5e7eb; }
.consent .row { display: flex; flex-wrap: wrap; gap: 8px; }
.consent button { background: #1f2937; color: #fff; border: 1px solid #4b5563; border-radius: 10px; padding: 9px 12px; font-weight: 700; }
.consent button.primary { background: #2563eb; border-color: #3b82f6; }
.hidden { display: none; }
.prefs { position: fixed; inset: 0; background: rgba(0,0,0,.42); display: none; align-items: center; justify-content: center; z-index: 100; }
.prefs.open { display: flex; }
.prefs .panel { width: min(560px, 92%); background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } .cta { grid-template-columns: 1fr; } }
:root {
  --bg: #0f172a;
  --panel: #111827;
  --panel-soft: #1f2937;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #f59e0b;
  --accent-2: #fb7185;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #1e293b 0%, var(--bg) 45%);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(15, 23, 42, 0.84);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  color: var(--accent);
}

nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 18px;
  font-size: 0.95rem;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

.hero {
  padding: 70px 0 40px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3.7vw, 3rem);
}

.hero p {
  color: var(--muted);
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 28px 0 40px;
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(31, 41, 55, 0.85), rgba(17, 24, 39, 0.85));
  border-radius: 14px;
  padding: 20px;
}

.card h3 {
  margin-top: 0;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.section {
  margin: 38px 0;
}

.section h2 {
  margin-bottom: 8px;
}

.section p,
.section li {
  color: var(--muted);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding: 10px 0;
}

.badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fcd34d;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding: 20px 0 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.note {
  font-size: 0.88rem;
  color: #fda4af;
}
