:root {
  --ink: #07111f;
  --ink-soft: #0b1d32;
  --navy: #09284d;
  --blue: #0d5bd7;
  --cyan: #12c8ca;
  --gold: #f7c84b;
  --cream: #f5f6f1;
  --white: #ffffff;
  --muted: #607083;
  --line: rgba(7, 17, 31, 0.12);
  --shadow: 0 24px 70px rgba(3, 19, 39, 0.14);
  --radius: 26px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 31, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 166px;
  height: 66px;
  padding: 2px 6px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
}

.language-icon {
  color: var(--cyan);
  font-size: 1rem;
}

.language-switcher select {
  max-width: 150px;
  padding: 7px 28px 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #12243c;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
}

.language-switcher select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.editorial-fallback-note {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 70% 55%, rgba(12, 87, 189, 0.22), transparent 33%),
    var(--ink);
  background-size: 64px 64px, 64px 64px, auto, auto;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(7, 17, 31, 0.45));
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 800px;
  padding-top: 104px;
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-block: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  border: 1px solid rgba(18, 200, 202, 0.24);
  border-radius: 999px;
  background: rgba(18, 200, 202, 0.07);
  color: #8cebed;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(18, 200, 202, 0.12);
}

.product-by {
  margin: 28px 0 8px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-by span {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 600;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  font-weight: 720;
  letter-spacing: -0.068em;
  line-height: 0.92;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), #57a8ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 34px;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  background: linear-gradient(135deg, #16d0d0, #0ba5c7);
  color: #031820;
  box-shadow: 0 14px 35px rgba(18, 200, 202, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(18, 200, 202, 0.34);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.release-summary {
  display: flex;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  gap: 22px;
}

.release-summary strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.release-summary span + span {
  position: relative;
}

.release-summary span + span::before {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 530px;
  perspective: 1200px;
}

.product-screenshot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.14);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(3, 19, 39, 0.18);
}

.product-screenshot-hero {
  z-index: 2;
  width: min(680px, 58vw);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.52), 0 0 80px rgba(12, 91, 215, 0.2);
  transform: rotateY(-7deg) rotateX(2deg) rotateZ(1deg);
}

.product-screenshot {
  width: 100%;
  height: auto;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-glow-one {
  top: -100px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: #075ac2;
}

.hero-glow-two {
  bottom: -100px;
  left: 35%;
  width: 260px;
  height: 260px;
  background: #0ca5a8;
}

.trust-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 102px;
}

.trust-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  color: #354354;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 12px;
}

.trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-grid svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--cyan);
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 650px;
}

.kicker {
  margin: 0 0 13px;
  color: #078b91;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading > p:last-child {
  max-width: 570px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.06rem;
}

.showcase {
  overflow: hidden;
  background: var(--white);
}

.showcase-heading {
  max-width: 760px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 64px;
  gap: 22px;
}

.screenshot-card {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f1f3f1;
}

.screenshot-card-main {
  grid-column: 1 / -1;
  padding: 24px;
}

.screenshot-card-main .product-screenshot {
  max-width: 920px;
  margin-inline: auto;
}

.screenshot-card .product-screenshot {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.screenshot-card:hover .product-screenshot {
  box-shadow: 0 34px 80px rgba(3, 19, 39, 0.24);
  transform: translateY(-4px);
}

.screenshot-card figcaption {
  display: flex;
  align-items: flex-start;
  padding: 24px 8px 6px;
  gap: 18px;
}

.screenshot-card figcaption > span {
  color: #078b91;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.screenshot-card h3 {
  margin: 0 0 7px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.screenshot-card figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.privacy {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.privacy-visual {
  position: relative;
  display: grid;
  min-height: 450px;
  place-items: center;
}

.privacy-visual::before,
.privacy-visual::after {
  position: absolute;
  border: 1px solid rgba(18, 200, 202, 0.15);
  border-radius: 50%;
  content: "";
}

.privacy-visual::before {
  width: 350px;
  height: 350px;
}

.privacy-visual::after {
  width: 470px;
  height: 470px;
}

.shield-ring {
  position: relative;
  z-index: 2;
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 200, 202, 0.16), rgba(18, 200, 202, 0.03) 60%, transparent);
  box-shadow: 0 0 90px rgba(18, 200, 202, 0.12);
}

.shield-ring svg {
  width: 93px;
  color: var(--cyan);
  filter: drop-shadow(0 0 18px rgba(18, 200, 202, 0.35));
}

.data-node {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(247, 200, 75, 0.6);
}

.node-one {
  top: 20%;
  left: 20%;
}

.node-two {
  right: 14%;
  bottom: 33%;
}

.node-three {
  bottom: 12%;
  left: 35%;
}

.privacy-copy h2 {
  max-width: 670px;
}

.privacy-copy > p:not(.kicker) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  gap: 15px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 650;
}

