:root {
  --color-primary-blue: #2563eb;
  --color-primary-teal: #14b8a6;
  --color-primary-gradient: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%);
  --color-blue-50: #eff6ff;
  --color-blue-100: #dbeafe;
  --color-blue-200: #bfdbfe;
  --color-blue-500: #3b82f6;
  --color-blue-700: #1d4ed8;
  --color-blue-900: #1e3a8a;
  --color-teal-50: #f0fdfa;
  --color-teal-100: #ccfbf1;
  --color-teal-300: #5eead4;
  --color-teal-500: #14b8a6;
  --color-teal-700: #0f766e;
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-muted: #f1f5f9;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-muted: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-width: 1180px;
  --display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(37, 99, 235, 0.1), transparent 22%),
    radial-gradient(circle at 88% 4%, rgba(20, 184, 166, 0.11), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, var(--color-slate-50) 58%, #ffffff 100%);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow: clip;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.brand-logo-header {
  width: clamp(190px, 22vw, 300px);
}

.brand-logo-footer {
  width: clamp(220px, 24vw, 320px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-list,
.mobile-links,
.footer-links,
.pill-row,
.feature-list,
.agenda-list,
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--color-blue-700);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.08));
  border-color: rgba(37, 99, 235, 0.16);
  outline: none;
}

.header-actions,
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--color-primary-blue);
}

.mobile-panel {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-links,
.footer-links,
.feature-list,
.agenda-list,
.link-list,
.timeline,
.faq-list {
  display: grid;
  gap: 0.8rem;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section-hero {
  padding: 4.25rem 0 5.25rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.12), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(20, 184, 166, 0.14), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, var(--color-slate-50) 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.72) 0%, rgba(240, 253, 250, 0.52) 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.section-dark {
  background:
    radial-gradient(circle at 85% 8%, rgba(94, 234, 212, 0.08), transparent 16%),
    linear-gradient(135deg, var(--color-slate-900) 0%, var(--color-blue-900) 100%);
  color: #f8fafc;
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.eyebrow,
.section-label,
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--color-blue-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before,
.article-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-dark .eyebrow,
.section-dark .section-label,
.section-dark .article-kicker {
  color: var(--color-teal-300);
}

.headline,
.page-title,
.section-title,
.article-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.headline {
  font-size: clamp(3.25rem, 8vw, 5.8rem);
  max-width: 12ch;
}

.page-title,
.section-title {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  max-width: 14ch;
}

.article-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 12ch;
}

.section-dark .headline,
.section-dark .page-title,
.section-dark .section-title,
.section-dark .article-title {
  color: #f8fafc;
}

.lede,
.page-lede,
.surface-note,
.footer-note,
.article-meta,
.article-body p,
.article-body li,
.card p,
.pricing-card p,
.timeline-card p,
.surface p,
.faq-item p,
.stat-caption,
.metric-label,
.price-cycle,
.link-list,
.feature-list,
.agenda-list {
  color: var(--ink-soft);
}

.lede,
.page-lede {
  margin: 1rem 0 0;
  max-width: 64ch;
  font-size: 1.05rem;
}

.section-dark .lede,
.section-dark .page-lede,
.section-dark .surface-note,
.section-dark .footer-note,
.section-dark .article-meta,
.section-dark .article-body p,
.section-dark .article-body li,
.section-dark .card p,
.section-dark .pricing-card p,
.section-dark .timeline-card p,
.section-dark .surface p,
.section-dark .faq-item p,
.section-dark .stat-caption,
.section-dark .metric-label,
.section-dark .price-cycle,
.section-dark .link-list,
.section-dark .feature-list,
.section-dark .agenda-list {
  color: rgba(248, 250, 252, 0.78);
}

.hero-layout,
.split-grid,
.story-grid,
.cta-band,
.contact-layout,
.page-grid,
.article-layout,
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.board-grid,
.grid-2,
.grid-3,
.pricing-grid,
.article-grid,
.principle-grid,
.role-grid,
.feature-grid,
.numbers-grid,
.form-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.grid-3,
.pricing-grid,
.article-grid,
.principle-grid,
.role-grid,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.hero-actions,
.button-row,
.pill-row {
  margin-top: 1.5rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-slate-700);
  font-size: 0.92rem;
}

.section-dark .pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(248, 250, 252, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 600;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-primary-gradient);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(0.97);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-blue-700);
  border-color: rgba(37, 99, 235, 0.16);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--color-blue-50);
  border-color: rgba(20, 184, 166, 0.26);
}

.btn-ghost {
  background: transparent;
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.hero-board,
.surface,
.card,
.pricing-card,
.faq-item,
.form-panel,
.article-card,
.timeline-card,
.calculator,
.quote-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-board,
.surface,
.calculator,
.form-panel {
  padding: 1.5rem;
}

.card,
.pricing-card,
.faq-item,
.article-card,
.timeline-card,
.quote-panel {
  padding: 1.35rem;
}

.hero-board {
  position: relative;
}

.card,
.pricing-card,
.article-card,
.timeline-card,
.faq-item {
  min-height: 100%;
}

.card h3,
.pricing-card h3,
.article-card h3,
.timeline-card h3,
.faq-item h3,
.surface-header h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.surface-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.surface-header h3 {
  font-size: 1.18rem;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-badge,
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.14));
  color: var(--color-teal-700);
  font-size: 0.8rem;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-primary-teal);
}

.metric {
  padding: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, var(--color-slate-50) 100%);
}

