:root {
  --hide-bg: #fbfcff;
  --hide-surface: #ffffff;
  --hide-surface-soft: rgba(255, 255, 255, 0.78);
  --hide-text: #071229;
  --hide-muted: #5b6680;
  --hide-soft: #eef2ff;
  --hide-border: rgba(28, 53, 107, 0.13);
  --hide-blue: #2f5cff;
  --hide-blue-deep: #1737d6;
  --hide-purple: #6d35ff;
  --hide-green: #1ec565;
  --hide-red: #ff3b43;
  --hide-shadow: 0 24px 70px rgba(33, 45, 92, 0.12);
  --hide-shadow-soft: 0 16px 40px rgba(33, 45, 92, 0.08);
  --hide-radius: 16px;
  --hide-radius-sm: 10px;
  --hide-container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.hide-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 5%, rgba(72, 91, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 72% 7%, rgba(131, 79, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #fbfcff 0%, #ffffff 34%, #fbfcff 100%);
  color: var(--hide-text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hide-page[data-hide-theme="dark"] {
  --hide-bg: #07111f;
  --hide-surface: #101b2d;
  --hide-surface-soft: rgba(16, 27, 45, 0.78);
  --hide-text: #eef4ff;
  --hide-muted: #9eaec8;
  --hide-soft: #17243a;
  --hide-border: rgba(148, 163, 184, 0.18);
  --hide-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --hide-shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
  background:
    radial-gradient(circle at 18% 5%, rgba(72, 91, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 72% 7%, rgba(131, 79, 255, 0.18), transparent 26rem),
    linear-gradient(180deg, #07111f 0%, #0b1425 42%, #08111f 100%);
}

.hide-page a {
  color: inherit;
  text-decoration: none;
}

.hide-page img,
.hide-page svg {
  display: block;
}

.hide-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.hide-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 82px;
  background: rgba(251, 252, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(28, 53, 107, 0.08);
}

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

.hide-page[data-hide-theme="dark"] .hide-header {
  background: rgba(7, 17, 31, 0.76);
  box-shadow: 0 1px 0 rgba(148, 163, 184, 0.12);
}

.hide-brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
}

.hide-brand img {
  width: 136px;
  height: auto;
}

.hide-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 800;
  color: #111a35;
}

.hide-page[data-hide-theme="dark"] .hide-nav {
  color: #dbe7ff;
}

.hide-nav a {
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hide-nav a:hover,
.hide-nav a.is-active {
  color: var(--hide-blue);
  transform: translateY(-1px);
}

.hide-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--hide-blue);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
  content: "";
}

.hide-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.hide-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.hide-page .hide-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--hide-blue), var(--hide-purple));
  box-shadow: 0 16px 30px rgba(47, 92, 255, 0.28);
}

.hide-page .hide-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(47, 92, 255, 0.34);
}

.hide-page .hide-button-primary svg {
  color: #ffffff;
}

.hide-button-secondary,
.hide-button-outline {
  color: var(--hide-blue);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(47, 92, 255, 0.42);
}

.hide-button-secondary:hover,
.hide-button-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 92, 255, 0.7);
  box-shadow: var(--hide-shadow-soft);
}

.hide-page[data-hide-theme="dark"] .hide-button-secondary,
.hide-page[data-hide-theme="dark"] .hide-button-outline {
  color: #eef4ff;
  background: rgba(18, 31, 52, 0.78);
  border-color: rgba(72, 112, 255, 0.55);
}

.hide-header-cta {
  min-height: 44px;
  padding-inline: 18px;
}

.hide-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hide-theme-cycle {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--hide-blue);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.hide-theme-cycle:hover {
  color: var(--hide-blue);
  transform: translateY(-1px);
}

.hide-theme-cycle svg {
  width: 22px;
  height: 22px;
}

.hide-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 50px;
}

.hide-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 66% 34%, rgba(70, 91, 255, 0.13), transparent 22rem),
    radial-gradient(circle at 48% 40%, rgba(181, 151, 255, 0.14), transparent 24rem);
}

.hide-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 72px;
  align-items: center;
  min-width: 0;
}

.hide-hero-copy {
  max-width: 565px;
  min-width: 0;
}

