.znet-homepage {
  --znet-bg: #010409;
  --znet-surface: rgba(255, 255, 255, 0.04);
  --znet-border: rgba(255, 255, 255, 0.1);
  --znet-border-accent: rgba(134, 239, 172, 0.18);
  --znet-text: #ffffff;
  --znet-text-soft: rgba(255, 255, 255, 0.68);
  --znet-accent: #4ade80;
  --znet-accent-soft: #86efac;
  --znet-accent-dark: #03250f;
  --znet-container: 1440px;
  --znet-radius: 20px;
  --znet-radius-sm: 10px;
  --znet-shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.18);
  --znet-header-offset: 84px;
  background: var(--znet-bg);
  color: var(--znet-text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --znet-flyout-border: rgba(134, 239, 172, 0.14);
  --znet-flyout-radius: 14px;
  --znet-flyout-bg: rgba(1, 4, 9, 0.96);
  --znet-flyout-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  --znet-flyout-blur: 16px;
}

html {
  scrollbar-gutter: stable;
}

.znet-homepage html {
  scroll-padding-top: calc(var(--znet-header-offset) + 12px);
}

.znet-homepage a {
  color: inherit;
  text-decoration: none;
}

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

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

.znet-page-shell {
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  min-height: 100vh;
  padding-top: var(--znet-header-offset);
}

.znet-homepage .znet-site-header,
.znet-homepage .znet-hero,
.znet-homepage .znet-feature-strip,
.znet-homepage .znet-plans-section,
.znet-homepage .znet-site-footer {
  position: relative;
  z-index: 1;
}

.znet-homepage .znet-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0;
  background: rgba(1, 4, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.znet-homepage .znet-site-header-mobile {
  display: none;
}

.znet-homepage #top {
  display: block;
  scroll-margin-top: calc(var(--znet-header-offset) + 12px);
}

.znet-homepage .znet-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.znet-homepage .znet-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.znet-homepage .znet-brand-logo {
  width: auto;
  height: 60px;
  object-fit: contain;
}

.znet-homepage .znet-nav,
.znet-homepage .znet-footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.znet-homepage .znet-nav a,
.znet-homepage .znet-footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.znet-homepage .znet-nav a:hover,
.znet-homepage .znet-footer-nav a:hover {
  color: var(--znet-accent);
}

.znet-homepage .znet-header-bar {
  position: relative;
}

.znet-homepage .znet-site-header-mobile .znet-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-width: 220px;
  padding: 12px;
  border: 1px solid var(--znet-flyout-border);
  border-radius: var(--znet-flyout-radius);
  background: var(--znet-flyout-bg);
  box-shadow: var(--znet-flyout-shadow);
  backdrop-filter: blur(var(--znet-flyout-blur));
  -webkit-backdrop-filter: blur(var(--znet-flyout-blur));
}

.znet-homepage .znet-site-header-mobile.is-menu-open .znet-nav {
  display: flex;
}

.znet-homepage .znet-site-header-mobile .znet-nav a {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
}

.znet-homepage .znet-site-header-mobile .znet-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.znet-homepage .znet-header-actions,
.znet-homepage .znet-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.znet-homepage .znet-header-actions {
  flex-wrap: nowrap;
}

.znet-homepage .znet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--znet-radius-sm);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.znet-homepage .znet-btn-with-icon {
  gap: 10px;
}

.znet-homepage .znet-btn-icon-only {
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
}

.znet-homepage .znet-header-menu-toggle {
  cursor: pointer;
}

.znet-homepage .znet-btn-svg-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.znet-homepage .znet-btn-large {
  width: 250px;
  min-height: 54px;
  padding: 0 24px;
}

.znet-homepage .znet-btn-accent {
  background: var(--znet-accent);
  color: var(--znet-accent-dark);
  box-shadow: none;
}

.znet-homepage .znet-btn-accent:hover {
  box-shadow: 0 16px 36px rgba(74, 222, 128, 0.22);
}

.znet-homepage .znet-btn-ghost,
.znet-homepage .znet-btn-outline {
  background: transparent;
  color: var(--znet-text);
  border-color: var(--znet-border-accent);
}

.znet-homepage .znet-btn-ghost:hover,
.znet-homepage .znet-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(134, 239, 172, 0.32);
  box-shadow: 0 14px 30px rgba(74, 222, 128, 0.16);
}

.znet-homepage .znet-auth-layer[hidden],
.znet-homepage .znet-auth-panel[hidden] {
  display: none !important;
}

