:root {
  color-scheme: light;
  font-family: "Segoe UI Variable", "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  color: #171b20;
  background: #ffffff;
  --ink: #171b20;
  --muted: #5b6570;
  --line: #d7dfe5;
  --line-strong: #aeb9c3;
  --paper: #ffffff;
  --paper-soft: #f4f7f8;
  --paper-warm: #f8f7f2;
  --charcoal: #20262c;
  --charcoal-soft: #2b333b;
  --navy: #081627;
  --cyan: #087eb8;
  --cyan-dark: #07567f;
  --yellow: #e2b900;
  --yellow-soft: #fff5c2;
  --green: #27765b;
  --danger: #b83f31;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

::selection {
  color: #ffffff;
  background: var(--cyan-dark);
}

.preview-banner {
  margin: 0;
  padding: 8px 20px;
  color: #3e3100;
  background: var(--yellow-soft);
  border-bottom: 1px solid #e1cf79;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-header {
  min-height: 72px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(174, 185, 195, 0.76);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner,
.section-inner,
.footer-inner,
.article-inner {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 7px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.language-control {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-control label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.language-control select {
  min-height: 38px;
  max-width: 152px;
  padding: 6px 30px 6px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
}

.button {
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 740;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
}

.button-primary:hover {
  background: #064568;
  border-color: #064568;
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
}

.button-secondary:hover {
  border-color: #77838d;
  background: var(--paper);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
}

.text-link,
.hero-detail-link,
.article-links a,
.support-contacts a {
  color: var(--cyan-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.button:focus-visible,
.text-link:focus-visible,
.hero-detail-link:focus-visible,
.brand:focus-visible,
.site-nav a:focus-visible,
.language-control select:focus-visible,
.footer-nav a:focus-visible,
.locale-entry a:focus-visible {
  outline: 3px solid rgba(8, 126, 184, 0.28);
  outline-offset: 3px;
}

.hero {
  min-height: 570px;
  height: min(720px, calc(100svh - 150px));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background-color: #f1f5f6;
  background-image: url("/site-assets/product-box.png");
  background-repeat: no-repeat;
  background-position: calc(50% + 390px) center;
  background-size: auto 108%;
}

.hero::before {
  content: "";
  width: 6px;
  height: 88px;
  position: absolute;
  left: 0;
  top: calc(50% - 44px);
  background: var(--yellow);
}

.hero-copy {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
}

.hero-content {
  max-width: 620px;
}

.eyebrow,
.feature-label,
.step-label,
.download-kicker,
.plan-badge {
  margin: 0;
  color: var(--cyan-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1 {
  margin: 10px 0 0;
  max-width: 100%;
  font-size: 5rem;
  line-height: 0.98;
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: #3f4851;
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-meta {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #46515b;
  font-size: 0.86rem;
  font-weight: 650;
  list-style: none;
}

.hero-meta li {
  position: relative;
  padding-left: 14px;
}

.hero-meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 0.48em;
  background: var(--yellow);
}

.hero-actions,
.article-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-detail-link {
  margin-top: 20px;
  display: inline-block;
  font-size: 0.9rem;
}

.trust-band {
  color: #ffffff;
  background: var(--charcoal);
  border-bottom: 1px solid #11161a;
}

.trust-list {
  min-height: 112px;
  margin: 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.trust-list li {
  min-width: 0;
  padding: 10px 24px;
  border-left: 1px solid #46515b;
}

.trust-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

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

.trust-list strong {
  color: #ffffff;
}

.trust-list span {
  margin-top: 5px;
  color: #bbc4cb;
  font-size: 0.84rem;
  line-height: 1.48;
}

.page-section {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.page-section.subtle {
  background: var(--paper-soft);
}

.section-heading {
  max-width: 790px;
}

.section-heading h2,
.article-header h1,
.checkout-panel h1,
.final-cta h2 {
  margin: 0;
  font-size: 3.15rem;
  line-height: 1.08;
}

.section-heading p,
.article-header p,
.checkout-panel p,
.final-cta p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-item {
  min-height: 238px;
  padding: 28px;
  position: relative;
  background: var(--paper);
}

.feature-index {
  color: #7a8791;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 750;
}

.feature-label {
  position: absolute;
  top: 28px;
  right: 28px;
}

.feature-item h3,
.step h3,
.price-panel h3,
.faq-item h3,
.article-section h2 {
  margin: 18px 0 0;
  font-size: 1.18rem;
  line-height: 1.35;
}

.feature-item p,
.step p,
.price-panel p,
.faq-item p,
.article-section p,
.article-section li {
  color: var(--muted);
  line-height: 1.68;
}

.workflow-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.step {
  min-width: 0;
  padding: 30px;
  border-left: 1px solid var(--line);
}

.step:first-child {
  padding-left: 0;
  border-left: 0;
}

.step:last-child {
  padding-right: 0;
}

.step-number {
  color: var(--cyan-dark);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.84rem;
  font-weight: 800;
}

.step-label {
  margin-top: 22px;
}

.step-points {
  margin: 24px 0 0;
  padding: 20px 0 0 19px;
  border-top: 1px solid var(--line);
  color: #46515b;
  font-size: 0.88rem;
  line-height: 1.7;
}

.privacy-band {
  background: #edf4f1;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 78px;
  align-items: start;
}

.privacy-points {
  margin: 0;
  padding: 0;
  border-top: 1px solid #a8c0b6;
  list-style: none;
}

.privacy-points li {
  padding: 18px 0 18px 28px;
  position: relative;
  border-bottom: 1px solid #a8c0b6;
  color: #33463f;
  line-height: 1.58;
}

.privacy-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: 1px;
  top: 1.55em;
  border: 2px solid var(--green);
}

.pricing-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-panel {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-panel-featured {
  border-top: 4px solid var(--yellow);
  padding-top: 27px;
}

.plan-badge {
  color: var(--green);
}

.price-panel h3 {
  margin-top: 12px;
}

.price {
  margin-top: 18px;
  font-size: 2.5rem;
  font-weight: 800;
}

.price-note {
  margin-top: 3px !important;
  font-size: 0.85rem;
}

.price-panel ul {
  width: 100%;
  margin: 24px 0 28px;
  padding: 20px 0 0 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.82;
}

.price-panel .button {
  margin-top: auto;
}

.trial-note,
.pricing-footnote {
  max-width: 850px;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-footnote {
  margin-top: 8px;
  font-size: 0.88rem;
}

.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  padding: 25px 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  border-bottom: 1px solid var(--line);
}

.faq-item h3,
.faq-item p {
  margin: 0;
}

.final-cta {
  padding: 72px 0;
  color: #ffffff;
  background: var(--charcoal);
  border-bottom: 1px solid #101418;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: end;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: #c1c9cf;
}

.final-cta .eyebrow {
  color: #f0cf3d;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.final-cta .text-link {
  color: #ffffff;
}

.article-page,
.checkout-page {
  min-height: calc(100vh - 72px);
  padding: 70px 0 96px;
  background: var(--paper-soft);
}

.article-inner,
.checkout-panel {
  max-width: 920px;
}

.article-header {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line-strong);
}

.article-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.article-section h2 {
  margin-top: 0;
}

.article-section ul,
.article-section ol {
  padding-left: 22px;
}

.article-links a {
  overflow-wrap: anywhere;
}

.legal-identity,
.support-contacts {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--paper);
}

.legal-identity p {
  margin: 7px 0;
  overflow-wrap: anywhere;
}

.support-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
  background: var(--line);
}

.support-contacts div {
  min-width: 0;
  padding: 22px;
  background: var(--paper);
}

.support-contacts strong,
.support-contacts a,
.support-contacts span {
  display: block;
}

.support-contacts a,
.support-contacts span {
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.download-facts {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.download-facts div {
  padding: 20px;
  background: var(--paper);
}

.download-facts strong,
.download-facts span {
  display: block;
}

.download-facts span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.download-options {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-option {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-option-primary {
  border-top: 4px solid var(--cyan);
  padding-top: 25px;
}

.download-option h2 {
  margin: 12px 0 0;
  font-size: 1.36rem;
  line-height: 1.3;
}

.download-option > p:not(.download-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.download-digest {
  width: 100%;
  margin: 22px 0 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.download-digest strong,
.download-digest code {
  display: block;
}

.download-digest code {
  margin-top: 7px;
  color: #3d4650;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.76rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.download-option .button {
  margin-top: auto;
}

.checkout-panel {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.checkout-mark {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan-dark);
  font-weight: 800;
}

.checkout-state {
  min-height: 52px;
  margin-top: 26px;
  padding: 14px 16px;
  border-left: 4px solid var(--cyan);
  color: #374047;
  background: var(--paper-soft);
}

.checkout-state[data-kind="error"] {
  border-color: var(--danger);
}

.checkout-state[data-kind="success"] {
  border-color: var(--green);
}

.checkout-security {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.site-footer {
  color: #dce2e6;
  background: #171c21;
}

.footer-inner {
  min-height: 208px;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.footer-copy p {
  margin: 9px 0 0;
  max-width: 620px;
  color: #aeb8c0;
  line-height: 1.55;
}

.footer-copy a {
  color: #dce2e6;
  text-underline-offset: 3px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 26px;
  font-size: 0.88rem;
}

.footer-nav a {
  color: #dce2e6;
  text-underline-offset: 3px;
}

.locale-entry {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper-soft);
}

.locale-entry main {
  width: min(100%, 620px);
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.locale-entry h1 {
  margin-top: 18px;
  font-size: 3rem;
}

.locale-entry p {
  color: var(--muted);
  line-height: 1.65;
}

.locale-entry ul {
  margin: 26px 0 0;
  padding: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.locale-entry a {
  color: var(--cyan-dark);
  font-weight: 720;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .site-nav a:not(.button) {
    display: none;
  }

  .hero {
    background-position: calc(50% + 330px) center;
    background-size: auto 95%;
  }

  .hero-content {
    max-width: 560px;
  }

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

@media (max-width: 820px) {
  .site-header,
  .header-inner {
    min-height: 66px;
  }

  .site-nav .button-secondary {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 760px;
    align-items: flex-start;
    padding-top: 58px;
    background-position: center calc(100% + 175px);
    background-size: auto 70%;
  }

  .hero::before {
    top: 84px;
  }

  .hero-content {
    max-width: 640px;
  }

  h1 {
    font-size: 4.15rem;
  }

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

  .trust-list li:nth-child(3) {
    border-left: 0;
  }

  .workflow-grid,
  .privacy-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    border-bottom: 0;
  }

  .step,
  .step:first-child,
  .step:last-child {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .privacy-layout {
    gap: 38px;
  }

  .final-cta-inner {
    gap: 30px;
    align-items: start;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 700px) {
  .header-inner {
    gap: 12px;
  }

  .site-nav {
    margin-left: auto;
  }

  .site-nav a:not(.button-primary) {
    display: none;
  }

  .site-nav .button-primary {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 0.82rem;
  }

  .language-control select {
    max-width: 116px;
  }

  .hero {
    min-height: 780px;
    padding-top: 48px;
    background-position: center calc(100% + 140px);
    background-size: auto 62%;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .section-heading h2,
  .article-header h1,
  .checkout-panel h1,
  .final-cta h2 {
    font-size: 2.28rem;
  }

  .page-section {
    padding: 64px 0;
  }

  .trust-list,
  .feature-grid,
  .pricing-grid,
  .download-facts,
  .download-options,
  .support-contacts {
    grid-template-columns: 1fr;
  }

  .trust-list li,
  .trust-list li:first-child,
  .trust-list li:nth-child(3) {
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid #46515b;
  }

  .trust-list li:first-child {
    border-top: 0;
  }

  .article-page,
  .checkout-page {
    padding: 44px 0 70px;
  }

  .checkout-panel {
    padding: 27px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .article-inner,
  .hero-copy {
    width: min(100% - 30px, var(--content));
  }

  .brand span {
    font-size: 0.92rem;
  }

  .site-nav {
    display: none;
  }

  .language-control {
    margin-left: auto;
  }

  .language-control select {
    max-width: 130px;
  }

  .hero {
    min-height: 760px;
    background-position: center calc(100% + 110px);
    background-size: auto 58%;
  }

  h1 {
    font-size: 2.58rem;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
  }

  .hero-actions,
  .article-actions,
  .final-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-detail-link {
    display: block;
  }

  .feature-item,
  .price-panel,
  .download-option {
    padding: 23px;
  }

  .feature-label {
    top: 23px;
    right: 23px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .locale-entry main {
    padding: 26px 20px;
  }
}

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