:root {
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #eff6ff;
  --download-accent: #ff1684;
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --soft: #f7f9fc;
  --white: #fff;
  --dark: #101828;
  --success: #16a34a;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05), 0 1px 3px rgba(16, 24, 40, 0.04);
  --shadow-md: 0 10px 30px rgba(16, 24, 40, 0.08), 0 2px 8px rgba(16, 24, 40, 0.04);
  --shadow-lg: 0 30px 70px rgba(37, 99, 235, 0.12), 0 8px 24px rgba(16, 24, 40, 0.08);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-soft);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
  color: var(--accent-dark);
}

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

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.7em;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p {
  margin: 0 0 1.25em;
}

ul,
ol {
  margin-top: 0;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

.site-container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.content-narrow {
  max-width: 860px;
}

.section-pad {
  padding: 104px 0;
}

.section-pad-sm {
  padding: 48px 0;
}

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

.section-dark {
  color: #d0d5dd;
  background: var(--dark);
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

/* Buttons */
.button,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 21px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 11px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  color: var(--white);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--ink-soft);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--soft);
  border-color: #cfd4dc;
  box-shadow: var(--shadow-sm);
}

.button-light {
  color: var(--accent-dark);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--accent-dark);
  background: #f8fafc;
  border-color: #f8fafc;
}

.button-large {
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 12px;
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-weight: 700;
}

.text-link .icon {
  transition: transform 0.2s ease;
}

.text-link:hover .icon {
  transform: translateX(3px);
}

/* Header */
.announcement-bar {
  color: #cbd5e1;
  background: #0f172a;
  font-size: 13px;
}

.announcement-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.12);
}

.announcement-inner a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 5px;
  color: var(--white);
  font-weight: 600;
}

.announcement-inner a .icon {
  width: 14px;
  height: 14px;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(228, 231, 236, 0.9);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
  backdrop-filter: blur(16px);
}

.admin-bar .site-header.is-sticky {
  top: 32px;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-branding {
  flex: 0 0 auto;
}

.site-brand-link,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}

.custom-logo {
  max-width: 220px;
  max-height: 52px;
  width: auto;
}

