/* TotalCrypter marketing site */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700&display=swap");

:root {
  --gold: #e89445;
  --gold-dark: #c46f1f;
  --gold-light: #f3d4ad;
  --gold-glow: rgba(232, 148, 69, 0.38);
  --orange: var(--gold);
  --orange-dark: var(--gold-dark);
  --orange-glow: var(--gold-glow);
  --teal: #36a89a;
  --teal-dark: #2a877c;
  --teal-glow: rgba(54, 168, 154, 0.38);
  --ink: #0f1115;
  --ink-muted: #5a6472;
  --cream: #f6f4f0;
  --cream-deep: #ebe7e0;
  --header: rgba(8, 9, 12, 0.92);
  --header-solid: #08090c;
  --card: #ffffff;
  --border: #e4dfd6;
  --border-strong: #d4cdc2;
  --slate: #151820;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 24px 64px rgba(8, 12, 20, 0.12);
  --shadow-soft: 0 12px 36px rgba(8, 12, 20, 0.07);
  --shadow-glow: 0 20px 50px rgba(196, 111, 31, 0.22);
  --max: 1160px;
  --font: "DM Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Instrument Sans", var(--font);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .brand span:last-child {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

/* Header */
.site-header {
  background: var(--header);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}
.brand:hover { text-decoration: none; opacity: 0.92; }
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
  flex-wrap: wrap;
}
.nav-main a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-main a:hover,
.nav-main a.active { color: #fff; }
.nav-main a.active { color: var(--orange); }
.header-cta { display: flex; gap: 0.55rem; flex-wrap: wrap; align-items: center; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-right: 0.15rem;
}
.lang-switch:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 28px var(--orange-glow);
}
.btn-primary:hover { background: var(--orange-dark); color: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover { border-color: #fff; color: #fff; }
.btn-accent-teal {
  background: linear-gradient(135deg, var(--teal) 0%, #2f9689 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px var(--teal-glow);
}
.btn-accent-teal:hover {
  background: linear-gradient(135deg, #45b8aa 0%, var(--teal-dark) 100%);
  color: #fff;
}
.btn-header-telegram {
  font-size: 0.82rem;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .btn-header-telegram {
    white-space: normal;
    text-align: center;
    max-width: 14rem;
    line-height: 1.25;
  }
}
.btn-outline-dark {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover { background: var(--cream-deep); color: var(--ink); }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1.02rem; }
.btn-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-align: center;
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 55%, var(--cream-deep) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--orange); }
.hero-lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 34rem;
  margin-bottom: 1.25rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
  font-weight: 500;
}
.check-list .icon {
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.hero-actions .btn-sub a {
  color: var(--orange-dark);
  font-weight: 600;
}
.hero-actions .btn-sub a:hover {
  text-decoration: underline;
}
.trust-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Feature cards row */
.features-strip {
  padding: 0 0 4.5rem;
  margin-top: -0.5rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .card-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-soft);
}
.feature-card .card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}
.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}
.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Inner pages */
.page-hero {
  padding: 2.75rem 0 2rem;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin: 0 0 0.5rem; font-size: 2.1rem; }
.page-hero p { margin: 0; color: var(--ink-muted); max-width: 40rem; }
.page-body { padding: 2.5rem 0 4rem; }
.content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.content-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--ink);
}
.content-card h3 { margin: 1.25rem 0 0.5rem; font-size: 1rem; }
.content-card ul, .content-card ol { padding-left: 1.25rem; color: var(--ink-muted); }
.content-card li { margin-bottom: 0.35rem; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }

.tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Download */
.download-box {
  text-align: center;
  padding: 2rem;
}
.download-meta {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 1rem;
}
.hash-list {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
}
.hash-list dt {
  margin-top: 0.65rem;
  font-weight: 600;
}
.hash-list dd {
  margin: 0.25rem 0 0;
}
.hash-list code.hash {
  word-break: break-all;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.legal-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* Screenshots gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery figure {
  margin: 0;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.gallery figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* Embedded video (setup guide) */
.setup-video-embed {
  width: 100%;
  max-width: 56rem; /* ~896px — readable on wide monitors without feeling stretched */
  margin: 1.15rem auto 0;
}
.video-wrap {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #0f0f10;
}
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

/* YouTube embed (16:9) */
.video-wrap--youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  padding-bottom: 0;
  background: #000;
}
/* legacy browsers without aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .video-wrap--youtube {
    height: 0;
    padding-bottom: 56.25%;
  }
}
.video-wrap--youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .setup-video-embed {
    max-width: 100%;
  }
}

/* Portrait phones: avoid a player taller than ~55% of the screen; landscape stays full card width */
@media (max-width: 640px) and (orientation: portrait) {
  .setup-video-embed {
    max-width: min(100%, calc(55vh * 16 / 9));
    margin-inline: auto;
  }
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.video-actions .meta {
  margin-left: auto;
}
@media (max-width: 720px) {
  .video-actions .meta {
    margin-left: 0;
    width: 100%;
  }
}

/* Footer */
.site-footer {
  background: var(--header);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer a { color: rgba(255, 255, 255, 0.9); }
.site-footer h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.82rem;
}

/* PDF setup guides */
.doc-pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.content-card-highlight {
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: linear-gradient(135deg, #fffefb 0%, #fff 55%);
  box-shadow: var(--shadow-soft);
}
.setup-pdf-links {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}
.setup-pdf-links .sep { margin: 0 0.35rem; color: var(--ink-muted); }
.setup-pdf-links .meta { color: var(--ink-muted); font-size: 0.88rem; }
.setup-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.5rem;
}
.download-pdf-hint {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
  max-width: 52rem;
}
.download-pdf-hint a { font-weight: 600; }
.hero-pdf-links {
  margin: 1.1rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}
.hero-pdf-links .sep { margin: 0 0.4rem; color: #9ca3af; }

.prose h2 { margin-top: 2rem; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-main {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.5rem;
  }
  .nav-main.open { display: flex; }
  .header-cta { width: 100%; justify-content: flex-start; }
}

/* Support — contact sheet */
.contact-sheet.content-card-highlight {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: var(--shadow);
}
.contact-sheet__head {
  padding: 1.75rem 1.75rem 1.35rem;
  background: linear-gradient(165deg, #fff 0%, var(--cream-deep) 48%, #fff 100%);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 520px) {
  .contact-sheet__head { padding: 1.35rem 1.15rem 1.1rem; }
}
.contact-sheet__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-dark);
}
.contact-sheet__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.contact-sheet__lead {
  margin: 0;
  max-width: 42rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.contact-sheet__lang {
  margin: 0.85rem 0 0;
  max-width: 42rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
}
.contact-sheet__panel {
  padding: 1.5rem 1.75rem 1.75rem;
  background: var(--card);
}
@media (max-width: 520px) {
  .contact-sheet__panel { padding: 1.25rem 1.15rem 1.35rem; }
}

.contact-form {
  margin: 0;
  position: relative;
}
.contact-form .form-section {
  margin: 0;
  padding: 0;
}
.contact-form .form-section + .form-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-form .form-section__label {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.35rem;
  align-items: start;
}
@media (max-width: 640px) {
  .contact-form__grid { grid-template-columns: 1fr; }
}
.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.contact-form .form-field--full {
  grid-column: 1 / -1;
}
.contact-form label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.contact-form .label-optional {
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 0.8rem;
}
.contact-form .label-required {
  color: var(--orange-dark);
  font-weight: 800;
  margin-left: 0.1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  font-size: 0.96rem;
  line-height: 1.4;
  color: var(--ink);
  background: #fafafa;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #d6cbc0;
  background: #fff;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.75);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.2rem;
  border-right: 2px solid var(--ink-muted);
  border-bottom: 2px solid var(--ink-muted);
  transform: rotate(45deg);
  pointer-events: none;
  opacity: 0.75;
}
.contact-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.75rem;
  background-color: #fafafa;
}
.contact-form select:focus {
  background-color: #fff;
}

.contact-form textarea {
  min-height: 10.5rem;
  resize: vertical;
  line-height: 1.5;
}

.contact-form .form-hint {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-muted);
}
.contact-form .form-hint--inline {
  margin-top: 0.35rem;
}

.form-consent-box {
  margin-top: 1.35rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.06) 0%, rgba(250, 246, 240, 0.9) 100%);
  border: 1px solid rgba(249, 115, 22, 0.22);
}
.contact-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
}
.contact-form .form-consent input {
  margin-top: 0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 4px;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}
.contact-form .form-consent label {
  font-weight: 500;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-muted);
  cursor: pointer;
}
.contact-form .form-consent a {
  font-weight: 600;
  color: var(--orange-dark);
}

