﻿:root{
  --bg:#050706;
  --panel:#0b100e;
  --panel2:#101613;
  --mint:#19f5a1;
  --mint2:#57ffc1;
  --white:#f5f7f6;
  --gray:#8d9893;
  --line:#20312a;
  --danger:#ff4d67;
}

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

html{
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(circle at 50% -10%,rgba(25,245,161,.13),transparent 35%),
    var(--bg);
  color:var(--white);
  font-family:Arial,Helvetica,sans-serif;
  overflow-x:hidden;
}

.noise{
  pointer-events:none;
  position:fixed;
  inset:0;
  opacity:.025;
  z-index:999;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav{
  width:100%;
  max-width:1300px;
  margin:auto;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

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

.brand-mark{
  font-size:24px;
  font-weight:1000;
  letter-spacing:-2px;
  color:var(--mint);
}

.brand strong,
.brand span{
  display:block;
  font-size:10px;
  letter-spacing:2px;
}

.brand span{
  color:var(--gray);
  margin-top:3px;
}

nav{
  display:flex;
  gap:26px;
}

nav a{
  color:#aab5b0;
  text-decoration:none;
  font-size:10px;
  font-weight:bold;
  letter-spacing:1.5px;
}

nav a:hover{
  color:var(--mint);
}

.hero{
  max-width:1300px;
  margin:auto;
  min-height:680px;
  padding:80px 45px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:40px;
}

.eyebrow{
  font-size:10px;
  letter-spacing:3px;
  font-weight:900;
  color:var(--mint);
  margin-bottom:22px;
}

.dot{
  width:7px;
  height:7px;
  background:var(--mint);
  border-radius:50%;
  display:inline-block;
  margin-right:8px;
  box-shadow:0 0 15px var(--mint);
}

h1{
  font-size:clamp(55px,8vw,108px);
  line-height:.82;
  letter-spacing:-7px;
  max-width:750px;
}

h1 em{
  color:var(--mint);
  font-style:normal;
}

.hero-text{
  max-width:600px;
  color:#9ba59f;
  font-size:17px;
  line-height:1.6;
  margin-top:32px;
}

.hero-buttons{
  display:flex;
  gap:12px;
  margin-top:32px;
  flex-wrap:wrap;
}

.btn{
  border:0;
  padding:15px 21px;
  font-size:10px;
  font-weight:1000;
  letter-spacing:1.5px;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.2s;
}

.primary{
  background:var(--mint);
  color:#00120b;
}

.primary:hover{
  background:#fff;
  transform:translateY(-2px);
}

.secondary{
  border:1px solid #2b4037;
  color:var(--white);
  background:#0b100e;
}

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

.disclaimer{
  margin-top:22px;
  color:#5d6863;
  max-width:590px;
  font-size:8px;
  line-height:1.5;
  letter-spacing:1px;
}

.hero-emblem{
  width:min(440px,90vw);
  aspect-ratio:1;
  margin:auto;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ring{
  position:absolute;
  inset:15px;
  border-radius:50%;
  border:2px solid #31453d;
}

.ring-one{
  border-top-color:var(--mint);
  border-right-color:var(--mint);
  transform:rotate(28deg);
  box-shadow:0 0 30px rgba(25,245,161,.15);
}

.ring-two{
  inset:35px;
  border-color:#16241f;
  border-left-color:var(--mint);
  transform:rotate(-30deg);
}

.scales{
  position:absolute;
  top:70px;
  width:180px;
  height:110px;
}

.scale-pole{
  position:absolute;
  width:5px;
  height:92px;
  left:87px;
  background:var(--white);
}

.scale-bar{
  position:absolute;
  top:12px;
  left:20px;
  width:140px;
  height:4px;
  background:var(--white);
}

.pan{
  position:absolute;
  top:50px;
  border:2px solid var(--mint);
  border-radius:0 0 50% 50%;
  width:62px;
  height:25px;
  font-size:6px;
  text-align:center;
  padding-top:8px;
  color:var(--mint);
  font-weight:bold;
}

.pan:before{
  content:"";
  position:absolute;
  height:42px;
  width:1px;
  background:#dce6e1;
  left:50%;
  bottom:21px;
}

.left{left:0}
.right{right:0}

.pvh{
  font-size:104px;
  font-weight:1000;
  letter-spacing:-12px;
  color:#fff;
  text-shadow:4px 4px 0 #16241f;
}

.pvh::first-letter{
  color:var(--mint);
}

.emblem-bottom{
  position:absolute;
  bottom:75px;
  font-size:10px;
  letter-spacing:5px;
  color:var(--mint);
  font-weight:bold;
}

.stats{
  max-width:1200px;
  margin:0 auto 80px;
  padding:0 30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.stat{
  padding:30px;
  text-align:center;
  border-right:1px solid var(--line);
}

.stat:last-child{
  border-right:0;
}

.stat-number{
  display:block;
  font-size:35px;
  font-weight:1000;
  color:var(--mint);
}

.stat-label{
  display:block;
  margin-top:8px;
  color:#64716b;
  font-size:8px;
  letter-spacing:2px;
  font-weight:bold;
}

.section{
  max-width:1100px;
  margin:auto;
  padding:100px 30px;
}

.section-heading{
  max-width:700px;
  margin-bottom:45px;
}

.section-heading h2{
  font-size:clamp(38px,6vw,70px);
  letter-spacing:-4px;
  line-height:.9;
}

.section-heading p{
  color:#8b9690;
  margin-top:20px;
  line-height:1.6;
  font-size:15px;
}

.petition-card,
.scanner-card{
  border:1px solid var(--line);
  background:linear-gradient(135deg,#0d1411,#080c0a);
  padding:35px;
  display:grid;
  grid-template-columns:120px 1fr;
  gap:35px;
}

.petition-icon{
  font-size:70px;
  color:var(--mint);
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

label{
  display:block;
  color:#78847e;
  font-size:9px;
  letter-spacing:2px;
  font-weight:bold;
  margin-bottom:8px;
  margin-top:12px;
}

label small{
  color:var(--mint);
}

input{
  width:100%;
  background:#050806;
  border:1px solid #263831;
  color:white;
  padding:15px;
  outline:0;
  font-size:14px;
}

input:focus{
  border-color:var(--mint);
}

.form-actions{
  display:flex;
  gap:10px;
  margin-top:20px;
  flex-wrap:wrap;
}

.message{
  margin-top:15px;
  color:var(--mint);
  font-size:11px;
}

.ledger-preview{
  margin-top:20px;
  border:1px solid var(--line);
}

.ledger-header{
  display:flex;
  justify-content:space-between;
  padding:13px 18px;
  color:#59645f;
  font-size:8px;
  letter-spacing:2px;
  border-bottom:1px solid var(--line);
}

.signer{
  display:flex;
  justify-content:space-between;
  padding:17px 18px;
  border-bottom:1px solid rgba(255,255,255,.04);
  font-size:12px;
}

.signer:last-child{
  border:0;
}

.signed{
  color:var(--mint);
  font-size:9px;
  letter-spacing:1px;
}

.scanner-card{
  display:block;
}

.scanner-top{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

.small-label{
  color:#66736c;
  font-size:8px;
  letter-spacing:2px;
}

.address{
  font-family:monospace;
  color:var(--mint);
  margin-top:8px;
  word-break:break-all;
}

.scan-status{
  margin-top:30px;
  padding:12px;
  background:#050806;
  border:1px solid #1d2d26;
  color:#65736b;
  font-size:9px;
  letter-spacing:1px;
}

.scan-results{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin-top:20px;
  background:var(--line);
}

.result{
  background:#080d0a;
  padding:25px;
  text-align:center;
}

.result span{
  display:block;
  font-size:32px;
  font-weight:1000;
  color:var(--mint);
}

.result small{
  display:block;
  margin-top:7px;
  color:#66716c;
  font-size:8px;
  letter-spacing:1px;
}

.scan-details{
  margin-top:20px;
  color:#78847e;
  font-family:monospace;
  font-size:10px;
  line-height:1.7;
  max-height:260px;
  overflow:auto;
}

.evidence-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1px;
  background:var(--line);
}

.evidence-grid article{
  background:#080d0a;
  padding:35px;
  min-height:220px;
}

.card-number{
  color:var(--mint);
  font-size:10px;
  letter-spacing:2px;
  margin-bottom:40px;
}

.evidence-grid h3{
  font-size:24px;
  letter-spacing:-1px;
}

.evidence-grid p{
  color:#78847e;
  line-height:1.6;
  margin-top:12px;
  font-size:13px;
}

.manifesto{
  max-width:900px;
  margin:80px auto;
  padding:100px 30px;
  text-align:center;
}

.manifesto-mark{
  font-size:100px;
  font-weight:1000;
  color:var(--mint);
  letter-spacing:-12px;
}

.manifesto h2{
  font-size:55px;
  letter-spacing:-4px;
}

.manifesto p{
  color:#84908a;
  max-width:600px;
  margin:20px auto;
  line-height:1.7;
}

.manifesto-line{
  width:100px;
  height:2px;
  background:var(--mint);
  margin:35px auto;
}

.manifesto strong,
.manifesto span{
  display:block;
  font-size:9px;
  letter-spacing:3px;
}

.manifesto strong{
  color:white;
}

.manifesto span{
  color:var(--mint);
  margin-top:8px;
}

footer{
  border-top:1px solid var(--line);
  padding:25px;
  display:flex;
  justify-content:space-between;
  color:#4e5954;
  font-size:8px;
  letter-spacing:1.5px;
  max-width:1200px;
  margin:auto;
}

@media(max-width:800px){

  nav{
    display:none;
  }

  .hero{
    grid-template-columns:1fr;
    padding-top:55px;
  }

  h1{
    letter-spacing:-4px;
  }

  .hero-emblem{
    width:340px;
  }

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

  .stat{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .petition-card{
    grid-template-columns:1fr;
  }

  .petition-icon{
    display:none;
  }

  .scanner-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .scan-results{
    grid-template-columns:1fr;
  }

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

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

/* =========================================================
   PVH LOGO — PULSE / HEARTBEAT EFFECT
   ========================================================= */

.hero-emblem{
  position:relative;
  width:min(520px,90vw);
  aspect-ratio:1;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  isolation:isolate;
}

.pvh-logo{
  position:relative;
  z-index:5;
  width:88%;
  height:88%;
  object-fit:contain;
  display:block;
  filter:
    drop-shadow(0 0 8px rgba(25,245,161,.65))
    drop-shadow(0 0 22px rgba(25,245,161,.38));
  animation:
    pvhHeartbeat 2.4s ease-in-out infinite;
}

.logo-glow{
  position:absolute;
  z-index:1;
  width:72%;
  height:72%;
  border-radius:50%;
  background:radial-gradient(
    circle,
    rgba(25,245,161,.28) 0%,
    rgba(25,245,161,.13) 30%,
    rgba(25,245,161,.05) 52%,
    transparent 72%
  );
  filter:blur(18px);
  animation:
    glowPulse 2.4s ease-in-out infinite;
}

.logo-pulse{
  position:absolute;
  z-index:0;
  width:76%;
  height:76%;
  border-radius:50%;
  border:2px solid rgba(25,245,161,.65);
  opacity:0;
  transform:scale(.65);
  pointer-events:none;
}

.pulse-one{
  animation:
    pulseWave 2.4s ease-out infinite;
}

.pulse-two{
  animation:
    pulseWave 2.4s ease-out infinite .8s;
}

@keyframes pvhHeartbeat{

  0%{
    transform:scale(1);
  }

  8%{
    transform:scale(1.025);
  }

  14%{
    transform:scale(.995);
  }

  20%{
    transform:scale(1.035);
  }

  30%{
    transform:scale(1);
  }

  100%{
    transform:scale(1);
  }
}

@keyframes glowPulse{

  0%{
    opacity:.65;
    transform:scale(.92);
  }

  12%{
    opacity:1;
    transform:scale(1.02);
  }

  25%{
    opacity:.7;
    transform:scale(.96);
  }

  100%{
    opacity:.65;
    transform:scale(.92);
  }
}

@keyframes pulseWave{

  0%{
    opacity:.75;
    transform:scale(.62);
  }

  65%{
    opacity:0;
    transform:scale(1.15);
  }

  100%{
    opacity:0;
    transform:scale(1.15);
  }
}

@media(max-width:800px){

  .hero-emblem{
    width:min(390px,88vw);
  }

  .pvh-logo{
    width:92%;
    height:92%;
  }
}

/* =========================================================
   PVH TOP WALLET / CONTRACT CONTROLS
   Matches the existing PVH mint + dark theme
   ========================================================= */

/* ---------- TOP WALLET AREA ---------- */

.wallet-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 8px;
}

/* Main connect button */

.wallet-connect {
  position: relative;
  min-width: 168px;
  height: 42px;

  padding: 0 17px;

  border: 1px solid rgba(57, 246, 179, .48);
  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(57, 246, 179, .14),
      rgba(8, 18, 14, .96)
    );

  color: #f5faf8;

  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;

  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 0 22px rgba(57,246,179,.07);

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    color .2s ease;
}

/* Little live indicator */

.wallet-connect::before {
  content: "";
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #39f6b3;

  box-shadow:
    0 0 7px #39f6b3,
    0 0 15px rgba(57,246,179,.55);

  flex: 0 0 auto;

  animation:
    pvhWalletPulse 1.8s ease-in-out infinite;
}

.wallet-connect:hover {
  transform: translateY(-1px);

  border-color: #39f6b3;

  color: #39f6b3;

  background:
    linear-gradient(
      135deg,
      rgba(57,246,179,.20),
      rgba(8,18,14,.98)
    );

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 0 28px rgba(57,246,179,.18);
}

.wallet-connect:active {
  transform: translateY(0);
}

/* Connected wallet state */

.wallet-connect.wallet-connected {
  min-width: 150px;

  color: #39f6b3;

  border-color: rgba(57,246,179,.72);

  background:
    linear-gradient(
      135deg,
      rgba(57,246,179,.16),
      rgba(5,14,11,.98)
    );

  box-shadow:
    inset 0 0 0 1px rgba(57,246,179,.05),
    0 0 25px rgba(57,246,179,.12);
}

.wallet-connect.wallet-connected::before {
  animation:
    pvhWalletHeartbeat 1.6s ease-in-out infinite;
}


/* ---------- WALLET DROPDOWN ---------- */

.wallet-dropdown {
  position: absolute;

  top: calc(100% + 10px);
  right: 0;

  width: 280px;

  padding: 16px;

  border: 1px solid rgba(57,246,179,.28);
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(10,20,16,.98),
      rgba(4,10,8,.99)
    );

  box-shadow:
    0 18px 55px rgba(0,0,0,.45),
    0 0 25px rgba(57,246,179,.08);

  backdrop-filter: blur(18px);

  z-index: 100;

  animation:
    pvhDropdownIn .18s ease-out;
}

.wallet-dropdown.hidden {
  display: none;
}

.wallet-dropdown-address {
  display: flex;
  flex-direction: column;
  gap: 7px;

  padding-bottom: 13px;
  margin-bottom: 13px;

  border-bottom: 1px solid rgba(57,246,179,.12);
}

.wallet-dropdown-address span {
  color: #71877d;

  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

.wallet-dropdown-address strong {
  color: #f5faf8;

  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;

  word-break: break-all;
}

.wallet-dropdown #disconnectWalletButton,
#disconnectWalletButton {
  width: 100%;

  padding: 10px 13px;

  border: 1px solid rgba(57,246,179,.22);
  border-radius: 9px;

  background: rgba(57,246,179,.035);

  color: #8da39a;

  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .08em;

  cursor: pointer;

  transition:
    border-color .2s ease,
    color .2s ease,
    background .2s ease;
}

.wallet-dropdown #disconnectWalletButton:hover,
#disconnectWalletButton:hover {
  border-color: rgba(57,246,179,.65);

  background: rgba(57,246,179,.08);

  color: #39f6b3;
}


/* ---------- CONTRACT DISPLAY ---------- */

.contract-display {
  display: flex;
  align-items: center;
  gap: 8px;

  white-space: nowrap;
}

.contract-label {
  color: #a8bbb3;

  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: .06em;
}

.contract-button {
  min-width: 70px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 8px 11px;

  border: 1px solid rgba(57,246,179,.30);
  border-radius: 8px;

  background:
    linear-gradient(
      135deg,
      rgba(57,246,179,.08),
      rgba(5,12,9,.95)
    );

  color: #39f6b3;

  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .06em;

  cursor: pointer;

  box-shadow:
    0 0 15px rgba(57,246,179,.04);

  transition:
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.contract-button:hover {
  transform: translateY(-1px);

  border-color: #39f6b3;

  background:
    linear-gradient(
      135deg,
      rgba(57,246,179,.15),
      rgba(5,12,9,.98)
    );

  box-shadow:
    0 0 20px rgba(57,246,179,.11);
}

.contract-button:active {
  transform: translateY(0);
}

.contract-button .copy-icon {
  color: #71877d;
  font-size: 12px;
  line-height: 1;
}

.contract-button:hover .copy-icon {
  color: #39f6b3;
}


/* ---------- CONTRACT BANNER ---------- */

.contract-banner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;

  min-height: 88px;

  padding: 20px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid rgba(57,246,179,.12);
  border-bottom: 1px solid rgba(57,246,179,.12);

  background:
    linear-gradient(
      90deg,
      rgba(57,246,179,.035),
      rgba(57,246,179,.01),
      transparent
    );
}

.contract-banner > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contract-banner > div:first-child span {
  color: #71877d;

  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .10em;
}

.contract-banner > div:first-child strong {
  color: #f5faf8;

  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
}

.contract-banner .contract-status {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #39f6b3;

  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
}

.contract-banner .status-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #39f6b3;

  box-shadow:
    0 0 8px #39f6b3;

  animation:
    pvhWalletPulse 1.8s ease-in-out infinite;
}


/* ---------- ANIMATIONS ---------- */

@keyframes pvhWalletPulse {
  0%, 100% {
    opacity: .55;
    transform: scale(.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes pvhWalletHeartbeat {
  0%, 100% {
    transform: scale(.9);
    box-shadow:
      0 0 6px #39f6b3,
      0 0 12px rgba(57,246,179,.25);
  }

  25% {
    transform: scale(1.18);
    box-shadow:
      0 0 9px #39f6b3,
      0 0 20px rgba(57,246,179,.5);
  }

  40% {
    transform: scale(.95);
  }

  55% {
    transform: scale(1.08);
  }
}

@keyframes pvhDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ---------- MOBILE ---------- */

@media (max-width: 900px) {

  .wallet-connect {
    min-width: 145px;
  }

  .contract-display {
    display: none;
  }

}

@media (max-width: 640px) {

  .wallet-connect {
    min-width: 46px;
    width: 46px;

    padding: 0;
    font-size: 0;
  }

  .wallet-connect::before {
    margin: 0;
  }

  .wallet-connect.wallet-connected {
    min-width: 46px;
    width: 46px;
  }

  .wallet-dropdown {
    right: -8px;
    width: 270px;
  }

}
