:root {
  color-scheme: light;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --text: #181713;
  --muted: #66645c;
  --line: #dedbd2;
  --accent: #78d141;
  --accent-strong: #348b22;
  --accent-soft: #e8f7df;
  --footer-bg: #edf6e7;
  --hero-wash: rgba(251, 250, 247, 0.78);
  --danger: #d9543f;
  --shadow: 0 20px 60px rgba(24, 23, 19, 0.08);
  --shadow-soft: 0 12px 34px rgba(24, 23, 19, 0.09);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1120px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #11120f;
  --surface: #181a16;
  --text: #f6f4ed;
  --muted: #b8b2a4;
  --line: #313329;
  --accent: #8ee35a;
  --accent-strong: #a3ef76;
  --accent-soft: #1f3318;
  --footer-bg: #171f14;
  --hero-wash: rgba(17, 18, 15, 0.68);
  --danger: #ff826d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--accent-strong) 60%, transparent);
  text-underline-offset: 0.18em;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  width: min(100% - 24px, calc(var(--max) + 40px));
  margin: 10px auto 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.header-inner,
.section,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  position: relative;
  width: min(100% - 24px, var(--max));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  color: var(--text);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav a,
.language-picker select,
.icon-button,
.button {
  min-height: 44px;
  border-radius: 999px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.header-panel {
  display: contents;
}

.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-picker select {
  appearance: none;
  width: 78px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  padding: 0 34px 0 16px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(24, 23, 19, 0.05);
}

.select-icon {
  position: absolute;
  right: 12px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  color: var(--muted);
}

.icon-button,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.icon-button {
  width: 44px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(24, 23, 19, 0.05);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(24, 23, 19, 0.05);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  min-height: clamp(620px, calc(100svh - 76px), 780px);
  padding-block: clamp(42px, 7vw, 76px);
  isolation: isolate;
}

.hero > :first-child {
  max-width: 650px;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: -96px calc(50% - 50vw) 0;
  z-index: -2;
  content: "";
}

.hero::before {
  background-image: url("/assets/wp/62313751-scaled.jpg");
  background-position: center bottom;
  background-size: cover;
}

.hero::after {
  z-index: -1;
  background: var(--hero-wash);
  backdrop-filter: blur(1px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 12.5ch;
  margin: 0;
  font-size: clamp(46px, 6.2vw, 76px);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.35;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-badge {
  height: 50px;
  width: auto;
  border-radius: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: min(100%, 500px);
  margin-inline: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.22));
}

.band {
  border-top: 0;
}

.section {
  padding-block: clamp(54px, 8vw, 96px);
}

.section.narrow {
  width: min(100% - 32px, 820px);
}

.split {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.split h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
}

.split > div:first-child p:not(.eyebrow) {
  max-width: 36rem;
}

.section-stack {
  display: grid;
  gap: clamp(26px, 5vw, 52px);
}

.section-intro {
  max-width: 760px;
}

.section-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
}

.section-intro p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
}

.section-intro-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-intro-row h2 {
  margin-bottom: 0;
}

.section-intro-row p:last-child {
  margin: 0;
}

.feature-list,
.article-list,
.partner-list,
.link-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.feature-list li,
.article-row,
.partner-row,
.link-row {
  padding: 24px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  box-shadow: 0 14px 40px rgba(24, 23, 19, 0.055);
}

.feature-list li:last-child,
.article-row:last-child,
.partner-row:last-child,
.link-row:last-child {
  border-bottom: 0;
}

.feature-list p,
.article-row p,
.partner-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

.feature-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 17px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-strong) 12%, transparent);
}

.feature-list h3 {
  margin: 0;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.18;
}

.article-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  text-decoration: none;
}

.article-row time {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.article-row h2,
.article-row h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
}

.article-row-meta {
  margin: 0 0 12px;
}

.article-category,
.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.taxonomy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.taxonomy-hero h1 {
  margin-bottom: 10px;
}

.taxonomy-hero p:last-child {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.share-box {
  display: grid;
  gap: 14px;
  margin-top: clamp(34px, 6vw, 58px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.share-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.taxonomy-empty {
  margin-top: 24px;
  color: var(--muted);
}

.partner-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  text-decoration: none;
}

.partner-row:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
  outline-offset: 4px;
}

.partner-row img {
  border-radius: var(--radius-sm);
  max-height: 74px;
  max-width: 180px;
  object-fit: contain;
}

.partner-row small {
  display: block;
}

.partner-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.partner-row small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.partner-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.partner-price {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.partner-price span + span {
  color: var(--muted);
  font-weight: 800;
}

.partner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--border));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 62%, transparent);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.partners-widget {
  display: grid;
  gap: 14px;
}