.hide-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 18px;
  padding: 0 16px;
  border: 1px solid rgba(47, 92, 255, 0.22);
  border-radius: 999px;
  color: var(--hide-blue);
  background: rgba(238, 242, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hide-hero h1 {
  margin: 0;
  max-width: 610px;
  color: #060b1a;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hide-page[data-hide-theme="dark"] .hide-hero h1,
.hide-page[data-hide-theme="dark"] .hide-section-heading h2,
.hide-page[data-hide-theme="dark"] .hide-feature-card h3,
.hide-page[data-hide-theme="dark"] .hide-step h3,
.hide-page[data-hide-theme="dark"] .hide-pro-copy h3,
.hide-page[data-hide-theme="dark"] .hide-price-card h3,
.hide-page[data-hide-theme="dark"] .hide-access h2 {
  color: #f4f7ff;
}

.hide-hero h1 span {
  color: var(--hide-blue);
}

.hide-hero-text {
  max-width: 470px;
  margin: 28px 0 0;
  color: #25304a;
  font-size: 18px;
  line-height: 1.75;
}

.hide-page[data-hide-theme="dark"] .hide-hero-text,
.hide-page[data-hide-theme="dark"] .hide-trust-list,
.hide-page[data-hide-theme="dark"] .hide-feature-card p,
.hide-page[data-hide-theme="dark"] .hide-step p,
.hide-page[data-hide-theme="dark"] .hide-pro-copy > p:not(.hide-pro-kicker),
.hide-page[data-hide-theme="dark"] .hide-access p {
  color: #b7c5dc;
}

.hide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}

.hide-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding: 0;
  margin: 36px 0 0;
  color: #17213b;
  list-style: none;
}

.hide-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.hide-trust-list svg {
  width: 18px;
  height: 18px;
  color: var(--hide-blue);
}

.hide-product-preview {
  display: flex;
  justify-content: flex-end;
  perspective: 1200px;
  min-width: 0;
}

.hide-popup-card {
  position: relative;
  width: min(100%, 344px);
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(109, 124, 180, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--hide-shadow);
  backdrop-filter: blur(22px);
  animation: hide-float 6s ease-in-out infinite;
}

.hide-popup-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.hide-page[data-hide-theme="dark"] .hide-popup-card,
.hide-page[data-hide-theme="dark"] .hide-feature-card,
.hide-page[data-hide-theme="dark"] .hide-price-card,
.hide-page[data-hide-theme="dark"] .hide-faq-item {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(16, 27, 45, 0.78);
}

.hide-page[data-hide-theme="dark"] .hide-pro-showcase {
  border-color: rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 92, 255, 0.14), transparent 20rem),
    radial-gradient(circle at 100% 100%, rgba(109, 53, 255, 0.12), transparent 20rem),
    rgba(16, 27, 45, 0.62);
}

.hide-page[data-hide-theme="dark"] .hide-pro-panel,
.hide-page[data-hide-theme="dark"] .hide-pro-mini-list span,
.hide-page[data-hide-theme="dark"] .hide-pro-stats,
.hide-page[data-hide-theme="dark"] .hide-pro-control-row {
  border-color: rgba(148, 163, 184, 0.12);
  background: rgba(10, 20, 35, 0.58);
}

.hide-page[data-hide-theme="dark"] .hide-pro-mini-list span,
.hide-page[data-hide-theme="dark"] .hide-pro-panel-header span,
.hide-page[data-hide-theme="dark"] .hide-pro-panel-note,
.hide-page[data-hide-theme="dark"] .hide-pro-stats span,
.hide-page[data-hide-theme="dark"] .hide-pro-control-row strong {
  color: #eef4ff;
}

.hide-page[data-hide-theme="dark"] .hide-pro-stats {
  color: #a9b8d4;
}

.hide-page[data-hide-theme="dark"] .hide-pro-stats span {
  background: rgba(15, 28, 50, 0.76);
}

.hide-page[data-hide-theme="dark"] .hide-pro-control-row small {
  color: #b7c5dc;
}

.hide-page[data-hide-theme="dark"] .hide-price-card-top p {
  color: #b7c5dc;
}

.hide-page[data-hide-theme="dark"] .hide-price-featured {
  border-color: rgba(47, 92, 255, 0.42);
  background:
    radial-gradient(circle at 80% 0%, rgba(109, 53, 255, 0.16), transparent 13rem),
    rgba(16, 27, 45, 0.82);
}

.hide-page[data-hide-theme="dark"] .hide-price-free {
  background:
    radial-gradient(circle at 82% 8%, rgba(30, 197, 101, 0.12), transparent 12rem),
    rgba(16, 27, 45, 0.78);
}

.hide-popup-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(226, 232, 255, 0.82));
  content: "";
}