.contact-form .form-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}
.contact-form .form-actions .btn-lg {
  width: 100%;
  max-width: 20rem;
  padding: 0.95rem 1.5rem;
  font-size: 1.02rem;
  border-radius: 12px;
}
@media (min-width: 560px) {
  .contact-form .form-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .contact-form .form-actions .btn-lg {
    width: auto;
  }
}
.form-actions__meta {
  margin: 0;
  flex: 1;
  min-width: 12rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink-muted);
}
.form-actions__meta strong {
  color: var(--ink);
  font-weight: 600;
}

.contact-form .form-field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  margin-top: 1.1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  display: none;
}
.form-feedback.is-visible { display: block; }
.form-feedback--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.32);
  color: #166534;
}
.form-feedback--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
}
.form-feedback--info {
  background: rgba(59, 130, 246, 0.07);
  border: 1px solid rgba(59, 130, 246, 0.26);
  color: #1e40af;
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
}
.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  width: auto;
  height: auto;
  overflow: visible;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Standalone utility pages (billing, reset) */
.standalone-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(249, 115, 22, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(30, 41, 59, 0.08), transparent 50%),
    var(--cream);
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.55;
}
.standalone-card {
  width: min(640px, 100%);
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.standalone-card--narrow {
  width: min(520px, 100%);
}
.standalone-card h1,
.standalone-card h2 {
  margin-top: 0;
  letter-spacing: -0.02em;
}
.standalone-card .lead { color: var(--ink-muted); margin-bottom: 1rem; }
.standalone-card .btn-row { margin-top: 1.25rem; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

/* Hero refinements */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249, 115, 22, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, transparent 40%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(15, 23, 42, 0.02) 48px,
      rgba(15, 23, 42, 0.02) 49px
    );
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}

/* Section rhythm */
.section {
  padding: 3.5rem 0;
}
.section--tight { padding: 2.5rem 0; }
.section--muted {
  background: linear-gradient(180deg, #fff 0%, var(--cream-deep) 100%);
  border-block: 1px solid var(--border);
}
.section--dark {
  background: linear-gradient(165deg, var(--slate) 0%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.88);
}
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p,
.section--dark .section-lead { color: rgba(255, 255, 255, 0.78); }
.section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}
.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.section--dark .section-lead { color: rgba(255, 255, 255, 0.78); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.5rem;
}
.section--dark .eyebrow { color: var(--orange); }

/* Stat / value strip */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow-soft);
}
.stat-tile strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--orange-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.stat-tile span {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.45;
}
.section--dark .stat-tile {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.section--dark .stat-tile strong { color: #fff; }
.section--dark .stat-tile span { color: rgba(255, 255, 255, 0.72); }

/* Two-column feature / SEO block */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; } }
.split-grid ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-muted);
}
.split-grid li { margin-bottom: 0.5rem; }
.split-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--ink);
}
.section--dark .split-grid h3 { color: #fff; }
.section--dark .split-grid ul { color: rgba(255, 255, 255, 0.78); }

/* Pill tags row */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tag-row .tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-dark);
  border: 1px solid rgba(249, 115, 22, 0.22);
}
.section--dark .tag-pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

/* FAQ */
.faq-list {
  max-width: 48rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  margin-bottom: 0.65rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: rgba(249, 115, 22, 0.04); }
.faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  margin: 0 0 0;
  padding-top: 0.85rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 2.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 20px 50px var(--orange-glow);
}
.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
}
.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  opacity: 0.95;
  font-size: 1.02rem;
}
.cta-band .btn {
  background: #fff;
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.cta-band .btn:hover {
  background: var(--cream);
  color: var(--ink);
}

/* Link list */
.link-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.92rem;
}
.link-inline a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.link-inline a:hover { opacity: 0.92; }

/* Feature cards hover */
.feature-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.35);
}

/* Page hero subtitle */
.page-hero .page-sub {
  font-size: 1.05rem;
  max-width: 44rem;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.84rem;
  margin-bottom: 0.85rem;
  color: var(--ink-muted);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: #9ca3af;
  font-weight: 500;
  margin-left: 0.15rem;
}
.breadcrumb a {
  color: var(--orange-dark);
  font-weight: 600;
}
.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* “Why TotalCrypter” compact strip (index + download) */
.why-micro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
@media (max-width: 720px) {
  .why-micro { grid-template-columns: 1fr; }
}
.why-micro li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-muted);
  box-shadow: var(--shadow-soft);
}
.why-micro strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