.brand-logo {
  width: 37px;
  height: 37px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(37, 99, 235, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-copy small {
  max-width: 190px;
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 27px;
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  display: block;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
  color: var(--accent);
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 190px;
  visibility: hidden;
  padding: 10px;
  margin: 0;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  list-style: none;
  transform: translateY(7px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  padding: 8px 10px;
  border-radius: 7px;
}

.primary-menu .sub-menu a:hover {
  background: var(--soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-toggle .icon {
  width: 22px;
  height: 22px;
}

.menu-toggle-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-close {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.hero::after {
  position: absolute;
  right: -200px;
  bottom: -350px;
  width: 800px;
  height: 800px;
  content: "";
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07), transparent 67%);
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 50%;
}

.hero-decoration-one {
  width: 450px;
  height: 450px;
  top: -240px;
  left: -180px;
}

.hero-decoration-two {
  width: 620px;
  height: 620px;
  right: -340px;
  bottom: -360px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  padding: 30px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 780;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.hero-meta li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta .icon {
  width: 15px;
  height: 15px;
  color: var(--success);
  stroke-width: 2.5;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-stage {
  position: relative;
  width: 100%;
  max-width: 470px;
  margin-inline: auto;
}

.stage-glow {
  position: absolute;
  z-index: -1;
  width: 78%;
  height: 78%;
  top: 9%;
  left: 14%;
  background: rgba(37, 99, 235, 0.11);
  filter: blur(70px);
  border-radius: 50%;
}

.product-image {
  width: 100%;
  filter: drop-shadow(0 32px 34px rgba(15, 23, 42, 0.13));
}

.custom-product-image {
  width: auto;
  max-width: 100%;
  max-height: 360px;
  margin-inline: auto;
  object-fit: contain;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-note-version {
  top: 15%;
  right: -6px;
}

.floating-note-safe {
  bottom: 10%;
  left: 3%;
}

.floating-note .note-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 10px;
}

.floating-note .note-icon .icon {
  width: 18px;
  height: 18px;
}

.floating-note span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-note small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.floating-note strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

/* Product facts */
.product-facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-item {
  min-height: 115px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.fact-item:first-child {
  padding-left: 0;
}

.fact-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.fact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 11px;
}

.fact-icon .icon {
  width: 20px;
  height: 20px;
}

.fact-item > span:last-child {
  display: flex;
  flex-direction: column;
}

.fact-item strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.fact-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

/* Sections and cards */
.section-heading {
  max-width: 680px;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.centered-heading {
  margin: 0 auto 52px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.compact-heading {
  margin-bottom: 42px;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.split-heading .section-heading p {
  margin-bottom: 0;
}

.split-heading > .text-link {
  flex: 0 0 auto;
  margin-bottom: 5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  min-height: 365px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  border-color: #d5dbe5;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card-accent {
  background: linear-gradient(145deg, #f8fbff, #fff);
  border-color: #dce8ff;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 14px;
}

.feature-icon .icon {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin-bottom: 13px;
  font-size: 19px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.check-list .icon {
  width: 15px;
  height: 15px;
  color: var(--success);
  stroke-width: 2.5;
}

/* Platform cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.platform-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.platform-card:last-child:nth-child(odd) {
  grid-column: span 2;
}

.platform-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 14px;
}

.platform-icon .icon {
  width: 25px;
  height: 25px;
}

.platform-content h3 {
  margin: 0 0 3px;
  font-size: 17px;
}

.platform-content p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 92px;
}

.process-heading .button {
  margin-top: 12px;
}

.process-list {
  position: relative;
}

.process-list::before {
  position: absolute;
  z-index: 0;
  top: 53px;
  bottom: 53px;
  left: 26px;
  width: 1px;
  content: "";
  background: var(--line);
}

.process-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 22px;
  padding: 27px 0;
}

.process-number {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--white);
  border: 1px solid #d9e4fb;
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--white);
  font-size: 13px;
  font-weight: 800;
}

.process-item h3 {
  margin: 2px 0 7px;
  font-size: 17px;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Requirements */
.requirements {
  position: relative;
  overflow: hidden;
}

.requirements::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -300px;
  right: -100px;
  content: "";
  background: rgba(37, 99, 235, 0.18);
  filter: blur(100px);
  border-radius: 50%;
}

.requirements-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 100px;
}

.eyebrow-light {
  color: #93c5fd;
}

.requirements-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.requirements-copy > p {
  color: #aeb8c7;
  font-size: 17px;
}

.requirements-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 20px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
}

.requirements-meta strong {
  color: var(--white);
  font-size: 13px;
}

.requirements-meta span {
  color: #aeb8c7;
  font-size: 13px;
}

.requirements-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.requirements-image img {
  width: 100%;
  max-width: 510px;
  max-height: 430px;
  object-fit: contain;
}

/* Post cards */
.post-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.post-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.post-card-image {
  height: 215px;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #eaf2ff, #f8fbff);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.025);
}

.post-placeholder,
.demo-card-image > span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.post-placeholder .icon,
.demo-card-image .icon {
  width: 58px;
  height: 58px;
  opacity: 0.7;
}

.demo-card-2 { background: linear-gradient(145deg, #ecfdf3, #f8fffb); }
.demo-card-2 > span { color: #16a34a; }
.demo-card-3 { background: linear-gradient(145deg, #f5f3ff, #fbfaff); }
.demo-card-3 > span { color: #7c3aed; }

.post-card-content {
  padding: 25px;
}

.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 11px;
}

.post-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.post-card-meta .icon {
  width: 13px;
  height: 13px;
}

.post-card-meta a {
  color: inherit;
}

.post-card-content h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.42;
}

.post-card-content h3 a {
  color: var(--ink);
}

.post-card-content h3 a:hover {
  color: var(--accent);
}

.post-card-content p,
.post-card-excerpt {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.post-card-excerpt p {
  margin: 0;
}

.post-card-content .text-link {
  font-size: 13px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 110px;
}

.accordion-list {
  border-top: 1px solid var(--line);
}

.accordion-item {
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.accordion-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.accordion-item summary span {
  position: relative;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.accordion-item summary span::before,
.accordion-item summary span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 13px;
  height: 1.5px;
  content: "";
  background: var(--accent);
  transition: transform 0.2s ease;
}

.accordion-item summary span::after {
  transform: rotate(90deg);
}

.accordion-item[open] summary span::after {
  transform: rotate(0deg);
}

.accordion-item > div {
  padding: 0 44px 24px 4px;
}

.accordion-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* CTA */
.final-cta {
  color: #dbeafe;
  background: var(--accent);
}

.final-cta-inner {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.final-cta h2 {
  margin: 8px 0 8px;
  color: var(--white);
  font-size: clamp(27px, 3vw, 34px);
}

.final-cta p {
  margin: 0;
  color: #dbeafe;
}

.cta-label {
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Inner heroes */
.inner-hero {
  padding: 72px 0 76px;
  background: linear-gradient(180deg, #fbfdff, #fff);
  border-bottom: 1px solid var(--line);
}

.inner-hero-content {
  text-align: center;
}

.inner-hero-content .eyebrow {
  justify-content: center;
}

.inner-hero h1 {
  max-width: 880px;
  margin: 0 auto 17px;
  font-size: clamp(30px, 3.5vw, 42px);
  letter-spacing: -0.05em;
}

.inner-hero-content > p,
.archive-description {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.release-summary {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.release-summary > span {
  display: flex;
  flex-direction: column;
  padding: 16px 22px;
  border-right: 1px solid var(--line);
}

.release-summary > span:last-child {
  border-right: 0;
}

.release-summary small {
  color: var(--muted);
  font-size: 10px;
}

.release-summary strong {
  color: var(--ink);
  font-size: 14px;
}

/* QuickQ-inspired download page */
.quick-download-page {
  overflow: hidden;
  background: var(--white);
}

.quick-download-intro {
  padding: 72px 0 32px;
  text-align: center;
}

.quick-download-intro h1 {
  margin-bottom: 7px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.quick-download-intro p {
  margin: 0;
  color: #858b98;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.platform-download-section {
  display: flex;
  min-height: 520px;
  align-items: center;
  padding: 42px 0;
}

.platform-download-section + .platform-download-section {
  border-top: 1px solid #f0f2f5;
}

.platform-download-section:nth-child(even) {
  background: #fbfcfe;
}

.platform-download-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 70px;
}

.platform-download-section.is-reversed .platform-download-visual {
  order: 2;
}

.platform-download-section.is-reversed .platform-download-copy {
  order: 1;
}

.platform-download-visual {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.platform-download-visual img {
  width: 100%;
  max-width: 560px;
  max-height: 440px;
  object-fit: contain;
}

.platform-download-copy {
  max-width: 525px;
}

.platform-download-title {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-bottom: 20px;
}

.platform-download-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #3a3d45;
}

.platform-download-icon .icon {
  width: 57px;
  height: 57px;
  stroke-width: 1.55;
}

.platform-download-title h2 {
  margin: 0;
  color: #30313a;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.platform-download-copy > p {
  max-width: 510px;
  margin-bottom: 29px;
  color: #858b98;
  font-size: 17px;
  line-height: 1.85;
}

.platform-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.quick-download-button {
  min-width: 205px;
  min-height: 59px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 29px;
  color: var(--white);
  background: var(--download-accent);
  border: 2px solid var(--download-accent);
  border-radius: 999px;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--download-accent) 18%, transparent);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.2;
}

.quick-download-button:hover {
  color: var(--white);
  background: color-mix(in srgb, var(--download-accent) 88%, #000);
  border-color: color-mix(in srgb, var(--download-accent) 88%, #000);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--download-accent) 25%, transparent);
  transform: translateY(-2px);
}

.quick-download-extra {
  padding: 68px 0;
  border-top: 1px solid #eef0f4;
}

.quick-download-faq {
  padding: 72px 0 80px;
  background: #f8f9fb;
}

.quick-download-faq-inner {
  max-width: 910px;
}

.quick-download-faq-header {
  margin-bottom: 41px;
  text-align: center;
}

.quick-download-faq-header h2 {
  margin-bottom: 7px;
  color: #30313a;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.quick-download-faq-header p {
  margin: 0;
  color: #8b919c;
  font-size: 15px;
}

.quick-download-faq-list article {
  padding: 23px 0 24px;
  border-bottom: 1px solid #e4e7ec;
}

.quick-download-faq-list article:last-child {
  border-bottom: 0;
}

.quick-download-faq-list h3 {
  margin-bottom: 8px;
  color: #34363e;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.quick-download-faq-list p {
  margin: 0;
  color: #777e8a;
  font-size: 15px;
  line-height: 1.78;
}

@media (max-width: 1050px) {
  .platform-download-section {
    min-height: 470px;
  }

  .platform-download-row {
    gap: 42px;
  }

  .platform-download-copy > p {
    font-size: 16px;
  }

  .quick-download-button {
    min-width: 180px;
    padding-inline: 23px;
  }
}

@media (max-width: 760px) {
  .quick-download-intro {
    padding: 48px 0 24px;
  }

  .quick-download-intro h1 {
    font-size: 24px;
  }

  .quick-download-intro p {
    font-size: 14px;
  }

  .platform-download-section {
    min-height: 0;
    padding: 42px 0 54px;
  }

  .platform-download-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .platform-download-section.is-reversed .platform-download-visual,
  .platform-download-visual {
    order: 1;
  }

  .platform-download-section.is-reversed .platform-download-copy,
  .platform-download-copy {
    order: 2;
  }

  .platform-download-visual img {
    max-height: 330px;
  }

  .platform-download-copy {
    max-width: none;
    text-align: center;
  }

  .platform-download-title {
    justify-content: center;
    margin-bottom: 15px;
  }

  .platform-download-icon {
    width: 54px;
    height: 54px;
  }

  .platform-download-icon .icon {
    width: 44px;
    height: 44px;
  }

  .platform-download-title h2 {
    font-size: 21px;
  }

  .platform-download-copy > p {
    margin: 0 auto 24px;
    font-size: 15px;
  }

  .platform-download-actions {
    justify-content: center;
  }

  .quick-download-button {
    min-width: min(205px, 100%);
    min-height: 54px;
    font-size: 15px;
  }

  .quick-download-faq {
    padding: 58px 0 64px;
  }

  .quick-download-faq-list article {
    padding: 20px 0;
  }

  .quick-download-faq-list h3 {
    font-size: 16px;
  }

  .quick-download-faq-list p {
    font-size: 14px;
  }
}

@media (max-width: 470px) {
  .platform-download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-download-button {
    width: 100%;
  }
}

/* FAQ page */
.faq-page {
  background: var(--white);
}

.faq-page-hero {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

.faq-page-hero-inner {
  max-width: 820px;
  text-align: center;
}

.faq-page-hero .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}

.faq-page-hero h1 {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.faq-page-hero-inner > p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}

.faq-search {
  position: relative;
  max-width: 650px;
  display: block;
  margin: 31px auto 0;
}

.faq-search-icon {
  position: absolute;
  top: 50%;
  left: 21px;
  display: flex;
  color: #8993a3;
  pointer-events: none;
  transform: translateY(-50%);
}

.faq-search-icon .icon {
  width: 21px;
  height: 21px;
}

.faq-search input {
  width: 100%;
  height: 58px;
  padding: 0 22px 0 55px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #dce2eb;
  border-radius: 14px;
  box-shadow: 0 13px 35px rgba(15, 23, 42, 0.07);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search input:focus {
  border-color: color-mix(in srgb, var(--accent) 55%, #fff);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 13px 35px rgba(15, 23, 42, 0.07);
}

.faq-page-content {
  padding: 58px 0 86px;
}

.faq-page-content-inner {
  max-width: 1010px;
}

.faq-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 42px;
}

.faq-filter-button {
  min-height: 40px;
  padding: 9px 17px;
  color: #667085;
  background: #f6f7f9;
  border: 1px solid #e8ebf0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.faq-filter-button:hover {
  color: var(--accent);
  border-color: #ccdcfb;
}

.faq-filter-button.is-active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.faq-page-list {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e4e8ef;
  border-radius: 17px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.055);
}

.faq-page-item {
  border-bottom: 1px solid #e9ecf1;
}

.faq-page-item:last-child {
  border-bottom: 0;
}

.faq-page-item[hidden] {
  display: none;
}

.faq-page-item summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 18px 25px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

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

.faq-page-item[open] summary {
  color: var(--accent);
  background: #fbfdff;
}

.faq-question-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 850;
}

.faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-page-item[open] .faq-toggle::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 68px 24px 75px;
  background: #fbfdff;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.faq-no-results {
  padding: 62px 20px;
  text-align: center;
  background: #fafbfc;
  border: 1px dashed #d9dee8;
  border-radius: 17px;
}

.faq-no-results > span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 12px;
}

.faq-no-results .icon {
  width: 21px;
  height: 21px;
}

.faq-no-results strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 16px;
}

.faq-no-results p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-page-extra {
  padding-top: 58px;
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.faq-support {
  padding: 52px 0;
  background: #f5f8fd;
  border-top: 1px solid #e3e9f2;
}

.faq-support-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.faq-support-copy {
  display: flex;
  align-items: center;
  gap: 17px;
}

.faq-support-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--accent);
  background: var(--white);
  border: 1px solid #dae5f7;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.faq-support-icon .icon {
  width: 23px;
  height: 23px;
}

.faq-support h2 {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 22px;
}

.faq-support p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-support-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

@media (max-width: 820px) {
  .faq-page-hero {
    padding: 56px 0 50px;
  }

  .faq-page-content {
    padding: 48px 0 68px;
  }

  .faq-filter {
    justify-content: flex-start;
    margin-bottom: 32px;
  }

  .faq-support-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .faq-support-actions {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .faq-page-hero {
    padding: 46px 0 42px;
  }

  .faq-page-hero h1 {
    font-size: 30px;
  }

  .faq-page-hero-inner > p {
    font-size: 14px;
  }

  .faq-search {
    margin-top: 25px;
  }

  .faq-search input {
    height: 54px;
  }

  .faq-page-content {
    padding: 40px 0 58px;
  }

  .faq-filter {
    gap: 7px;
  }

  .faq-filter-button {
    padding: 8px 13px;
    font-size: 12px;
  }

  .faq-page-item summary {
    grid-template-columns: 30px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: 70px;
    padding: 16px 15px;
    font-size: 14px;
  }

  .faq-question-mark {
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    padding: 0 43px 21px 57px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .faq-support {
    padding: 42px 0;
  }

  .faq-support h2 {
    font-size: 19px;
  }

  .faq-support-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-support-actions .button {
    width: 100%;
  }
}

/* Listings */
.listing-hero .search-form {
  max-width: 530px;
  margin: 27px auto 0;
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
  gap: 45px;
}

.post-card-grid-listing {
  grid-template-columns: repeat(2, 1fr);
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-download-card,
.widget {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.sidebar-download-card {
  background: linear-gradient(150deg, #f5f9ff, #fff);
  border-color: #dbe7fd;
}

.sidebar-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 11px;
}

.sidebar-download-card h2,
.widget-title {
  margin-bottom: 9px;
  font-size: 17px;
}

.sidebar-download-card p,
.widget {
  color: var(--muted);
  font-size: 13px;
}

.sidebar-download-card .button {
  margin-top: 5px;
}

.widget ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.widget li {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.widget li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.widget a {
  color: var(--ink-soft);
}

.widget a:hover {
  color: var(--accent);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 42px;
}

.pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
}

.pagination .current,
.pagination a:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.empty-state {
  padding: 60px 30px;
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.empty-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 16px;
}

.empty-icon .icon {
  width: 27px;
  height: 27px;
}

.empty-state h2 {
  font-size: 22px;
}

.empty-state p {
  color: var(--muted);
}

.empty-state .search-form {
  max-width: 450px;
  margin: 20px auto 0;
}

/* Single article */
.article-header {
  padding: 62px 0 54px;
  text-align: center;
  background: linear-gradient(180deg, #fbfdff, #fff);
  border-bottom: 1px solid var(--line);
}

.article-header-inner {
  max-width: 930px;
}

.article-category {
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 17px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
}

.article-header h1 {
  margin-bottom: 17px;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.048em;
}

.article-deck {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 18px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px 22px;
  color: var(--muted);
  font-size: 12px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta .icon {
  width: 14px;
  height: 14px;
}

.article-featured-image {
  max-width: 1080px;
  margin-top: 52px;
}

.article-featured-image img,
.page-featured-image img {
  width: 100%;
  border-radius: var(--radius);
}

.article-layout {
  padding-top: 65px;
  padding-bottom: 95px;
}

.article-main {
  min-width: 0;
}

.entry-content {
  color: #344054;
  font-size: 16px;
  line-height: 1.9;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2 {
  margin-top: 2.1em;
  margin-bottom: 0.75em;
  font-size: 26px;
  line-height: 1.3;
}

.entry-content h3 {
  margin-top: 1.9em;
  margin-bottom: 0.7em;
  font-size: 21px;
  line-height: 1.35;
}

.entry-content h4 {
  margin-top: 1.7em;
  margin-bottom: 0.65em;
  font-size: 18px;
}

.entry-content p {
  margin-bottom: 1.45em;
}

.entry-content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
  margin-bottom: 1.6em;
}

.entry-content li {
  margin-bottom: 0.55em;
  padding-left: 0.15em;
}

.entry-content blockquote {
  padding: 22px 25px;
  margin: 30px 0;
  color: var(--ink-soft);
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content pre {
  max-width: 100%;
  overflow: auto;
  padding: 20px;
  color: #e2e8f0;
  background: #0f172a;
  border-radius: 12px;
  font-size: 13px;
}

.entry-content code {
  padding: 2px 5px;
  color: #9d174d;
  background: #fdf2f8;
  border-radius: 5px;
  font-size: 0.88em;
}

.entry-content pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.entry-content table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.entry-content th,
.entry-content td {
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--line);
}

.entry-content th {
  color: var(--ink);
  background: var(--soft);
}

.entry-content figure {
  max-width: 100%;
  margin: 32px 0;
}

.entry-content figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.entry-content .alignwide {
  width: min(1100px, calc(100vw - 40px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.article-footer {
  padding-top: 24px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.tag-list a {
  padding: 5px 9px;
  color: var(--ink-soft);
  background: var(--soft);
  border-radius: 7px;
}

.post-navigation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.post-navigation a {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.post-navigation a:hover {
  border-color: #c9d8f5;
  box-shadow: var(--shadow-sm);
}

.post-navigation small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.post-navigation strong {
  font-size: 13px;
  line-height: 1.5;
}

.nav-next {
  text-align: right;
}

/* Pages and comments */
.page-content-wrap {
  padding-top: 62px;
  padding-bottom: 95px;
}

.page-featured-image {
  margin-bottom: 45px;
}

.comments-area {
  padding-top: 45px;
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.comments-title,
.comment-reply-title {
  font-size: 23px;
}

.comment-list {
  padding: 0;
  margin: 28px 0 45px;
  list-style: none;
}

.comment-list .children {
  padding-left: 40px;
  list-style: none;
}

.comment-body {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.comment-meta {
  font-size: 12px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-author img {
  border-radius: 50%;
}

.comment-content {
  margin-top: 12px;
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.comment-form p {
  margin-bottom: 15px;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d0d5dd;
  border-radius: 9px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-form {
  position: relative;
  display: flex;
}

.search-form label {
  width: 100%;
}

.search-form .search-field {
  height: 46px;
  padding-right: 50px;
}

.search-form .search-submit {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 36px;
  min-height: 36px;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 7px;
}

.error-page {
  padding: 100px 0 120px;
}

.error-content {
  max-width: 660px;
  text-align: center;
}

.error-code {
  margin-bottom: -42px;
  color: #f1f5f9;
  font-size: clamp(110px, 20vw, 190px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.08em;
}

.error-content h1 {
  font-size: 28px;
}

.error-content > p {
  color: var(--muted);
}

.error-content .search-form {
  max-width: 450px;
  margin: 25px auto 18px;
}

/* Footer */
.site-footer {
  color: #98a2b3;
  background: #0c1424;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.8fr 1fr;
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 62px;
}

.site-footer .site-brand-link {
  color: var(--white);
}

.site-footer .brand-copy strong {
  color: var(--white);
}

.site-footer .brand-copy small {
  color: #7f8a9c;
}

.footer-brand > p {
  max-width: 300px;
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

.footer-column h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0;
}

.footer-column ul,
.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column li {
  line-height: 1.45;
}

.footer-column a {
  color: #98a2b3;
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-support p {
  font-size: 12px;
  line-height: 1.7;
}

.footer-support .text-link {
  color: #bfdbfe;
  font-size: 12px;
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #667085;
  font-size: 11px;
}

/* WordPress utilities */
.alignleft { float: left; margin: 0 24px 20px 0; }
.alignright { float: right; margin: 0 0 20px 24px; }
.aligncenter { display: block; margin-right: auto; margin-left: auto; }
.wp-caption { max-width: 100%; }
.sticky { position: relative; }
.bypostauthor { position: relative; }
.gallery { display: grid; gap: 12px; }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(410px, 1.05fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .fact-item {
    padding: 18px;
  }

  .fact-item:first-child {
    padding-left: 0;
  }

  .process-grid,
  .requirements-grid {
    gap: 60px;
  }

  .footer-grid {
    gap: 38px;
  }
}

@media (max-width: 960px) {
  .section-pad {
    padding: 82px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .site-navigation {
    position: fixed;
    z-index: 100;
    top: 112px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    visibility: hidden;
    padding: 28px 20px;
    opacity: 0;
    background: var(--white);
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .admin-bar .site-navigation {
    top: 144px;
  }

  .primary-menu {
    display: block;
  }

  .primary-menu a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .primary-menu .sub-menu {
    position: static;
    min-width: 0;
    visibility: visible;
    padding: 0 0 0 16px;
    opacity: 1;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .header-download {
    width: 100%;
    margin-top: 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
  }

  .product-stage {
    max-width: 440px;
  }

  .custom-product-image {
    max-height: 350px;
  }

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

  .fact-item:nth-child(2) {
    border-right: 0;
  }

  .fact-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .fact-item:first-child,
  .fact-item:nth-child(3) {
    padding-left: 0;
  }

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

  .feature-card:last-child {
    grid-column: span 2;
  }

  .process-grid,
  .requirements-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-heading {
    max-width: 680px;
  }

  .requirements-copy {
    max-width: 700px;
  }

  .requirements-image img {
    max-width: 460px;
  }

  .faq-heading {
    position: static;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .article-sidebar > *:last-child:nth-child(odd) {
    grid-column: span 2;
  }

  .download-card {
    grid-column: span 3;
  }

  .download-card:nth-child(4),
  .download-card:nth-child(5) {
    grid-column: span 3;
  }

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

@media (max-width: 782px) {
  .admin-bar .site-header.is-sticky {
    top: 46px;
  }

  .admin-bar .site-navigation {
    top: 158px;
  }
}

@media (max-width: 700px) {
  .site-container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section-pad {
    padding: 68px 0;
  }

  .announcement-inner {
    min-height: 40px;
    justify-content: flex-start;
    white-space: nowrap;
    overflow: hidden;
  }

  .announcement-inner > span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .announcement-inner a {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .site-navigation {
    top: 108px;
  }

  .admin-bar .site-navigation {
    top: 154px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    gap: 8px 13px;
    font-size: 11px;
  }

  .product-stage {
    max-width: 340px;
  }

  .custom-product-image {
    max-height: 280px;
  }

  .floating-note {
    padding: 9px 11px;
  }

  .floating-note-version {
    right: 0;
  }

  .floating-note-safe {
    bottom: 5%;
    left: 0;
  }

  .fact-grid,
  .feature-grid,
  .platform-grid,
  .post-card-grid,
  .install-steps,
  .post-navigation,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fact-item {
    min-height: 93px;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-item:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .fact-item:last-child {
    border-bottom: 0;
  }

  .feature-card,
  .feature-card:last-child,
  .platform-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .feature-card {
    min-height: auto;
    padding: 27px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .split-heading {
    display: block;
  }

  .split-heading > .text-link {
    margin-top: 18px;
  }

  .platform-card {
    grid-template-columns: auto 1fr;
  }

  .platform-card .button {
    grid-column: span 2;
  }

  .process-item {
    gap: 16px;
  }

  .requirements-grid {
    gap: 40px;
  }

  .requirements-image img {
    max-width: 390px;
  }

  .final-cta-inner {
    min-height: 310px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
  }

  .final-cta .button {
    width: 100%;
  }

  .inner-hero {
    padding: 54px 0 58px;
  }

  .inner-hero h1 {
    font-size: 32px;
  }

  .inner-hero-content > p,
  .archive-description {
    font-size: 15px;
  }

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

  .release-summary > span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .release-summary > span:last-child {
    border-bottom: 0;
  }

  .download-card-grid {
    grid-template-columns: 1fr;
  }

  .download-card,
  .download-card:nth-child(4),
  .download-card:nth-child(5) {
    grid-column: auto;
  }

  .notice-card {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    display: flex;
  }

  .article-sidebar > *:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .article-header {
    padding: 50px 0 46px;
  }

  .article-header h1 {
    font-size: 31px;
  }

  .article-deck {
    font-size: 16px;
  }

  .article-layout {
    padding-top: 48px;
    padding-bottom: 70px;
  }

  .entry-content {
    font-size: 15px;
  }

  .entry-content h2 {
    font-size: 23px;
  }

  .entry-content h3 {
    font-size: 19px;
  }

  .entry-content table {
    display: block;
    overflow-x: auto;
  }

  .nav-next {
    text-align: left;
  }

  .footer-grid {
    gap: 38px;
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
