:root {
  --bg: #07111d;
  --bg-soft: #0d1a2b;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.1);
  --text: #eef4ff;
  --muted: #b8c6db;
  --line: rgba(255,255,255,0.12);
  --accent: #45d0ff;
  --accent-2: #87f7c0;
  --dark: #06101b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(69,208,255,0.18), transparent 30%),
    radial-gradient(circle at left center, rgba(135,247,192,0.12), transparent 25%),
    linear-gradient(180deg, #08111f 0%, #050a12 100%);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(6,16,27,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 118px;
}
.brand img {
  height: 104px;
  width: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 0.65rem 1.05rem;
  box-shadow: 0 16px 38px rgba(0,0,0,0.26);
}
.nav nav { display: flex; gap: 1.25rem; color: var(--muted); font-size: 0.96rem; }
.nav nav a:hover { color: var(--white); }
.nav-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.lang-switcher {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}
.lang-switcher a {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lang-switcher a.active {
  background: rgba(69,208,255,0.18);
  color: var(--white);
}
.lang-switcher a:hover {
  color: var(--white);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #1f8eff);
  color: #04111d;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.button:hover { transform: translateY(-1px); }
.button-secondary, .button-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}
.hero { padding: 5rem 0 4rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow, .section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
  margin: 0.4rem 0 1.25rem;
}
h1 span { color: var(--accent); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 58ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; padding: 0; margin: 1.5rem 0 0; list-style: none; color: var(--muted);
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.metric + .metric { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.metric strong { display: block; font-size: 2rem; margin-bottom: 0.25rem; }
.metric span { color: var(--muted); }
.section { padding: 5rem 0; }
.section-dark { background: rgba(255,255,255,0.03); }
.section-accent { background: linear-gradient(180deg, rgba(69,208,255,0.08), rgba(135,247,192,0.04)); }
.two-col, .three-col, .cards, .timeline, .check-grid { display: grid; gap: 1.25rem; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2rem; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
}
.product-visual-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(69,208,255,0.05));
}
.product-visual-grid {
  align-items: center;
}
.product-visual-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.product-visual-card img {
  width: 100%;
  border-radius: 20px;
}
.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.flow div {
  background: rgba(4,17,29,0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1rem 1.25rem;
  font-weight: 600;
}
.flow span { color: var(--accent); font-size: 1.5rem; }
.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}
.check-grid div, .timeline div, .contact-box, .three-col article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.2rem 1.25rem;
}
.three-col ul, .topic-list { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2rem;
}
.timeline strong {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(69,208,255,0.15);
  color: var(--accent);
  margin-bottom: 0.75rem;
}
blockquote {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.04);
  border-radius: 0 18px 18px 0;
  font-size: 1.1rem;
}
.contact-box {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}
.section-investor {
  background: linear-gradient(180deg, rgba(135,247,192,0.08), rgba(69,208,255,0.05));
}
.investor-box {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: start;
}
.investor-points {
  display: grid;
  gap: 1rem;
}
.investor-points div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}
.investor-points a { color: var(--accent-2); }
.investor-hero-card .section-label { margin-bottom: 1rem; display: block; }
.investor-kpis { padding-top: 0; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.stat-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.stat-card strong {
  display: block;
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 0.45rem;
}
.stat-card span {
  color: var(--muted);
}
.contact-actions { display: grid; gap: 1rem; }
.form-layout {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.quick-links { margin-top: 1.25rem; }
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.25rem;
  display: grid;
  gap: 0.95rem;
}
.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(69,208,255,0.35);
  border-color: rgba(69,208,255,0.5);
}
.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .hero-grid, .two-col, .three-col, .cards, .timeline, .contact-box, .investor-box, .stat-grid, .form-layout { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; padding: 0.75rem 0; }
  .nav nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 0.25rem; }
  .nav-meta { width: 100%; justify-content: space-between; }
}
@media (max-width: 680px) {
  .hero { padding-top: 3rem; }
  h1 { font-size: 2.5rem; }
  .button, .button-secondary, .button-ghost { width: 100%; }
  .hero-actions { flex-direction: column; }
}
