:root {
  color-scheme: dark;
  --bg-start: #101828;
  --bg-mid: #162132;
  --bg-end: #2c374c;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(185, 28, 28, 0.58);
  --text: #f8fafc;
  --muted: #dbe4f0;
  --soft: #cbd5e1;
  --red: #b91c1c;
  --red-dark: #991b1b;
  --red-soft: rgba(127, 29, 29, 0.22);
  --shadow: 0 28px 68px rgba(2, 6, 23, 0.28);
  --radius-lg: 2rem;
  --radius-md: 1.5rem;
  --radius-sm: 1rem;
  --shell-max: 82rem;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background-color: var(--bg-end);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.12), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(148, 163, 184, 0.09), transparent 22%),
    radial-gradient(circle at 50% 110%, rgba(59, 130, 246, 0.07), transparent 28%),
    linear-gradient(180deg, var(--bg-start) 0%, var(--bg-mid) 48%, var(--bg-end) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-position: center;
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black, transparent 84%);
  opacity: 0.18;
}

body::after {
  background:
    radial-gradient(circle at 20% 15%, rgba(96, 165, 250, 0.14), transparent 20%),
    radial-gradient(circle at 82% 65%, rgba(148, 163, 184, 0.12), transparent 24%);
  filter: blur(20px);
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.section-shell {
  width: calc(100% - 1.5rem);
  max-width: var(--shell-max);
  margin: 0 auto;
}

.campaign-page {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.home-section {
  position: relative;
  padding: 4.75rem 0;
}

.section-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.56));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.section-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.1), transparent 28%),
    radial-gradient(circle at bottom left, rgba(148, 163, 184, 0.06), transparent 22%);
}

.section-panel::after {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  content: "";
}

.panel-content {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.75rem 0.75rem 0;
}

.header-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: rgba(2, 6, 23, 0.58);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
  backdrop-filter: blur(20px);
  transition: background-color 260ms ease, border-color 260ms ease;
}

.site-header.is-opaque .header-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.8);
}

.header-shine {
  position: absolute;
  inset: 0 2.5rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 213, 225, 0.5), transparent);
}

.header-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 0.75rem 1rem;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  transition: color 220ms ease;
}

.brand-link:hover,
.footer-brand:hover {
  color: var(--red);
}

.brand-link img,
.footer-brand img {
  flex: 0 0 auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav button,
.mobile-menu button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: color 220ms ease;
}