.znet-homepage .znet-auth-layer {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 5;
  width: min(440px, calc(100vw - 32px));
  border: 1px solid var(--znet-flyout-border);
  border-radius: var(--znet-flyout-radius);
  background: var(--znet-flyout-bg);
  box-shadow: var(--znet-flyout-shadow);
  backdrop-filter: blur(var(--znet-flyout-blur));
  -webkit-backdrop-filter: blur(var(--znet-flyout-blur));
  overflow: hidden;
}

.znet-homepage .znet-auth-layer[data-auth-panel-state="signup"] {
  width: min(560px, calc(100vw - 32px));
}

.znet-homepage .znet-auth-shell {
  display: block;
}

.znet-homepage .znet-auth-panel {
  width: 100%;
  max-height: calc(100vh - var(--znet-header-offset) - 32px);
  overflow: auto;
  margin-top: 0;
  padding: 24px;
  background: transparent;
}

.znet-homepage .znet-auth-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.znet-homepage .znet-auth-kicker {
  display: block;
  color: var(--znet-accent-soft);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
}

.znet-homepage .znet-auth-head h2 {
  margin: 8px 0 0;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.znet-homepage .znet-auth-head p {
  margin: 10px 0 0;
  color: var(--znet-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.znet-homepage .znet-auth-head {
  margin-bottom: 16px;
}

.znet-homepage .znet-auth-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(134, 239, 172, 0.14);
  border-radius: 10px;
  background: transparent;
  color: var(--znet-text);
  cursor: pointer;
}

.znet-homepage .znet-auth-close:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(134, 239, 172, 0.3);
}

.znet-homepage .znet-auth-form .form-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
}

.znet-homepage .znet-auth-form .form-control,
.znet-homepage .znet-auth-form .form-select {
  min-height: 48px;
  border: 1px solid rgba(134, 239, 172, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--znet-text);
  box-shadow: none;
}

.znet-homepage .znet-auth-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.znet-homepage .znet-auth-form .form-control:focus,
.znet-homepage .znet-auth-form .form-select:focus {
  border-color: rgba(134, 239, 172, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--znet-text);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.08);
}

.znet-homepage .znet-auth-form .form-text,
.znet-homepage .znet-auth-legal {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.6;
}

.znet-homepage .znet-auth-form .form-check-input {
  margin-top: 0.25rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-color: rgba(134, 239, 172, 0.2);
}

.znet-homepage .znet-auth-form .form-check-label,
.znet-homepage .znet-auth-form .form-check-label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.znet-homepage .znet-auth-form a,
.znet-homepage .znet-auth-foot a,
.znet-homepage .znet-auth-foot button {
  color: var(--znet-accent-soft);
}

.znet-homepage .znet-auth-grid {
  display: grid;
  gap: 14px;
}

.znet-homepage .znet-auth-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.znet-homepage .znet-auth-phone-group {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
}

.znet-homepage .znet-auth-submit {
  width: 100%;
}

.znet-homepage .znet-auth-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.znet-homepage .znet-auth-text-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--znet-accent-soft);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.znet-homepage .znet-hero {
  padding: 0;
}

.znet-homepage .znet-hero-mobile {
  display: none;
}

.znet-homepage .znet-hero-grid {
  display: grid;
  grid-template-columns: minmax(480px, 560px) minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.znet-homepage .znet-hero-content {
  max-width: 560px;
}

.znet-homepage .znet-hero-copy h1 {
  margin: 24px 0 0;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 400;
}

.znet-homepage .znet-hero-copy h1 span {
  color: var(--znet-accent);
}

.znet-homepage .znet-hero-copy p {
  margin: 22px 0 0;
  max-width: 540px;
  color: var(--znet-text-soft);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.znet-homepage .znet-hero-points {
  margin-top: 0;
  display: grid;
  gap: 14px;
}

.znet-homepage .znet-hero-point,
.znet-homepage .znet-plan-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.znet-homepage .znet-hero-point span:last-child,
.znet-homepage .znet-plan-list li span:last-child {
  color: var(--znet-text-soft);
  font-weight: 400;
}

.znet-homepage .znet-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--znet-border-accent);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: var(--znet-accent-soft);
  font-size: 14px;
}

.znet-homepage .znet-hero-actions {
  margin-top: 22px;
  width: 100%;
  flex-wrap: nowrap;
}

.znet-homepage .znet-hero-actions .znet-btn-outline {
  width: auto;
  min-width: max-content;
}

.znet-homepage .znet-hero-primary-action {
  font-weight: 700;
}

.znet-homepage .znet-hero-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 560px;
}

.znet-homepage .znet-hero-globe {
  width: min(100%, 820px);
  height: auto;
  object-fit: contain;
}

