@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root{
  --gold:#d7b45a;
  --gold2:#f6df9a;
  --dark:#050304;
  --soft:#f7efe2;
}

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

html,body{
  min-height:100%;
}

body{
  background:
    radial-gradient(circle at 50% 8%, rgba(246,223,154,.17), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(126,73,111,.24), transparent 34%),
    radial-gradient(circle at 100% 5%, rgba(81,32,66,.35), transparent 34%),
    linear-gradient(135deg,#050304 0%,#160814 45%,#050304 100%);
  color:var(--soft);
  font-family:'Montserrat', Arial, sans-serif;
  overflow-x:hidden;
}

.page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:42px 18px;
  position:relative;
  isolation:isolate;
}

.page::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(215,180,90,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215,180,90,.035) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(circle at center, black, transparent 78%);
  z-index:-3;
}

.page::after{
  content:"";
  position:absolute;
  width:760px;
  height:760px;
  border:1px solid rgba(215,180,90,.14);
  border-radius:50%;
  box-shadow:0 0 90px rgba(215,180,90,.10);
  z-index:-2;
}

.gold-line{
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  border:1px solid rgba(215,180,90,.22);
  z-index:-1;
}

.gold-line-1{
  left:-260px;
  top:-170px;
  box-shadow:0 0 60px rgba(215,180,90,.10);
}

.gold-line-2{
  right:-260px;
  bottom:-210px;
  box-shadow:0 0 60px rgba(215,180,90,.10);
}

.card{
  width:min(860px, 100%);
  text-align:center;
  padding:48px 42px 34px;
  border:1px solid rgba(215,180,90,.30);
  border-radius:34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    rgba(4,3,4,.70);
  box-shadow:
    0 30px 90px rgba(0,0,0,.55),
    inset 0 0 80px rgba(215,180,90,.045);
  backdrop-filter: blur(16px);
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:12px;
  border:1px solid rgba(215,180,90,.12);
  border-radius:26px;
  pointer-events:none;
}

.card::after{
  content:"";
  position:absolute;
  top:-120px;
  left:50%;
  transform:translateX(-50%);
  width:420px;
  height:220px;
  background:radial-gradient(circle, rgba(246,223,154,.18), transparent 68%);
  pointer-events:none;
}

.logo-wrap{
  width:190px;
  height:190px;
  margin:0 auto 24px;
  border-radius:50%;
  padding:8px;
  background:linear-gradient(135deg, rgba(246,223,154,.55), rgba(103,68,18,.28), rgba(246,223,154,.30));
  box-shadow:0 0 42px rgba(215,180,90,.20);
}

.logo-wrap img{
  width:100%;
  height:100%;
  display:block;
  border-radius:50%;
  object-fit:contain;
  background:#000;
}

.eyebrow{
  color:var(--gold);
  letter-spacing:5px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

h1{
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:clamp(48px, 7vw, 86px);
  line-height:.95;
  font-weight:700;
  letter-spacing:.5px;
  color:#fff8e9;
  text-shadow:0 0 28px rgba(215,180,90,.16);
}

h1 span{
  color:var(--gold2);
}

p{
  max-width:660px;
  margin:26px auto 0;
  color:rgba(247,239,226,.82);
  font-size:18px;
  line-height:1.85;
}

.divider{
  margin:30px auto 30px;
  width:min(360px, 80%);
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(215,180,90,.75), transparent);
  position:relative;
}

.divider span{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) rotate(45deg);
  width:12px;
  height:12px;
  background:var(--gold);
  box-shadow:0 0 22px rgba(215,180,90,.6);
}

.actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  min-width:190px;
  padding:15px 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.3px;
  transition:.25s ease;
}

.btn.primary{
  color:#090604;
  background:linear-gradient(135deg, #ffe9a9, #c59632);
  box-shadow:0 12px 30px rgba(215,180,90,.18);
}

.btn.ghost{
  color:var(--gold2);
  border:1px solid rgba(215,180,90,.52);
  background:rgba(255,255,255,.035);
}

.btn:hover{
  transform:translateY(-3px);
}

.footer{
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid rgba(215,180,90,.12);
  display:flex;
  justify-content:center;
  gap:26px;
  flex-wrap:wrap;
  color:rgba(247,239,226,.58);
  font-size:14px;
}

@media(max-width:640px){
  .page{
    padding:22px 14px;
    align-items:flex-start;
  }

  .card{
    padding:34px 20px 26px;
    border-radius:24px;
  }

  .logo-wrap{
    width:150px;
    height:150px;
  }

  .eyebrow{
    font-size:11px;
    letter-spacing:3px;
  }

  p{
    font-size:15.5px;
    line-height:1.75;
  }

  .btn{
    width:100%;
  }

  .footer{
    gap:10px;
    flex-direction:column;
  }
}
