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

body {
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: #f5efe2;
  background:
    radial-gradient(circle at 18% 14%, rgba(34, 58, 96, 0.26) 0 12%, transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(96, 24, 28, 0.2) 0 10%, transparent 30%),
    linear-gradient(180deg, #030407 0%, #070b13 48%, #11070a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  /* background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px); */
  background-size: 4px 4px;
  opacity: 0.18;
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 1.6rem 1rem 2.8rem;
}

header {
  text-align: center;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.brand-seal {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  border: 2px solid rgba(225, 200, 155, 0.85);
  box-shadow: 0 0 0 3px rgba(17, 21, 31, 0.7);
  object-fit: cover;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
}

header p {
  margin-top: 0.5rem;
  color: rgba(238, 224, 199, 0.95);
  font-size: 0.94rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  width: min(100%, 1024px);
  margin: 0 auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  color: #f8f1e3;
  text-decoration: none;
  background: rgba(188, 194, 190, 0.14);
  border: 1.5px solid rgba(244, 236, 224, 0.72);
  box-shadow: 0 12px 24px rgba(10, 12, 20, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(244, 236, 224, 0.18);
  border-color: rgba(255, 247, 233, 0.92);
}

.social-link:focus-visible {
  outline: 2px solid rgba(255, 247, 233, 0.55);
  outline-offset: 3px;
}

.social-icon {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.card {
  display: flex;
  align-items: stretch;
  width: 80%;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(147, 157, 164, 0.34);
  border: 1px solid rgba(233, 224, 211, 0.22);
  box-shadow: 0 18px 40px rgba(10, 12, 20, 0.35);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.card-sidebar {
  flex: 0 0 20%;
  width: 20%;
  min-width: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  background: rgba(16, 22, 32, 0.2);
  border-right: 1px solid rgba(238, 224, 199, 0.2);
}

.card > .card-sidebar:last-child {
  border-right: 0;
  border-left: 1px solid rgba(238, 224, 199, 0.2);
}

.card-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(224, 200, 162, 0.85);
  background: radial-gradient(circle at 35% 30%, #9fb6d2 0, #455c7a 32%, #2f3f56 67%, #18202b 100%);
  box-shadow: 0 0 0 2px rgba(29, 38, 54, 0.8);
  flex-shrink: 0;
}

.card-body {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.card-body h2 {
  color: #f7f0e2;
  font-size: 1.16rem;
  font-weight: 700;
}

.card-body p {
  color: rgba(246, 237, 224, 0.94);
  font-size: 0.98rem;
  line-height: 1.3;
}

.claim {
  width: 100%;
}

.feature {
  min-height: 246px;
}

.feature .card-body {
  text-align: left;
  align-items: flex-start;
}
/* 
.feature .card-body p {
  max-width: 30ch;
  line-height: 1.95;
} */

.card-btn {
  margin-top: 0.2rem;
  border: 0;
  border-radius: 6px;
  padding: 0.55rem 1rem;
  font-size: 0.93rem;
  color: #f5efe2;
  background: rgba(244, 236, 224, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 243, 220, 0.25);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.card-btn:hover {
  background: rgba(244, 236, 224, 0.28);
}

.compact {
  min-height: 84px;
}

.compact .card-body {
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

@media (max-width: 640px) {
  .page {
    padding: 1.15rem 0.8rem 2rem;
  }

  .cards {
    width: 100%;
  }

  .social-links {
    margin-top: 1.6rem;
  }

  .card-sidebar {
    min-width: 76px;
  }

  .card-body p {
    font-size: 0.95rem;
  }
}

@media (max-width: 520px) {
  .card {
    flex-direction: column;
  }

  .card-sidebar,
  .card-body {
    width: 100%;
  }

  .card-sidebar {
    min-width: 0;
    padding: 0.8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(238, 224, 199, 0.2);
  }

  .card > .card-sidebar:last-child {
    border-left: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(238, 224, 199, 0.2);
  }

  .feature .card-body {
    align-items: flex-start;
    text-align: left;
  }

  .feature .card-body p {
    max-width: 100%;
  }
}