.check-list li::before {
  display: grid;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 200, 202, 0.13);
  color: var(--cyan);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.purchase {
  background: #f7f8f5;
}

.dialog-open {
  overflow: hidden;
}

.payment-dialog[hidden] {
  display: none;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.payment-dialog,
.screenshot-dialog {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.payment-dialog-backdrop,
.screenshot-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, 0.68);
  backdrop-filter: blur(6px);
}

.payment-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 34px;
  border: 1px solid rgba(18, 200, 202, 0.28);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(3, 19, 39, 0.34);
}

.payment-dialog-panel h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.payment-dialog-panel p:not(.kicker) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
}

.payment-dialog-panel .button {
  min-width: 130px;
  border: 0;
  cursor: pointer;
}

.screenshot-dialog[hidden] {
  display: none;
}

.screenshot-dialog {
  z-index: 130;
  padding: 22px;
}

.screenshot-dialog-backdrop {
  background: rgba(7, 17, 31, 0.82);
}

.screenshot-dialog-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1480px, 100%);
  max-height: min(92vh, 980px);
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #f7f8f5;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
  grid-template-rows: auto minmax(0, 1fr);
}

.screenshot-dialog-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 6px 6px 16px;
  gap: 20px;
}

.screenshot-dialog-top .kicker {
  margin-bottom: 6px;
}

