:root {
  --bg: #06111f;
  --bg-soft: #0d1c2f;
  --panel: rgba(10, 24, 41, 0.86);
  --panel-strong: #10253f;
  --text: #ecf3ff;
  --muted: #9fb5cf;
  --line: rgba(186, 208, 235, 0.16);
  --accent: #5ab0ff;
  --accent-strong: #7ee0b3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(90, 176, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(126, 224, 179, 0.14), transparent 28%),
    linear-gradient(180deg, #06111f 0%, #091726 52%, #07111d 100%);
}
a { color: inherit; text-decoration: none; }
.page-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 24px 0 56px; }
.topbar {
  position: sticky; top: 16px; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-bottom: 28px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 22px;
  background: rgba(6, 17, 31, 0.72); backdrop-filter: blur(16px); box-shadow: var(--shadow);
}
.brand-mark { height: 28px; width: auto; display: block; }
.hero-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero-brand img:first-child { width: 56px; height: 56px; flex: 0 0 auto; }
.hero-brand img:last-child { width: min(260px, 58vw); height: auto; display: block; }
.topnav, .topbar-actions { display: flex; align-items: center; gap: 18px; }
.topnav a, .nav-link { color: var(--muted); font-size: 0.95rem; }
.lang-switcher { display: inline-flex; align-items: center; gap: 6px; padding: 6px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, 0.03); }
.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 42px;
  height: 36px;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.lang-button.is-active { background: linear-gradient(135deg, var(--accent) 0%, #89d5ff 100%); color: #03111c; }
.panel { border: 1px solid var(--line); border-radius: 28px; background: var(--panel); box-shadow: var(--shadow); }
.hero { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 28px; padding: 54px; }
.eyebrow { margin: 0 0 14px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.76rem; font-family: "Space Grotesk", sans-serif; }
.hero h1, .section-heading h2 { margin: 0; font-family: "Space Grotesk", sans-serif; line-height: 0.98; }
.hero h1 { font-size: clamp(3rem, 7vw, 5.8rem); max-width: 10ch; }
.hero-lead, .section-heading p, .feature-card p, .workflow p, .trust-grid p, .contact-panel p { color: var(--muted); line-height: 1.7; }
.hero-lead { max-width: 58ch; margin: 18px 0 24px; font-size: 1.08rem; }
.hero-actions, .status-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px;
  border-radius: 14px; font-weight: 700; transition: transform 140ms ease, background 140ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, var(--accent) 0%, #89d5ff 100%); color: #03111c; }
.button-secondary { border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); }
.hero-points { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; color: var(--text); }
.hero-points li::before { content: "•"; color: var(--accent-strong); margin-right: 10px; }
.hero-card { display: grid; align-content: start; gap: 14px; }
.mini-label, .plan-name, .contact-label { margin: 0; color: var(--accent-strong); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; font-family: "Space Grotesk", sans-serif; }
.stack-card, .feature-card, .price-card, .contact-box, .workflow article, .trust-grid > div { border: 1px solid var(--line); border-radius: 22px; background: var(--panel-strong); }
.stack-card { display: grid; gap: 14px; padding: 22px; }
.stack-card div { display: grid; gap: 4px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.stack-card div:last-child { padding-bottom: 0; border-bottom: 0; }
.metric { color: var(--accent); font-family: "Space Grotesk", sans-serif; }
.status-strip span { padding: 10px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255, 255, 255, 0.03); }
.grid-section, .workflow-panel, .pricing-panel, .trust-panel, .contact-panel { margin-top: 28px; padding: 36px; }
.section-heading { max-width: 70ch; margin-bottom: 28px; }
.section-heading.narrow { max-width: 56ch; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 12px; }
.feature-grid, .pricing-grid, .trust-grid, .workflow { display: grid; gap: 18px; }
.feature-grid, .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card, .trust-grid > div { padding: 22px; }
.workflow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.workflow article { padding: 24px; }
.workflow span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(90, 176, 255, 0.12); color: var(--accent); font-family: "Space Grotesk", sans-serif; }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card { padding: 24px; }
.price-card.featured { outline: 2px solid rgba(126, 224, 179, 0.34); transform: translateY(-6px); }
.price { margin: 14px 0; font-size: 2rem; font-family: "Space Grotesk", sans-serif; }
.price span { font-size: 0.95rem; color: var(--muted); }
.price-card ul, .contact-box ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.contact-box { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.contact-box a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(126, 224, 179, 0.5); text-underline-offset: 3px; }
@media (max-width: 980px) {
  .topbar { flex-wrap: wrap; }
  .hero, .feature-grid, .pricing-grid, .trust-grid, .workflow, .contact-box { grid-template-columns: 1fr; }
  .contact-box { display: grid; }
  .hero { padding: 32px; }
}
@media (max-width: 720px) {
  .page-shell { width: min(100% - 20px, 1180px); padding-top: 12px; }
  .topbar { top: 10px; gap: 14px; }
  .topnav, .topbar-actions { width: 100%; justify-content: space-between; flex-wrap: wrap; }
  .lang-switcher { order: -1; }
  .hero, .grid-section, .workflow-panel, .pricing-panel, .trust-panel, .contact-panel { padding: 24px; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-brand { flex-direction: column; align-items: flex-start; }
  .hero-brand img:last-child { width: min(220px, 68vw); }
}
