:root {
  color-scheme: light;
  --bg: #edf4fb;
  --bg-soft: #f7fbff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --text: #13314d;
  --muted: #5a7188;
  --line: rgba(0, 76, 151, 0.12);
  --line-strong: rgba(0, 76, 151, 0.22);
  --primary: #004c97;
  --primary-dark: #003f7d;
  --primary-soft: rgba(0, 76, 151, 0.08);
  --primary-softer: rgba(0, 76, 151, 0.04);
  --success: #15803d;
  --danger: #dc2626;
  --modal-shadow: 0 28px 80px rgba(0, 76, 151, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.95) 0%,
      transparent 38%
    ),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

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

code {
  padding: 0.12em 0.42em;
  border-radius: 999px;
  background: var(--primary-softer);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.94em;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 251, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
}

.brand-mark {
  position: relative;
  top: -0.48em;
  margin-left: 0.02em;
  font-size: 0.42em;
  line-height: 1;
  vertical-align: baseline;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  padding: 120px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 72px;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 24px 0 18px;
  max-width: 760px;
  font-size: clamp(48px, 8vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 700;
}

.hero-copy p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  color: #77746d;
  font-size: 13px;
}

.hero-meta span {
  position: relative;
  padding-left: 14px;
}

.hero-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 76, 151, 0.36);
  transform: translateY(-50%);
}

.primary-btn,
.secondary-btn {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.primary-btn {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
}

.secondary-btn:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.hero-panel,
.info-card,
.feature-card,
.preview-box,
.cta-box,
.modal-dialog {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
}

.hero-panel,
.info-card,
.feature-card,
.preview-box,
.cta-box {
  box-shadow: none;
}

.hero-panel {
  padding: 24px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.92) 0%,
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(248, 247, 242, 0.94) 100%
    );
}

.window-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.window-header span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6d7ea;
}

.mail-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mail-title {
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.mail-bubble {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--primary-softer);
  margin-bottom: 18px;
}

.mail-bubble.strong {
  background: var(--primary);
  color: #ffffff;
}

.mail-card ul {
  margin: 0;
  padding-left: 18px;
  color: #58554f;
  line-height: 1.95;
}

.hero-panel-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.section {
  padding: 64px 0;
}

.section-muted {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(251, 250, 246, 0.72) 100%
  );
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.section-title p,
.info-card p,
.feature-card p,
.cta-box p,
.preview-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.install-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.install-summary p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.85;
}

.install-summary-badge {
  flex: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.install-flow {
  display: grid;
  gap: 16px;
}

.install-step {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.6);
}

.install-step-copy h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.install-step-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.step-index {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.install-points {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #54514a;
  line-height: 1.85;
}

.install-shot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.install-shot-stack {
  display: grid;
  gap: 14px;
  width: 100%;
}

.install-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  align-items: start;
  justify-items: center;
}

.install-step-final {
  grid-template-columns: 1fr;
}

.install-step-final .install-step-copy {
  max-width: 760px;
}

.shot-frame {
  width: min(100%, 420px);
  max-width: 420px;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid var(--line);
  /* border-radius: 24px; */
  background: #f6f5f2;
  aspect-ratio: 5 / 3.6;
  box-shadow:
    0 18px 34px rgba(0, 76, 151, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.shot-frame-desktop {
  aspect-ratio: 5 / 3.6;
}

.shot-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.install-tips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

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

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

.info-card,
.feature-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.62);
}

.info-card h3,
.feature-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 16px;
  margin-bottom: 18px;
}

.feature-overview-main,
.showcase-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.92) 0%,
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(248, 247, 242, 0.95) 100%
    );
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-overview-main {
  background: rgba(255, 255, 255, 0.62);
}

.feature-overview-main h3,
.showcase-head h3 {
  margin: 16px 0 12px;
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.feature-overview-main p,
.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.feature-stats {
  display: grid;
  gap: 14px;
}

.feature-stat,
.feature-group {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
}

.feature-stat {
  padding: 24px 22px;
}

.feature-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.feature-stat span {
  color: var(--muted);
  line-height: 1.7;
}

.feature-group {
  margin-top: 16px;
  padding: 26px;
}

.feature-group-head {
  margin-bottom: 18px;
}

.feature-group-head h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.feature-group-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

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

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

.feature-card {
  border: 1px solid var(--line);
  border-radius: 24px;
}

.feature-card h4 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.feature-card.highlight {
  background: rgba(255, 255, 255, 0.78);
}

.feature-card.compact h4 {
  font-size: 18px;
}

.feature-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.showcase-head {
  margin-bottom: 14px;
}

.showcase-head h3 {
  margin-top: 0;
}

.cta-section {
  padding-top: 28px;
  padding-bottom: 10px;
}

.cta-box {
  padding: 20px 28px 0;
  text-align: center;
  border: none;
  background: none;
  /* border: 1px solid var(--line); */
  /* background:
    radial-gradient(
      circle at top center,
      rgba(255, 255, 255, 0.94) 0%,
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(235, 244, 252, 0.98) 100%
    ); */
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.cta-box .primary-btn {
  margin-top: 22px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px 12px;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.26s ease,
    visibility 0.26s ease;
}

.modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.38);
  opacity: 1;
  transition: opacity 0.26s ease;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 24px));
  padding: 32px;
  background: var(--surface-solid);
  box-shadow: var(--modal-shadow);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.24s ease;
}

.modal.hidden .modal-mask {
  opacity: 0;
}

