.site-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-brand img {
  height: 28px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent-dark);
}

.site-nav .site-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
}

.site-footer {
  margin-top: 48px;
  padding: 28px 24px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 12px;
}

.site-footer a {
  text-decoration: none;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent-dark);
}

.index-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 36px 32px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(42, 181, 146, 0.34), transparent 32%),
    linear-gradient(135deg, #101623 0%, #132d3f 52%, #0f6c5a 100%);
  border: 0;
  box-shadow: var(--shadow);
}

.index-hero::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -96px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.index-hero > * {
  position: relative;
  z-index: 1;
}

.index-hero .eyebrow {
  margin: 0 0 12px;
  color: #85f2d5;
}

.index-hero h1 {
  margin: 0 0 14px;
  max-width: 720px;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.index-hero .lede {
  margin: 0 0 20px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.index-search {
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.index-search::placeholder {
  color: var(--muted);
}

.index-list-section {
  padding: 28px 32px 32px;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.index-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
}

.index-card strong {
  font-size: 15px;
}

.index-card span {
  color: var(--muted);
  font-size: 13px;
}

.popular-esim-device-card img {
  width: 100%;
  max-height: 88px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--panel-2);
}

.operator-card__logo,
.operator-hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.operator-card__logo {
  width: 104px;
  height: 76px;
  padding: 12px;
}

.operator-card__logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.operator-hero__logo {
  width: 200px;
  height: 140px;
  padding: 20px;
}

.operator-hero__logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 720px) {
  .site-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .index-hero {
    padding: 28px 22px 24px;
  }

  .index-list-section {
    padding: 22px 20px 24px;
  }
}
