body.page-home .page {
  gap: 28px;
}

body.page-home h1.glitch {
  position: relative;
  margin: 16px 0 10px;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  line-height: 0.95;
  color: #fff;
  animation: glitch 1s infinite;
}

body.page-home h1.glitch::before,
body.page-home h1.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  background: transparent;
  color: #fff;
  clip: rect(0, 900px, 0, 0);
  pointer-events: none;
}

body.page-home h1.glitch::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
  color: #111;
}

body.page-home h1.glitch::after {
  animation: glitchBottom 2.5s infinite linear alternate-reverse;
  color: var(--brand);
}

.hero-points {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: #ddd;
}

.services .card {
  min-height: 132px;
}

.trust-list {
  display: grid;
  gap: 8px;
  color: var(--muted);
  text-align: left;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row .material-symbols-outlined {
  color: var(--brand);
  font-size: 20px;
}

.contact-section {
  display: grid;
  gap: 14px;
}

.contact-pair {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01));
}

.contact-left,
.contact-right {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.social-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

body.page-404 .page {
  max-width: 980px;
}

body.page-404 .hero {
  padding: 24px 18px 30px;
}

body.page-404 .logo img {
  height: 125px;
  margin: 0 auto 12px;
}

body.page-404 .glitch {
  position: relative;
  margin: 16px 0 8px;
  font-size: clamp(3.4rem, 16vw, 7rem);
  line-height: 0.95;
  color: #fff;
  animation: glitch 1s infinite;
}

body.page-404 .glitch::before,
body.page-404 .glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  background: transparent;
  clip: rect(0, 900px, 0, 0);
  pointer-events: none;
}

body.page-404 .glitch::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
  color: #111;
}

body.page-404 .glitch::after {
  animation: glitchBottom 2.5s infinite linear alternate-reverse;
  color: var(--brand);
}

body.page-404 .actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.page-privacy .logo img {
  height: 100px;
  margin: 0 auto 10px;
}

body.page-privacy .hero {
  padding: 18px 18px 24px;
}

.title {
  margin: 14px 0 8px;
  font-size: clamp(2rem, 6vw, 3.3rem);
  line-height: 1;
}

.policy-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-card {
  border-radius: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.03), transparent 40%),
    linear-gradient(180deg, var(--card), var(--card-2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.policy-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.25rem;
}

.policy-card p {
  margin: 0 0 10px;
}

.policy-card ul {
  margin: 0 0 10px;
  padding-left: 18px;
}

@media (min-width: 768px) {
  .contact-pair {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .contact-right {
    width: 100%;
    justify-content: flex-end;
  }
}