.hide-page[data-hide-theme="dark"] .hide-popup-card::before {
  background: linear-gradient(135deg, rgba(25, 38, 61, 0.96), rgba(15, 27, 46, 0.88));
}

.hide-popup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  position: relative;
}

.hide-popup-header img {
  width: 132px;
  height: auto;
}

.hide-theme-button {
  position: absolute;
  right: 0;
  top: 8px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #1b2948;
  background: #f2f5ff;
  box-shadow: 0 10px 22px rgba(40, 54, 96, 0.12);
}

.hide-theme-button svg {
  width: 18px;
  height: 18px;
}

.hide-focus-card,
.hide-success-card,
.hide-toggle-row {
  display: grid;
  align-items: center;
  border-radius: 10px;
  min-width: 0;
}

.hide-focus-card {
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(30, 197, 101, 0.35);
  background: linear-gradient(135deg, rgba(236, 255, 244, 0.95), rgba(230, 255, 249, 0.95));
}

.hide-page[data-hide-theme="dark"] .hide-focus-card,
.hide-page[data-hide-theme="dark"] .hide-success-card {
  border-color: rgba(45, 212, 128, 0.28);
  background: linear-gradient(135deg, rgba(15, 83, 58, 0.74), rgba(16, 65, 70, 0.7));
}

.hide-focus-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--hide-green);
  background: #ffffff;
}

.hide-page[data-hide-theme="dark"] .hide-focus-icon,
.hide-page[data-hide-theme="dark"] .hide-success-card span {
  background: rgba(255, 255, 255, 0.1);
}

.hide-focus-icon svg,
.hide-row-icon svg,
.hide-success-card svg {
  width: 20px;
  height: 20px;
}

.hide-focus-card strong,
.hide-toggle-row strong,
.hide-success-card strong {
  display: block;
  color: #1b2948;
  font-size: 15px;
  line-height: 1.25;
}

.hide-page[data-hide-theme="dark"] .hide-focus-card strong,
.hide-page[data-hide-theme="dark"] .hide-toggle-row strong,
.hide-page[data-hide-theme="dark"] .hide-success-card strong,
.hide-page[data-hide-theme="dark"] .hide-tabs button,
.hide-page[data-hide-theme="dark"] .hide-faq-item summary {
  color: #eef4ff;
}

.hide-focus-card span,
.hide-toggle-row span,
.hide-success-card p {
  min-width: 0;
}

.hide-focus-card small,
.hide-toggle-row small {
  display: block;
  margin-top: 2px;
  color: #60708e;
  font-size: 12px;
}

.hide-page[data-hide-theme="dark"] .hide-focus-card small,
.hide-page[data-hide-theme="dark"] .hide-toggle-row small,
.hide-page[data-hide-theme="dark"] .hide-success-card p,
.hide-page[data-hide-theme="dark"] .hide-faq-item p,
.hide-page[data-hide-theme="dark"] .hide-price span {
  color: #b7c5dc;
}

.hide-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #cfd8eb;
  font-size: 0;
}

.hide-toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(13, 25, 52, 0.18);
  content: "";
}

.hide-toggle.is-on {
  background: linear-gradient(135deg, var(--hide-blue), #2f73ff);
}

.hide-toggle.is-on::after {
  transform: translateX(18px);
}

.hide-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(28, 53, 107, 0.1);
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.72);
  min-width: 0;
}

.hide-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: #263553;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.hide-tabs button.is-active {
  color: var(--hide-blue);
  border-bottom-color: var(--hide-blue);
}

.hide-tabs img {
  width: 19px;
  height: 19px;
}

.hide-toggle-list {
  display: grid;
  gap: 9px;
  padding: 9px 8px 12px;
  border: 1px solid rgba(28, 53, 107, 0.1);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: rgba(250, 252, 255, 0.72);
}

.hide-toggle-row {
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  min-height: 58px;
  padding: 9px;
  background: #ffffff;
  box-shadow: 0 9px 20px rgba(21, 35, 79, 0.06);
}

.hide-page[data-hide-theme="dark"] .hide-tabs,
.hide-page[data-hide-theme="dark"] .hide-toggle-list {
  border-color: rgba(148, 163, 184, 0.14);
  background: rgba(10, 20, 35, 0.48);
}

.hide-page[data-hide-theme="dark"] .hide-toggle-row {
  background: rgba(20, 33, 54, 0.9);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.18);
}

.hide-row-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  color: #ffffff;
}

