:root {
  color-scheme: light;
  --ink: #202124;
  --muted: #5f6368;
  --muted-strong: #3c4043;
  --paper: #ffffff;
  --panel: #ffffff;
  --panel-raised: #f8fbff;
  --panel-soft: #edf4ff;
  --accent: #1a73e8;
  --accent-strong: #0b57d0;
  --accent-soft: #e8f0fe;
  --accent-ink: #ffffff;
  --line: #dadce0;
  --line-strong: #c6d4e7;
  --shadow: 0 24px 64px rgba(60, 64, 67, 0.18);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Google Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body,
button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.brand,
.top-nav {
  display: flex;
  align-items: center;
}

.brand {
  min-width: max-content;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: url("favicon.svg") center / contain no-repeat;
  box-shadow: 0 10px 22px rgba(26, 115, 232, 0.18);
}

.top-nav {
  gap: clamp(16px, 2vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 2px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.top-nav a:hover {
  color: var(--accent-strong);
}

.top-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-download {
  padding: 0 16px !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-strong);
  background: #ffffff;
}

.top-nav a[aria-current="page"]:not(.nav-download) {
  padding: 0 12px;
  background: var(--accent-soft);
}

.hero {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
  min-height: auto;
  padding: clamp(56px, 7vw, 92px) clamp(24px, 5vw, 72px) clamp(24px, 4vw, 46px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #ffffff 100%);
}

.hero-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.status-line {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 720;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 720;
  line-height: 1.04;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted-strong);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-platforms {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.hero-platforms a {
  color: var(--accent);
  text-decoration: none;
}

.hero-platforms a:hover {
  color: var(--accent-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 26px rgba(26, 115, 232, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--accent-strong);
}

.product-stage {
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #d7e4f7;
  border-radius: 28px;
  background: #f7fbff;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.product-stage img {
  display: block;
  width: 100%;
  height: clamp(440px, 52vw, 670px);
  object-fit: cover;
  object-position: top center;
}

.section-tabs {
  position: sticky;
  top: 72px;
  z-index: 15;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 52px);
  min-height: 62px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.section-tabs a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 680;
  white-space: nowrap;
}

.section-tabs a:hover {
  color: var(--accent-strong);
}

.trust-strip,
.workflow,
.privacy-panel,
.download-panel,
.purchase {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(54px, 7vw, 96px) auto 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.trust-strip article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(60, 64, 67, 0.08);
}

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

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

.trust-strip span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.58;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 104px;
}

.section-copy h2,
.privacy-panel h2,
.download-panel h2,
.purchase h2,
.document h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
}

.section-copy p,
.privacy-panel p,
.download-panel p,
.purchase p,
.document p,
.document li {
  color: var(--muted);
  line-height: 1.68;
}

.section-copy p,
.privacy-panel > div > p,
.download-panel p,
.purchase p {
  max-width: 690px;
  margin: 20px 0 0;
}

.workflow-lanes {
  display: grid;
  gap: 16px;
}

.workflow-lanes article {
  min-height: 176px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(60, 64, 67, 0.07);
}

.workflow-lanes article:nth-child(2) {
  margin-left: 0;
}

.workflow-lanes article:nth-child(3) {
  margin-left: 0;
}

.workflow-lanes article:nth-child(4) {
  margin-left: 0;
}

.workflow-lanes span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 780;
}

.workflow-lanes h3,
.privacy-list h3 {
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
}

.workflow-lanes p,
.privacy-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f8fbff;
}

.privacy-list {
  display: grid;
  gap: 12px;
}

.privacy-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.download-panel,
.purchase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(60, 64, 67, 0.08);
}

.purchase {
  margin-bottom: 76px;
  background: #f8fbff;
}

.tab-page {
  min-height: calc(100dvh - 72px);
  padding: clamp(54px, 7vw, 92px) clamp(24px, 5vw, 72px) 76px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 46%, #ffffff 100%);
}

.page-hero {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero > p:not(.status-line) {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted-strong);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.platform-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(620px, 100%);
  margin: 28px auto 0;
}

.platform-option {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(60, 64, 67, 0.07);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.platform-option:hover {
  transform: translateY(-1px);
  border-color: rgba(26, 115, 232, 0.45);
  background: #f8fbff;
}

.platform-option span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.platform-option strong {
  color: var(--ink);
  font-size: 16px;
}

.pricing-grid,
.download-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: clamp(46px, 6vw, 74px) auto 0;
  gap: 18px;
}

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

.download-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.plan-card,
.download-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(60, 64, 67, 0.08);
}

.featured-plan,
.primary-download {
  border-color: rgba(26, 115, 232, 0.42);
  box-shadow: 0 18px 46px rgba(26, 115, 232, 0.14);
}

.plan-badge {
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px solid rgba(26, 115, 232, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 780;
}

.plan-card h2,
.download-card h2,
.pricing-note h2 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.08;
}

