:root{
  --bg:#0a0a0d;
  --fg:#f6f6f8;
  --muted:rgba(246,246,248,.72);

  /* Fun but still fashion */
  --pink:#ff2d78;
  --violet:#7a4cff;
  --aqua:#00dcff;
  --lime:#b6ff4a;

  --line:rgba(246,246,248,.14);
  --glass:rgba(10,10,13,.22);
  --glass2:rgba(10,10,13,.66);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: var(--bg);
  color:var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  letter-spacing:.2px;
}

a{color:inherit; text-decoration:none}
.wrap{max-width:1100px; margin:0 auto; padding:0 26px}

/* Grain */
.grain{
  pointer-events:none;
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.10;
  z-index:3;
}

/* HERO: full-bleed image + animated “flash” shimmer */
.hero{
  min-height: 92vh;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background: url("images/hero.jpg") center/cover no-repeat;
}

/* Main dark overlay for readability */
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(1000px 700px at 18% 22%, rgba(10,10,13,.10), rgba(10,10,13,.72) 70%),
    linear-gradient(to bottom, rgba(10,10,13,.18), rgba(10,10,13,.84));
  z-index:1;
}

/* Animated colorful editorial wash (fun, subtle) */
.hero::after{
  content:"";
  position:absolute; inset:-30%;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,45,120,.22), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(122,76,255,.20), transparent 55%),
    radial-gradient(circle at 55% 85%, rgba(0,220,255,.16), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(182,255,74,.10), transparent 55%);
  filter: blur(16px);
  opacity:.65;
  mix-blend-mode: screen;
  z-index:2;
  animation: floatwash 10s ease-in-out infinite alternate;
}

@keyframes floatwash{
  from{ transform: translate3d(-2%, -1%, 0) rotate(-2deg); }
  to  { transform: translate3d(2%, 1%, 0) rotate(2deg); }
}

/* bottom fade */
.hero-bottom-fade{
  position:absolute; left:0; right:0; bottom:-1px; height:140px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index:2;
}

/* Header: magazine-like but with playful glow */
.site-header{
  position:sticky;
  top:0;
  z-index:10;

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

  padding:18px 28px;
  margin: 14px 14px 0;

  border:1px solid rgba(246,246,248,.10);
  border-radius: 22px;
  background: rgba(10,10,13,.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 80px rgba(0,0,0,.35);
}

/* Masthead: tighter, editorial */
.masthead{
  display:flex;
  flex-direction:column;
  line-height: .92;
  text-transform:uppercase;
  letter-spacing:.24em;
  font-weight:800;
}
.masthead-top,
.masthead-bottom{
  font-size:12px;
  opacity:.94;
}

/* tiny underline accent (fun but subtle) */
.masthead-bottom{
  position:relative;
  width:max-content;
}
.masthead-bottom::after{
  content:"";
  position:absolute;
  left:0; right:-8px;
  bottom:-7px;
  height:2px;
  border-radius:99px;
  background: linear-gradient(90deg, rgba(255,45,120,.85), rgba(122,76,255,.75), rgba(0,220,255,.70));
  opacity:.75;
}

/* Nav: hover feels like fashion UI stickers */
.nav{
  display:flex;
  gap:18px;
  align-items:center;
  font-size:11px;
  letter-spacing:.30em;
  text-transform:uppercase;
  color:rgba(246,246,248,.72);
}
.nav a{
  padding:10px 12px;
  border-radius:999px;
  transition: transform .14s ease, background .14s ease, color .14s ease, box-shadow .14s ease;
}
.nav a:hover{
  background: rgba(246,246,248,.10);
  color: var(--fg);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Hero content */
.hero-content{
  position:relative;
  z-index:4; /* above overlay + wash */
  padding: 92px 0 54px;
  width:100%;
}

.kicker{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 0 0 18px;
}
/* === NEW DROP floating badge (magazine sticker) === */
.badge{
  position:absolute;
  z-index:6; /* above overlays */
  top: 118px;
  right: 44px;

  width: 128px;
  height: 128px;
  border-radius: 999px;

  background:
    radial-gradient(circle at 30% 25%, rgba(246,246,248,.26), transparent 55%),
    linear-gradient(135deg, rgba(255,45,120,.36), rgba(122,76,255,.22));
  border: 1px solid rgba(246,246,248,.22);
  box-shadow: 0 26px 80px rgba(0,0,0,.45);

  display:grid;
  place-items:center;
  transform: rotate(10deg);
  animation: badgeFloat 2.8s ease-in-out infinite alternate;
}

.badge-ring{
  position:absolute;
  inset: 10px;
  border-radius: 999px;
  border: 1px dashed rgba(246,246,248,.42);
  opacity:.65;
}

.badge-text{
  text-align:center;
  font-weight:900;
  letter-spacing:.24em;
  text-transform:uppercase;
  font-size: 12px;
  line-height: 1.05;
  color: rgba(246,246,248,.96);
  text-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.badge-text em{
  font-style:normal;
  letter-spacing:.18em;
  opacity:.92;
  display:inline-block;
  margin-top:6px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(10,10,13,.30);
  border: 1px solid rgba(246,246,248,.16);
}

/* Slight wobble like a sticker */
@keyframes badgeFloat{
  from{ transform: rotate(10deg) translateY(0px); }
  to  { transform: rotate(7deg) translateY(-6px); }
}

/* === Scrolling ticker === */
.ticker{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 42px; /* sits above bottom fade */
  z-index:6;

  border-top: 1px solid rgba(246,246,248,.12);
  border-bottom: 1px solid rgba(246,246,248,.12);
  background: rgba(10,10,13,.32);
  backdrop-filter: blur(14px);
  overflow:hidden;
}

.ticker-track{
  display:flex;
  gap: 40px;
  white-space:nowrap;
  padding: 10px 0;

  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(246,246,248,.82);

  animation: tickerMove 18s linear infinite;
}

.ticker-track span{
  display:inline-block;
}

@keyframes tickerMove{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .badge{ animation:none !important; }
  .ticker-track{ animation:none !important; }
}

/* Responsive positioning */
@media (max-width: 900px){
  .badge{
    top: 88px;
    right: 18px;
    width: 110px;
    height: 110px;
  }
  .ticker{
    bottom: 34px;
  }
}

/* Chips become “stickers” */
.chip{
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(246,246,248,.88);
  border:1px solid rgba(246,246,248,.18);
  background: rgba(246,246,248,.08);
  padding:8px 12px;
  border-radius:999px;
  position:relative;
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
}
.chip:hover{
  transform: translateY(-1px) rotate(-.25deg);
  border-color: rgba(255,45,120,.45);
  background: rgba(255,45,120,.10);
}

/* Headline: add fun underline “scribble” highlight */
.headline{
  margin:0 0 14px;
  font-size: clamp(42px, 5.4vw, 76px);
  letter-spacing: -0.04em;
  line-height: .92;
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
  position:relative;
  width:max-content;
  max-width: 100%;
}
.headline::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width: 72%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,45,120,.55), rgba(122,76,255,.42), rgba(0,220,255,.35));
  filter: blur(.2px);
  opacity:.55;
  transform: skewX(-8deg);
}

