:root {
  --text: #f3efe7;
  --muted: #d5d0c8;
  --gold: #d7ae5b;
  --gold-soft: rgba(215, 174, 91, 0.18);
  --shadow: rgba(0, 0, 0, 0.42);
}

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

html {
  background: #151515;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #151515;
  background:
    radial-gradient(circle at top, rgba(255, 215, 140, 0.08), transparent 22%),
    linear-gradient(180deg, #232124 0%, #151515 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.01),
      rgba(255, 255, 255, 0.01) 2px,
      transparent 2px,
      transparent 6px
    ),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 55%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.page {
  width: min(1040px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: #151515;
  box-shadow: 0 24px 80px var(--shadow);
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 24px 72px;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.5), rgba(18, 18, 18, 0.18) 28%, rgba(18, 18, 18, 0.62) 100%),
    url("images/background2.png") center 62% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.06) 30%, rgba(10, 10, 10, 0.52)),
    radial-gradient(circle at 76% 34%, rgba(255, 190, 90, 0.2), transparent 18%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  text-align: center;
  padding-top: 0;
}

.logo {
  display: block;
  width: min(255px, 56vw);
  margin: 0 auto 6px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.brand-name {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5efe3;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  line-height: 1;
  margin-top: 4px;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.02;
  color: #f7f1e6;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  margin-top: 20px;
}

.hero-subhead {
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--gold);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.section-divider::after {
  content: "";
  display: block;
  width: 360px;
  max-width: 78vw;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(215, 174, 91, 0),
    rgba(246, 220, 151, 0.95) 50%,
    rgba(215, 174, 91, 0)
  );
  box-shadow: 0 0 12px rgba(215, 174, 91, 0.28);
}

.hero-copy {
  max-width: 740px;
  margin: 18px auto 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1rem, 1.9vw, 1.32rem);
  line-height: 1.75;
  color: #f2ede3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.connect-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 190px;
  margin-top: 24px;
  padding: 16px 28px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fbf6ec;
  border: 1px solid rgba(214, 174, 90, 0.5);
  background:
    linear-gradient(180deg, rgba(84, 66, 44, 0.92), rgba(57, 45, 31, 0.96)),
    var(--gold-soft);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 10px 24px rgba(0, 0, 0, 0.34);
}

.content-panel {
  position: relative;
  margin-top: -1px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(180deg, #262328 0%, #161618 100%);
  border-top: 1px solid rgba(215, 174, 91, 0.35);
}

.content-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 54px 26px 40px;
  text-align: center;
}

.content-inner h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 600;
  color: var(--gold);
}

.section-copy {
  max-width: 820px;
  margin: 18px auto 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.94rem, 1.6vw, 1.1rem);
  line-height: 1.8;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.panel-divider {
  width: 100%;
  height: 2px;
  margin: 28px 0 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(215, 174, 91, 0),
    rgba(246, 220, 151, 0.6) 12%,
    rgba(246, 220, 151, 0.95) 50%,
    rgba(246, 220, 151, 0.6) 88%,
    rgba(215, 174, 91, 0)
  );
  box-shadow: 0 0 14px rgba(215, 174, 91, 0.22);
}

.card {
  padding: 20px 18px 22px;
  min-height: 206px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.045), transparent 30%),
    radial-gradient(circle at 80% 72%, rgba(255, 255, 255, 0.03), transparent 34%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.018) 0 2px,
      rgba(0, 0, 0, 0.018) 2px 4px,
      transparent 4px 8px
    ),
    linear-gradient(180deg, rgba(60, 60, 64, 0.42), rgba(32, 32, 36, 0.5)),
    linear-gradient(180deg, #34343a 0%, #232328 55%, #1c1c20 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 0 38px rgba(255, 255, 255, 0.02);
}

.card-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  font-weight: 600;
  color: #f3ede2;
}

.card p {
  margin-top: 10px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

.footer {
  padding: 36px 0 10px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #f3efe6;
}

@media (max-width: 760px) {
  .hero {
    min-height: 720px;
    padding: 14px 16px 48px;
    background-position: center 55%;
  }

  .logo {
    width: min(220px, 62vw);
    margin-bottom: 4px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .content-inner {
    padding: 42px 16px 28px;
  }
}