.hide-row-blue {
  background: linear-gradient(135deg, #2f74ff, #1957dd);
}

.hide-row-red {
  background: linear-gradient(135deg, #ff6d6d, #ff2e54);
}

.hide-success-card {
  grid-template-columns: 48px 1fr;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(30, 197, 101, 0.25);
  background: linear-gradient(135deg, rgba(237, 255, 246, 0.95), rgba(238, 255, 249, 0.95));
}

.hide-success-card span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--hide-green);
  border-radius: 999px;
  background: #ffffff;
}

.hide-success-card p {
  margin: 0;
  color: #263553;
  font-size: 13px;
  line-height: 1.35;
}

.hide-section {
  padding: 50px 0;
}

.hide-section-tight {
  padding-top: 50px;
}

.hide-section-heading {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.hide-section-heading h2 {
  margin: 0;
  color: #111a35;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.2;
  letter-spacing: 0;
}

.hide-section-heading p {
  margin: 10px auto 0;
  max-width: 640px;
  color: var(--hide-muted);
}

.hide-section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 12px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--hide-blue);
  background: rgba(47, 92, 255, 0.09);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hide-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.hide-feature-card {
  min-height: 166px;
  padding: 18px 14px;
  border: 1px solid var(--hide-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(36, 49, 99, 0.04);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.hide-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 92, 255, 0.28);
  box-shadow: var(--hide-shadow-soft);
}

.hide-feature-icon,
.hide-step-icon,
.hide-access-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  color: var(--hide-blue);
  background: linear-gradient(135deg, #f0f3ff, #fbfaff);
}

.hide-feature-icon {
  margin-inline: auto;
  color: #ffffff;
}

.hide-feature-icon svg {
  width: 31px;
  height: 31px;
}

.hide-feature-youtube {
  background: linear-gradient(180deg, #ff3b30 0%, #ff1f1f 100%);
  box-shadow: 0 16px 34px rgba(255, 43, 29, 0.18);
}

.hide-feature-stories {
  background: linear-gradient(180deg, #4a8dff 0%, #2461eb 100%);
  box-shadow: 0 16px 34px rgba(36, 97, 235, 0.18);
}

.hide-feature-reels {
  background: linear-gradient(180deg, #ff4f97 0%, #ff5c76 54%, #ffb15b 100%);
  box-shadow: 0 16px 34px rgba(255, 95, 122, 0.2);
}

.hide-feature-toggle {
  color: #6a44ff;
  background: rgba(108, 68, 255, 0.1);
}

.hide-feature-video {
  background: linear-gradient(180deg, #2f7cff 0%, #1258e8 100%);
  box-shadow: 0 16px 34px rgba(18, 88, 232, 0.18);
}

.hide-feature-bolt {
  color: #6846ff;
  background: rgba(104, 70, 255, 0.1);
}

.hide-feature-shield {
  color: var(--hide-green);
  background: rgba(30, 197, 101, 0.12);
}

.hide-feature-lock {
  color: var(--hide-blue);
  background: rgba(47, 92, 255, 0.1);
}

.hide-feature-card h3,
.hide-step h3,
.hide-price-card h3 {
  margin: 14px 0 0;
  color: #071229;
  font-size: 15px;
  line-height: 1.25;
}

.hide-feature-card p,
.hide-step p {
  margin: 14px 0 0;
  color: #2e3953;
  font-size: 13px;
  line-height: 1.55;
}

.hide-how {
  padding-top: 50px;
}

.hide-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
  max-width: 100%;
  margin: 0 auto;
}

.hide-steps::before,
.hide-steps::after {
  position: absolute;
  top: 32px;
  width: 30%;
  height: 2px;
  border-top: 2px dashed rgba(47, 92, 255, 0.32);
  content: "";
}

.hide-steps::before {
  left: 18%;
}

.hide-steps::after {
  right: 18%;
}

.hide-step {
  position: relative;
  text-align: center;
}

.hide-step-icon {
  margin-inline: auto;
  width: 68px;
  height: 68px;
}

.hide-step-icon svg {
  width: 34px;
  height: 34px;
}

.hide-step-number {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 10px;
  border-radius: 999px;
  color: #36415d;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(18, 31, 68, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.hide-pro-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 48px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(47, 92, 255, 0.13);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 18%, rgba(47, 92, 255, 0.1), transparent 18rem),
    radial-gradient(circle at 10% 86%, rgba(109, 53, 255, 0.08), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.92));
  box-shadow: 0 24px 65px rgba(33, 45, 92, 0.09);
}

.hide-pro-showcase::before {
  display: none;
}

.hide-pro-showcase::after {
  position: absolute;
  right: 26px;
  top: 24px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(47, 92, 255, 0.12);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 92, 255, 0.08), transparent 66%);
  content: "";
  pointer-events: none;
}

