:root {
  --ink: #172033;
  --ink-2: #26364f;
  --muted: #5c6877;
  --soft: #eef3f8;
  --soft-2: #f7f9fc;
  --line: #d8e1ec;
  --blue-950: #0c1526;
  --blue-900: #122541;
  --blue-800: #183a66;
  --blue-700: #24518b;
  --orange: #e57900;
  --orange-2: #c76700;
  --cyan: #16b9d6;
  --pink: #e04491;
  --violet: #6d5dfc;
  --green: #198754;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(19, 36, 60, 0.15);
  --radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft-2);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #cfd8e3;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  font-size: 21px;
  color: #16243a;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.18));
}

.nav-menu {
  display: flex;
  gap: 26px;
  align-items: center;
  color: #26374d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu a:hover { color: var(--orange); }

.nav-status {
  text-align: right;
  color: #667589;
  font-size: 12px;
  line-height: 1.35;
  min-width: 115px;
}

.hero,
.page-hero {
  position: relative;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 22, 39, 0.10), rgba(7, 14, 28, 0.78)),
    linear-gradient(135deg, #132642 0%, #1c4578 50%, #0b1426 100%);
  border-bottom: 1px solid #0d1a2d;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: -160px -60px 0 -60px;
  opacity: 0.30;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(950px) rotateX(58deg) scale(1.35);
  transform-origin: center top;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(22,185,214,0.18), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(224,68,145,0.10), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 44px;
  padding: 62px 0 50px;
  position: relative;
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 70px 0 64px;
  max-width: 880px;
}

.label {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  padding: 7px 12px;
  color: #dcecff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(48px, 6.2vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-shadow: 0 3px 16px rgba(0,0,0,0.32);
}

.page-hero h1 {
  font-size: clamp(42px, 5.2vw, 64px);
}

.tagline {
  margin: 0 0 15px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.22;
  font-weight: 400;
  color: #eff6ff;
}

.hero-copy,
.page-copy {
  margin: 0;
  max-width: 720px;
  color: #e6eef9;
  font-size: 19px;
  line-height: 1.52;
}

.hero-copy strong,
.page-copy strong {
  color: #fff;
  font-weight: 800;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 25px;
}

.button {
  display: inline-flex;
  min-width: 180px;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  border: 1px solid rgba(0,0,0,0.22);
  box-shadow: 0 3px 0 var(--orange-2), 0 14px 28px rgba(0,0,0,0.23);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.button.secondary {
  background: #fff;
  color: #18314f;
  box-shadow: 0 3px 0 #c9d5e3, 0 14px 28px rgba(0,0,0,0.17);
}

.button.linkish {
  background: transparent;
  color: #19314f;
  border-color: #c9d5e3;
  box-shadow: none;
}

.button.small {
  min-width: 0;
  width: 100%;
  height: 44px;
  padding: 0 16px;
  font-size: 13px;
}

.note {
  color: #d5e1ef;
  font-size: 15px;
  max-width: 650px;
}

.visual {
  position: relative;
  min-height: 450px;
}

.logo-block {
  position: absolute;
  top: 8px;
  right: 22px;
  width: 230px;
  height: 230px;
  z-index: 4;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.42));
}

.app-window {
  position: absolute;
  left: 0;
  right: 105px;
  top: 72px;
  bottom: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.23);
  box-shadow: 0 28px 80px rgba(0,0,0,0.46);
}

.app-bar {
  height: 36px;
  background: #0b1120;
  color: #a9b7ca;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.app-tabs { display: flex; gap: 8px; color: #7f8fa4; }
.app-tabs span:first-child { color: #e7eef8; }

.app-body {
  height: calc(100% - 36px);
  display: grid;
  grid-template-columns: 165px 1fr;
}

.app-side {
  background: #151c2b;
  border-right: 1px solid rgba(255,255,255,0.10);
  padding: 12px;
}

.fake-search {
  height: 30px;
  border-radius: 4px;
  background: #0b1120;
  border: 1px solid #29354a;
  margin-bottom: 14px;
}

.fake-line {
  height: 20px;
  border-radius: 3px;
  background: #253149;
  margin-bottom: 8px;
}
.fake-line.small { width: 74%; }

.app-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  align-content: start;
}

.thumb {
  min-height: 78px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(135deg, rgba(14,165,233,0.36), transparent),
    #263044;
  position: relative;
  overflow: hidden;
}

.thumb:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(236,72,153,0.34), transparent),
    #263044;
}

.thumb:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(250,204,21,0.24), transparent),
    #263044;
}

.thumb::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 7px;
  height: 13px;
  border-radius: 3px;
  background: rgba(0,0,0,0.28);
}

.hero-trust {
  position: relative;
  z-index: 1;
  padding: 8px 0 34px;
  text-align: center;
  color: #d5dfeb;
  font-size: 18px;
  line-height: 1.5;
}

.hero-trust strong { color: #fff; }

.strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  border-left: 4px solid var(--orange);
  padding-left: 14px;
}

.stat strong {
  display: block;
  color: #14253b;
  font-size: 24px;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 58px 0;
}

