/* GE UI PASS 2025-10-31 */
:root {
  --ge-red-1: #9d1d21;
  --ge-red-2: #d91f26;
  --ge-black: #21201f;
  --surface: #f7f5f2;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cairo", "Noto Kufi", sans-serif;
  background: var(--surface);
  color: var(--ge-black);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 245, 242, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(33, 32, 31, 0.08);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 20px;
}

.brand .mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ge-red-1), var(--ge-red-2));
  color: #fff;
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a,
.site-nav button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.site-nav a {
  background: linear-gradient(135deg, var(--ge-red-1), var(--ge-red-2));
  color: #fff;
  text-decoration: none;
}

.site-nav button {
  background: rgba(33, 32, 31, 0.08);
  color: var(--ge-black);
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px 72px;
  display: grid;
  gap: 32px;
}

.hero-card {
  position: relative;
  border-radius: 36px;
  padding: clamp(32px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
  box-shadow: 0 24px 48px rgba(33, 32, 31, 0.12);
  border: 1px solid rgba(33, 32, 31, 0.08);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(217, 31, 38, 0.12), transparent 55%),
    radial-gradient(circle at bottom left, rgba(157, 29, 33, 0.1), transparent 60%);
  z-index: 0;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  max-width: 640px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--ge-black);
}

.hero-content p {
  margin: 0;
  font-size: 18px;
  color: rgba(33, 32, 31, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 232px;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(33, 32, 31, 0.08);
  box-shadow: 0 20px 40px rgba(33, 32, 31, 0.12);
  transition: transform 220ms cubic-bezier(0.32, 0.08, 0.24, 1), box-shadow 220ms cubic-bezier(0.32, 0.08, 0.24, 1), border-color 220ms cubic-bezier(0.32, 0.08, 0.24, 1);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(157, 29, 33, 0.22);
  border-color: rgba(217, 31, 38, 0.28);
}

.bento-card:focus-visible {
  outline: none;
  transform: translateY(-6px);
  box-shadow: 0 0 0 3px rgba(217, 31, 38, 0.35), 0 28px 56px rgba(157, 29, 33, 0.24);
  border-color: rgba(217, 31, 38, 0.32);
}

.bento-card:active {
  transform: translateY(-2px) scale(0.995);
}

.bento-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ge-red-1), var(--ge-red-2));
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(217, 31, 38, 0.28);
  flex-shrink: 0;
}

.bento-icon svg {
  width: 30px;
  height: 30px;
}

.bento-text {
  display: grid;
  gap: 6px;
}

.bento-card .label {
  font-size: 0.95rem;
  color: rgba(33, 32, 31, 0.65);
  font-weight: 600;
}

.bento-card .title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ge-black);
}

.bento-card .caption {
  margin: 0;
  color: rgba(33, 32, 31, 0.7);
  line-height: 1.6;
}

.bento-card .meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ge-red-1), var(--ge-red-2));
  color: #fff;
}

.btn-secondary {
  background: rgba(33, 32, 31, 0.1);
  color: var(--ge-black);
}

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

@media (max-width: 640px) {
  .site-header .inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-card {
    border-radius: 24px;
    padding: 28px 24px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .bento-card {
    padding: 24px;
  }
}