.hide-pro-copy {
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.hide-pro-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--hide-blue);
  background: rgba(47, 92, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hide-pro-copy h3 {
  margin: 0;
  max-width: 500px;
  color: #071229;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
}

.hide-pro-copy > p:not(.hide-pro-kicker) {
  margin: 18px 0 0;
  max-width: 520px;
  color: #4b5874;
  font-size: 17px;
  line-height: 1.7;
}

.hide-pro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  max-width: 500px;
  margin-top: 28px;
  border: 1px solid rgba(47, 92, 255, 0.12);
  border-radius: 10px;
  color: #5c6883;
  background: rgba(255, 255, 255, 0.7);
}

.hide-pro-stats span {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 16px;
  color: #4b5874;
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.hide-pro-stats strong {
  color: var(--hide-blue);
  font-size: 24px;
  line-height: 1;
}

.hide-pro-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hide-pro-mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(47, 92, 255, 0.12);
  border-radius: 8px;
  color: #17213b;
  background: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 800;
}

.hide-pro-mini-list svg {
  width: 18px;
  height: 18px;
  color: var(--hide-blue);
}

.hide-pro-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(47, 92, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 251, 255, 0.84)),
    radial-gradient(circle at 70% 0%, rgba(47, 92, 255, 0.12), transparent 16rem);
  box-shadow: 0 22px 48px rgba(33, 45, 92, 0.13);
}

.hide-pro-panel-header,
.hide-pro-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hide-pro-panel-header span {
  color: #4b5874;
  font-size: 13px;
  font-weight: 800;
}

.hide-pro-panel-header strong {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--hide-blue), var(--hide-purple));
  font-size: 12px;
}

.hide-pro-panel-note {
  margin: -4px 0 2px;
  color: #6b7893;
  font-size: 13px;
  font-weight: 700;
}

.hide-pro-control-row {
  justify-content: flex-start;
  padding: 15px;
  border: 1px solid rgba(47, 92, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.hide-pro-control-row > span:not(.hide-toggle) {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #4a8dff 0%, #2461eb 100%);
}

.hide-pro-control-row > span:not(.hide-toggle):not(.hide-pro-row-shorts):not(.hide-pro-row-reels):not(.hide-pro-row-stories) {
  color: #ffffff;
}

.hide-pro-control-row > .hide-pro-row-shorts {
  color: #ffffff;
  background: linear-gradient(180deg, #ff3b30 0%, #ff1f1f 100%);
}

.hide-pro-control-row > .hide-pro-row-reels {
  color: #ffffff;
  background: linear-gradient(180deg, #ff4f97 0%, #ff5c76 54%, #ffb15b 100%);
}

.hide-pro-control-row > .hide-pro-row-stories {
  color: #ffffff;
  background: linear-gradient(180deg, #4a8dff 0%, #2461eb 100%);
}

.hide-pro-control-row.is-disabled > span:not(.hide-toggle) {
  color: #97a3ba;
  background: #eef2fb;
}

.hide-pro-control-row.is-disabled strong,
.hide-pro-control-row.is-disabled small {
  color: #6f7b92;
}

.hide-pro-control-row > div {
  flex: 1 1 auto;
  min-width: 0;
}

.hide-pro-control-row .hide-toggle {
  flex: 0 0 auto;
  margin-left: auto;
}

.hide-pro-control-row svg {
  width: 20px;
  height: 20px;
}

.hide-pro-control-row strong,
.hide-pro-control-row small {
  display: block;
}

.hide-pro-control-row strong {
  color: #17213b;
  font-size: 14px;
}

.hide-pro-control-row small {
  margin-top: 2px;
  color: #6b7893;
  font-size: 12px;
}

.hide-pricing {
  padding-top: 50px;
}

.hide-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 100%;
  margin: 32px auto 0;
  align-items: stretch;
  min-width: 0;
}

.hide-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 24px;
  border: 1px solid rgba(47, 92, 255, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 255, 0.86));
  box-shadow: 0 18px 46px rgba(33, 45, 92, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.hide-price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 92, 255, 0.3);
  box-shadow: 0 24px 60px rgba(33, 45, 92, 0.12);
}

.hide-price-free {
  background:
    radial-gradient(circle at 82% 8%, rgba(30, 197, 101, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 250, 0.9));
}

.hide-price-featured {
  z-index: 1;
  border-color: rgba(47, 92, 255, 0.46);
  background:
    radial-gradient(circle at 80% 0%, rgba(109, 53, 255, 0.18), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.94));
  box-shadow: 0 26px 70px rgba(47, 92, 255, 0.18);
  transform: translateY(-10px);
}

.hide-price-featured:hover {
  transform: translateY(-14px);
}

.hide-price-badge {
  position: absolute;
  top: -14px;
  left: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  height: 28px;
  margin: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--hide-purple), var(--hide-blue));
  box-shadow: 0 14px 26px rgba(47, 92, 255, 0.22);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hide-price-card-top {
  min-height: 116px;
}

