/* thomjanssen.nl — landing */
html, body { margin: 0; padding: 0; background: #1c1030; }
body { font-family: 'Archivo', sans-serif; }
a { color: #ffd94d; text-decoration: none; }
a:hover { color: #ffe98a; }
::selection { background: #ff4d9d; color: #fff; }

@keyframes tickertape { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes discospin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-16px) rotate(var(--r, 0deg)); } }
@keyframes wiggle { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes popin { 0% { transform: translateY(10px) scale(.85) rotate(-4deg); opacity: 0; } 60% { transform: translateY(-4px) scale(1.08) rotate(1deg); opacity: 1; } 100% { transform: translateY(0) scale(1) rotate(-1.5deg); opacity: 1; } }
@keyframes confettifall { 0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; } 100% { transform: translateY(110vh) rotate(720deg); opacity: .9; } }
@keyframes hueshift { 0%,100% { filter: hue-rotate(0deg); } 50% { filter: hue-rotate(25deg); } }

.page {
  min-height: 100vh; color: #fdf8ec; display: flex; flex-direction: column; overflow: hidden; position: relative;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(255,77,157,.35) 0%, transparent 60%),
    radial-gradient(800px 500px at 0% 10%, rgba(30,123,255,.3) 0%, transparent 55%),
    radial-gradient(700px 600px at 50% 110%, rgba(255,122,26,.22) 0%, transparent 60%),
    #1c1030;
}

/* floaters */
.floaters { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.floater { position: absolute; animation: floaty 6s ease-in-out infinite; }
.f1 { --r: -12deg; top: 12%; left: 4%; width: 22px; height: 22px; border-radius: 50%; background: #ff4d9d; opacity: .7; animation-duration: 5s; }
.f2 { --r: 20deg; top: 30%; right: 6%; width: 16px; height: 16px; background: #ffe14d; opacity: .8; animation-duration: 6.5s; animation-delay: .8s; }
.f3 { --r: 8deg; top: 58%; left: 8%; width: 14px; height: 30px; border-radius: 8px; background: #1e7bff; opacity: .6; animation-duration: 7s; animation-delay: .4s; }
.f4 { --r: -25deg; top: 74%; right: 12%; width: 26px; height: 12px; border-radius: 8px; background: #ff7a1a; opacity: .65; animation-duration: 5.6s; animation-delay: 1.2s; }
.f5 { --r: 14deg; top: 8%; left: 46%; width: 12px; height: 12px; background: #a34bff; opacity: .7; animation-duration: 6s; animation-delay: .2s; }
.f6 { --r: -8deg; top: 46%; right: 30%; width: 18px; height: 18px; border-radius: 50%; border: 3px solid #ffe14d; background: none; opacity: .5; animation-duration: 8s; animation-delay: 1.6s; }

.confetti-piece { position: absolute; top: -5vh; animation: confettifall 2s linear both; }
.confetti-layer { position: fixed; inset: 0; pointer-events: none; z-index: 40; overflow: hidden; }

/* topbar */
.topbar { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px clamp(20px, 5vw, 56px); }
.wordmark { font-family: 'Bungee', sans-serif; font-size: 15px; color: #ffe14d; text-shadow: 2px 2px 0 #a34bff; }
.proost-btn {
  font-family: 'Bungee', sans-serif; font-size: 14px; background: linear-gradient(90deg, #ff4d9d, #ff7a1a); border: none; color: #fff;
  border-radius: 999px; padding: 11px 22px; cursor: pointer; box-shadow: 0 6px 20px rgba(255,77,157,.45), 3px 3px 0 rgba(0,0,0,.35); transition: transform .12s ease;
}
.proost-btn:hover { transform: rotate(-3deg) scale(1.08); }
.proost-btn:active { transform: scale(.92); }

.toast {
  position: fixed; top: 82px; right: clamp(16px, 4vw, 56px); z-index: 50; background: #ffe14d; color: #1c1030;
  font-family: 'Bungee', sans-serif; font-size: 15px; padding: 14px 20px; border-radius: 8px; border: 3px solid #1c1030;
  box-shadow: 5px 5px 0 #ff4d9d; animation: popin .35s ease both;
}

/* hero */
.hero { position: relative; z-index: 2; padding: clamp(40px, 8vh, 84px) clamp(20px, 5vw, 56px) clamp(24px, 4vh, 40px); max-width: 1200px; width: 100%; margin: 0 auto; box-sizing: border-box; }
.hero-badges { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.discoball { width: 44px; height: 44px; border-radius: 50%; background: conic-gradient(#ffe14d 0 25%, #ff4d9d 0 50%, #1e7bff 0 75%, #a34bff 0); animation: discospin 6s linear infinite; box-shadow: 0 0 34px rgba(255,225,77,.5); }
.badge { font-family: 'Bungee', sans-serif; font-size: 12px; padding: 6px 14px; border-radius: 4px; box-shadow: 3px 3px 0 rgba(0,0,0,.3); }
.badge-blue { background: #1e7bff; color: #fff; transform: rotate(-2deg); }
.badge-pink { background: #ff4d9d; color: #fff; transform: rotate(1.5deg); }
.badge-yellow { background: #ffe14d; color: #1c1030; transform: rotate(-1deg); }
.hero-title { font-weight: 900; font-stretch: 90%; font-size: clamp(44px, 8vw, 104px); line-height: .96; letter-spacing: -0.02em; margin: 0 0 26px; text-wrap: balance; }
.hero-zijn { display: inline-block; font-family: 'Bungee', sans-serif; font-size: .92em; background: linear-gradient(90deg, #ffe14d, #ff7a1a, #ff4d9d); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: wiggle 2.4s ease-in-out infinite, hueshift 6s ease-in-out infinite; }
.hero-sub { font-size: clamp(17px, 2vw, 21px); line-height: 1.55; color: #e6dcf5; max-width: 640px; margin: 0; }
.hero-sub strong { color: #ffe14d; }

/* cards */
.cards { position: relative; z-index: 2; max-width: 1200px; width: 100%; margin: 0 auto; box-sizing: border-box; padding: 0 clamp(20px, 5vw, 56px) clamp(44px, 7vh, 72px); display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.card { position: relative; display: flex; flex-direction: column; gap: 18px; border-radius: 20px; padding: 28px; transition: transform .18s ease, box-shadow .18s ease; }
.card-head { display: flex; align-items: center; gap: 14px; }
.card-body { margin: 0; font-size: 15.5px; line-height: 1.55; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sticker { position: absolute; top: -14px; right: 18px; font-family: 'Bungee', sans-serif; font-size: 11px; padding: 5px 12px; border-radius: 4px; }
.logo { width: 62px; height: 62px; flex: none; border-radius: 14px; display: grid; place-items: center; animation: bounce 3.2s ease-in-out infinite; }
.brand-tag { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; margin-top: 4px; }
.micro { font-family: 'Space Mono', monospace; font-size: 12px; }
.cta { white-space: nowrap; }

/* Funky Brother */
.card-fb { background: radial-gradient(400px 260px at 85% -10%, rgba(255,210,63,.5) 0%, transparent 65%), linear-gradient(160deg, #f6921e 0%, #e06a00 100%); border: 3px solid #3a2010; color: #3a2010; transform: rotate(-1.2deg); }
.card-fb:hover { transform: rotate(1deg) translateY(-8px) scale(1.03); box-shadow: 0 0 0 3px #e0218a, 0 22px 60px rgba(224,33,138,.4); color: #3a2010; }
.sticker-fb { background: #e0218a; color: #fff; transform: rotate(3deg); box-shadow: 3px 3px 0 #7a2ea0; }
.logo-fb { border: 2px dashed #e0218a; font-family: 'Bungee', sans-serif; font-size: 22px; background: #fdf3e3; color: #e0218a; }
.brand-title-fb { font-family: 'Bungee', sans-serif; font-size: 25px; line-height: 1.1; color: #ffd23f; text-shadow: 2px 2px 0 #7a2ea0; }
.brand-tag-fb { color: #5c2d0e; }
.card-body-fb { color: #4a2408; }
.micro-fb { color: #6b3208; }
.cta-fb { font-family: 'Bungee', sans-serif; font-size: 13px; background: #3a2010; color: #ffd23f; padding: 7px 14px; border-radius: 999px; }

/* Sympthom */
.card-st { background: #faf0dc; border: 4px solid #111; color: #111; transform: rotate(1deg); }
.card-st:hover { transform: rotate(-1deg) translateY(-8px) scale(1.03); box-shadow: 10px 10px 0 #ffd23f; color: #111; }
.sticker-st { background: #7cc7f0; color: #111; transform: rotate(-3deg); box-shadow: 3px 3px 0 #f472a8; }
.logo-st { border: 3px dashed #111; border-radius: 50%; font-weight: 900; font-size: 21px; background: #111; color: #fff; transform: rotate(-6deg); animation-delay: .4s; }
.brand-title-st { font-weight: 900; font-stretch: 85%; font-size: 27px; line-height: 1.05; text-transform: uppercase; letter-spacing: -0.01em; font-style: italic; }
.brand-tag-st { color: #555; }
.card-body-st { color: #333; }
.micro-st { color: #777; }
.cta-st { font-family: 'Bungee', sans-serif; font-size: 13px; background: #111; color: #fff; padding: 6px 14px; border-radius: 999px; transform: rotate(-2deg); box-shadow: 3px 3px 0 #ffd23f; }

/* Flankspelers */
.card-fl { background: linear-gradient(165deg, #2b8cff, #0f5ad4); border: 3px solid #fdf8ec; color: #fdf8ec; transform: rotate(-0.9deg); }
.card-fl:hover { transform: rotate(.8deg) translateY(-8px) scale(1.03); box-shadow: 0 22px 60px rgba(30,123,255,.6), 0 0 0 3px #ffe14d; color: #fdf8ec; }
.sticker-fl { font-family: 'Yellowtail', cursive; font-size: 16px; background: #ffe14d; color: #0f5ad4; padding: 4px 14px; border-radius: 999px; transform: rotate(3deg); box-shadow: 3px 3px 0 rgba(0,0,0,.3); }
.logo-fl { border: 2px dashed #fdf8ec; font-family: 'Yellowtail', cursive; font-size: 28px; color: #fdf8ec; background: rgba(255,255,255,.15); animation-delay: .8s; }
.brand-title-fl { font-family: 'Yellowtail', cursive; font-size: 34px; line-height: 1; text-shadow: 3px 3px 0 rgba(0,0,0,.25); }
.brand-tag-fl { color: #cfe4ff; }
.card-body-fl { color: #eaf3ff; }
.micro-fl { color: #b3d4ff; }
.cta-fl { font-family: 'Yellowtail', cursive; font-size: 24px; color: #ffe14d; }

/* Thom Janssen */
.card-tj { background: #f3efe7; border: 3px solid #221f1b; color: #221f1b; transform: rotate(.8deg); }
.card-tj:hover { transform: rotate(-.6deg) translateY(-8px) scale(1.03); box-shadow: 0 22px 60px rgba(0,0,0,.45), 0 0 0 3px #ff4d9d; color: #221f1b; }
.sticker-tj { font-family: 'Space Mono', monospace; font-weight: 700; background: #221f1b; color: #f3efe7; transform: rotate(-2deg); box-shadow: 3px 3px 0 #1e7bff; }
.logo-tj { border: 2px dashed #9b9284; font-weight: 700; font-size: 19px; letter-spacing: .05em; color: #221f1b; background: #fff; animation-delay: 1.2s; }
.brand-title-tj { font-weight: 700; font-size: 26px; line-height: 1.05; letter-spacing: -0.01em; }
.brand-tag-tj { color: #857c6e; }
.card-body-tj { color: #4b463e; }
.micro-tj { color: #948b7c; }
.cta-tj { font-weight: 800; border-bottom: 3px solid #ff4d9d; }

/* Now Enough */
.card-ne { background: radial-gradient(340px 240px at 70% -10%, rgba(58,108,168,.65) 0%, transparent 65%), #0b0f16; border: 1px solid rgba(158,186,214,.45); color: #eef3f8; transform: rotate(-.7deg); }
.card-ne:hover { transform: rotate(.6deg) translateY(-8px) scale(1.03); box-shadow: 0 0 0 3px #9cc2e8, 0 22px 60px rgba(30,70,120,.6); color: #eef3f8; }
.sticker-ne { font-family: 'Space Mono', monospace; font-weight: 700; letter-spacing: .1em; background: #9cc2e8; color: #0b0f16; transform: rotate(2deg); box-shadow: 3px 3px 0 rgba(0,0,0,.45); }
.logo-ne { border: 2px dashed rgba(158,186,214,.6); font-weight: 900; font-stretch: 80%; font-size: 18px; letter-spacing: -0.02em; color: #eef3f8; background: rgba(255,255,255,.06); animation-delay: 1.6s; }
.ne-dot { color: #9cc2e8; }
.brand-title-ne { font-weight: 900; font-stretch: 80%; font-size: 26px; line-height: 1.05; letter-spacing: .02em; text-transform: uppercase; background: linear-gradient(180deg, #ffffff 20%, #8fa9bd 60%, #e6eef6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand-tag-ne { color: #6d8299; }
.card-body-ne { color: #a9bfd4; }
.micro-ne { color: #6d8299; }
.cta-ne { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; background: #eef3f8; color: #0b0f16; padding: 7px 16px; border-radius: 999px; }

/* ticker */
.ticker-wrap { position: relative; z-index: 2; overflow: hidden; padding: 14px 0; background: #ffe14d; transform: rotate(-.6deg) scale(1.02); box-shadow: 0 -6px 30px rgba(255,225,77,.25); }
.ticker { display: flex; width: max-content; animation: tickertape 26s linear infinite; font-family: 'Bungee', sans-serif; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: #1c1030; white-space: nowrap; }
.ticker span { padding-right: 48px; }

/* footer */
.footer { position: relative; z-index: 2; padding: 28px clamp(20px, 5vw, 56px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; color: #a99bc2; font-family: 'Space Mono', monospace; font-size: 12px; }

.topbar-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.contact-btn { font-family: 'Bungee', sans-serif; font-size: 14px; border: 2px solid #ffe14d; color: #ffe14d; border-radius: 999px; padding: 9px 20px; transition: transform .12s ease, background .12s ease, color .12s ease; }
.contact-btn:hover { background: #ffe14d; color: #1c1030; transform: rotate(2deg) scale(1.05); }