/* Risk / fair-play callout */
.risk-callout {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(234, 88, 12, 0.35);
  background: rgba(249, 115, 22, 0.06);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.risk-callout strong {
  color: var(--ink);
}

/* Screenshot / product visuals */
.screens-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.screens-section .lead {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  max-width: 44rem;
}

/* Keyboard focus (WCAG) */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.85);
  outline-offset: 2px;
}
.site-header :focus-visible,
.lang-switch:focus-visible {
  outline-color: #fff;
}
.skip-link:focus-visible {
  outline-color: #fff;
}

.section-head--center {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.video-actions--center {
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 720px) {
  .video-actions--center .meta {
    margin-left: 0.75rem;
  }
}

/* Homepage video library */
.video-showcase {
  margin-top: 0.5rem;
}
.video-showcase + .video-showcase {
  margin-top: 3rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--border);
}
.video-showcase__head {
  margin-bottom: 1.35rem;
  max-width: 44rem;
}
.video-showcase__head h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: -0.02em;
}
.video-showcase__head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.video-grid {
  display: grid;
  gap: 1.35rem;
}
.video-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.video-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .video-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .video-grid--2,
  .video-grid--3 {
    grid-template-columns: 1fr;
  }
}
.video-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.video-card .setup-video-embed {
  margin: 0;
  max-width: none;
}
.video-card .video-wrap {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  box-shadow: none;
}
.video-card__body {
  padding: 1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.video-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-dark, #9a6b2e);
}
.video-card__title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.video-card__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
  flex: 1;
}
.video-card__link {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.video-card__link:hover {
  color: var(--gold-dark, #9a6b2e);
  text-decoration: underline;
}
.section--videos {
  scroll-margin-top: 5rem;
}

/* Guide article meta */
.guide-meta {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0 0 1rem;
}

.version-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0 0 0.25rem;
}
.version-changelog {
  font-weight: 700;
  font-size: 0.92rem;
}

/* —— Homepage (index EN / DE) —— */
.hero--home {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero--home .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 900px) {
  .hero--home .hero-grid { grid-template-columns: 1fr; }
}
.hero--home::before {
  background:
    radial-gradient(ellipse 70% 45% at 12% 0%, rgba(249, 115, 22, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 40% at 88% 15%, rgba(15, 23, 42, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, transparent 42%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 52px,
      rgba(15, 23, 42, 0.018) 52px,
      rgba(15, 23, 42, 0.018) 53px
    );
}
.hero--home .pill {
  background: linear-gradient(135deg, #fff 0%, rgba(249, 115, 22, 0.08) 100%);
  border-color: rgba(249, 115, 22, 0.28);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.08);
}
.hero--home h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.05rem);
  font-weight: 800;
  max-width: 20ch;
}
.hero--home .hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.65;
}
.hero--home .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
  margin-bottom: 1.35rem;
}
@media (max-width: 640px) {
  .hero--home .check-list { grid-template-columns: 1fr; }
}
.hero--home .check-list li {
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 223, 212, 0.9);
  font-size: 0.9rem;
  line-height: 1.4;
}
.hero--home .why-micro li {
  border-left: 3px solid var(--orange);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hero--home .why-micro li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.hero--home .trust-line {
  flex-wrap: wrap;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed var(--border);
  max-width: 36rem;
}
.hero-device {
  position: relative;
  padding: 0.65rem;
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(145deg, #fff 0%, var(--cream-deep) 100%);
  border: 1px solid var(--border);
  box-shadow:
    0 28px 64px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.hero-device::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.55), rgba(15, 23, 42, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-device img {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.hero-device-badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 6px 18px var(--orange-glow);
}
.stat-grid--home {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .stat-grid--home { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-grid--home { grid-template-columns: 1fr; }
}
.stat-grid--home .stat-tile {
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.stat-grid--home .stat-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 4px 0 0 4px;
  opacity: 0.85;
}
.stat-grid--home .stat-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.3);
}
.stat-grid--home .stat-tile strong {
  padding-left: 0.35rem;
}
.stat-grid--home .stat-tile span {
  display: block;
  padding-left: 0.35rem;
}
.features-strip {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 45%, var(--cream-deep) 100%);
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
  border-top: 1px solid var(--border);
}
.hero--home + .section--muted {
  background: linear-gradient(180deg, var(--cream-deep) 0%, #fff 50%, var(--cream) 100%);
}
.section--videos .section-head--center .section-lead {
  margin-inline: auto;
}

/* —— Subpages (download, features, …) —— */
.page-hero--sub {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 4vw, 3.25rem) 0 clamp(2rem, 3vw, 2.75rem);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 70%, var(--cream-deep) 100%);
}
.page-hero--sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(249, 115, 22, 0.11), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(15, 23, 42, 0.05), transparent 50%);
  pointer-events: none;
}
.page-hero--sub .container {
  position: relative;
  z-index: 1;
}
.page-hero--sub h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-hero--sub .page-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 44rem;
}
.page-hero--sub .eyebrow {
  margin-bottom: 0.35rem;
}