.screenshot-dialog-top h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.screenshot-dialog-close {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.screenshot-dialog-close:hover {
  background: #e9eeeb;
  transform: translateY(-1px);
}

.screenshot-dialog-figure {
  display: grid;
  min-height: 0;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.screenshot-dialog-figure img {
  width: 100%;
  height: 100%;
  max-height: calc(92vh - 150px);
  object-fit: contain;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 12px;
  background: var(--white);
}

.screenshot-dialog-figure figcaption {
  min-height: 24px;
  padding: 12px 6px 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.screenshot-zoom-trigger {
  cursor: zoom-in;
}

.screenshot-zoom-trigger:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}

.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: start;
  gap: 56px;
}

.purchase-panel,
.comparison-table-wrap,
.faq-grid article {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(3, 19, 39, 0.08);
}

.purchase-panel {
  padding: 30px;
  border-radius: 22px;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-line span {
  font-size: 1.05rem;
  font-weight: 850;
}

.price-line strong {
  color: #078b91;
  font-size: 2.3rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.purchase-list {
  margin: 24px 0;
}

.purchase-list li {
  color: #334154;
}

.subscription-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.subscription-plan {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbfc;
}

.subscription-plan-featured {
  border-color: rgba(7, 139, 145, 0.4);
  background: rgba(7, 139, 145, 0.06);
}

.subscription-plan-name,
.subscription-plan-price,
.subscription-plan-trial {
  margin: 0;
}

.subscription-plan-name {
  font-weight: 850;
}

.subscription-plan-price {
  color: #078b91;
  font-size: 1.35rem;
  font-weight: 850;
}

.subscription-plan-trial {
  flex: 1;
  color: var(--muted);
  font-size: 0.86rem;
}

.purchase-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.paypal-subscription-container {
  min-height: 150px;
}

.paypal-icon {
  width: auto;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 3px;
}

.purchase-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.purchase-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.purchase-reassurance {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.live-details {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 36px;
  gap: 28px;
}

.live-details-copy,
.live-feature-grid article,
.live-showcase figure {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(3, 19, 39, 0.07);
}

.live-details-copy {
  padding: 30px;
  border-radius: 22px;
}

.live-details-copy h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.live-details-copy p:not(.kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.live-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.live-feature-grid article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 24px;
  border-radius: 18px;
}

.live-feature-grid span,
.live-showcase figcaption > span {
  color: #078b91;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.live-feature-grid h4 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.live-feature-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.live-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  gap: 18px;
}

.live-showcase figure {
  margin: 0;
  padding: 12px;
  border-radius: 22px;
}

.live-showcase .product-screenshot {
  aspect-ratio: 1924 / 1277;
  object-fit: cover;
  object-position: top left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.live-showcase figure:hover .product-screenshot {
  box-shadow: 0 34px 80px rgba(3, 19, 39, 0.22);
  transform: translateY(-3px);
}

.live-showcase figcaption {
  display: flex;
  align-items: flex-start;
  padding: 20px 6px 6px;
  gap: 14px;
}

.live-showcase h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.live-showcase p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.comparison-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border-radius: 22px;
}

.faq-grid article {
  padding: 24px;
  border-radius: 18px;
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.comparison-table caption {
  padding: 24px 26px 10px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  color: #078b91;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  width: 36%;
  color: #334154;
  font-size: 0.92rem;
  font-weight: 800;
}

.comparison-table td {
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-table td:last-child {
  color: var(--ink);
  font-weight: 750;
}

.comparison-table thead th:last-child {
  color: var(--blue);
}

.comparison-table tbody tr:nth-child(odd) {
  background: #fbfcfb;
}

.comparison-table tbody tr:hover {
  background: rgba(18, 200, 202, 0.06);
}

.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
  gap: 18px;
}

.download-section {
  background: #e9eeeb;
}

.download-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: 470px;
  padding: 62px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 15%, rgba(18, 200, 202, 0.28), transparent 25%),
    linear-gradient(130deg, #0c2a4c, #07111f 70%);
  color: var(--white);
  box-shadow: var(--shadow);
  gap: 70px;
}

.download-copy h2 {
  max-width: 680px;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

.download-copy > p:not(.kicker) {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.6);
}

.button-light {
  box-shadow: none;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.download-copy .demo-hint {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.release-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
}

.release-card-top {
  display: flex;
  align-items: center;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 13px;
}

.release-card-top img {
  width: 54px;
  border-radius: 14px;
}

.release-card-top strong,
.release-card-top span {
  display: block;
}

.release-card-top span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
}

.release-card dl {
  margin: 13px 0;
}

.release-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.78rem;
}

.release-card dt {
  color: rgba(255, 255, 255, 0.42);
}

.release-card dd {
  margin: 0;
  font-weight: 700;
}

.release-card details {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.77rem;
}

.release-card summary {
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-weight: 700;
}

.release-notes-content {
  max-height: 270px;
  margin-top: 14px;
  padding-right: 8px;
  overflow-y: auto;
  line-height: 1.6;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
  scrollbar-width: thin;
}

.release-notes-content h3,
.release-notes-content h4,
.release-notes-content h5 {
  margin: 16px 0 7px;
  color: rgba(255, 255, 255, 0.94);
  font-family: inherit;
  line-height: 1.25;
}

.release-notes-content h3 {
  margin-top: 0;
  font-size: 1rem;
}

.release-notes-content h4 {
  color: var(--cyan);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-notes-content h5 {
  font-size: 0.78rem;
}

.release-notes-content p,
.release-notes-content ul,
.release-notes-content ol,
.release-notes-content blockquote {
  margin: 8px 0 0;
}

.release-notes-content ul,
.release-notes-content ol {
  padding-left: 19px;
}

.release-notes-content li + li {
  margin-top: 6px;
}

.release-notes-content li::marker {
  color: var(--cyan);
}

.release-notes-content blockquote {
  padding: 7px 11px;
  border-left: 2px solid var(--cyan);
  background: rgba(18, 200, 202, 0.07);
}

.release-notes-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.release-notes-content code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9em;
}

.windows-note {
  display: flex;
  align-items: flex-start;
  max-width: 760px;
  margin: 22px auto 0;
  color: #6a7580;
  font-size: 0.78rem;
  gap: 10px;
}

.windows-note svg {
  flex: 0 0 auto;
  width: 17px;
  margin-top: 2px;
}

.about {
  background: var(--white);
}

@media (max-width: 520px) {
  .subscription-plans {
    grid-template-columns: 1fr;
  }
}

.discover-section {
  background: var(--white);
}

.discover-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.discover-card {
  display: block;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f7fbfa, #edf5f3);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}

.discover-cards {
  display: grid;
  gap: 22px;
}

.discover-card:hover {
  border-color: rgba(18, 200, 202, .55);
  transform: translateY(-4px);
}

.discover-card-label {
  color: #078b91;
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.discover-card h3 {
  margin: 18px 0 16px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.discover-card p {
  margin: 0;
  color: var(--muted);
}

.discover-card-action {
  display: inline-block;
  margin-top: 26px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-copy {
  padding-top: 33px;
}

.about-copy p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-weight: 800;
  text-decoration: none;
  gap: 8px;
}

.email-link svg {
  width: 19px;
  transition: transform 0.2s ease;
}

.email-link:hover svg {
  transform: translateX(4px);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.75fr minmax(320px, 520px) 0.75fr;
  align-items: center;
  gap: 28px;
}

.brand-footer {
  width: 144px;
  height: 58px;
}

.site-footer p {
  margin: 0;
}

.newsletter-block {
  display: grid;
  gap: 12px;
}

.newsletter-title {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.newsletter-form input:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-button {
  min-height: 48px;
  padding-inline: 18px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.newsletter-status {
  min-height: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  text-align: center;
}

.newsletter-status[data-state="success"] {
  color: #8cebed;
}

.newsletter-status[data-state="error"] {
  color: #ffc4b8;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.footer-contact a {
  justify-self: end;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay {
  transition-delay: 0.14s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 70px;
    text-align: center;
    gap: 0;
  }

  .hero-copy {
    padding-block: 20px;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .release-summary {
    justify-content: center;
  }

  .hero-visual {
    min-height: 480px;
  }

  .product-screenshot-hero {
    width: min(760px, 88vw);
    transform: rotateX(2deg) rotateZ(1deg);
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .discover-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .privacy-visual {
    min-height: 380px;
  }

  .download-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .purchase-grid {
    grid-template-columns: 1fr;
  }

  .live-details {
    grid-template-columns: 1fr;
  }

  .live-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --radius: 20px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    width: 146px;
    height: 58px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .release-summary {
    flex-wrap: wrap;
    gap: 10px 22px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .product-screenshot-hero {
    width: 94vw;
    border-radius: 11px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 13px 0;
  }

  .trust-grid > div {
    justify-content: flex-start;
    padding: 13px 8px;
  }

  .trust-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .screenshot-card-main {
    grid-column: auto;
  }

  .screenshot-card,
  .screenshot-card-main {
    padding: 10px;
    border-radius: 16px;
  }

  .screenshot-card figcaption {
    padding: 20px 8px 10px;
  }

  .privacy-grid {
    gap: 40px;
  }

  .privacy-visual {
    min-height: 310px;
  }

  .privacy-visual::before {
    width: 260px;
    height: 260px;
  }

  .privacy-visual::after {
    width: 330px;
    height: 330px;
  }

  .shield-ring {
    width: 170px;
    height: 170px;
  }

  .download-panel {
    padding: 35px 24px;
    border-radius: 24px;
  }

  .screenshot-dialog {
    padding: 12px;
  }

  .screenshot-dialog-panel {
    max-height: 94vh;
    padding: 12px;
    border-radius: 16px;
  }

  .screenshot-dialog-top {
    padding: 4px 4px 12px;
  }

  .screenshot-dialog-close {
    width: 40px;
    height: 40px;
  }

  .screenshot-dialog-figure img {
    max-height: calc(94vh - 140px);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .live-feature-grid {
    grid-template-columns: 1fr;
  }

  .live-details-copy,
  .live-feature-grid article,
  .live-showcase figure {
    border-radius: 16px;
  }

  .live-details-copy,
  .live-feature-grid article {
    padding: 22px;
  }

  .live-feature-grid article {
    min-height: auto;
  }

  .price-line {
    display: block;
  }

  .price-line strong {
    display: block;
    margin-top: 10px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-copy {
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .newsletter-block {
    width: min(100%, 460px);
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-button {
    width: 100%;
  }

  .footer-contact {
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .footer-contact a {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