.plan-note,
.download-card p,
.pricing-note p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.release-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 22px 0 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.release-meta div {
  min-width: 0;
  padding: 13px 14px;
  background: #f8fbff;
}

.release-meta .full-row {
  grid-column: 1 / -1;
}

.release-meta dt {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.release-meta dd {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.45;
}

.checksum {
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.price {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 780;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price .price-old {
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 720;
  text-decoration: line-through;
}

.plan-card-popular {
  position: relative;
  border-color: rgba(26, 115, 232, 0.5);
  box-shadow: 0 20px 58px rgba(26, 115, 232, 0.16);
}

.byok-callout {
  margin-top: 22px;
  padding: 13px 14px;
  border: 1px solid #fde293;
  border-radius: 14px;
  background: #fff8e1;
  color: #8a5a00;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.5;
}

.plan-card .button,
.download-card .button {
  align-self: flex-start;
  margin-top: 26px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted-strong);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.12);
}

.pricing-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 18px auto 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f8fbff;
}

.pricing-note h2 {
  margin-top: 0;
}

.pricing-comparison {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: start;
  width: min(1180px, 100%);
  margin: clamp(18px, 4vw, 36px) auto 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(60, 64, 67, 0.08);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

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

.comparison-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.comparison-table td {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 720;
}

.comparison-table td:first-child {
  width: 38%;
  color: var(--ink);
}

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

.comparison-table strong,
.comparison-table span {
  display: block;
}

.comparison-table span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.55;
}

.pricing-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  width: min(1180px, 100%);
  margin: clamp(18px, 4vw, 36px) auto 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f8fbff;
}

.inline-section-copy {
  position: static;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.faq-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.faq-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-accordion {
  gap: 10px;
}

.faq-accordion details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.faq-accordion summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 760;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  float: right;
  color: var(--accent-strong);
  content: "+";
  font-weight: 820;
}

.faq-accordion details[open] summary::after {
  content: "−";
}

.faq-accordion p {
  margin: 0;
  padding: 0 20px 18px;
}

.pricing-final-cta {
  width: min(1180px, 100%);
  margin: clamp(18px, 4vw, 36px) auto 0;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--accent-soft);
  text-align: center;
}

.pricing-final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.pricing-final-cta p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-final-cta .page-hero-actions {
  margin-top: 24px;
}

.document-page {
  min-height: calc(100dvh - 72px);
  padding: clamp(40px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background: #f8fbff;
}

.document {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(60, 64, 67, 0.1);
}

.document section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.document h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 30px clamp(24px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

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

  .workflow,
  .privacy-panel,
  .pricing-grid,
  .download-grid,
  .pricing-comparison,
  .pricing-note,
  .pricing-faq,
  .download-panel,
  .purchase {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .workflow-lanes article:nth-child(2),
  .workflow-lanes article:nth-child(3),
  .workflow-lanes article:nth-child(4) {
    margin-left: 0;
  }

  .download-actions {
    justify-content: flex-start;
    margin-top: 0;
  }

  .pricing-note .button {
    justify-self: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    height: 66px;
    align-items: center;
    flex-direction: row;
    padding: 0 20px;
    gap: 12px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .top-nav {
    width: auto;
    margin-left: auto;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 0;
    font-size: 13px;
  }

  .optional-nav {
    display: none !important;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(42px, 12vw, 60px);
  }

  .hero-subtitle {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-platforms,
  .page-hero-actions {
    justify-content: flex-start;
  }

  .platform-switch {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .section-tabs {
    top: 66px;
    justify-content: flex-start;
    overflow-x: auto;
    min-height: 54px;
    padding: 0 20px;
  }

  .product-stage,
  .trust-strip,
  .privacy-panel,
  .plan-card,
  .download-card,
  .pricing-comparison,
  .pricing-note,
  .pricing-faq,
  .download-panel,
  .pricing-final-cta,
  .purchase {
    border-radius: 20px;
  }

  .product-stage img {
    height: 360px;
    object-position: top left;
  }

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

  .trust-strip article,
  .workflow-lanes article,
  .privacy-list article,
  .privacy-panel,
  .plan-card,
  .download-card,
  .pricing-comparison,
  .pricing-note,
  .pricing-faq,
  .faq-grid article,
  .pricing-final-cta,
  .download-panel,
  .purchase {
    padding: 20px;
  }

  .release-meta {
    grid-template-columns: 1fr;
  }

  .page-hero {
    text-align: left;
  }

  .page-hero h1,
  .page-hero p:last-child {
    margin-left: 0;
  }

  .comparison-table {
    min-width: 0;
    table-layout: fixed;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 11px 7px;
    font-size: 10.5px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    width: 44%;
  }

  .comparison-table td:first-child {
    font-size: 11px;
  }

  .comparison-table span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