.metric-value,
.price-value,
.stat-value,
.article-body h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.metric-value {
  color: var(--color-slate-900);
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 0.94;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 0.4rem;
}

.price-value {
  color: var(--color-slate-900);
  font-size: 3rem;
  line-height: 0.9;
}

.signal-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  margin-top: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.9), rgba(240, 253, 250, 0.88));
}

.signal-band strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
  font-size: 1rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.compare-table th,
.compare-table td {
  padding: 0.95rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-yes {
  color: var(--color-teal-700);
  font-weight: 700;
}

.compare-no {
  color: #be3b59;
  font-weight: 700;
}

.timeline-card {
  position: relative;
  padding-left: 4.1rem;
}

.timeline-index {
  position: absolute;
  left: 1.15rem;
  top: 1.2rem;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary-gradient);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card.featured {
  background: linear-gradient(160deg, var(--color-blue-700) 0%, var(--color-primary-teal) 100%);
  border-color: transparent;
}

.pricing-card.featured h3,
.pricing-card.featured .price-value {
  color: #ffffff;
}

.pricing-card.featured p,
.pricing-card.featured li,
.pricing-card.featured .price-cycle {
  color: rgba(255, 255, 255, 0.86);
}

.pricing-card.featured .price-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.pricing-card.featured .btn-primary {
  background: #ffffff;
  color: var(--color-blue-700);
}

.pricing-card.featured .btn-primary:hover,
.pricing-card.featured .btn-primary:focus-visible {
  background: var(--color-blue-50);
}

.feature-list,
.agenda-list,
.link-list {
  gap: 0.72rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--color-primary-teal);
  transform: translateY(-50%);
}

.calculator-result {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.92), rgba(240, 253, 250, 0.92));
  color: var(--ink);
}

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

.field-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.field-control,
.field-select,
.field-textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
}

.field-control:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

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

.field-error {
  display: none;
  margin-top: 0.35rem;
  color: #be3b59;
  font-size: 0.82rem;
}

.field-error.is-visible,
.form-status.is-visible {
  display: block;
}

.form-status {
  display: none;
  margin-top: 0.8rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 14px;
  background: rgba(240, 253, 250, 0.9);
  color: var(--color-teal-700);
  font-size: 0.95rem;
}

.faq-list {
  gap: 0.9rem;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.faq-trigger span:last-child {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(20, 184, 166, 0.12));
  color: var(--color-blue-700);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.faq-panel {
  display: none;
  padding-top: 0.85rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.article-card .btn {
  width: fit-content;
  margin-top: auto;
}

.article-meta {
  font-size: 0.92rem;
}

.article-body {
  display: grid;
  gap: 1.15rem;
}

.article-body h2 {
  margin: 1rem 0 0.35rem;
  color: var(--ink);
  font-size: 1.95rem;
}

.article-body ul,
.article-body ol {
  margin: 0;
  padding-left: 1.2rem;
}

.quote-panel {
  border-left: 4px solid var(--color-primary-teal);
}

.quote-panel p {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.footer {
  padding: 2.5rem 0 2.7rem;
  background: var(--color-slate-900);
  color: #f8fafc;
}

.footer-title {
  margin: 0 0 0.85rem;
  color: rgba(248, 250, 252, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer a {
  color: #f8fafc;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--color-teal-300);
  outline: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.is-hidden {
  display: none !important;
}

.section-dark .hero-board,
.section-dark .surface,
.section-dark .card,
.section-dark .pricing-card:not(.featured),
.section-dark .faq-item,
.section-dark .form-panel,
.section-dark .article-card,
.section-dark .timeline-card,
.section-dark .calculator,
.section-dark .quote-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-dark .surface-header h3,
.section-dark .card h3,
.section-dark .pricing-card h3,
.section-dark .article-card h3,
.section-dark .timeline-card h3,
.section-dark .faq-item h3,
.section-dark .quote-panel p,
.section-dark .metric-value,
.section-dark .price-value,
.section-dark .article-body h2 {
  color: #ffffff;
}

.section-dark .metric {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.section-dark .signal-band,
.section-dark .calculator-result,
.section-dark .form-status {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(94, 234, 212, 0.22);
  color: #f8fafc;
}

.section-dark .signal-band strong {
  color: #ffffff;
}

.section-dark .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.section-dark .btn-secondary:hover,
.section-dark .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.section-dark .status-badge,
.section-dark .price-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section-dark .compare-table th,
.section-dark .compare-table td {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section-dark .compare-table th {
  color: rgba(248, 250, 252, 0.7);
}

.section-dark .faq-trigger span:last-child {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section-dark .field-label {
  color: #ffffff;
}

.section-dark .field-control,
.section-dark .field-select,
.section-dark .field-textarea {
  background: rgba(255, 255, 255, 0.96);
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

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

  .hero-layout,
  .split-grid,
  .story-grid,
  .cta-band,
  .contact-layout,
  .page-grid,
  .article-layout,
  .pricing-layout,
  .numbers-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .pricing-grid,
  .article-grid,
  .principle-grid,
  .role-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.1rem 0;
  }

  .section-hero {
    padding: 2.9rem 0 4rem;
  }

  .headline {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .page-title,
  .section-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .brand-logo-header {
    width: min(100%, 240px);
  }

  .brand-logo-footer {
    width: min(100%, 280px);
  }

  .board-grid,
  .grid-2,
  .grid-3,
  .pricing-grid,
  .article-grid,
  .principle-grid,
  .role-grid,
  .feature-grid,
  .numbers-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .header-actions .btn-primary {
    display: none;
  }
}