.page-body--polish {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 8%, var(--cream) 100%);
}
.page-body--polish .content-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.page-body--polish .content-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.28);
}
.page-body--polish .why-micro li {
  border-left: 3px solid var(--orange);
}

.card-lead {
  color: var(--ink-muted);
  margin: -0.25rem 0 0.75rem;
  line-height: 1.55;
  font-size: 0.98rem;
}
.content-card--core {
  border-left: 4px solid var(--orange);
}
.content-card--core h2 {
  font-size: 1.35rem;
}

.page-intro-stats {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 1.75rem;
}
@media (max-width: 900px) {
  .page-intro-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .page-intro-stats { grid-template-columns: 1fr; }
}

.two-col--download {
  gap: 1.5rem;
}
.download-box--primary {
  border-color: rgba(249, 115, 22, 0.38);
  background: linear-gradient(180deg, #fff 0%, rgba(249, 115, 22, 0.05) 100%);
  box-shadow: var(--shadow);
}
.download-box--primary .btn-primary {
  box-shadow: 0 12px 32px var(--orange-glow);
}

.gallery--showcase {
  grid-template-columns: 1fr;
  max-width: 52rem;
}
.gallery--showcase figure {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.gallery--showcase figcaption {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  font-weight: 500;
}
.media-frame {
  padding: 0.5rem;
  background: linear-gradient(145deg, #fff 0%, var(--cream-deep) 100%);
}
.media-frame img {
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
}

.hash-block {
  background: var(--cream-deep);
  padding: 1rem;
  border-radius: var(--radius);
  overflow: auto;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  margin: 0.75rem 0;
}

.page-cta-wrap {
  margin-top: 2.5rem;
}
.guide-meta--center {
  margin: -0.25rem 0 1rem;
  text-align: center;
}

/* Setup page */
.setup-steps-overview .stat-tile strong {
  font-size: 1.15rem;
}
.setup-step-card .tag {
  margin-bottom: 0.55rem;
}
.setup-step-card h2 {
  margin-top: 0;
}
.card-subhead {
  margin: 1.5rem 0 0.65rem;
  font-size: 1rem;
  color: var(--ink);
}
.page-body--polish .content-card--video .setup-video-embed .video-wrap {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.page-body--polish .video-actions {
  margin-top: 0.85rem;
}

/* Support page */
.two-col--support {
  gap: 1.25rem;
}
.page-body--polish .contact-sheet.content-card-highlight {
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.22);
}

/* Docs hub */
.two-col--docs {
  gap: 1.25rem;
}
.page-body--polish .doc-hub-pdf.content-card-highlight {
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.28);
}
.doc-hub-pdf .tag {
  margin-bottom: 0.55rem;
}
.doc-hub-pdf h2 {
  margin-top: 0;
}
.doc-card-link {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
}

/* Changelog */
.changelog-release .tag {
  margin-bottom: 0.55rem;
}
.changelog-release h2 {
  margin-top: 0;
}
.changelog-release--current {
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.32);
}
.changelog-release--muted {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.changelog-hero-stats .stat-tile strong {
  font-size: 1.05rem;
}
.page-body--polish .changelog-release + .changelog-release {
  margin-top: 0;
}

/* Guides hub */
.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}
.guide-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  height: 100%;
}
.guide-card .tag {
  margin-bottom: 0.55rem;
}
.guide-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  line-height: 1.25;
}
.guide-card h3 a {
  color: var(--ink);
  text-decoration: none;
}
.guide-card h3 a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}
.guide-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.45;
}
@media (min-width: 900px) {
  .guide-card--wide {
    grid-column: span 2;
  }
}
@media (max-width: 599px) {
  .guide-card--wide {
    grid-column: span 1;
  }
}
.btn-row--center {
  justify-content: center;
  margin-bottom: 0.5rem;
}
.guide-meta--center .sep {
  margin: 0 0.4rem;
  color: var(--ink-muted);
}