.hide-plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--hide-blue);
  background: rgba(47, 92, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hide-price-card h3 {
  margin: 14px 0 0;
  text-align: left;
  font-size: 19px;
}

.hide-price-card-top p {
  margin: 10px 0 0;
  color: #64708b;
  font-size: 13px;
  line-height: 1.55;
}

.hide-price {
  margin: 22px 0 20px;
  text-align: left;
}

.hide-price strong {
  color: #060b1a;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
}

.hide-page[data-hide-theme="dark"] .hide-price strong,
.hide-page[data-hide-theme="dark"] .hide-price-card li,
.hide-page[data-hide-theme="dark"] .hide-secure-note {
  color: #f4f7ff;
}

.hide-price span {
  color: #45516d;
  font-size: 13px;
}

.hide-price-card ul {
  display: grid;
  gap: 11px;
  padding: 18px 0 0;
  margin: 0 0 18px;
  border-top: 1px solid rgba(47, 92, 255, 0.1);
  list-style: none;
}

.hide-price-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #1e2944;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.hide-price-card li svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: var(--hide-blue);
}

.hide-price-card .hide-button {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding-inline: 12px;
  font-size: 13px;
}

.hide-secure-note {
  margin: 14px 0 0;
  color: #1c263f;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.hide-secure-note::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background: currentColor;
  clip-path: polygon(50% 0, 88% 24%, 88% 100%, 12% 100%, 12% 24%);
}

.hide-access {
  padding: 50px 0;
}

.hide-access-card {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
  padding: 22px 30px;
  border: 1px solid rgba(116, 78, 255, 0.1);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(244, 239, 255, 0.92), rgba(253, 252, 255, 0.92));
}

.hide-page[data-hide-theme="dark"] .hide-access-card {
  border-color: rgba(148, 163, 184, 0.16);
  background: linear-gradient(135deg, rgba(30, 41, 69, 0.92), rgba(22, 35, 58, 0.92));
}

.hide-access-icon {
  width: 74px;
  height: 74px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(74, 65, 153, 0.08);
}

.hide-page[data-hide-theme="dark"] .hide-access-icon {
  background: rgba(255, 255, 255, 0.08);
}

.hide-access-icon svg {
  width: 40px;
  height: 40px;
}

.hide-access h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.hide-access p {
  margin: 10px 0 0;
  max-width: 690px;
  color: #1f2b45;
  font-size: 15px;
}

.hide-access .hide-button {
  min-height: 44px;
  font-size: 13px;
}

.hide-issue {
  padding: 50px 0;
}

.hide-issue-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
  gap: 34px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(47, 92, 255, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 8% 10%, rgba(47, 92, 255, 0.12), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.9));
  box-shadow: 0 22px 58px rgba(33, 45, 92, 0.08);
}

.hide-page[data-hide-theme="dark"] .hide-issue-card {
  border-color: rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(circle at 8% 10%, rgba(47, 92, 255, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(20, 33, 54, 0.92), rgba(12, 24, 40, 0.88));
}

.hide-issue-main {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: center;
  min-width: 0;
}

.hide-issue-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  color: var(--hide-blue);
  background: rgba(47, 92, 255, 0.09);
}

.hide-issue-icon svg {
  width: 36px;
  height: 36px;
}

