:root{
  --bg: #0b0b0f;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);

  /* warm white text */
  --text: rgba(255,245,225,.92);
  --muted: rgba(255,245,225,.68);

  --line: rgba(255,255,255,.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: #0b0b0f;
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

/* Animated background layer */
.bg-anim{
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(900px 520px at 20% 20%, rgba(255,180,120,.14), transparent 60%),
    radial-gradient(820px 560px at 80% 30%, rgba(120,160,255,.11), transparent 60%),
    radial-gradient(900px 620px at 55% 85%, rgba(255,255,255,.08), transparent 65%);

  filter: blur(10px);
  opacity: 0.95;

  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);

  animation: coneqtGlow 22s linear infinite;
}

@keyframes coneqtGlow{
  0%   { transform: translate(-28px, -18px) scale(1.035); }
  50%  { transform: translate( 28px,  18px) scale(1.065); }
  100% { transform: translate(-28px, -18px) scale(1.035); }
}

/* Respect accessibility preferences */
@media (prefers-reduced-motion: reduce){
  body::before{ animation: none; }
}

.wrap{
  position: relative;  /* added */
  z-index: 1;          /* added */
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 20px 44px;
}

.hero{
  margin-bottom: 24px;
  padding: 18px 6px 10px;
}

.badge{
  display:inline-block;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

h1{
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.06;
  margin: 0 0 10px;
}

.sub{
  margin: 0;
  color: var(--muted);
}

.card{
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card), transparent 140%);
  border-radius: 16px;
  padding: 18px 18px 16px;
  margin: 14px 0;
}

h2{
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
}

h1, h2{
  color: rgba(255,248,235,.96);
}

p{ margin: 0 0 10px; line-height: 1.55; }
p:last-child{ margin-bottom:0; }

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.links{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.link{
  display:inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  text-decoration: none;
  transition: transform .08s ease, background .12s ease;
}

.link:hover{
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}

.email{
  color: var(--text);
  text-decoration: none;
  transition: color .15s ease, text-shadow .15s ease;
}

.email:hover{
  color: rgba(255,252,240,.98);
  text-shadow: 0 0 6px rgba(255,220,160,.25);
}

.grid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.grid img{
  width:100%;
  height:auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.footer{
  margin-top: 22px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  padding: 10px 6px;
}
