/* PCMOD main landing page */

:root{
  --bg:#07111f;
  --bg2:#0a1524;
  --panel:#0d1a2c;
  --panel2:#12233a;
  --gold:#d7b56d;
  --gold2:#f0d99c;
  --text:#f6f8fb;
  --muted:#9da9ba;
  --line:rgba(255,255,255,.1);
  --line-gold:rgba(215,181,109,.35);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-height:100vh;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 80% 4%,rgba(215,181,109,.12),transparent 25%),
    radial-gradient(circle at 10% 80%,rgba(65,112,170,.10),transparent 28%),
    linear-gradient(180deg,var(--bg),#091523 58%,#07101c);
}

a{
  color:inherit;
}

.topbar{
  min-height:76px;
  padding:14px 4vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
  background:rgba(7,17,31,.78);
  backdrop-filter:blur(16px);
}

.brand,
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-mark{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid var(--gold);
  color:var(--gold2);
  font-weight:900;
  letter-spacing:.04em;
}

.small-mark{
  width:38px;
  height:38px;
}

.brand-copy,
.footer-brand>span:last-child{
  display:flex;
  flex-direction:column;
}

.brand strong,
.footer-brand strong{
  letter-spacing:.02em;
}

.brand small,
.footer-brand small,
.country{
  color:var(--muted);
}

.country{
  font-size:12px;
  letter-spacing:.18em;
  font-weight:800;
}

main{
  max-width:1500px;
  margin:0 auto;
  padding:0 4vw 64px;
}

.hero{
  min-height:390px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:900px;
  padding:62px 0 48px;
}

.eyebrow{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;
}

.hero h1{
  margin:14px 0 18px;
  font-size:clamp(56px,8vw,105px);
  line-height:.9;
  letter-spacing:-.045em;
}

.hero p{
  max-width:760px;
  margin:0;
  color:#b7c1cf;
  font-size:clamp(16px,1.5vw,20px);
  line-height:1.7;
}

.choices{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.choice-card{
  min-height:480px;
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  position:relative;
  isolation:isolate;
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.choice-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
}

.choice-card::after{
  content:"";
  position:absolute;
  width:370px;
  height:370px;
  border-radius:999px;
  right:-120px;
  top:-130px;
  z-index:-1;
  filter:blur(4px);
}

.choice-card:hover{
  transform:translateY(-4px);
  border-color:var(--line-gold);
  box-shadow:0 26px 70px rgba(0,0,0,.24);
}

.pc-card::before{
  background:
    linear-gradient(145deg,rgba(15,30,50,.96),rgba(10,20,34,.98));
}

.pc-card::after{
  background:radial-gradient(circle,rgba(97,150,214,.20),transparent 66%);
}

.tcg-card::before{
  background:
    linear-gradient(145deg,rgba(17,31,49,.98),rgba(10,20,34,.98));
}

.tcg-card::after{
  background:radial-gradient(circle,rgba(215,181,109,.24),transparent 66%);
}

.card-top{
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.14em;
  font-weight:800;
}

.card-label{
  color:var(--gold2);
}

.card-body{
  max-width:620px;
  padding:50px 0 36px;
}

.card-body h2{
  margin:12px 0;
  font-size:clamp(42px,5vw,70px);
  letter-spacing:-.04em;
}

.card-body p{
  margin:0;
  max-width:560px;
  color:#aeb9c8;
  line-height:1.75;
  font-size:16px;
}

.social-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.tcg-card .social-actions{
  grid-template-columns:1fr;
}

.action{
  min-height:58px;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:850;
  transition:
    background .15s ease,
    border-color .15s ease,
    transform .15s ease;
}

.action:hover{
  transform:translateY(-1px);
}

.primary-action{
  background:linear-gradient(180deg,var(--gold2),var(--gold));
  color:#08111d;
}

.secondary-action{
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
  color:var(--text);
}

.secondary-action:hover{
  border-color:var(--gold);
}

.arrow{
  font-size:20px;
}

.about-strip{
  margin-top:20px;
  padding:26px 0 0;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--line);
}

.about-strip>div{
  display:grid;
  gap:7px;
}

.about-strip strong{
  font-size:clamp(20px,2.3vw,30px);
}

.about-strip p{
  margin:0;
  color:var(--muted);
}

.footer{
  max-width:1500px;
  margin:0 auto;
  padding:28px 4vw 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.footer p{
  margin:0;
  font-size:13px;
}

@media(max-width:900px){
  .hero{
    min-height:330px;
  }

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

  .choice-card{
    min-height:430px;
  }
}

@media(max-width:620px){
  .topbar{
    min-height:68px;
    padding:11px 16px;
  }

  .brand-mark{
    width:38px;
    height:38px;
  }

  .brand strong{
    font-size:14px;
  }

  .brand small{
    font-size:10px;
  }

  .country{
    font-size:10px;
  }

  main{
    padding-left:16px;
    padding-right:16px;
  }

  .hero{
    min-height:300px;
    padding:44px 0 32px;
  }

  .hero h1{
    font-size:clamp(50px,17vw,72px);
  }

  .hero p{
    font-size:15px;
  }

  .choice-card{
    min-height:390px;
    padding:18px;
    border-radius:18px;
  }

  .card-body{
    padding:40px 0 28px;
  }

  .social-actions{
    grid-template-columns:1fr;
  }

  .about-strip{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer{
    padding-left:16px;
    padding-right:16px;
    align-items:flex-start;
    flex-direction:column;
  }
}


.whatsapp-action{
  border:1px solid rgba(71,211,132,.45);
  background:rgba(37,211,102,.08);
  color:#c9f7da;
}

.whatsapp-action:hover{
  border-color:#25d366;
  background:rgba(37,211,102,.14);
}