.hide-issue-kicker {
  margin: 0 0 8px;
  color: var(--hide-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hide-issue h2 {
  margin: 0;
  color: #101a34;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.hide-page[data-hide-theme="dark"] .hide-issue h2 {
  color: #f4f7ff;
}

.hide-issue-main p:not(.hide-issue-kicker) {
  margin: 12px 0 0;
  max-width: 610px;
  color: #51607d;
  font-size: 15px;
  line-height: 1.7;
}

.hide-page[data-hide-theme="dark"] .hide-issue-main p:not(.hide-issue-kicker) {
  color: #b7c5dc;
}

.hide-issue-actions {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(47, 92, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.hide-page[data-hide-theme="dark"] .hide-issue-actions {
  border-color: rgba(148, 163, 184, 0.12);
  background: rgba(10, 20, 35, 0.46);
}

.hide-issue-actions ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hide-issue-actions li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #18233e;
  font-size: 13px;
  font-weight: 800;
}

.hide-page[data-hide-theme="dark"] .hide-issue-actions li {
  color: #eef4ff;
}

.hide-issue-actions li svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--hide-blue);
}

.hide-issue-actions .hide-button {
  width: 100%;
  min-height: 44px;
  font-size: 13px;
}

.hide-faq {
  padding-top: 50px;
}

.hide-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.hide-faq-item {
  align-self: start;
  border: 1px solid var(--hide-border);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.74);
  overflow: hidden;
}

.hide-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
  padding: 0 18px;
  color: #0d1830;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

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

.hide-faq-item summary svg {
  width: 16px;
  height: 16px;
  color: #4e5b76;
  transition: transform 0.2s ease;
}

.hide-faq-item[open] summary svg {
  transform: rotate(180deg);
}

.hide-faq-item p {
  margin: 0;
  padding: 0 18px 14px;
  color: var(--hide-muted);
  font-size: 13px;
}

.hide-footer {
  position: relative;
  margin-top: 50px;
  padding: 64px 0 24px;
  overflow: hidden;
  border-top: 1px solid rgba(47, 92, 255, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 92, 255, 0.09), transparent 18rem),
    radial-gradient(circle at 88% 8%, rgba(109, 53, 255, 0.1), transparent 20rem),
    linear-gradient(180deg, rgba(244, 247, 255, 0.72), rgba(250, 252, 255, 0.96));
}

.hide-page[data-hide-theme="dark"] .hide-footer {
  border-top-color: rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 92, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 88% 8%, rgba(109, 53, 255, 0.16), transparent 20rem),
    linear-gradient(180deg, rgba(12, 24, 40, 0.9), rgba(7, 17, 31, 0.98));
}

.hide-footer-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr;
  gap: 40px;
  align-items: start;
}

.hide-footer-brand img {
  width: 112px;
  height: auto;
}

.hide-footer-brand p {
  max-width: 190px;
  margin: 8px 0 10px;
  color: #5d6780;
  font-size: 13px;
}

.hide-socials {
  display: flex;
  gap: 10px;
}

.hide-socials a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(47, 92, 255, 0.13);
  border-radius: 999px;
  color: var(--hide-blue);
  background: rgba(47, 92, 255, 0.08);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.hide-socials a:hover {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--hide-blue), var(--hide-purple));
  transform: translateY(-2px);
}

.hide-socials svg {
  width: 15px;
  height: 15px;
}

.hide-footer-links,
.hide-footer-install {
  display: grid;
  gap: 8px;
}

.hide-footer h2 {
  margin: 0 0 5px;
  color: #15203a;
  font-size: 13px;
  line-height: 1.2;
}

.hide-page[data-hide-theme="dark"] .hide-footer h2,
.hide-page[data-hide-theme="dark"] .hide-footer-brand p,
.hide-page[data-hide-theme="dark"] .hide-footer a {
  color: #dbe7ff;
}

.hide-page[data-hide-theme="dark"] .hide-socials a {
  color: #5f86ff;
  border-color: rgba(95, 134, 255, 0.24);
  background: rgba(47, 92, 255, 0.12);
}

.hide-footer a {
  color: #4d5873;
  font-size: 12px;
  transition: color 0.2s ease;
}

.hide-footer a:hover {
  color: var(--hide-blue);
}

.hide-footer .hide-socials a:hover,
.hide-page[data-hide-theme="dark"] .hide-footer .hide-socials a:hover {
  color: #ffffff;
}

.hide-footer-install a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4d5873;
}

.hide-footer-install svg {
  width: 30px;
  height: 30px;
}

.hide-copyright {
  margin: 24px 0 0;
  color: #8a93a7;
  text-align: center;
  font-size: 12px;
}

