/* Sismik Takip app pages only — keep separate from site.css */

.page-app .site-footer {
  border-top-color: rgb(255 255 255 / 0.08);
  background: #0b0e13;
}

.page-app .site-footer .container {
  color: rgb(168 179 194);
}

.app-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - 12rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  color: #f2f4f7;
  background: #0b0e13;
}

.app-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.app-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.app-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(11 14 19 / 0.35) 0%, rgb(11 14 19 / 0.55) 45%, rgb(11 14 19 / 0.92) 100%),
    radial-gradient(ellipse 55% 45% at 50% 30%, rgb(229 57 53 / 0.2), transparent 70%);
}

.app-hero-inner {
  position: relative;
  width: min(40rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.app-hero-icon {
  display: block;
  width: 9rem;
  height: 9rem;
  margin: 0 auto;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.14),
    0 24px 50px rgb(0 0 0 / 0.55),
    0 0 60px rgb(229 57 53 / 0.3);
}

.app-hero-title {
  margin: 1.6rem 0 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

.app-hero-tagline {
  margin: 0.7rem 0 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgb(254 202 202 / 0.95);
}

.app-hero-summary {
  margin: 1.1rem auto 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgb(242 244 247 / 0.84);
}

.app-highlights {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  max-width: 32rem;
  text-align: left;
}

html[dir="rtl"] .app-highlights {
  text-align: right;
}

.app-highlights li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgb(210 218 228);
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

html[dir="rtl"] .app-highlights li {
  padding: 0.55rem 1.15rem 0.55rem 0;
}

.app-highlights li:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.app-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #e53935;
}

html[dir="rtl"] .app-highlights li::before {
  left: auto;
  right: 0;
}

.app-highlights strong {
  color: #fff;
  font-weight: 600;
}

.app-site-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 28rem;
  margin: 1.75rem auto 0;
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  text-align: left;
  color: #fff;
  border-radius: 1.1rem;
  border: 1px solid rgb(255 255 255 / 0.14);
  background: rgb(19 24 32 / 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgb(0 0 0 / 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

html[dir="rtl"] .app-site-card {
  text-align: right;
}

.app-site-card:hover {
  transform: translateY(-2px);
  border-color: rgb(248 113 113 / 0.55);
  box-shadow: 0 22px 48px rgb(0 0 0 / 0.42);
}

.app-site-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.app-site-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(168 179 194);
}

.app-site-card-host {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.app-site-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.65rem 0.95rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #e53935;
  box-shadow: 0 8px 18px rgb(229 57 53 / 0.35);
}

.app-site-card:hover .app-site-card-cta {
  background: #ef5350;
}

.app-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.35rem 0 0;
  font-size: 0.875rem;
  color: rgb(168 179 194);
}

.app-hero-meta a {
  color: rgb(242 244 247 / 0.88);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.app-hero-meta a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .app-hero {
    min-height: calc(100svh - 12rem);
    padding: 3rem 0;
  }

  .app-hero-icon {
    width: 7rem;
    height: 7rem;
    border-radius: 1.55rem;
  }

  .app-site-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  html[dir="rtl"] .app-site-card {
    text-align: center;
  }

  .app-site-card-cta {
    justify-content: center;
  }
}
