:root {
  --background: #0d1117;
  --surface-1: #161b22;
  --surface-2: #1c2128;
  --border: #21262d;
  --border-strong: #30363d;
  --text: #e6edf3;
  --text-soft: #c9d1d9;
  --muted: #8b949e;
  --subtle: #484f58;
  --accent: #00e5a0;
  --danger: #f85149;
  --radius: 6px;
  --max: 1200px;
  --wide: 1400px;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", "Cascadia Code", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-ui);
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid rgba(0, 229, 160, 0.35);
  outline-offset: 2px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 56px;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

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

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  transition: color 150ms ease-out, background 150ms ease-out;
}

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

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  position: absolute;
  right: 12px;
  bottom: 2px;
  left: 12px;
  height: 2px;
  border-radius: 4px;
  background: var(--accent);
  content: "";
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: filter 150ms ease-out, border-color 150ms ease-out, background 150ms ease-out, color 150ms ease-out;
}

.button-primary {
  background: var(--accent);
  color: var(--background);
}

.button-primary:hover {
  filter: brightness(1.1);
}

.button-secondary {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--text);
  font-weight: 500;
}

.button-secondary:hover {
  border-color: var(--muted);
  background: rgba(230, 237, 243, 0.05);
}

.button-large {
  min-height: 58px;
  padding: 18px 40px;
  font-size: 18px;
}

.text-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 150ms ease-out;
}

.text-link:hover {
  color: var(--accent);
}

main {
  padding-top: 56px;
}

.section {
  padding: 80px 0;
}

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

.section-surface {
  background: var(--surface-1);
}

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.container-wide {
  width: min(var(--wide), calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-heading p,
.page-hero p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.hero {
  min-height: calc(100vh - 56px);
  padding: 72px 0 80px;
  background: linear-gradient(to bottom, var(--background), var(--surface-1));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 48px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

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

.micro-proof {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.product-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  animation: panel-in 600ms ease-out both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.panel-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-1);
}

.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--subtle);
}

.panel-title {
  margin-left: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.panel-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1px;
  background: var(--border);
}

.panel-column {
  min-width: 0;
  padding: 16px;
  background: var(--background);
}

