:root {
  --bg: #0b1220;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --brand-1: #66d3ff;
  --brand-2: #2aa8ff;
  --brand-3: #1c6cff;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  --radius: 18px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: radial-gradient(1200px 900px at 20% -10%, rgba(102, 211, 255, 0.18), transparent 55%),
    radial-gradient(900px 700px at 85% 10%, rgba(42, 168, 255, 0.14), transparent 60%),
    radial-gradient(900px 700px at 50% 90%, rgba(28, 108, 255, 0.12), transparent 55%), var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  z-index: 9999;
}

.skip:focus {
  left: 12px;
}

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.65);
  border-bottom: 1px solid var(--line);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-logo {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand-name {
  font-size: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.nav-mobile-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(360px, 90vw);
  background: rgba(11, 18, 32, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.nav-mobile-title {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.nav-mobile-close {
  width: 44px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.nav-mobile-close:hover {
  background: rgba(255, 255, 255, 0.07);
}

.nav-mobile-panel a {
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.nav-mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.nav-mobile-lang {
  margin-top: 6px;
}

.lang-select {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.lang-select option {
  color: #0b1220;
  background: #ffffff;
}

.lang-select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(102, 211, 255, 0.10);
}

.nav a {
  padding: 10px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--text);
}

.hero {
  padding: 56px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
}

.badge--muted {
  opacity: 0.9;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 18px 0 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-weight: 700;
}

.btn:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
}

.btn--primary {
  color: rgba(11, 18, 32, 0.98);
  border: 0;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3));
  box-shadow: 0 14px 42px rgba(42, 168, 255, 0.24);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  color: var(--text);
}

.fine {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hero-preview {
  position: relative;
  min-height: 380px;
}

.preview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.preview-card--top {
  padding: 16px 16px 14px;
}

.preview-title {
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.preview-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-row:first-of-type {
  border-top: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(102, 211, 255, 0.08);
}

.dot--ok {
  background: #45e6b8;
}

.dot--warn {
  background: #ffd36a;
}

.dot--info {
  background: var(--brand-1);
}

.preview-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.preview-card--grid {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  background: rgba(11, 18, 32, 0.5);
}

.col {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.col-head {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.chip {
  display: block;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.chip--thin {
  opacity: 0.85;
}

.chip--active {
  border-color: rgba(102, 211, 255, 0.22);
  box-shadow: 0 0 0 4px rgba(102, 211, 255, 0.06);
}

.chip--done {
  border-color: rgba(69, 230, 184, 0.22);
  box-shadow: 0 0 0 4px rgba(69, 230, 184, 0.06);
}

.section {
  padding: 46px 0;
}

.section--alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.01em;
}

.sub {
  margin: 0 0 22px;
  color: var(--muted);
}

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

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

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

.shot-card {
  display: block;
  padding: 0;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  cursor: pointer;
}

.shot-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.shot-img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-cap {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
}

.shot-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.shot-lightbox-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(11, 18, 32, 0.96);
  box-shadow: var(--shadow);
  padding: 14px;
}

.shot-lightbox-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.shot-lightbox-cap {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.shot-lightbox-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.shot-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  cursor: pointer;
}

.shot-close:hover {
  background: rgba(255, 255, 255, 0.10);
}

.news-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  overflow: hidden;
}

.news-image {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.03);
}

.news-body {
  padding: 16px 18px 18px;
}

.news-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  margin-bottom: 8px;
}

.news-title {
  margin: 0 0 8px;
  font-size: 16px;
}

.news-summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.news-more {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 10px;
}

.news-more summary {
  cursor: pointer;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

.news-content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.news-empty {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.02);
}

.hidden {
  display: none !important;
}

.lang-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}

.lang-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.lang-tab--active {
  color: rgba(11, 18, 32, 0.98);
  border: 0;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3));
  box-shadow: 0 14px 42px rgba(42, 168, 255, 0.18);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  padding: 18px;
}

.card--tint {
  background: radial-gradient(800px 300px at 20% 20%, rgba(102, 211, 255, 0.11), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.ea-form input[type="email"],
.ea-form input[type="text"],
.ea-form select {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
}

.ea-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}

.ea-field {
  display: block;
}

.ea-field .fine {
  display: block;
  margin-bottom: 6px;
}

.ea-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}

.ea-consent input {
  margin-top: 3px;
}

.ea-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.list li {
  margin: 8px 0;
}

.note {
  border: 1px solid rgba(102, 211, 255, 0.2);
  background: rgba(102, 211, 255, 0.06);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
  margin: 12px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.faq p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(11, 18, 32, 0.85);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.68);
}

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

  .hero-preview {
    min-height: 340px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .news-grid {
    grid-template-columns: 1fr;
  }

  .shot-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .preview-card--grid {
    position: relative;
    bottom: 0;
    margin-top: 14px;
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ea-row {
    grid-template-columns: 1fr;
  }
}