.partners-section .partner-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partners-section .partner-row {
  min-height: 188px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-content: start;
  align-items: start;
}

.partners-section .partner-row img {
  grid-column: 1 / -1;
  max-width: 190px;
  max-height: 54px;
}

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

.blog-list-section .article-list {
  margin-top: clamp(24px, 4vw, 38px);
}

.blog-section .article-row {
  min-height: 230px;
  grid-template-columns: 1fr;
  align-content: start;
}

.blog-section .article-row time {
  order: -1;
}

.blog-section .article-row h3 {
  font-size: clamp(24px, 2.7vw, 34px);
}

.price-section {
  background: color-mix(in srgb, var(--accent-soft) 42%, transparent);
}

.price-widget {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  min-width: 0;
}

.price-panel {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 94%, transparent), color-mix(in srgb, var(--surface) 84%, transparent)),
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent-soft) 76%, transparent), transparent 42%);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.price-current {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.price-current span,
.price-current em,
.price-chart-meta span,
.price-updated,
.price-unavailable {
  color: var(--muted);
}

.price-current strong {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.price-current small {
  font-size: 18px;
}

.price-current em {
  font-style: normal;
  font-weight: 700;
}

.price-chart-meta span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.price-stats div {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.price-stats dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-stats dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.price-chart-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
}

.price-chart-meta {
  display: flex;
  gap: 10px 16px;
  align-items: baseline;
  justify-content: space-between;
  min-width: 0;
}

.price-chart-viewport {
  min-width: 0;
}

.price-chart-shell {
  min-width: 0;
}

.price-chart {
  position: relative;
  min-width: 0;
  height: 220px;
  padding-block-start: 42px;
  overflow: visible;
}

.price-chart-grid {
  position: absolute;
  inset: 42px 0 0;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(to bottom, var(--border) 1px, transparent 1px) 0 0 / 100% 33.333%,
    linear-gradient(to right, color-mix(in srgb, var(--border) 66%, transparent) 1px, transparent 1px) 0 0 / 25% 100%;
  opacity: 0.75;
  pointer-events: none;
}

.price-chart-bars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(var(--bar-count, 96), minmax(0, 1fr));
  align-items: end;
  gap: clamp(2px, 0.4vw, 4px);
  height: 100%;
  min-width: 0;
}

.price-chart-bar {
  position: relative;
  width: 100%;
  min-height: 8px;
  border-radius: 999px 999px 0 0;
  background: var(--accent);
  cursor: default;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: background 120ms ease, box-shadow 120ms ease, opacity 120ms ease, transform 120ms ease;
}

.price-chart-bar.is-low {
  background: #0aa878;
}

.price-chart-bar.is-mid {
  background: #f4b400;
}

.price-chart-bar.is-high {
  background: #d85f3a;
}

.price-chart-bar.is-current {
  background: var(--text);
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--surface) 90%, transparent),
    0 0 0 5px color-mix(in srgb, #ffcc00 56%, transparent),
    0 14px 26px rgba(0, 0, 0, 0.22);
  z-index: 8;
}

.price-chart-bar[data-active="true"],
.price-chart-bar:hover,
.price-chart-bar:focus-visible {
  opacity: 1;
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--surface) 86%, transparent),
    0 0 0 5px color-mix(in srgb, var(--accent) 38%, transparent);
  transform: translateY(-2px);
  z-index: 12;
}

.price-chart-bar:focus-visible {
  outline: 0;
}

.price-chart-tooltip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  max-width: calc(100% - 20px);
  min-height: 34px;
  padding: 9px 11px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  pointer-events: none;
  transform: translate(-50%, -100%);
  text-align: center;
  white-space: nowrap;
}

.price-chart-tooltip[hidden] {
  display: none;
}

.price-updated {
  margin: 0;
  font-size: 14px;
}

.prose {
  font-size: 18px;
}

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

.prose h1,
.prose h2,
.prose h3 {
  margin-top: 2.1em;
}

.prose p,
.prose ul,
.prose ol {
  margin: 1.1em 0;
}

.prose img {
  margin: 32px auto;
}

.prose a {
  font-weight: 700;
}

.contact-section > h1 {
  max-width: 13ch;
}

