:root{
  --bg: #0ffffff;
  --card: rgba(18, 24, 38, 0.78);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --faint: rgba(255,255,255,0.55);
  --accent: #6ee7ff; /* change to your brand accent */
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}
.bg{
  position: fixed;
  inset: 0;
  z-index: 0;

  /* Brand ombré (visible) */
  background: linear-gradient(
    90deg,
    #D3145A 0%,
    #8D44AD 100%
  );
}

/* New section added to remove vertical banding */
.bg::before{ display:none; }

/* Commented out for removal of vertical banding
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url("assets/mark.svg");
  background-repeat: repeat;
  background-size: 160px 160px;
  background-position: 0 0;


  transform: rotate(-7deg) scale(1.35);
  transform-origin: center;

  opacity: 0.22;             
  mix-blend-mode: multiply;
  pointer-events: none;
}
*/

.bg::after{
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.18); /* controls darkness only */
  pointer-events: none;
}

.wrap{
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 34px 18px 26px;
  max-width: 980px;
  margin: 0 auto;
}

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

.logo{
  width: 120px;
  height: 120px;
  object-fit: contain;

  /* remove frame */
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;

  /* keep shadow (better for transparent logos) */
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.25));
}

.wordmark .name{
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 18px;
  line-height: 1.15;
}

.wordmark .tag{
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.card{
  align-self: center;
  margin-top: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card h1{
  margin: 0 0 10px 0;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.4px;
}

.card p{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 70ch;
}

.divider{
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 18px 0 16px;
}

.details{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.pill{
  font-size: 13px;
  color: var(--faint);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
}

.note{
  margin-top: 4px;
  color: var(--faint);
}

.contact{
  margin-top: 14px;
  font-size: 14px;
}

a{
  color: var(--accent);
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

.foot{
  color: rgba(255,255,255,0.50);
  font-size: 12px;
  padding-bottom: 6px;
}

/* Mobile tweaks */
@media (max-width: 560px){
  .card{
    padding: 22px 18px;
  }

  .logo{
    width: 82px;
    height: 82px;
    padding: 14px;
    border-radius: 16px;
  }

  .brand{
    gap: 16px;
  }
}