/* Guide articles */
.guide-article h2 {
  margin-top: 0;
  font-size: 1.15rem;
}
.guide-article h2:not(:first-of-type) {
  margin-top: 1.35rem;
}
.guide-article .tag {
  margin-bottom: 0.55rem;
}
.guide-nav-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  margin: 0.5rem 0 1.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed var(--border);
  font-size: 0.9rem;
}
.guide-nav-footer a {
  font-weight: 600;
  color: var(--orange-dark);
  text-decoration: none;
}
.guide-nav-footer a:hover {
  text-decoration: underline;
}
.page-body--polish .guide-article + .guide-article {
  margin-top: 0;
}

/* Legal pages */
.legal-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.legal-hero-links__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.legal-hero-links__pill:hover {
  border-color: rgba(249, 115, 22, 0.45);
  color: var(--orange-dark);
  text-decoration: none;
}
.legal-hero-links__pill--active {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px var(--orange-glow);
}
.legal-hero-links__pill--active:hover {
  color: #fff;
}
.legal-document .tag {
  margin-bottom: 0.55rem;
}
.legal-document h2 {
  margin-top: 1.35rem;
  font-size: 1.1rem;
}
.legal-document h2:first-of-type {
  margin-top: 0.5rem;
}
.page-body.prose .legal-document p {
  line-height: 1.65;
}
.legal-nav-footer {
  margin-top: 0.25rem;
}

