/* My Sonic Studio — cool, stable, responsive (keeps all elements) */

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

:root{
  --bg0:#07070a;
  --bg1:#0b0b10;
  --panel:rgba(12, 12, 16, 0.72);
  --line:rgba(255,255,255,0.10);
  --line2:rgba(255,255,255,0.14);
  --text:rgba(255,255,255,0.92);
  --muted:rgba(255,255,255,0.62);
  --muted2:rgba(255,255,255,0.78);
  --shadow:0 30px 90px rgba(0,0,0,0.48);
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 55%, var(--bg0) 100%);
  line-height:1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Premium atmosphere (neutral blacks, not neon) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1100px 720px at 18% 10%, rgba(255,255,255,0.07), transparent 60%),
    radial-gradient(900px 600px at 82% 35%, rgba(255,255,255,0.05), transparent 58%),
    radial-gradient(900px 650px at 35% 92%, rgba(255,255,255,0.04), transparent 62%);
  opacity:1;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:0.06;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Layout */
.wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.card{
  width: min(920px, 100%);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2.35rem);
  position: relative;
  overflow:hidden;
}

/* Subtle inner highlight */
.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background: radial-gradient(700px 280px at 20% 0%, rgba(255,255,255,0.10), transparent 55%);
  opacity:0.6;
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns: auto 1fr;
  align-items:center;
  gap: 1.25rem 1.4rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.brand{
  position: relative;
  display:grid;
  place-items:center;
}

/* This frame makes a non-transparent logo look intentional */
.logoFrame{
  width: clamp(110px, 10vw, 140px);
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.0));
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  position:absolute;
  inset:auto;
}

/* Actual image sits on top of frame */
.logo{
  width: clamp(110px, 10vw, 140px);
  height: auto;
  display:block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 14px 32px rgba(0,0,0,0.55));
}

/* Title */
.headline h1{
  margin:0;
  font-size: clamp(2.0rem, 3.6vw, 3.0rem);
  letter-spacing: -0.03em;
  font-weight: 760;
}

.kicker{
  margin: 0.25rem 0 0 0;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* Copy */
.tagline{
  margin: 0.15rem 0 1.2rem 0;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  color: rgba(255,255,255,0.86);
  max-width: 68ch;
  position: relative;
  z-index: 1;
}

/* Bullets */
.bullets{
  list-style:none;
  padding:0;
  margin: 0 0 1.55rem 0;
  display:grid;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.bullets li{
  position:relative;
  padding-left: 1.15rem;
  color: var(--muted2);
  font-size: 1rem;
}

.bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.62em;
  width:7px;
  height:7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

/* Actions */
.actions{
  display:flex;
  flex-wrap:wrap;
  gap: 0.8rem;
  margin-bottom: 1.05rem;
  position: relative;
  z-index: 1;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line2);
  text-decoration:none;
  font-weight: 680;
  letter-spacing: -0.01em;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease, opacity 140ms ease;
  color: rgba(255,255,255,0.90);
}

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

.primary{
  background: rgba(255,255,255,0.92);
  color: #0a0a0d;
  border-color: rgba(255,255,255,0.18);
}
.primary:hover{ opacity: 0.96; }

.ghost{
  background: transparent;
}
.ghost:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.24);
}

/* Footer */
.footer{
  display:flex;
  flex-wrap:wrap;
  gap: 0.75rem 1.25rem;
  align-items:center;
  justify-content:space-between;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  position: relative;
  z-index: 1;
}

.footer-links a{
  color: rgba(255,255,255,0.62);
  text-decoration:none;
}
.footer-links a:hover{
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dot{ opacity:0.5; }

.meta{
  font-size: 0.93rem;
  color: rgba(255,255,255,0.56);
}

/* Desktop refinement */
@media (min-width: 880px){
  .card{ padding: 2.55rem; }

  .bullets{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.35rem;
    margin-bottom: 1.85rem;
  }
}

/* Mobile: stack header nicely */
@media (max-width: 640px){
  .hero{
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1rem;
  }
  .brand{
    justify-self: start;
  }
  .actions{
    width: 100%;
  }
  .btn{
    width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn{ transition: none; }
  .btn:hover{ transform:none; }
}