:root {
  --bg: #04101d;
  --bg-2: #07172a;
  --panel: rgba(10, 24, 42, 0.78);
  --panel-2: rgba(13, 31, 54, 0.92);
  --line: rgba(131, 168, 255, 0.16);
  --text: #f4f7ff;
  --muted: #9cb0cf;
  --accent: #6b8cff;
  --accent-2: #6ef2d0;
  --danger: #ff8b8b;
  --success: #7ef2c4;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(107, 140, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(110, 242, 208, 0.12), transparent 22%),
    radial-gradient(circle at 70% 78%, rgba(42, 92, 255, 0.12), transparent 25%),
    linear-gradient(180deg, #03101c 0%, #04101d 40%, #051324 100%);
  min-height: 100vh;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.panel {
  background: linear-gradient(180deg, rgba(14, 28, 48, 0.92), rgba(8, 20, 36, 0.84));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 11, 21, 0.62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 25px rgba(107, 140, 255, 0.28);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
}

.brand-core {
  position: relative;
  z-index: 2;
  font-weight: 900;
  font-size: 1rem;
  color: white;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 108px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  min-width: 44px;
  min-height: 36px;
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--accent), #7b97ff);
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 220px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-nav {
  color: white;
  background: linear-gradient(135deg, var(--accent), #7f97ff);
  box-shadow: 0 16px 35px rgba(107, 140, 255, 0.26);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 80px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(110, 242, 208, 0.16);
  background: rgba(110, 242, 208, 0.06);
  color: var(--accent-2);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4.6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 720px;
}

.hero-lead {
  margin: 0 0 26px;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.proof-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.proof-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.dashboard {
  padding: 18px;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.red { background: #ff7a7a; }
.yellow { background: #ffd76d; }
.green { background: #6ff0ba; }

.panel-label {
  margin-left: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  min-height: 96px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 1.36rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat-value.danger {
  color: var(--danger);
}

.stat-value.success {
  color: var(--success);
}

.dashboard-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.timeline-card,
.summary-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.timeline-card h3,
.summary-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.event-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.event-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.event-time {
  color: var(--muted);
  font-size: 0.82rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge-danger {
  background: rgba(255, 139, 139, 0.12);
  color: #ffb2b2;
}

.badge-info {
  background: rgba(107, 140, 255, 0.12);
  color: #adc1ff;
}

.badge-success {
  background: rgba(126, 242, 196, 0.12);
  color: #b6f6dc;
}

.summary-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.floating-card {
  position: absolute;
  right: -16px;
  bottom: -18px;
  width: min(320px, 92%);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 900;
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 42px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2vw, 2.6rem);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 18px;
}

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

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

.info-card,
.feature-card,
.org-card {
  padding: 22px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(107, 140, 255, 0.1);
  border: 1px solid rgba(107, 140, 255, 0.18);
  color: #b7c7ff;
  margin-bottom: 14px;
  font-weight: 800;
}

.info-card h3,
.feature-card h3,
.org-card h3,
.workflow-step h3,
.text-panel h3,
.architecture h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.info-card p,
.feature-card p,
.org-card p,
.workflow-step p,
.text-panel p,
.contact-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.feature-kicker,
.small-kicker {
  display: inline-flex;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-symbol {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(110, 242, 208, 0.08);
  border: 1px solid rgba(110, 242, 208, 0.14);
  color: var(--accent-2);
}

.feature-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.feature-card li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.workflow {
  padding: 24px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
}

.workflow-step {
  flex: 1;
  min-height: 170px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.workflow-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(107, 140, 255, 0.12);
  color: #b7c7ff;
  font-size: 0.76rem;
  font-weight: 800;
}

.workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  font-size: 1.5rem;
  color: var(--accent);
}

.architecture {
  padding: 24px;
}

.architecture-head {
  margin-bottom: 18px;
}

.arch-stack {
  display: grid;
  gap: 10px;
}

.arch-box {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 18px;
  font-weight: 700;
  color: var(--text);
}

.arch-box.highlight {
  background: linear-gradient(135deg, rgba(107, 140, 255, 0.16), rgba(110, 242, 208, 0.08));
}

.arch-line {
  width: 2px;
  height: 18px;
  margin-left: 18px;
  background: linear-gradient(180deg, rgba(107, 140, 255, 0.22), rgba(110, 242, 208, 0.18));
}

.text-panel {
  padding: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.contact-info,
.form-panel {
  padding: 24px;
}

.contact-info h2 {
  margin: 10px 0 12px;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.contact-lines {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.contact-lines span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 4px;
}

.contact-lines strong {
  font-size: 1rem;
}

form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #8ba0c2;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(107, 140, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(107, 140, 255, 0.1);
}

.video-card {
  padding: 24px;
}

.video-placeholder {
  min-height: 320px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.footer {
  padding: 28px 0 50px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .dashboard-main {
    grid-template-columns: 1fr;
  }

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

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

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

  .floating-card {
    position: static;
    margin-top: 14px;
    width: 100%;
  }

  .workflow {
    flex-direction: column;
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }
}

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

  .nav-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 48px;
  }

  .cards-3,
  .cards-4,
  .stats-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .btn,
  .btn-nav {
    min-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .contact-info h2 {
    font-size: 1.7rem;
  }
}

.brand-mark img{
height:40px;
width:40px;
object-fit:contain;
}