:root {
  --l-bg: #f8fafc;
  --l-ink: #0f172a;
  --l-muted: #475569;
  --l-line: #e2e8f0;
  --l-accent: #84cc16;
  --l-accent-2: #eab308;
  --l-soft: #f7fee7;
  --l-danger: #ef4444;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.landing-body {
  color: var(--l-ink);
  font-family: "Sora", sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(1100px 500px at 90% -120px, #dff7ff 0%, transparent 58%),
    radial-gradient(860px 400px at 0% 15%, #ecfeff 0%, transparent 56%),
    var(--l-bg);
}

.l-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(14px, 3vw, 28px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.58);
  backdrop-filter: blur(10px);
  background: rgba(248, 250, 252, 0.42);
  width: 100%;
  max-width: 100%;
}

.l-logo {
  color: var(--l-ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.l-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.l-brand-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(190, 242, 100, 0.6);
  background: rgba(15, 23, 42, 0.48);
  border-radius: 10px;
  padding: 7px 10px;
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 700;
}

.l-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.l-dropdown {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.l-dd-trigger {
  border: 0;
  background: transparent;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 2px;
  cursor: pointer;
}

.l-dd-trigger:hover,
.l-dd-trigger:focus-visible,
.l-dd-trigger[aria-expanded="true"] {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.l-dd-menu {
  position: absolute;
  top: calc(100% - 4px);
  right: 0;
  min-width: 220px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.l-dd-menu a {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 12px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
}

.l-dd-menu a:hover,
.l-dd-menu a:focus-visible {
  background: #f1f5f9;
  outline: none;
}

.l-dd-trigger[aria-expanded="true"] + .l-dd-menu,
.l-dropdown:hover .l-dd-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.l-link {
  text-decoration: none;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 2px;
}

.l-link:hover,
.l-link:focus-visible {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.l-menu-toggle {
  display: none;
  border: 1px solid #d1d5db;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.l-main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.l-hero {
  width: 100%;
  max-width: 100%;
  min-height: calc(100vh - 66px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--l-line);
  background: linear-gradient(120deg, #ffffff 0%, #f0f9ff 42%, #ecfeff 100%);
}

.l-hero-media {
  position: absolute;
  inset: 0;
}

.l-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.03) contrast(1.03);
}

.l-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 12, 22, 0.68) 5%, rgba(8, 19, 36, 0.56) 44%, rgba(8, 24, 41, 0.68) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 72px);
}

.l-hero-comments {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-comment {
  position: absolute;
  bottom: -46px;
  transform: translateX(-50%);
  font-size: 13px;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.35);
  white-space: nowrap;
  max-width: min(78vw, 360px);
  overflow: hidden;
  text-overflow: ellipsis;
  animation-name: floatComment;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.hero-comment b {
  color: #fde047;
  margin-right: 6px;
}

@keyframes floatComment {
  0% { transform: translateX(-50%) translateY(0); opacity: 0; }
  8% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(-50%) translateY(-110vh); opacity: 0; }
}

.l-hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding: clamp(42px, 9vh, 96px) clamp(16px, 5vw, 88px) 44px;
}

.l-chip {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #bae6fd;
  background: rgba(15, 23, 42, 0.52);
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
}

.l-hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(40px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.l-hero p {
  margin: 0;
  max-width: 680px;
  color: #dbeafe;
  font-size: clamp(16px, 2.3vw, 24px);
  line-height: 1.45;
}

.l-cta-row {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.l-btn {
  border-radius: 12px;
  border: 1px solid #bae6fd;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.l-btn:hover,
.l-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(2, 132, 199, 0.18);
  outline: none;
}

.l-btn.solid {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--l-accent) 0%, var(--l-accent-2) 100%);
}

.l-btn.ghost {
  background: rgba(15, 23, 42, 0.45);
  color: #e0f2fe;
  border-color: rgba(186, 230, 253, 0.65);
}

.l-hero-status {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(190, 242, 100, 0.6);
  background: rgba(15, 23, 42, 0.48);
  border-radius: 10px;
  padding: 10px 14px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 700;
}

.l-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
}

.l-dot.ok {
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.l-dot.down {
  background: var(--l-danger);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

@media (max-width: 680px) {
  .l-nav {
    padding: 12px 10px;
    align-items: center;
  }

  .l-logo {
    font-size: 19px;
  }

  .l-menu-toggle {
    display: inline-flex;
  }

  .l-nav-actions {
    position: absolute;
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    padding: 10px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
  }

  .l-nav-actions.open {
    display: flex;
  }

  .l-nav-actions .l-link,
  .l-nav-actions .l-dd-trigger {
    padding: 9px 10px;
    border-radius: 8px;
    background: #f8fafc;
  }

  .l-dropdown {
    width: 100%;
  }

  .l-dd-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: transparent;
    min-width: auto;
    padding: 4px 0 0;
  }

  .l-dd-menu a {
    background: #f1f5f9;
  }

  .l-btn,
  .l-link {
    font-size: 13px;
    padding: 9px 12px;
  }

  .l-hero {
    min-height: calc(100vh - 58px);
  }

  .l-hero-content {
    padding: 30px 14px 26px;
  }
}