.znet-homepage .znet-section-divider {
  padding: 4px 0 18px;
}

.znet-homepage .znet-section-divider-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(134, 239, 172, 0.08) 18%,
    rgba(134, 239, 172, 0.3) 50%,
    rgba(134, 239, 172, 0.08) 82%,
    transparent 100%
  );
}

.znet-homepage .znet-anchor-target,
.znet-homepage #features,
.znet-homepage #plans,
.znet-homepage #support {
  scroll-margin-top: calc(var(--znet-header-offset) + 12px);
}

.znet-homepage .znet-feature-strip {
  padding: 4px 0 24px;
}

.znet-homepage .znet-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(134, 239, 172, 0.1);
  border-radius: var(--znet-radius-sm);
  box-shadow: var(--znet-shadow-soft);
}

.znet-homepage .znet-feature-card {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.znet-homepage .znet-feature-card::after,
.znet-homepage .znet-feature-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.znet-homepage .znet-feature-card:not(:last-child)::after {
  top: 16px;
  right: 0;
  width: 1px;
  height: calc(100% - 32px);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(134, 239, 172, 0.08) 18%,
    rgba(134, 239, 172, 0.26) 50%,
    rgba(134, 239, 172, 0.08) 82%,
    transparent 100%
  );
}

.znet-homepage .znet-feature-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.znet-homepage .znet-feature-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.znet-homepage .znet-feature-icon-phone {
  align-self: flex-start;
  margin-top: 2px;
}

.znet-homepage .znet-feature-card:first-child {
  border-radius: var(--znet-radius-sm) 0 0 var(--znet-radius-sm);
}

.znet-homepage .znet-feature-card:last-child {
  border-radius: 0 var(--znet-radius-sm) var(--znet-radius-sm) 0;
}