.panel-column h3 {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.ticket-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.ticket-row:first-of-type {
  border-top: 0;
}

.status-tag,
.plan-badge,
.mini-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.status-tag.good,
.mini-tag.good {
  background: rgba(0, 229, 160, 0.1);
  color: var(--accent);
}

.status-tag.hot,
.mini-tag.hot {
  background: rgba(248, 81, 73, 0.1);
  color: var(--danger);
}

.ticket-title {
  min-width: 0;
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticket-time,
.activity-time,
.code-text {
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 12px;
}

.mini-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.board-lane {
  min-height: 128px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-1);
}

.board-lane strong {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.mini-card {
  margin-top: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.35;
}

.activity-list {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
}

.activity-item {
  position: relative;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.activity-item::before {
  position: absolute;
  top: 3px;
  left: -18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.pain-list,
.compare-table,
.faq-list,
.content-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pain-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--surface-1);
}

.pain-row:first-child,
.compare-row:first-child,
.content-row:first-child {
  border-top: 0;
}

.pain-row:nth-child(even) {
  background: var(--surface-2);
}

.pain-main {
  display: flex;
  gap: 12px;
  align-items: center;
  border-left: 2px solid var(--danger);
  padding-left: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.pain-impact {
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.5;
}

.transition-line {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: stretch;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.compare-head {
  background: var(--surface-2);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.compare-cell {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.compare-cell.problem {
  border-left: 2px solid var(--danger);
}

.compare-cell.solution {
  border-left: 2px solid var(--accent);
  background: var(--surface-2);
  color: var(--text);
  font-weight: 500;
  transition: background 150ms ease-out, border-left-width 150ms ease-out;
}

.compare-row:hover .compare-cell.solution {
  border-left-width: 4px;
  background: #262d38;
}

.compare-arrow {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  align-items: stretch;
}

.step-card,
.testimonial-card,
.price-card,
.info-card,
.article-card,
.form-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
}

.step-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
}

.step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.15;
}

.step-card h3,
.info-card h3,
.article-card h3,
.price-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.step-card p,
.info-card p,
.article-card p,
.price-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.timeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.5;
}

.timeline-arrow::before {
  width: 100%;
  border-top: 1px dashed var(--accent);
  content: "";
}

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

.testimonial-card {
  padding: 20px;
  border-left: 2px solid var(--border-strong);
  background: var(--surface-1);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

.person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--muted);
  filter: grayscale(100%) brightness(0.7);
  font-size: 12px;
  font-weight: 600;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}

.metric {
  padding: 20px;
  background: var(--background);
  text-align: center;
}

.metric-number {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.metric-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}

.logo-item {
  display: grid;
  place-items: center;
  min-height: 64px;
  background: var(--surface-1);
  color: var(--muted);
  filter: grayscale(100%) brightness(0.7);
  font-family: var(--font-mono);
  font-size: 13px;
}

.pricing-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pricing-table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-table th,
.pricing-table td {
  padding: 12px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
}

.pricing-table th {
  background: var(--surface-2);
  color: var(--text);
  font-weight: 500;
}

.pricing-table tbody tr:nth-child(odd) td {
  background: var(--surface-1);
}

.pricing-table tbody tr:nth-child(even) td {
  background: var(--background);
}

.pricing-table th.recommended,
.pricing-table td.recommended {
  border-left: 1px solid var(--accent);
}

.check {
  color: var(--accent);
  font-weight: 700;
}

.dash {
  color: var(--subtle);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.price-card {
  position: relative;
  padding: 32px;
}

.price-card.recommended {
  border-left: 1px solid var(--accent);
}

.plan-badge {
  margin-bottom: 14px;
  background: var(--accent);
  color: var(--background);
}

.price {
  margin: 16px 0 12px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price span {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.feature-list li::before {
  color: var(--accent);
  content: "✓";
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.faq-question {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}

.faq-question::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.faq-icon {
  color: var(--accent);
  font-size: 18px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-in-out;
}

.faq-answer-inner {
  margin: 0 20px 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 229, 160, 0.08), transparent 42%),
    var(--surface-1);
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

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

.cta-note {
  margin-top: 12px;
  color: var(--subtle);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--background);
  color: var(--subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 48px 0 28px;
}

.footer-brand p {
  max-width: 340px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  margin-top: 8px;
  color: var(--subtle);
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 28px;
  border-top: 1px solid var(--border);
  color: var(--subtle);
  font-size: 13px;
}

.page-hero {
  padding: 96px 0 56px;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.6fr);
  gap: 48px;
  align-items: end;
}

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

.page-meta {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
}

.page-meta span {
  color: var(--muted);
  font-size: 14px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

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

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

.info-card,
.article-card,
.form-panel {
  padding: 24px;
}

.info-card .card-link,
.article-card .card-link {
  display: inline-flex;
  margin-top: 18px;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 12px;
}

.content-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.content-row:nth-child(even) {
  background: var(--surface-1);
}

.content-row strong {
  color: var(--text);
  font-size: 15px;
}

.content-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.article-body {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  padding: 32px;
}

.article-body h2 {
  margin: 30px 0 12px;
  color: var(--text);
  font-size: 24px;
  letter-spacing: -0.01em;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.side-panel {
  position: sticky;
  top: 76px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-1);
  padding: 20px;
}

.side-panel h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 16px;
}

.side-panel a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--text);
  padding: 12px 14px;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 12px;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 229, 160, 0.35);
  border-radius: var(--radius);
  background: rgba(0, 229, 160, 0.08);
  color: var(--text-soft);
  font-size: 14px;
}

.form-success.is-visible {
  display: block;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 32px;
  align-items: start;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .brand {
    order: 1;
  }

  .nav-actions {
    order: 3;
    justify-content: end;
  }

  .nav-links {
    position: fixed;
    top: 56px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-1);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
  }

  .hero-grid,
  .page-hero .container,
  .split-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .panel-body,
  .grid-2,
  .grid-3,
  .grid-4,
  .proof-grid,
  .metrics,
  .logo-strip,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-arrow {
    height: 20px;
    transform: rotate(90deg);
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-cta {
    display: none;
  }

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

  .section-heading h2,
  .page-hero h1 {
    font-size: 30px;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .hero-actions,
  .final-cta .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .panel-body,
  .pain-row,
  .compare-row,
  .proof-grid,
  .metrics,
  .logo-strip,
  .price-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .content-row {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    min-height: 32px;
  }

  .content-row {
    gap: 8px;
  }

  .section {
    padding: 64px 0;
  }

  .article-body {
    padding: 22px;
  }
}
