:root {
  --ink: #15202b;
  --muted: #5d6975;
  --line: #d9e2ea;
  --panel: #f5f8fa;
  --paper: #ffffff;
  --blue: #0f3d63;
  --teal: #0f766e;
  --copper: #bd6422;
  --copper-dark: #8c4218;
  --cream: #fff7e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 21px;
  color: var(--blue);
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  text-decoration: none;
}

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

.nav-links a.active {
  color: var(--blue);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(22px, 6vw, 86px) clamp(44px, 6vw, 72px);
  background: linear-gradient(180deg, #f9fbfc 0%, #ffffff 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 19px;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.primary-button {
  color: #ffffff;
  background: var(--copper);
  border: 1px solid var(--copper);
}

.primary-button:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
}

.secondary-button {
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
}

.secondary-button:hover {
  border-color: var(--blue);
}

.primary-button.large {
  min-width: 190px;
}

.trial-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  justify-self: center;
  width: min(100%, 760px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 61, 99, 0.12);
}

.preview-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.preview-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: #edf2f6;
}

.preview-bar span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9eb0bf;
}

.preview-window img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(22px, 6vw, 86px);
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  min-height: 104px;
  padding: 22px;
  background: #ffffff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--blue);
  font-size: 18px;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  padding: clamp(60px, 8vw, 96px) clamp(22px, 6vw, 86px);
}

.page-hero {
  padding: clamp(48px, 7vw, 78px) clamp(22px, 6vw, 86px);
  background: linear-gradient(180deg, #f9fbfc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 58px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.feature-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.feature-grid p,
.split-section p,
.download-section p,
.contact-section p {
  color: var(--muted);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.screenshots-section {
  background: #ffffff;
}

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

.screenshot-grid-even {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screenshot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 61, 99, 0.08);
}

.screenshot-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.screenshot-open img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  transition: transform 180ms ease, filter 180ms ease;
}

.screenshot-open:hover img,
.screenshot-open:focus-visible img {
  filter: contrast(1.03) saturate(1.04);
  transform: scale(1.015);
}

.screenshot-open:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.45);
  outline-offset: -3px;
}

.screenshot-card div {
  padding: 20px;
}

.screenshot-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(9, 19, 30, 0.84);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-frame {
  position: relative;
  width: min(96vw, 1500px);
  max-height: 92vh;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-frame img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 72px);
  object-fit: contain;
  background: var(--panel);
}

.lightbox-frame figcaption {
  padding: 12px 2px 0;
  color: var(--blue);
  font-weight: 800;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 51;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
  font-size: 32px;
  line-height: 38px;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(0, 0, 0, 0.5);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(30px, 6vw, 78px);
  background: var(--panel);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 86px;
  padding: 18px 18px 18px 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 3px;
  color: var(--muted);
}

.download-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(22px, 6vw, 86px);
  padding: clamp(34px, 5vw, 48px);
  border: 1px solid #eed2ad;
  border-radius: 8px;
  background: var(--cream);
}

.download-section div {
  max-width: 720px;
}

.purchase-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.purchase-copy {
  max-width: 760px;
}

.purchase-copy p {
  color: var(--muted);
}

.purchase-copy a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.purchase-warning {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid #eed2ad;
  border-radius: 8px;
  background: var(--cream);
}

.purchase-warning h3 {
  color: var(--blue);
}

.purchase-warning p {
  margin-bottom: 0;
}

.purchase-notes {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.purchase-notes li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.purchase-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.paypal-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 61, 99, 0.08);
}

.paypal-card h3 {
  color: var(--blue);
}

.paypal-card p {
  color: var(--muted);
}

#paypal-container-A8SS9THGQLXCL {
  min-height: 54px;
  margin-top: 18px;
}

.price-box {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid #eed2ad;
  border-radius: 8px;
  background: var(--cream);
}

.price-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-box strong {
  color: var(--blue);
  font-size: 30px;
  line-height: 1.1;
}

.price-box small {
  color: var(--muted);
  font-size: 14px;
}

.purchase-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.purchase-form label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-weight: 800;
}

.purchase-form input {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

.purchase-form input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(15, 61, 99, 0.16);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 32px;
}

.contact-card {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.contact-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(22px, 6vw, 86px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #ffffff;
  font-size: 14px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero,
  .split-section,
  .contact-section,
  .purchase-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
  }

  .trust-strip,
  .feature-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .download-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trust-strip,
  .download-section {
    margin-left: 18px;
    margin-right: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}

.download-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f9fbfc 0%, #ffffff 52%, #f5f8fa 100%);
}

.download-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px);
  padding: clamp(28px, 5vw, 70px) clamp(18px, 5vw, 72px);
}

.download-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  width: min(100%, 900px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 61, 99, 0.13);
}

.download-product {
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-product img {
  width: 150px;
  height: 150px;
  border-radius: 26px;
  box-shadow: 0 12px 32px rgba(15, 61, 99, 0.14);
}

.download-copy h1 {
  max-width: 620px;
  font-size: clamp(34px, 5vw, 54px);
}

.download-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.download-points {
  display: grid;
  gap: 6px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--ink);
}

.download-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 760px) {
  .download-shell {
    align-items: flex-start;
    min-height: auto;
    padding: 22px 16px 42px;
  }

  .download-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .download-product {
    justify-content: flex-start;
  }

  .download-product img {
    width: 92px;
    height: 92px;
    border-radius: 18px;
  }

  .download-copy h1 {
    font-size: 34px;
  }

  .download-copy p {
    font-size: 16px;
  }
}