.section.white {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.compact {
  padding: 42px 0;
}

.section h2 {
  margin: 0 0 12px;
  color: #15263c;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.lead {
  margin: 0 0 28px;
  color: #5d6978;
  font-size: 18px;
  line-height: 1.55;
  max-width: 860px;
}

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

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

.tool-card,
.panel,
.price,
.download-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.045);
}

.section.white .tool-card,
.section.white .panel {
  background: #fbfdff;
}

.badge {
  display: inline-flex;
  padding: 4px 8px;
  margin-bottom: 13px;
  border-radius: 3px;
  background: #eaf2fb;
  border: 1px solid #cbd9ea;
  color: #183a66;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.tool-card h3,
.panel h3,
.download-card h3 {
  margin: 0 0 9px;
  color: #19314f;
  font-size: 21px;
  line-height: 1.2;
}

.tool-card p,
.panel p,
.download-card p {
  margin: 0;
  color: #5c6876;
  font-size: 15px;
  line-height: 1.55;
}

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

.screenshot,
.placeholder-shot {
  background: #101827;
  border: 1px solid #b9c8d9;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.screenshot img {
  width: 100%;
  height: auto;
  background: #101827;
}

.shot-caption {
  background: #0b1120;
  color: #a9b7ca;
  font-size: 12px;
  padding: 10px 13px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.placeholder-inner {
  min-height: 330px;
  display: grid;
  place-items: center;
  color: #9badc4;
  font-size: 15px;
  text-align: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(22,185,214,0.18), transparent 45%),
    linear-gradient(225deg, rgba(224,68,145,0.14), transparent 45%),
    #111827;
}

.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  color: #29394c;
  font-size: 18px;
  line-height: 1.6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  margin-top: 20px;
}

.quote strong {
  display: block;
  margin-top: 18px;
  color: #15263c;
  font-size: 15px;
}

.media-list,
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.download-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.media-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.media-box h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #19314f;
}

.media-box p {
  margin: 0;
  color: #5c6876;
  line-height: 1.55;
  font-size: 14px;
}

.pro-section {
  background:
    linear-gradient(135deg, rgba(24,58,102,0.08), rgba(229,121,0,0.08)),
    #f4f7fb;
  border-top: 1px solid #ccd7e5;
  border-bottom: 1px solid #ccd7e5;
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.price.pro {
  border: 2px solid var(--orange);
  box-shadow: 0 12px 35px rgba(229,121,0,0.12);
}

.price h3 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #14253b;
}

.price p {
  color: #5c6876;
  line-height: 1.55;
  margin: 0 0 16px;
}

.price ul,
.panel ul,
.download-card ul {
  margin: 0;
  padding-left: 21px;
  color: #24364c;
  line-height: 1.85;
}

.plan-note {
  margin-top: 18px;
  padding: 13px 14px;
  background: #f1f6fb;
  border: 1px solid #d5e1ee;
  border-radius: 6px;
  color: #31445c;
  font-size: 14px;
  line-height: 1.45;
}

.plan-note.strong {
  background: #fff7ea;
  border-color: #f1c990;
  color: #563b17;
}

.feature-table td:first-child {
  color: #18314f;
  font-weight: 800;
  width: 24%;
}

.notice {
  padding: 18px 20px;
  background: #fff8ec;
  border: 1px solid #f3d6aa;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  color: #4f3920;
  line-height: 1.55;
}

.code {
  display: block;
  margin: 12px 0 0;
  padding: 12px 14px;
  background: #101827;
  color: #d7e3f4;
  border-radius: 6px;
  overflow-x: auto;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 13px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.table th,
.table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table th {
  background: #edf3fa;
  color: #18314f;
  font-size: 13px;
  text-transform: uppercase;
}

.table tr:last-child td { border-bottom: 0; }

.bottom-cta {
  background:
    linear-gradient(135deg, rgba(18,36,63,0.94), rgba(30,64,110,0.94)),
    #13243f;
  color: white;
  text-align: center;
  padding: 56px 0;
  border-top: 1px solid #0d1a2d;
}

.bottom-cta h2 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.1;
}

.bottom-cta p {
  margin: 0 0 26px;
  color: #dce8f7;
  font-size: 19px;
}

footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: #657386;
  font-size: 13px;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.foot a {
  margin-left: 12px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .pricing,
  .two-grid {
    grid-template-columns: 1fr;
  }

  .visual { min-height: 445px; }
  .app-window { right: 0; }
  .logo-block { width: 150px; height: 150px; }

  .nav-menu,
  .nav-status {
    display: none;
  }

  .strip-grid,
  .tool-grid,
  .media-list,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .app-body { grid-template-columns: 1fr; }
  .app-side { display: none; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .hero-grid { min-height: auto; padding: 44px 0 36px; }
  h1 { font-size: 46px; }
  .buttons { gap: 12px; }
  .button { width: 100%; }
  .visual { min-height: 370px; }
  .app-grid { grid-template-columns: repeat(3, 1fr); }
  .thumb { min-height: 70px; }
  .table { font-size: 14px; }
  .table th, .table td { padding: 11px 12px; }
}