.contact-experience {
  display: grid;
  gap: 24px;
  margin-top: clamp(28px, 5vw, 46px);
}

.contact-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-tab {
  display: grid;
  min-height: 160px;
  place-items: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 34px rgba(24, 23, 19, 0.06);
}

.contact-tab:hover,
.contact-tab[aria-selected="true"] {
  border-color: color-mix(in srgb, var(--accent-strong) 34%, var(--line));
  background: var(--accent-soft);
}

.contact-tab img {
  width: 86px;
  height: 86px;
  margin: 0;
  object-fit: contain;
}

.contact-panels {
  display: grid;
}

.contact-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow-soft);
}

.contact-panel[hidden],
.contact-form[hidden] {
  display: none;
}

.contact-panel-heading {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.contact-panel-heading img {
  width: 86px;
  height: 86px;
  margin: 0;
  object-fit: contain;
}

.contact-panel-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.contact-panel-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.contact-message {
  display: grid;
  gap: 4px;
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  font-size: 15px;
  font-weight: 700;
}

.contact-message p {
  margin: 0;
}

.contact-message.success {
  border-color: color-mix(in srgb, var(--accent-strong) 34%, var(--line));
  background: var(--accent-soft);
  color: var(--text);
}

.contact-message.error {
  border-color: color-mix(in srgb, var(--danger) 38%, var(--line));
  background: color-mix(in srgb, var(--danger) 9%, var(--surface));
  color: var(--text);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-required-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
  margin: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field span {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.form-field strong {
  color: var(--danger);
}

.form-field em {
  margin-left: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(24, 23, 19, 0.03);
}

.form-field input {
  min-height: 50px;
  padding: 10px 14px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
  padding: 12px 14px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--accent) 34%, transparent);
  border-color: var(--accent-strong);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 74%, transparent);
}

.form-error {
  color: var(--danger);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-submit {
  grid-column: 1 / -1;
  width: fit-content;
  min-width: 130px;
  border: 0;
  cursor: pointer;
}

.contact-submit[disabled] {
  cursor: progress;
  opacity: 0.7;
}

.article-hero {
  padding-block: clamp(48px, 8vw, 92px);
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 6vw, 72px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  color: var(--muted);
}

.article-image {
  width: min(100% - 32px, var(--max));
  max-height: 580px;
  margin: 0 auto clamp(34px, 7vw, 76px);
  border-radius: var(--radius);
  object-fit: cover;
}

.site-footer {
  margin-top: clamp(34px, 6vw, 72px);
  background: var(--footer-bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding-block: 42px;
  color: var(--muted);
  font-size: 15px;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a,
.social-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.social-links {
  justify-content: end;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
}

.social-links a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 14px;
    border: 0;
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-header[data-open="true"] .header-panel {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    padding-top: 10px;
  }

  .nav a {
    justify-content: center;
    border-radius: 999px;
  }

  .header-actions {
    justify-content: center;
  }

  .hero,
  .split,
  .price-widget {
    grid-template-columns: 1fr;
  }

  .section-intro-row {
    display: grid;
    align-items: start;
  }

  .hero {
    min-height: auto;
    padding-block: clamp(36px, 10vw, 64px);
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    max-height: 48svh;
    object-fit: contain;
  }

  .article-row,
  .partner-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .taxonomy-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .partners-section .partner-list,
  .blog-section .article-list {
    grid-template-columns: 1fr;
  }

  .contact-tabs,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-experience {
    overflow-x: clip;
  }

  .contact-panel {
    box-shadow: none;
  }

  .contact-tab {
    min-height: 126px;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .contact-tab img,
  .contact-panel-heading img {
    width: 68px;
    height: 68px;
  }

  .contact-panel-heading {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .article-row time {
    white-space: normal;
  }

  .partner-row img {
    max-width: 220px;
  }

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

  .social-links {
    justify-content: start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .section,
  .footer-inner,
  .article-image {
    width: min(100% - 24px, var(--max));
  }

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

  .actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .price-stats {
    grid-template-columns: 1fr;
  }

  .price-panel {
    padding: 20px 14px;
  }

  .price-chart-viewport {
    margin-inline: -4px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 4px 10px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .price-chart-shell {
    min-width: 660px;
  }

  .price-chart {
    height: 160px;
    padding-block-start: 38px;
  }

  .price-chart-grid {
    inset-block-start: 38px;
  }

  .store-badge {
    height: 46px;
  }
}
