:root {
  --navy: #07182b;
  --navy-soft: #0d2944;
  --blue: #147acb;
  --cyan: #28b8ef;
  --ink: #14263a;
  --muted: #637488;
  --surface: #ffffff;
  --surface-alt: #f2f7fb;
  --line: #dce7ef;
  --shadow: 0 24px 70px rgba(4, 26, 48, .13);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 840px; }
.centered { text-align: center; margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  background: white; padding: .8rem 1rem; border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,231,239,.9);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  color: white; font-weight: 800; font-size: 1.35rem;
  border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 24px rgba(20,122,203,.25);
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.2rem; letter-spacing: -.03em; }
.brand small { color: var(--muted); font-size: .72rem; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  text-decoration: none; font-weight: 650; font-size: .92rem; color: #354a5f;
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--blue); }
.site-nav .nav-cta {
  color: white; background: var(--blue); padding: 11px 18px; border-radius: 999px;
}
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px; background: var(--ink); }

.hero, .page-hero {
  color: white;
  background:
    radial-gradient(circle at 76% 18%, rgba(40,184,239,.24), transparent 27%),
    linear-gradient(135deg, #061526 0%, #0b2c4b 60%, #0d5686 100%);
}
.hero { padding: 92px 0 108px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; }
.eyebrow {
  margin: 0 0 14px; color: var(--cyan); font-size: .76rem;
  font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  margin: 0; max-width: 760px; line-height: 1.03; letter-spacing: -.055em;
  font-size: clamp(2.9rem, 6vw, 5.5rem);
}
.hero-lead, .page-hero p {
  margin: 28px 0 0; max-width: 720px; color: #d5e6f3;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 12px 24px; border-radius: 999px;
  text-decoration: none; font-weight: 750; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: linear-gradient(135deg, var(--blue), #119bd4); box-shadow: 0 14px 32px rgba(15,126,196,.28); }
.button.secondary { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.07); }
.button.light { background: white; color: var(--navy); }
.button.secondary.dark { color: var(--ink); border-color: var(--line); background: white; }
.button.disabled { opacity: .55; pointer-events: none; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 28px 0 0; padding: 0; list-style: none; color: #b9d4e7; font-size: .9rem; }
.hero-points li::before { content: "✓"; color: var(--cyan); margin-right: 8px; font-weight: 900; }
.hero-visual { position: relative; }
.screen-frame { overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 22px; background: #eaf2f8; box-shadow: 0 45px 90px rgba(0,0,0,.35); transform: perspective(1200px) rotateY(-3deg) rotateX(2deg); }
.screen-bar { height: 35px; display: flex; align-items: center; gap: 7px; padding: 0 13px; background: #dbe7ef; }
.screen-bar span { width: 9px; height: 9px; border-radius: 50%; background: #95a9b7; }
.hero-screen { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: white; }
.floating-card {
  position: absolute; right: -20px; bottom: -34px; max-width: 280px;
  padding: 16px 20px; border-radius: 16px; color: var(--ink); background: white;
  box-shadow: var(--shadow);
}
.floating-card strong, .floating-card span { display: block; }
.floating-card span { margin-top: 4px; color: var(--muted); font-size: .82rem; }
.media-placeholder { min-height: 250px; display: grid; place-items: center; padding: 30px; color: var(--muted); background: linear-gradient(135deg,#e9f2f7,#f9fbfd); }
.page-hero { padding: 100px 0; text-align: center; }
.page-hero .container { margin-inline: auto; }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.7rem); }
.page-hero p { margin-inline: auto; }
.page-hero.compact { padding: 78px 0; }

.trust-strip { background: var(--navy); color: #b7ccdc; border-top: 1px solid rgba(255,255,255,.08); }
.trust-items { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.section { padding: 108px 0; }
.section.alt { background: var(--surface-alt); }
.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading h2, .split-content h2, .publication-panel h2, .cta-panel h2, .detail-copy h2, .prose h2 {
  margin: 0; line-height: 1.1; letter-spacing: -.045em; font-size: clamp(2.2rem, 4.5vw, 4rem);
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-grid.four { grid-template-columns: repeat(4, 1fr); }
.feature-card, .application-card, .document-card, .download-card {
  padding: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(11,40,65,.06);
}
.feature-card { min-height: 235px; }
.feature-number { color: var(--cyan); font-weight: 850; font-size: .8rem; letter-spacing: .12em; }
.feature-card h3, .application-card h3, .document-card h3 { margin: 40px 0 9px; font-size: 1.2rem; }
.feature-card p, .application-card p, .document-card p { margin: 0; color: var(--muted); }
.section-action { margin-top: 35px; }
.text-link { color: var(--blue); font-weight: 800; text-decoration: none; }

.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.workflow-card { overflow: hidden; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.workflow-media { aspect-ratio: 4 / 3; background: white; overflow: hidden; border-bottom: 1px solid var(--line); }
.workflow-media img { width: 100%; height: 100%; object-fit: contain; }
.workflow-copy { padding: 26px; }
.workflow-copy span { color: var(--cyan); font-weight: 900; }
.workflow-copy h3 { display: inline; margin-left: 12px; }
.workflow-copy p { color: var(--muted); }

.dark-section { color: white; background: var(--navy); }
.split-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.split-content p { color: #c4d6e4; font-size: 1.1rem; }
.light-split p { color: var(--muted); }
.publication-panel, .contact-panel, .cta-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 52px; border-radius: 30px; background: var(--surface-alt);
}
.publication-panel p, .contact-panel p, .cta-panel p { color: var(--muted); }
.cta-section { padding: 0 0 108px; }
.cta-panel { color: white; background: linear-gradient(135deg, var(--blue), #0d91c6); }
.cta-panel p { color: #dcf3fb; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.detail-grid.reverse .detail-copy { order: 2; }
.detail-media { overflow: hidden; min-height: 360px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.detail-media img { width: 100%; height: 100%; object-fit: contain; }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

.application-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.application-card { min-height: 240px; background: linear-gradient(160deg, white, #f4f9fc); }
.application-card h3 { margin-top: 80px; }

.document-list { display: grid; gap: 18px; }
.document-card { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.document-card h3 { margin-top: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 18px;
  background: var(--navy); cursor: pointer; aspect-ratio: 4 / 3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, opacity .35s ease; }
.gallery-item span {
  position: absolute; inset: auto 0 0; padding: 28px 18px 16px; color: white; text-align: left;
  background: linear-gradient(transparent, rgba(0,0,0,.78)); opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover img { transform: scale(1.04); opacity: .85; }
.gallery-item:hover span { opacity: 1; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { overflow: hidden; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.video-card video { width: 100%; aspect-ratio: 16/10; background: #000; }
.video-card > div { padding: 22px; }
.legacy-video { min-height: 250px; display: grid; place-items: center; align-content: center; text-align: center; background: #eaf1f6; }
.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none; place-items: center;
  padding: 40px; background: rgba(0,10,20,.9);
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 18px; right: 24px; color: white; background: transparent; border: 0; font-size: 3rem; cursor: pointer; }

.download-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 24px; }
.download-card { display: flex; flex-direction: column; align-items: flex-start; min-height: 340px; }
.download-card.featured { color: white; background: var(--navy); border-color: transparent; }
.download-card h2 { margin: 50px 0 12px; font-size: 1.7rem; }
.download-card p { color: var(--muted); }
.download-card.featured p { color: #c5d6e2; }
.download-card .button { margin-top: auto; }
.tag { padding: 6px 10px; border-radius: 999px; color: var(--blue); background: #e9f5fb; font-size: .72rem; font-weight: 900; text-transform: uppercase; }

.faq-list { max-width: 900px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 24px 0; cursor: pointer; font-weight: 800; font-size: 1.08rem; }
.faq-item p { padding: 0 0 24px; color: var(--muted); }
.prose { max-width: 820px; }
.prose h2 { margin: 46px 0 14px; font-size: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); }
.empty-state { grid-column: 1 / -1; padding: 45px; text-align: center; color: var(--muted); background: var(--surface-alt); border-radius: var(--radius); }

.site-footer { padding: 70px 0 24px; color: #a9bfd0; background: #061422; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.footer-grid h3 { color: white; }
.footer-grid a { display: block; margin: 9px 0; text-decoration: none; }
.footer-brand { color: white; }
.footer-grid p { max-width: 420px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 24px; margin-top: 55px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem;
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; left: 20px; right: 20px; top: 74px; display: none;
    flex-direction: column; align-items: stretch; padding: 20px;
    border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-grid, .detail-grid, .split-content { grid-template-columns: 1fr; }
  .hero-visual { max-width: 760px; }
  .feature-grid, .workflow-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.four, .application-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid, .download-grid { grid-template-columns: 1fr; }
  .detail-grid.reverse .detail-copy { order: initial; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { padding: 70px 0 88px; }
  .section { padding: 78px 0; }
  .floating-card { position: static; margin-top: 16px; }
  .trust-items { justify-content: center; flex-wrap: wrap; padding: 18px 0; }
  .feature-grid, .feature-grid.four, .workflow-grid, .application-grid, .gallery-grid { grid-template-columns: 1fr; }
  .publication-panel, .contact-panel, .cta-panel, .document-card { align-items: flex-start; flex-direction: column; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .brand small { display: none; }
}


/* Corrected examples page */
.example-index { position: sticky; top: 82px; z-index: 900; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.example-index .container { display: flex; gap: 22px; overflow-x: auto; padding-top: 15px; padding-bottom: 15px; }
.example-index a { flex: 0 0 auto; color: var(--ink); text-decoration: none; font-size: .86rem; font-weight: 800; }
.example-index a:hover { color: var(--blue); }
.example-heading { display: grid; grid-template-columns: 70px 1fr; gap: 24px; max-width: 940px; margin-bottom: 42px; }
.example-heading > span { color: var(--cyan); font-size: 2.3rem; font-weight: 900; line-height: 1; }
.example-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; letter-spacing: -.04em; }
.example-heading p:last-child { color: var(--muted); font-size: 1.05rem; }
.example-figures { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: start; }
.example-figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 40px rgba(11,40,65,.07); }
.example-image-button { display: block; width: 100%; padding: 0; border: 0; background: #f7fafc; cursor: zoom-in; }
.example-image-button img { width: 100%; height: 310px; object-fit: contain; padding: 12px; }
.example-figure figcaption { min-height: 86px; padding: 18px 20px; color: var(--muted); border-top: 1px solid var(--line); font-size: .93rem; }
.example-media-links { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.example-media-links strong { margin-right: 6px; }
.media-link { padding: 9px 15px; color: var(--blue); background: white; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-weight: 750; font-size: .86rem; }
.media-link:hover { border-color: var(--blue); }
@media (max-width: 1000px) { .example-figures { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) {
  .example-figures { grid-template-columns: 1fr; }
  .example-heading { grid-template-columns: 1fr; gap: 8px; }
  .example-image-button img { height: auto; max-height: 390px; }
}


/* EasyCFD 2026 visual refinement */
.brand-logo {
  width: 48px; height: 48px; object-fit: contain; flex: 0 0 auto;
  border-radius: 12px; background: #fff; padding: 3px;
  border: 1px solid rgba(20,122,203,.18);
  box-shadow: 0 8px 22px rgba(4,35,62,.13);
}
.footer-brand .brand-logo { width: 52px; height: 52px; }
.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(40,184,239,.23), transparent 31%),
    radial-gradient(circle at 10% 78%, rgba(20,122,203,.18), transparent 28%),
    linear-gradient(135deg,#04111f 0%,#071c32 55%,#0b3150 100%);
}
.hero-brand { display:flex; align-items:center; gap:12px; margin-bottom:20px; color:white; font-size:1.25rem; font-weight:850; letter-spacing:-.02em; }
.hero-brand img { width:54px; height:54px; object-fit:contain; border-radius:14px; background:white; padding:3px; box-shadow:0 14px 36px rgba(0,0,0,.25); }
.site-header .brand strong { font-size:1.12rem; letter-spacing:-.02em; }
.site-header .brand small { letter-spacing:.01em; }
.examples-showcase { background:linear-gradient(180deg,#fff 0%,#f4f9fc 100%); }
.showcase-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.showcase-card { overflow:hidden; text-decoration:none; color:inherit; background:white; border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 18px 50px rgba(7,34,57,.09); transition:transform .25s ease, box-shadow .25s ease; }
.showcase-card:hover { transform:translateY(-6px); box-shadow:0 28px 65px rgba(7,34,57,.15); }
.showcase-card img { width:100%; aspect-ratio:16/10; object-fit:contain; background:#f4f7f9; border-bottom:1px solid var(--line); }
.showcase-card div { padding:25px; }
.showcase-card span { color:var(--blue); font-size:.75rem; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.showcase-card h3 { margin:9px 0 8px; line-height:1.25; }
.showcase-card p { margin:0; color:var(--muted); }
@media (max-width:1000px){ .showcase-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:680px){ .showcase-grid{grid-template-columns:1fr;} .brand-logo{width:43px;height:43px;} }


/* Enhanced interactive screenshot viewer */
body.viewer-open { overflow: hidden; }
.lightbox {
  position: fixed; inset: 0; z-index: 3000; display: none;
  grid-template-columns: minmax(52px, 90px) minmax(0, 1fr) minmax(52px, 90px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: center; gap: 8px; padding: 18px 18px 12px;
  color: white; background: rgba(1, 8, 15, .96);
}
.lightbox.open { display: grid; }
.lightbox-toolbar {
  grid-column: 1 / -1; display: flex; justify-content: flex-end;
  align-items: center; gap: 10px; min-height: 46px;
}
.lightbox-counter { margin-right: auto; color: #c8d8e5; font-size: .9rem; }
.lightbox-tool, .lightbox-nav {
  border: 1px solid rgba(255,255,255,.22); color: white;
  background: rgba(255,255,255,.08); cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.lightbox-tool:hover, .lightbox-nav:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }
.lightbox-tool { width: 44px; height: 44px; border-radius: 999px; font-size: 1.55rem; line-height: 1; }
.lightbox-close { position: static; }
.lightbox-nav { width: 54px; height: 70px; border-radius: 16px; font-size: 3rem; line-height: 1; }
.lightbox-prev { grid-column: 1; grid-row: 2; justify-self: start; }
.lightbox-next { grid-column: 3; grid-row: 2; justify-self: end; }
.lightbox-figure {
  grid-column: 2; grid-row: 2; margin: 0; min-width: 0; min-height: 0;
  height: 100%; display: grid; grid-template-rows: minmax(0,1fr) auto;
  place-items: center; gap: 12px;
}
.lightbox-figure img {
  max-width: 100%; max-height: calc(100vh - 165px); object-fit: contain;
  cursor: zoom-in; transition: transform .18s ease;
}
.lightbox-figure img.zoomed { transform: scale(1.65); cursor: zoom-out; }
.lightbox-caption { color: #d7e4ee; text-align: center; font-size: .95rem; }
.lightbox-help {
  grid-column: 1 / -1; grid-row: 3; margin: 0; color: #8fa6b7;
  text-align: center; font-size: .78rem;
}
.lightbox:fullscreen { width: 100vw; height: 100vh; }

/* Embedded tutorial movies on worked examples */
.example-video-section { margin-top: 36px; }
.media-section-title { margin: 0 0 18px; font-size: 1.15rem; }
.example-video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.example-video-card {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: white; box-shadow: 0 12px 40px rgba(11,40,65,.07);
}
.example-video-card video { width: 100%; aspect-ratio: 16 / 10; object-fit: contain; background: #05090d; }
.example-video-caption { padding: 16px 18px; border-top: 1px solid var(--line); }
.example-video-caption h3 { margin: 0; font-size: .98rem; }

@media (max-width: 1000px) {
  .example-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .example-video-grid { grid-template-columns: 1fr; }
  .lightbox { grid-template-columns: 44px minmax(0, 1fr) 44px; padding: 10px 8px; }
  .lightbox-nav { width: 40px; height: 56px; border-radius: 12px; font-size: 2.3rem; }
  .lightbox-figure img { max-height: calc(100vh - 180px); }
  .lightbox-help { display: none; }
}

/* Purchase, EULA and requirements */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 980px;
  margin-inline: auto;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.pricing-card.featured {
  border-color: rgba(20,122,203,.35);
  background: linear-gradient(160deg, #ffffff, #f1f9fd);
}
.pricing-card h2 {
  margin: 32px 0 8px;
  font-size: 3rem;
  letter-spacing: -.05em;
}
.pricing-card h2 small {
  font-size: 1rem;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: 0;
}
.paypal-placeholder {
  margin-top: auto;
  padding: 20px;
  border: 1px dashed #9ab7ca;
  border-radius: 16px;
  background: #f6fafc;
}
.paypal-placeholder p { margin-bottom: 0; color: var(--muted); }
.purchase-note {
  max-width: 900px;
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
}
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.requirement-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.requirement-card h3 { margin-top: 0; }
.eula-text { max-width: 900px; }
.eula-text h2 {
  margin-top: 48px;
  font-size: 1.7rem;
  letter-spacing: -.025em;
}
.eula-text p { color: #34495d; }
.eula-updated { font-weight: 750; color: var(--muted) !important; }
.eula-bullet { padding-left: 20px; }
.eula-download { margin-top: 48px; }

@media (max-width: 760px) {
  .pricing-grid, .requirements-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px; }
}

.paypal-button-wrap {
  margin-top: auto;
  padding-top: 28px;
  text-align: center;
}


/* Privacy-friendly server-side counters */
.site-stats {
  padding: 28px 0 76px;
  background: var(--surface);
}
.site-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin-inline: auto;
}
.site-stat {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-alt);
}
.site-stat-value {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -.04em;
}
.site-stat-label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}
.download-count {
  margin-top: 10px;
  color: var(--muted);
  font-size: .9rem;
}
.download-count strong { color: var(--blue); }

@media (max-width: 560px) {
  .site-stats-grid { grid-template-columns: 1fr; }
}