.desktop-nav button:hover,
.mobile-menu button:hover,
.mobile-menu a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ghost-link,
.solid-link,
.primary-cta,
.secondary-cta,
.outline-cta,
.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.ghost-link {
  display: none;
  min-height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.72rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.ghost-link:hover {
  border-color: rgba(185, 28, 28, 0.55);
  color: var(--red);
}

.solid-link,
.primary-cta {
  min-height: 2.75rem;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 36px rgba(127, 29, 29, 0.28);
  text-transform: uppercase;
}

.solid-link {
  display: none;
  padding: 0.84rem 1rem;
  font-size: 0.75rem;
}

.solid-link:hover,
.primary-cta:hover,
.service-card a:hover {
  border-color: #dc2626;
  background: #dc2626;
  color: #fff;
  transform: translateY(-1px);
}

.menu-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.menu-button:hover {
  border-color: rgba(185, 28, 28, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.menu-button span {
  position: absolute;
  width: 1rem;
  height: 2px;
  border-radius: 9999px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.375rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu button,
.mobile-menu a {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 0.875rem;
  color: #f8fafc;
  text-align: left;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 6rem 0 3.5rem;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("Assets/server-room.webp");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.78) 0%, rgba(2, 6, 23, 0.68) 36%, rgba(2, 6, 23, 0.84) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-panel {
  max-width: 48rem;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 5vw, 3rem);
}

.hero-panel h1 {
  min-height: 2.35em;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 9vw, 6.75rem);
  font-weight: 950;
  line-height: 0.95;
  text-wrap: balance;
}

.hero-panel h1 [data-typewriter] {
  white-space: pre-line;
}

.cursor {
  color: #f87171;
  animation: blink 1s steps(2, start) infinite;
}

.hero-copy {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  color: #e2e8f0;
  font-size: clamp(1.08rem, 2.8vw, 1.45rem);
  line-height: 1.65;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.primary-cta {
  min-height: 3.25rem;
  padding: 1rem 1.55rem;
  font-size: 0.875rem;
}

.secondary-cta,
.outline-cta {
  min-height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1.35rem;
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.secondary-cta:hover,
.outline-cta:hover {
  border-color: rgba(185, 28, 28, 0.55);
  color: #fca5a5;
  transform: translateY(-1px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.hero-metrics div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

.hero-metrics dt {
  color: #fff;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 950;
  line-height: 1;
}

.hero-metrics dd {
  margin: 0.45rem 0 0;
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.4;
}

.scroll-button {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  background: rgba(2, 6, 23, 0.45);
  color: #fff;
  cursor: pointer;
  transform: translateX(-50%);
  transition: opacity 220ms ease, border-color 220ms ease, color 220ms ease;
}

.scroll-button svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.scroll-button:hover {
  border-color: rgba(185, 28, 28, 0.55);
  color: var(--red);
}

.scroll-button.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.content-panel,
.custom-panel,
.footer-panel,
.faq-title-panel,
.faq-item,
.proof-panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.section-heading.split > div {
  max-width: 52rem;
}

.section-heading h2,
.proof-panel h2,
.custom-content h2,
.faq-title-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  font-weight: 950;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading p,
.proof-panel > .panel-content > p,
.custom-content p {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.feature-grid,
.service-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.feature-card,
.service-card,
.mobile-comparison article,
.footer-grid > div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 35px rgba(2, 6, 23, 0.16);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.feature-card,
.service-card {
  padding: 1.5rem;
}

.feature-card::before,
.service-card::before,
.footer-grid > div::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 213, 225, 0.45), transparent);
  content: "";
}

.feature-card:hover,
.service-card:hover {
  border-color: rgba(185, 28, 28, 0.6);
  box-shadow: 0 24px 44px rgba(2, 6, 23, 0.24);
  transform: translateY(-4px);
}

.service-card.featured {
  border-color: rgba(185, 28, 28, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--red);
  border-radius: 1rem;
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(127, 29, 29, 0.28);
}

.icon-box svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.feature-card h3,
.service-card h3,
.mobile-comparison h3,
.footer-grid h3 {
  margin: 1.25rem 0 0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.25;
}

.service-card h3 {
  font-size: 1.5rem;
}

.feature-card p,
.service-card p,
.mobile-comparison p,
.footer-grid p {
  margin: 0.8rem 0 0;
  color: #dbe4f0;
  line-height: 1.65;
}

.recommendation {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(185, 28, 28, 0.7);
  border-radius: 9999px;
  background: rgba(127, 29, 29, 0.22);
  padding: 0.4rem 0.75rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1.65rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.service-card li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.16);
  content: "";
}

.service-card li::after {
  position: absolute;
  top: 0.49rem;
  left: 0.34rem;
  width: 0.32rem;
  height: 0.55rem;
  border-right: 2px solid #34d399;
  border-bottom: 2px solid #34d399;
  content: "";
  transform: rotate(40deg);
}

.service-card a {
  width: 100%;
  min-height: 3rem;
  margin-top: 1.75rem;
  border: 1px solid var(--red);
  border-radius: 0.9rem;
  background: var(--red);
  color: #fff;
  font-size: 0.95rem;
}

.comparison-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(15, 23, 42, 0.35);
}

th,
td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.55;
  vertical-align: top;
}

thead th {
  color: #fff;
  font-weight: 800;
  text-align: left;
}

tbody th {
  width: 24%;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

thead th:last-child,
tbody td:last-child {
  border-right: 1px solid rgba(185, 28, 28, 0.45);
  border-left: 1px solid rgba(185, 28, 28, 0.45);
  background: linear-gradient(180deg, rgba(127, 29, 29, 0.24), rgba(127, 29, 29, 0.12));
  color: #fff;
}

thead th:last-child {
  border-top: 0;
  border-bottom-color: rgba(185, 28, 28, 0.55);
  background: linear-gradient(180deg, rgba(127, 29, 29, 0.42), rgba(127, 29, 29, 0.22));
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.mobile-comparison {
  display: none;
  gap: 1rem;
}

.mobile-comparison article {
  padding: 1.25rem;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.5rem;
  align-items: stretch;
}

.proof-media {
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-panel {
  display: flex;
  align-items: center;
}

.spec-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

.spec-list span {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(185, 28, 28, 0.62);
  border-radius: 9999px;
  background: rgba(127, 29, 29, 0.22);
  color: #fff;
  font-weight: 900;
}

.spec-list strong {
  color: #fff;
  font-size: 1.05rem;
}

.spec-list p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.55;
}

.custom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.custom-content > div:first-child {
  max-width: 58rem;
}

.custom-content .primary-cta {
  margin-top: 1.75rem;
}

.custom-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 9rem;
  border: 1px solid var(--red);
  border-radius: var(--radius-lg);
  background: var(--red);
  color: #fff;
  box-shadow: 0 24px 44px rgba(127, 29, 29, 0.3);
}

.custom-icon svg {
  width: 5rem;
  height: 5rem;
  fill: currentColor;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 1.5rem;
  align-items: start;
}

.faq-title-panel {
  position: sticky;
  top: 7rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem 1.5rem;
}

.faq-item.active {
  border-color: rgba(185, 28, 28, 0.45);
  box-shadow: 0 20px 44px rgba(127, 29, 29, 0.12);
}

.faq-item button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.faq-item button span {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 800;
  line-height: 1.35;
}

.faq-item button svg {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  color: #cbd5e1;
  transition: color 220ms ease, transform 220ms ease;
}

.faq-item.active button svg {
  color: var(--red);
  transform: rotate(180deg);
}

.faq-answer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transition: grid-template-rows 260ms ease, opacity 260ms ease, margin-top 260ms ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  margin-top: 1rem;
  opacity: 1;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: #dbe4f0;
  line-height: 1.65;
}

.site-footer {
  padding: 2rem 0 4rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-grid > div {
  padding: 1.5rem;
}

.footer-grid h3 {
  margin-top: 0;
}

.copyright {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.9rem;
  text-align: center;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .home-section {
    padding: 5.75rem 0;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .ghost-link,
  .solid-link {
    display: inline-flex;
  }

  .menu-button {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1180px) {
  .feature-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-layout {
    grid-template-columns: 1fr;
  }

  .proof-media {
    min-height: 26rem;
  }
}

@media (max-width: 860px) {
  .header-row {
    min-height: 4rem;
    padding: 0.65rem 0.85rem;
  }

  .brand-link span {
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-panel {
    max-width: none;
  }

  .hero-panel h1 {
    min-height: 2.9em;
  }

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

  .section-heading.split,
  .custom-content,
  .footer-top {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-grid,
  .service-grid,
  .footer-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .comparison-table-wrap {
    display: none;
  }

  .mobile-comparison {
    display: grid;
  }

  .faq-title-panel {
    position: relative;
    top: auto;
  }

  .custom-icon {
    width: 7rem;
    height: 7rem;
  }

  .custom-icon svg {
    width: 3.75rem;
    height: 3.75rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.5rem 0.5rem 0;
  }

  .section-shell {
    width: calc(100% - 1rem);
  }

  .brand-link {
    gap: 0.55rem;
    font-size: 1rem;
  }

  .brand-link img {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hero-section {
    padding-top: 5.5rem;
  }

  .hero-panel h1 {
    min-height: 3em;
    font-size: clamp(2.25rem, 9.5vw, 2.8rem);
    line-height: 1.03;
  }

  .hero-panel,
  .content-panel,
  .custom-panel,
  .footer-panel,
  .faq-title-panel,
  .faq-item,
  .proof-panel {
    border-radius: 1.5rem;
  }

  .hero-panel {
    margin-right: 0.5rem;
  }

  .primary-cta,
  .secondary-cta,
  .outline-cta {
    width: calc(100% - 1rem);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions .primary-cta,
  .hero-actions .secondary-cta {
    width: min(100%, 18rem);
  }

  .hero-metrics {
    width: calc(100% - 1rem);
    margin-right: auto;
    margin-left: auto;
  }

  .proof-media {
    min-height: 18rem;
    border-radius: 1.5rem;
  }
}

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

  .cursor {
    display: none;
  }
}
