:root {
  color-scheme: dark;
  --bg: #0c100e;
  --panel: #151b17;
  --soft: #1d251f;
  --text: #f5f2ea;
  --muted: #b8c0b9;
  --accent: #d7f37f;
  --line: rgba(255, 255, 255, 0.12);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); }
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip { position: fixed; left: 20px; top: -80px; z-index: 10; padding: 12px 18px; border-radius: 12px; background: var(--accent); color: #10150f; }
.skip:focus { top: 20px; }
.site-header { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 720; font-size: 18px; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
.site-nav a:hover { color: var(--text); }
.language { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; }
.hero { position: relative; min-width: 0; min-height: 690px; display: grid; align-items: center; overflow: hidden; border-radius: 34px; background: #111; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 10, 8, .86) 0%, rgba(7, 10, 8, .58) 38%, rgba(7, 10, 8, .06) 72%), linear-gradient(0deg, rgba(7, 10, 8, .35), transparent 45%); }
.hero-copy { position: relative; z-index: 1; min-width: 0; width: min(580px, 82%); padding: 74px; }
.eyebrow { margin: 0 0 18px; color: var(--accent); font-size: 12px; font-weight: 760; letter-spacing: .18em; text-transform: uppercase; }
h1 { margin: 0; overflow-wrap: anywhere; word-break: break-word; font-size: clamp(48px, 6vw, 84px); line-height: .98; letter-spacing: -.055em; }
.lead { margin: 26px 0 32px; color: #e0e4df; font-size: 19px; line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.button { display: inline-flex; justify-content: center; align-items: center; max-width: 100%; min-height: 50px; padding: 0 22px; border-radius: 14px; text-align: center; text-decoration: none; font-weight: 700; }
.button-primary { background: var(--accent); color: #10150f; }
.button-secondary { border: 1px solid rgba(255, 255, 255, .28); background: rgba(10, 14, 11, .38); backdrop-filter: blur(12px); }
.note { margin: 16px 0 0; color: #bdc4bf; font-size: 13px; }
.section { padding: 112px 0; }
.section-heading { width: min(720px, 100%); margin-bottom: 46px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
h2 { margin: 0 0 18px; font-size: clamp(38px, 5vw, 62px); line-height: 1.04; letter-spacing: -.045em; }
.section-heading p:last-child, .feature-card p, .legal p, .legal li { color: var(--muted); font-size: 17px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); }
.feature-card .mark { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 34px; border-radius: 13px; background: rgba(215, 243, 127, .12); color: var(--accent); font-size: 20px; }
.feature-card h3 { margin: 0 0 12px; font-size: 22px; }
.feature-card p { margin: 0; font-size: 15px; }
.showcase { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: stretch; }
.showcase figure { margin: 0; min-height: 420px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--panel); }
.showcase img { width: 100%; height: 100%; object-fit: cover; }
.value-panel { display: flex; flex-direction: column; justify-content: center; padding: 52px; border-radius: 28px; background: var(--soft); }
.value-panel h2 { font-size: clamp(36px, 4vw, 54px); }
.value-panel p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.strip { margin-bottom: 112px; padding: 50px; display: flex; gap: 28px; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, #1d271f, #131814); }
.strip h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); }
.site-footer { min-height: 100px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-nav { display: flex; gap: 20px; }
.legal { width: min(800px, calc(100% - 40px)); margin: 70px auto 120px; }
.legal h1 { font-size: clamp(44px, 6vw, 72px); }
.legal h2 { margin-top: 48px; font-size: 28px; letter-spacing: -.025em; }
.legal a { color: var(--accent); }

@media (max-width: 820px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .site-nav a:not(.language) { display: none; }
  .shell { width: calc(100vw - 40px); max-width: calc(100vw - 40px); }
  .hero { grid-template-columns: minmax(0, 1fr); min-height: 650px; border-radius: 24px; }
  .hero::after { background: linear-gradient(90deg, rgba(7, 10, 8, .83), rgba(7, 10, 8, .28)), linear-gradient(0deg, rgba(7, 10, 8, .5), transparent); }
  .hero-copy { padding: 36px; width: 100%; max-width: 100%; }
  .hero-copy > * { min-width: 0; max-width: 100%; }
  .hero h1 { word-break: break-all; font-size: clamp(42px, 12vw, 54px); }
  .hero .actions { align-items: stretch; flex-direction: column; }
  .hero .button { width: 100%; }
  .feature-grid, .showcase { grid-template-columns: 1fr; }
  .showcase figure { min-height: 0; }
  .showcase img { width: 100%; height: auto; object-fit: contain; }
  .value-panel { padding: 34px; }
  .strip { align-items: flex-start; flex-direction: column; }
  .site-footer { padding: 28px 0; align-items: flex-start; flex-direction: column; }
  .footer-nav { flex-wrap: wrap; }
}