.znet-homepage .znet-feature-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.znet-homepage .znet-feature-card p {
  margin: 14px 0 0;
  color: var(--znet-text-soft);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

.znet-homepage .znet-plans-section {
  padding: 72px 0 28px;
}

.znet-homepage .znet-section-head {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.znet-homepage .znet-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--znet-accent-soft);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.znet-homepage .znet-section-head h2 {
  margin: 20px 0 0;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.znet-homepage .znet-section-head p {
  margin: 14px 0 0;
  color: var(--znet-text-soft);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

.znet-homepage .znet-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.znet-homepage .znet-plan-card {
  --znet-plan-border-color: var(--znet-border);
  --znet-plan-badge-bg: rgba(1, 4, 9, 0.92);
  position: relative;
  padding: 30px;
  border: 1px solid var(--znet-plan-border-color);
  border-radius: var(--znet-radius);
  background: var(--znet-surface);
}

.znet-homepage .znet-plan-card-featured {
  --znet-plan-border-color: rgba(74, 222, 128, 0.5);
  --znet-plan-badge-bg: rgb(12, 23, 17);
  border-color: var(--znet-plan-border-color);
  background: linear-gradient(180deg, rgba(17, 24, 20, 0.98), rgba(4, 15, 11, 0.98));
  box-shadow: 0 0 50px rgba(74, 222, 128, 0.16);
}

.znet-homepage .znet-plan-top {
  min-height: 132px;
}

.znet-homepage .znet-plan-summary {
  display: block;
}

.znet-homepage .znet-plan-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.znet-homepage .znet-plan-highlight span:last-child {
  color: var(--znet-text-soft);
  font-weight: 400;
  line-height: 1.5;
}

.znet-homepage .znet-plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border: 1px solid var(--znet-plan-border-color);
  border-radius: 999px;
  background: var(--znet-plan-badge-bg);
  color: var(--znet-accent-soft);
  font-size: 12px;
  font-weight: 500;
}

.znet-homepage .znet-plan-name {
  display: block;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.znet-homepage .znet-plan-price {
  display: block;
  margin-top: 18px;
  font-size: 52px;
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.znet-homepage .znet-plan-period {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.znet-homepage .znet-plan-period-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  align-self: flex-start;
  min-width: 0;
}

.znet-homepage .znet-plan-period-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.54);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.54);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.znet-homepage .znet-plan-period-select {
  min-width: 116px;
  min-height: 34px;
  padding: 0 34px 0 12px;
  border: 1px solid rgba(134, 239, 172, 0.14);
  border-radius: 10px;
  background: rgba(1, 4, 9, 0.96);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.znet-homepage .znet-plan-period-select:focus {
  outline: none;
  border-color: rgba(134, 239, 172, 0.26);
}

.znet-homepage .znet-plan-period-select option {
  background: rgb(1, 4, 9);
  color: rgba(255, 255, 255, 0.9);
}

.znet-homepage .znet-plan-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.znet-homepage .znet-plan-btn {
  width: 100%;
  margin-top: 30px;
}

.znet-homepage .znet-plans-empty {
  padding: 24px 0;
  color: var(--znet-text-soft);
  font-size: 16px;
}

.znet-homepage .znet-site-footer {
  padding: 24px 0 40px;
}

.znet-homepage .znet-footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.znet-homepage .znet-footer-brand {
  display: inline-flex;
  align-items: center;
}

.znet-homepage .znet-footer-brand-logo {
  width: auto;
  height: 29px;
}

@media (max-width: 1180px) {
  .znet-homepage .znet-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .znet-homepage .znet-hero-content {
    max-width: none;
  }

  .znet-homepage .znet-hero-visual {
    min-height: auto;
  }

  .znet-homepage .znet-hero-globe {
    max-width: 620px;
  }

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

  .znet-homepage .znet-feature-card:not(:last-child)::after {
    display: none;
  }

  .znet-homepage .znet-feature-card:nth-child(odd)::after {
    display: block;
    top: 16px;
    right: 0;
    width: 1px;
    height: calc(100% - 32px);
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(134, 239, 172, 0.08) 18%,
      rgba(134, 239, 172, 0.26) 50%,
      rgba(134, 239, 172, 0.08) 82%,
      transparent 100%
    );
  }

  .znet-homepage .znet-feature-card:nth-child(n + 3)::before {
    top: 0;
    left: 16px;
    width: calc(100% - 32px);
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(134, 239, 172, 0.08) 18%,
      rgba(134, 239, 172, 0.26) 50%,
      rgba(134, 239, 172, 0.08) 82%,
      transparent 100%
    );
  }

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

@media (max-width: 920px) {
  .znet-homepage .znet-site-header-desktop {
    display: none;
  }

  .znet-homepage .znet-site-header-mobile {
    display: block;
  }

  .znet-homepage .znet-hero-desktop {
    display: none;
  }

  .znet-homepage .znet-hero-mobile {
    display: block;
    --znet-mobile-hero-gap: 18px;
    --znet-mobile-hero-copy-gap: 18px;
    --znet-mobile-hero-actions-gap: 12px;
    --znet-mobile-hero-bottom: 20px;
    padding: 0 0 var(--znet-mobile-hero-bottom);
  }

  .znet-homepage .znet-hero-mobile .znet-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--znet-mobile-hero-gap);
  }

  .znet-homepage .znet-hero-mobile .znet-hero-content {
    max-width: none;
  }

  .znet-homepage .znet-hero-mobile .znet-hero-copy {
    display: grid;
    gap: var(--znet-mobile-hero-copy-gap);
  }

  .znet-homepage .znet-hero-mobile .znet-hero-copy h1,
  .znet-homepage .znet-hero-mobile .znet-hero-copy p {
    margin: 0;
  }

  .znet-homepage .znet-hero-mobile .znet-hero-copy p {
    display: none;
  }

  .znet-homepage .znet-hero-mobile .znet-hero-points {
    display: grid;
  }

  .znet-homepage .znet-hero-mobile .znet-hero-visual {
    min-height: auto;
  }

  .znet-homepage .znet-hero-mobile .znet-hero-globe {
    max-width: 620px;
  }

  .znet-homepage .znet-hero-mobile .znet-hero-actions {
    margin-top: 16px;
    width: 100%;
    display: grid;
    gap: var(--znet-mobile-hero-actions-gap);
  }

  .znet-homepage .znet-hero-mobile .znet-hero-actions .znet-btn,
  .znet-homepage .znet-hero-mobile .znet-hero-actions .znet-btn-outline {
    width: 100%;
    min-width: 0;
    flex: none;
  }

  .znet-homepage .znet-footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .znet-homepage .znet-site-header-mobile .znet-header-bar {
    flex-direction: row;
    align-items: center;
  }

  .znet-homepage .znet-site-header-mobile .znet-nav {
    width: min(100%, 260px);
    flex-wrap: nowrap;
  }

  .znet-homepage .znet-plans-grid {
    grid-template-columns: 1fr;
  }

  .znet-homepage .znet-auth-layer,
  .znet-homepage .znet-auth-layer[data-auth-panel-state="signup"] {
    width: min(100%, calc(100vw - 20px));
  }

  .znet-homepage .znet-auth-panel {
    width: 100%;
    max-height: calc(100vh - var(--znet-header-offset) - 20px);
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .znet-homepage {
    --znet-header-offset: 72px;
  }

  .znet-homepage .znet-container {
    width: min(var(--znet-container), calc(100% - 20px));
  }

  .znet-homepage .znet-brand-logo {
    height: 46px;
  }

  .znet-homepage .znet-hero-mobile {
    --znet-mobile-hero-gap: 14px;
    --znet-mobile-hero-copy-gap: 14px;
    --znet-mobile-hero-actions-gap: 10px;
    --znet-mobile-hero-bottom: 0;
  }

  .znet-homepage .znet-hero-mobile .znet-hero-copy h1 {
    font-size: 42px;
  }

  .znet-homepage .znet-hero-mobile .znet-hero-copy p {
    font-size: 16px;
  }

  .znet-homepage .znet-section-divider {
    padding: 16px 0;
  }

  .znet-homepage .znet-hero-actions,
  .znet-homepage .znet-header-actions {
    width: 100%;
  }

  .znet-homepage .znet-hero-actions {
    flex-wrap: wrap;
  }

  .znet-homepage .znet-hero-actions .znet-btn {
    flex: 1 1 100%;
  }

  .znet-homepage .znet-site-header-mobile .znet-header-actions {
    width: auto;
    flex-wrap: nowrap;
  }

  .znet-homepage .znet-site-header-mobile .znet-header-actions .znet-btn {
    flex: 0 0 auto;
  }

  .znet-homepage .znet-auth-grid-two,
  .znet-homepage .znet-auth-phone-group {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .znet-homepage .znet-auth-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .znet-homepage .znet-auth-head h2 {
    font-size: 26px;
  }

  .znet-homepage .znet-hero-actions .znet-btn-outline {
    width: 100%;
    min-width: 0;
  }

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

  .znet-homepage .znet-feature-strip {
    padding: 0;
  }

  .znet-homepage .znet-feature-card::after {
    display: none !important;
  }

  .znet-homepage .znet-feature-card::before {
    display: none;
  }

  .znet-homepage .znet-feature-card:nth-child(n + 2)::before {
    display: block;
    top: 0;
    left: 16px;
    width: calc(100% - 32px);
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(134, 239, 172, 0.08) 18%,
      rgba(134, 239, 172, 0.26) 50%,
      rgba(134, 239, 172, 0.08) 82%,
      transparent 100%
    );
  }

  .znet-homepage .znet-feature-card:first-child,
  .znet-homepage .znet-feature-card:last-child {
    border-radius: 0;
  }

  .znet-homepage .znet-feature-card:first-child {
    border-radius: var(--znet-radius-sm) var(--znet-radius-sm) 0 0;
  }

  .znet-homepage .znet-feature-card:last-child {
    border-radius: 0 0 var(--znet-radius-sm) var(--znet-radius-sm);
  }

  .znet-homepage .znet-section-head h2 {
    font-size: 34px;
  }

  .znet-homepage .znet-section-head p {
    font-size: 16px;
  }

  .znet-homepage .znet-plans-section .znet-section-head h2,
  .znet-homepage .znet-plans-section .znet-section-head p {
    display: none;
  }

  .znet-homepage .znet-plans-section {
    padding-top: 0;
  }

  .znet-homepage .znet-plans-grid {
    margin-top: 16px;
  }

  .znet-homepage .znet-plan-top {
    min-height: 0;
  }

  .znet-homepage .znet-plan-badge {
    top: 0;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    white-space: nowrap;
  }

  .znet-homepage .znet-plan-card-featured .znet-plan-badge {
    box-shadow: 0 0 0 1px var(--znet-bg);
  }

  .znet-homepage .znet-plan-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
    row-gap: 4px;
    align-items: end;
  }

  .znet-homepage .znet-plan-name {
    grid-column: 1;
    grid-row: 1;
    font-size: 24px;
  }

  .znet-homepage .znet-plan-price {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    font-size: 36px;
    justify-self: start;
    white-space: nowrap;
  }

  .znet-homepage .znet-plan-period {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    justify-self: start;
    white-space: nowrap;
  }

  .znet-homepage .znet-plan-period-control {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    justify-self: start;
    white-space: nowrap;
  }

  .znet-homepage .znet-plan-period-select {
    font-size: 14px;
    min-width: 108px;
    min-height: 32px;
    padding: 0 30px 0 10px;
  }

  .znet-homepage .znet-plan-highlight {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
  }

  .znet-homepage .znet-plan-list {
    display: none;
  }

  .znet-homepage .znet-plan-btn {
    margin-top: 18px;
  }
}