.hide-scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--hide-blue), var(--hide-purple));
  box-shadow: 0 18px 34px rgba(47, 92, 255, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hide-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hide-scroll-top:hover {
  box-shadow: 0 22px 42px rgba(47, 92, 255, 0.36);
  transform: translateY(-2px);
}

.hide-scroll-top svg {
  width: 22px;
  height: 22px;
}

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

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

@keyframes hide-float {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: translateY(-10px) rotateX(1.2deg) rotateY(-1.2deg);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hide-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hide-pro-showcase {
    grid-template-columns: 1fr;
  }

  .hide-pro-showcase::before {
    display: none;
  }

  .hide-pro-copy {
    max-width: 760px;
  }
}

@media (max-width: 920px) {
  .hide-header-inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    gap: 18px;
  }

  .hide-nav {
    display: none;
  }

  .hide-hero {
    padding-top: 24px;
  }

  .hide-hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hide-hero-copy {
    max-width: 720px;
    min-width: 0;
    text-align: center;
    margin-inline: auto;
  }

  .hide-hero-text {
    margin-inline: auto;
  }

  .hide-product-preview {
    justify-content: center;
  }

  .hide-actions,
  .hide-trust-list {
    justify-content: center;
  }

  .hide-steps {
    gap: 24px;
  }

  .hide-steps::before,
  .hide-steps::after {
    display: none;
  }

  .hide-price-grid,
  .hide-faq-grid,
  .hide-footer-grid {
    grid-template-columns: 1fr;
  }

  .hide-price-grid {
    max-width: 420px;
  }

  .hide-price-featured,
  .hide-price-featured:hover {
    transform: none;
  }

  .hide-footer-grid {
    gap: 24px;
  }

  .hide-access-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

  .hide-issue-actions {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .hide-container,
  .hide-header-inner {
    width: min(calc(100% - 32px), var(--hide-container));
  }

  .hide-header-actions {
    gap: 8px;
    flex: 0 0 auto;
  }

  .hide-brand {
    flex: 0 1 112px;
    min-width: 0;
  }

  .hide-theme-cycle {
    width: 32px;
    height: 32px;
  }

  .hide-theme-cycle svg {
    width: 19px;
    height: 19px;
  }

  .hide-header-cta {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0;
  }
  .hide-header-cta span {
    display: none;
  }

  .hide-header-cta svg {
    width: 20px;
    height: 20px;
  }

  .hide-hero h1 {
    font-size: 36px;
    max-width: 340px;
    margin-inline: auto;
  }

  .hide-hero-text {
    font-size: 16px;
    max-width: 340px;
  }

  .hide-actions {
    gap: 12px;
  }

  .hide-button {
    width: 100%;
  }

  .hide-header .hide-button {
    width: auto;
  }

  .hide-trust-list {
    gap: 16px;
    max-width: 340px;
    margin-inline: auto;
  }

  .hide-popup-card {
    width: 100%;
    max-width: 326px;
    padding: 0;
  }

  .hide-feature-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .hide-steps {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hide-pro-mini-list {
    grid-template-columns: 1fr;
  }

  .hide-pro-showcase {
    padding: 24px;
  }

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

  .hide-pro-stats span {
    min-height: 0;
    grid-template-columns: 56px 1fr;
    align-items: baseline;
  }

  .hide-pro-panel {
    padding: 14px;
  }

  .hide-access-card {
    padding: 22px;
  }

  .hide-access h2 {
    font-size: 22px;
  }

  .hide-issue {
    padding: 38px 0;
  }

  .hide-issue-card {
    padding: 22px;
  }

  .hide-issue-main {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hide-issue-icon {
    width: 62px;
    height: 62px;
  }

  .hide-issue-icon svg {
    width: 30px;
    height: 30px;
  }

  .hide-issue h2 {
    font-size: 22px;
  }

  .hide-issue-actions {
    padding: 18px;
  }
}

@media (max-width: 440px) {
  .hide-brand {
    width: 110px;
    flex-basis: 110px;
  }

  .hide-brand img {
    width: 106px;
  }

  .hide-hero h1 {
    font-size: 29px;
    max-width: 286px;
  }

  .hide-hero-text {
    max-width: 286px;
  }

  .hide-focus-card,
  .hide-toggle-row {
    grid-template-columns: 40px 1fr;
  }

  .hide-focus-card .hide-toggle,
  .hide-toggle-row .hide-toggle {
    grid-column: 2;
  }

  .hide-tabs button {
    font-size: 12px;
  }

  .hide-scroll-top {
    right: 16px;
    bottom: 16px;
  }
}