.subhead{
  margin:0 0 26px;
  max-width: 62ch;
  font-size:18px;
  line-height:1.65;
  color:rgba(246,246,248,.78);
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Buttons: bouncier, glossier */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-size:11px;
  letter-spacing:.26em;
  text-transform:uppercase;
  border:1px solid rgba(246,246,248,.16);
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
  white-space:nowrap;
  position:relative;
  overflow:hidden;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.btn-ghost{
  background: rgba(10,10,13,.18);
}
.btn-ghost:hover{
  background: rgba(246,246,248,.10);
  border-color: rgba(246,246,248,.30);
}

/* Gloss highlight sweep */
.btn::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  background: linear-gradient(90deg, transparent, rgba(246,246,248,.18), transparent);
  transform: rotate(20deg);
  opacity:0;
  transition: opacity .14s ease;
}
.btn:hover::before{
  opacity:1;
  animation: sweep .7s ease;
}
@keyframes sweep{
  from{ transform: translateX(-30%) rotate(20deg); }
  to{ transform: translateX(220%) rotate(20deg); }
}

.btn-solid{
  background: linear-gradient(135deg, rgba(255,45,120,.30), rgba(122,76,255,.22));
  border-color: rgba(255,45,120,.40);
}
.btn-solid:hover{
  border-color: rgba(255,45,120,.60);
  background: linear-gradient(135deg, rgba(255,45,120,.38), rgba(122,76,255,.28));
}
.full{width:100%}

/* Sections */
.section{
  margin-top: 44px;
  padding-top: 30px;
  border-top:1px solid rgba(246,246,248,.08);
}

/* Cards: more playful, floaty */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border-radius: 18px;
  border:1px solid rgba(246,246,248,.12);
  background: rgba(246,246,248,.05);
  padding:18px;
  min-height: 150px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(0,220,255,.22);
  background: rgba(246,246,248,.07);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}
.card h3{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.28em;
  text-transform:uppercase;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

/* Contact */
.form-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact-copy h2{
  margin:0 0 10px;
  font-size:26px;
  letter-spacing:-.02em;
}
.contact-copy p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
}

/* Note card gets a little accent border */
.note-card{
  border-radius:18px;
  border:1px solid rgba(255,45,120,.20);
  background: linear-gradient(180deg, rgba(246,246,248,.06), rgba(246,246,248,.04));
  padding:18px;
}
.note-card h3{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.28em;
  text-transform:uppercase;
}
.note-card p{margin:0; color:var(--muted); line-height:1.6; font-size:14px}

.form{
  border-radius:18px;
  border:1px solid rgba(246,246,248,.12);
  background: rgba(246,246,248,.05);
  padding:18px;
}

label{
  display:block;
  margin:14px 0 8px;
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(246,246,248,.74);
}
input{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid rgba(246,246,248,.14);
  background: rgba(10,10,13,.55);
  color:var(--fg);
  outline:none;
  font-size:15px;
  transition: box-shadow .14s ease, border-color .14s ease, transform .14s ease;
}
input:focus{
  border-color: rgba(255,45,120,.62);
  box-shadow: 0 0 0 4px rgba(255,45,120,.16);
  transform: translateY(-1px);
}

.fineprint{
  margin:12px 0 0;
  color:rgba(246,246,248,.56);
  font-size:12px;
  line-height:1.45;
}

/* Footer */
.footer{
  margin: 46px 0 60px;
  padding-top: 20px;
  border-top:1px solid rgba(246,246,248,.08);
  color:rgba(246,246,248,.52);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important}
  .hero::after{display:none}
  .headline::after{display:none}
}

/* Responsive */
@media (max-width: 900px){
  .site-header{
    position:relative;
    margin: 12px 12px 0;
    padding:16px 16px;
  }
  .nav{display:none}
  .hero-content{padding: 72px 0 46px}
  .grid{grid-template-columns: 1fr}
  .form-wrap{grid-template-columns: 1fr}
  .headline{width:auto}
  .headline::after{width: 86%}
}