.modal.hidden .modal-dialog {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #7a7770;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.modal-close:hover {
  color: var(--text);
  transform: rotate(90deg);
}

.modal-dialog h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.modal-desc {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c2c2c;
}

.form-group label span {
  color: var(--danger);
}

.form-group input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(0, 76, 151, 0.16);
  border-radius: 16px;
  background: #fcfeff;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-group input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 76, 151, 0.12);
}

.form-group input.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.error-text {
  min-height: 20px;
  padding-top: 6px;
  color: var(--danger);
  font-size: 13px;
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
}

.form-message {
  min-height: 24px;
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.toast-stack {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 60;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: calc(100% - 24px);
  transform: translateX(-50%);
  pointer-events: none;
}

.toast {
  width: fit-content;
  max-width: min(560px, calc(100vw - 24px));
  padding: 7px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 18px 34px rgba(0, 76, 151, 0.14);
  text-align: center;
  word-break: break-word;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.toast::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: -2px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

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

.toast-success {
  border-color: rgba(0, 76, 151, 0.28);
  background: linear-gradient(180deg, #0058ad 0%, #004c97 100%);
  color: #ffffff;
}

.toast-success::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M13.333 4.667L6.001 12 2.667 8.667' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.admin-header .secondary-btn {
  height: 36px;
}

html,
body.admin-page {
  height: 100%;
}

body.admin-page {
  overflow: hidden;
}

.admin-main {
  height: calc(100vh - 75px);
  min-height: 0;
  padding: 22px 0 24px;
}

.admin-section {
  height: 100%;
}

.admin-layout {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
}

.admin-intro {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.admin-intro-copy {
  padding: 22px 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 76, 151, 0.12),
      transparent 35%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 20px 48px rgba(0, 76, 151, 0.08);
}

.admin-section .section-title {
  margin: 16px 0 0;
}

.admin-title h2 {
  margin-bottom: 10px;
}

.admin-title p {
  max-width: 620px;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 12px;
  align-items: end;
  padding: 18px 18px 0;
  /* border-bottom: 1px solid rgba(0, 76, 151, 0.08); */
}

.admin-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.admin-field select,
.admin-field input {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 76, 151, 0.16);
  background: #fff;
  color: var(--text);
  outline: none;
}

.admin-field select:focus,
.admin-field input:focus {
  border-color: rgba(0, 76, 151, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 76, 151, 0.12);
}

.admin-field-actions {
  display: flex;
  justify-content: flex-end;
}

.admin-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
}

.admin-summary-item {
  min-height: 100%;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.92)
  );
  border: 1px solid rgba(0, 76, 151, 0.14);
  box-shadow: 0 18px 40px rgba(0, 76, 151, 0.08);
  padding: 20px 22px;
}

.admin-summary-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(20, 27, 38, 0.65);
  margin-bottom: 10px;
}

.admin-summary-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  word-break: break-all;
}

.admin-card {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(247, 251, 255, 0.96)
  );
  border: 1px solid rgba(0, 76, 151, 0.12);
  box-shadow: 0 24px 60px rgba(0, 76, 151, 0.1);
  overflow: hidden;
}

.admin-table-wrap {
  padding-top: 10px;
  flex: 1;
  min-height: 0;
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 76, 151, 0.08);
  font-size: 13px;
  color: var(--text);
  vertical-align: top;
}

.admin-table th {
  position: sticky;
  top: 0;
  /* background: linear-gradient(
    180deg,
    rgba(0, 76, 151, 0.08),
    rgba(0, 76, 151, 0.03)
  ); */
  font-weight: 800;
  z-index: 2;
}

.admin-table tbody tr:hover {
  background: rgba(0, 76, 151, 0.04);
}

.ua-cell {
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-empty {
  padding: 18px 20px;
  color: rgba(20, 27, 38, 0.6);
  font-size: 13px;
  border-top: 1px solid rgba(0, 76, 151, 0.08);
}

.admin-empty.hidden {
  display: none;
}

@media (max-width: 920px) {
  body.admin-page {
    overflow: auto;
  }

  .admin-main {
    height: auto;
    min-height: auto;
  }

  .admin-layout {
    height: auto;
  }

  .admin-intro {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .admin-summary {
    grid-template-columns: 1fr;
  }

  .admin-field-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-overview,
  .feature-grid.two-wide,
  .feature-grid.three-col,
  .feature-showcase-grid,
  .card-grid.three,
  .card-grid.two,
  .install-step,
  .install-tips,
  .install-shot-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 88px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .admin-page .nav {
    justify-content: space-between;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .install-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-overview-main h3,
  .showcase-head h3 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .hero {
    padding: 68px 0 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-meta {
    gap: 8px 14px;
  }

  .section {
    padding: 44px 0;
  }

  .install-step,
  .install-summary,
  .feature-group,
  .feature-overview-main,
  .showcase-card {
    padding: 20px;
  }

  .section-title h2,
  .cta-box h2,
  .modal-dialog h2 {
    font-size: 24px;
  }

  .install-step-copy h3 {
    font-size: 20px;
  }

  .feature-group-head h3 {
    font-size: 22px;
  }

  .feature-card h4 {
    font-size: 19px;
  }

  .panel-window,
  .preview-box,
  .info-card,
  .feature-card,
  .cta-box,
  .modal-dialog {
    padding-left: 20px;
    padding-right: 20px;
  }

  .modal-dialog {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .shot-frame {
    max-width: none;
  }
}