/* —— Refined redesign (5.1) —— */
.hero--premium {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 4.75rem);
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(201, 160, 106, 0.14), transparent 55%),
    linear-gradient(165deg, #0b0c0f 0%, #151820 48%, #12141a 100%);
  color: rgba(255, 255, 255, 0.92);
}
.hero--premium .hero-lead,
.hero--premium .btn-sub,
.hero--premium .trust-line,
.hero--premium .hero-pdf-links {
  color: rgba(255, 255, 255, 0.72);
}
.hero--premium .hero-pdf-links a { color: var(--gold-light); }
.hero--premium h1 { color: #fff; }
.hero--premium .accent { color: var(--gold); }
.hero--premium .pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}
.hero--premium .pill-dot { background: var(--gold); }
.hero--premium .check-list { color: rgba(255, 255, 255, 0.88); }
.hero--premium .check-list .icon { color: var(--gold); }
.hero--premium .why-micro { color: rgba(255, 255, 255, 0.65); }
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.trust-bar span::before {
  content: "◆ ";
  color: var(--gold);
  font-size: 0.55rem;
  vertical-align: middle;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
@media (max-width: 820px) {
  .flow-steps { grid-template-columns: 1fr; }
}
.flow-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.flow-step__media {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem;
}
.flow-step__media img {
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--border);
  width: 100%;
}
.flow-step__body {
  padding: 1.1rem 1.2rem 1.25rem;
}
.flow-step__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.flow-step h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.08rem;
}
.flow-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}
@media (max-width: 720px) {
  .module-grid { grid-template-columns: 1fr; }
}
.module-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.module-card__shot {
  background: linear-gradient(180deg, var(--cream-deep), var(--cream));
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.module-card__shot img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.module-card__body {
  padding: 1.15rem 1.25rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.module-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.module-card h3 {
  margin: 0.35rem 0 0.45rem;
  font-size: 1.15rem;
}
.module-card__lead {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
  flex: 1;
}
.module-card__meta {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}
.module-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.strip-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  text-align: center;
}
@media (max-width: 720px) {
  .strip-compare { grid-template-columns: 1fr; text-align: left; }
}
.strip-compare h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #fff;
}
.strip-compare p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}
.strip-compare__icon {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.pricing-panel {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.pricing-panel ul {
  text-align: left;
  margin: 1rem auto 0;
  max-width: 28rem;
  color: var(--ink-muted);
}
.progress-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.progress-track li {
  flex: 1 1 auto;
  min-width: 7rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  color: var(--ink-muted);
}
.progress-track li.is-active {
  background: rgba(201, 160, 106, 0.16);
  border-color: rgba(201, 160, 106, 0.45);
  color: var(--gold-dark);
}
.product-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.product-nav a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--ink);
  text-decoration: none;
}
.product-nav a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  text-decoration: none;
}
.product-section {
  scroll-margin-top: 5.5rem;
  margin-bottom: 2.5rem;
}
.product-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .product-section__grid { grid-template-columns: 1fr; }
}
.redirect-page {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

/* —— Design refresh (totalcrypter-website-redesign inspiration) —— */
.site-header {
  background: var(--header);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
.header-inner {
  padding: 0.72rem 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 8px 22px var(--gold-glow);
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.nav-main a {
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.nav-main a:hover,
.nav-main a.active {
  border-bottom-color: var(--gold);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #d67a2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f0a256 0%, var(--gold-dark) 100%);
}

.hero--premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 82% -10%, rgba(232, 148, 69, 0.22), transparent 58%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(232, 148, 69, 0.08), transparent 55%),
    linear-gradient(168deg, #06070a 0%, #10131a 42%, #0c0e13 100%);
}
.hero--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero--premium .container {
  position: relative;
  z-index: 1;
}
.hero--premium h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero--premium .pill {
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  max-width: 34rem;
}
@media (max-width: 640px) {
  .hero-metrics { grid-template-columns: 1fr; }
}
.hero-metric {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 0.15rem;
}
.hero-metric span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
}
.trust-bar--chips {
  gap: 0.55rem;
  border-top: none;
  padding-top: 0.35rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-chip::before {
  content: none;
}
.hero-device {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.hero-device::before {
  background: linear-gradient(135deg, rgba(232, 148, 69, 0.65), rgba(255, 255, 255, 0.08));
}

.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  color: var(--gold-dark);
}
.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}
.section--muted {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}
.section--dark {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(232, 148, 69, 0.12), transparent 60%),
    linear-gradient(180deg, #0e1015 0%, #12151c 100%);
}

.flow-step,
.module-card,
.content-card,
.feature-card,
.pricing-panel,
.faq-item,
.download-box {
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.flow-step:hover,
.module-card:hover,
.content-card:hover,
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.module-card__shot {
  position: relative;
  background: linear-gradient(180deg, #1a1d24 0%, var(--cream-deep) 100%);
}
.module-card__shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(15, 17, 21, 0.08));
  pointer-events: none;
}

.page-hero--sub {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(232, 148, 69, 0.14), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.page-hero--sub h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
}
.breadcrumb a {
  font-weight: 600;
}
.download-box--primary {
  border-color: rgba(232, 148, 69, 0.35);
  background: linear-gradient(180deg, #fffefb 0%, #fff 100%);
  box-shadow: var(--shadow-glow);
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 720px) {
  .download-grid { grid-template-columns: 1fr; }
}

.cta-band {
  background:
    radial-gradient(ellipse 80% 120% at 50% 0%, rgba(232, 148, 69, 0.14), transparent 70%),
    linear-gradient(135deg, #fff 0%, var(--cream-deep) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}
.cta-band h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--ink);
}
.cta-band p {
  color: var(--ink-muted);
  opacity: 1;
}
.cta-band .btn {
  background: linear-gradient(135deg, var(--gold) 0%, #d67a2e 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glow);
}
.cta-band .btn:hover {
  background: linear-gradient(135deg, #f0a256 0%, var(--gold-dark) 100%);
  color: #fff;
}
.cta-band .link-inline a {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-band .link-inline a:hover {
  color: var(--gold-dark);
  opacity: 1;
}

.site-footer {
  background: linear-gradient(180deg, var(--header-solid) 0%, #050608 100%);
  padding: 3rem 0 2rem;
}
.site-footer .brand-mark {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.footer-bottom {
  color: rgba(255, 255, 255, 0.45);
}

.tag {
  background: rgba(232, 148, 69, 0.14);
  border: 1px solid rgba(232, 148, 69, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}

.skip-link:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Mercenary Locations Club */
.section--mercenary {
  background:
    radial-gradient(ellipse 70% 80% at 20% 0%, rgba(54, 168, 154, 0.16), transparent 58%),
    radial-gradient(ellipse 60% 70% at 90% 100%, rgba(54, 168, 154, 0.1), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.mercenary-promo,
.mercenary-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .mercenary-promo,
  .mercenary-hero-split { grid-template-columns: 1fr; }
  .mercenary-hero-split__visual {
    order: -1;
    max-width: 34rem;
    margin-inline: auto;
    width: 100%;
  }
}
.mercenary-promo__media {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(54, 168, 154, 0.28);
  box-shadow:
    0 24px 56px rgba(54, 168, 154, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  background: #0b0f14;
  min-height: 180px;
}
.mercenary-illustration {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 180px;
  aspect-ratio: 8 / 5;
  object-fit: contain;
  object-position: center;
}
.mercenary-visual {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0b0f14;
  border: 1px solid rgba(54, 168, 154, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(54, 168, 154, 0.12);
}
.mercenary-visual .mercenary-illustration,
.mercenary-promo__media .mercenary-illustration {
  border-radius: 0;
  box-shadow: none;
}
.module-grid .module-card--mercenary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}
@media (max-width: 860px) {
  .module-grid .module-card--mercenary { grid-template-columns: 1fr; }
}
.module-card--mercenary .module-card__shot {
  padding: 0;
  background: #0b0f14;
  overflow: hidden;
  border-bottom: 0;
  min-height: 220px;
}
.module-card--mercenary .module-card__shot .mercenary-illustration {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: contain;
}
.module-card--mercenary .module-card__body {
  padding: 1.35rem 1.5rem 1.4rem;
  justify-content: center;
}
.mercenary-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.35rem 0 1.5rem;
}
@media (max-width: 900px) {
  .mercenary-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .mercenary-stats { grid-template-columns: 1fr; }
}
.mercenary-stat {
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(54, 168, 154, 0.22);
  box-shadow: 0 8px 20px rgba(54, 168, 154, 0.06);
}
.mercenary-stat--price {
  background: linear-gradient(180deg, rgba(54, 168, 154, 0.14) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(54, 168, 154, 0.38);
}
.mercenary-stat strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  color: var(--ink);
}
.mercenary-stat span {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.45;
}
.mercenary-price-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin-top: 0.85rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(54, 168, 154, 0.12);
  border: 1px solid rgba(54, 168, 154, 0.28);
}
.mercenary-price-badge strong {
  color: var(--ink);
}
.mercenary-price-badge__sep {
  opacity: 0.45;
}
.mercenary-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.25rem;
}
.mercenary-promo__note {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.page-intro-stats--mercenary .stat-tile {
  border-color: rgba(54, 168, 154, 0.24);
  background: linear-gradient(180deg, #fff 0%, rgba(54, 168, 154, 0.05) 100%);
}
.page-intro-stats--mercenary .stat-tile strong {
  color: var(--teal-dark);
}
.tag--teal {
  background: rgba(54, 168, 154, 0.14);
  border-color: rgba(54, 168, 154, 0.32);
  color: var(--teal-dark);
}
.module-card--mercenary {
  border-color: rgba(54, 168, 154, 0.38);
  background: linear-gradient(180deg, #fff 0%, rgba(54, 168, 154, 0.07) 100%);
  box-shadow: 0 16px 40px rgba(54, 168, 154, 0.1);
}
.module-card--mercenary .module-card__tag {
  color: var(--teal-dark);
  background: rgba(54, 168, 154, 0.12);
  border: 1px solid rgba(54, 168, 154, 0.28);
}
.product-section--mercenary {
  padding: 1.65rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(54, 168, 154, 0.28);
  background:
    radial-gradient(ellipse 80% 100% at 0% 0%, rgba(54, 168, 154, 0.1), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  box-shadow: 0 18px 44px rgba(54, 168, 154, 0.08);
}
.product-nav a[href="#mercenary"] {
  border-color: rgba(54, 168, 154, 0.35);
  color: var(--teal-dark);
}
.product-nav a[href="#mercenary"]:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}
.cta-band--teal {
  background:
    radial-gradient(ellipse 80% 120% at 50% 0%, rgba(54, 168, 154, 0.18), transparent 70%),
    linear-gradient(135deg, #fff 0%, rgba(54, 168, 154, 0.08) 100%);
  border: 1px solid rgba(54, 168, 154, 0.24);
}
.cta-band--teal .btn {
  background: linear-gradient(135deg, var(--teal) 0%, #2f9689 100%);
  box-shadow: 0 12px 32px var(--teal-glow);
}
.cta-band--teal .btn:hover {
  background: linear-gradient(135deg, #45b8aa 0%, var(--teal-dark) 100%);
}
.cta-band--teal .link-inline a {
  color: var(--teal-dark);
}
.page-hero--mercenary {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(54, 168, 154, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(54, 168, 154, 0.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.eyebrow--teal {
  color: var(--teal-dark);
}
.strip-compare--light {
  color: var(--ink);
}
.strip-compare--light h3 {
  color: var(--ink);
}
.strip-compare--light p {
  color: var(--ink-muted);
}
.strip-compare--light .strip-compare__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-inline: auto;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(54, 168, 154, 0.14);
  border: 1px solid rgba(54, 168, 154, 0.28);
  color: var(--teal-dark);
}
.mercenary-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 760px) {
  .mercenary-steps { grid-template-columns: 1fr; }
}
.mercenary-step {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(54, 168, 154, 0.2);
  box-shadow: var(--shadow-soft);
}
.mercenary-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: rgba(54, 168, 154, 0.14);
  border: 1px solid rgba(54, 168, 154, 0.28);
}
.mercenary-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}
.mercenary-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.55;
}
