:root {
  --bg: #0b0b0c;
  --surface: #141416;
  --surface-2: #1b1b1e;
  --text: #f5f4ef;
  --muted: #aaa9a4;
  --line: rgba(255,255,255,.14);
  --acid: #d8ff35;
  --violet: #bba7ff;
  --peach: #ff9e7d;
  --light: #f2f0e9;
  --dark: #0a0a0b;
  --radius: 28px;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--acid); color: #050505; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .035;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.section-pad { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }
.section-line { border-top: 1px solid var(--line); }

.site-header {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--acid); color: #090909; font-size: 13px; }
.brand-name { font-size: 16px; }
.desktop-nav { display: flex; gap: 36px; font-size: 14px; color: #d3d2ce; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--acid); }
.header-cta { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--acid);
  color: #090909;
  font-weight: 750;
  border: 1px solid var(--acid);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-3px); background: transparent; color: var(--acid); }
.button-small { min-height: 46px; padding: 0 20px; font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: #d9d8d3; font-weight: 650; }
.text-link:hover { color: var(--acid); }

.menu-toggle, .mobile-menu { display: none; }

.hero { padding-top: 88px; padding-bottom: 72px; }
.hero-kicker, .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
  color: #cbc9c4;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 6px rgba(216,255,53,.12); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; min-height: 650px; }
.display { margin: 26px 0 28px; font-size: clamp(64px, 7.8vw, 124px); line-height: .89; letter-spacing: -.075em; font-weight: 780; max-width: 1000px; }
.accent-text { display: block; color: var(--acid); }
.hero-lead { max-width: 650px; font-size: clamp(19px, 1.7vw, 26px); line-height: 1.45; color: var(--muted); letter-spacing: -.025em; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.hero-stage { min-height: 610px; position: relative; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 370px; height: 370px; }
.device {
  position: absolute;
  width: 520px;
  height: 330px;
  border-radius: 26px;
  background: #f1f0ea;
  color: #111;
  box-shadow: 0 32px 100px rgba(0,0,0,.45);
  transform: rotate(-7deg) translate(-20px, 12px);
  overflow: hidden;
}
.device-topbar { display: flex; gap: 7px; align-items: center; height: 38px; padding-left: 16px; background: #deddd8; }
.device-topbar span { width: 8px; height: 8px; border-radius: 50%; background: #b5b4af; }
.dashboard-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; padding: 16px; height: calc(100% - 38px); }
.dash-panel { background: #fff; border-radius: 16px; padding: 16px; }
.dash-panel.wide { grid-row: span 2; background: linear-gradient(150deg, #18181b 0%, #333238 62%, #bba7ff 63%, #d8ff35 100%); }
.dash-panel.chart { display: flex; align-items: end; gap: 7px; }
.dash-panel.chart i { flex: 1; border-radius: 5px; background: #bba7ff; height: 30%; }
.dash-panel.chart i:nth-child(2) { height: 55%; }.dash-panel.chart i:nth-child(3) { height: 82%; }.dash-panel.chart i:nth-child(4) { height: 64%; }.dash-panel.chart i:nth-child(5) { height: 92%; background: var(--acid); }
.dash-panel.stat { display: flex; flex-direction: column; justify-content: center; }.dash-panel.stat strong { font-size: 30px; }.dash-panel.stat span { color: #777; font-size: 12px; }
.dash-panel.list { display: none; }
.phone { width: 238px; height: 490px; border: 9px solid #080809; border-radius: 48px; background: #17171a; box-shadow: 0 35px 90px rgba(0,0,0,.55); overflow: hidden; z-index: 4; transform: translate(110px, 32px) rotate(7deg); }
.phone-notch { width: 92px; height: 25px; border-radius: 0 0 16px 16px; margin: 0 auto; background: #080809; }
.phone-ui { padding: 30px 21px 22px; }
.mini-label { color: var(--acid); font-size: 10px; letter-spacing: .14em; font-weight: 800; }
.phone-ui h3 { font-size: 31px; line-height: 1.02; letter-spacing: -.05em; margin: 15px 0 34px; }
.waveform { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 5px; }
.waveform i { width: 8px; height: 22%; border-radius: 10px; background: var(--violet); animation: wave 1.3s ease-in-out infinite alternate; }
.waveform i:nth-child(2) { height: 62%; animation-delay: -.4s; }.waveform i:nth-child(3) { height: 35%; }.waveform i:nth-child(4) { height: 90%; animation-delay: -.7s; }.waveform i:nth-child(5) { height: 58%; }.waveform i:nth-child(6) { height: 76%; animation-delay: -.2s; }.waveform i:nth-child(7) { height: 42%; }.waveform i:nth-child(8) { height: 88%; animation-delay: -.6s; }
@keyframes wave { to { transform: scaleY(.55); opacity: .55; } }
.metric-row { display: flex; gap: 16px; margin: 26px 0; color: #85858d; font-size: 10px; }.metric-row b { display: block; color: #fff; font-size: 18px; margin-bottom: 4px; }
.phone-card { background: #242429; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; padding: 16px; }.phone-card small { color: #898891; }.phone-card strong { display: block; margin: 6px 0 14px; }.progress { height: 5px; border-radius: 20px; background: #3c3c42; }.progress span { display: block; width: 68%; height: 100%; border-radius: inherit; background: var(--acid); }
.floating-tag { position: absolute; padding: 10px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(20,20,22,.86); backdrop-filter: blur(14px); font-size: 12px; font-weight: 750; z-index: 5; }
.tag-one { top: 90px; left: 28px; }.tag-two { bottom: 90px; left: 65px; }.tag-three { top: 135px; right: 4px; }.tag-four { bottom: 115px; right: 35px; color: var(--acid); }
.trust-strip { margin-top: 40px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: #85847f; font-size: 13px; text-transform: uppercase; letter-spacing: .09em; overflow: hidden; }

.proof { padding-top: 44px; padding-bottom: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proof-item { padding-right: 36px; border-right: 1px solid var(--line); }
.proof-item:last-child { border: 0; }
.proof-item strong { display: block; font-size: 21px; letter-spacing: -.03em; margin-bottom: 10px; }
.proof-item span { color: var(--muted); line-height: 1.55; }

.work, .services, .process, .about, .contact { padding-top: 140px; padding-bottom: 140px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 58px; }
.section-heading h2, .process-intro h2, .about-copy h2, .contact-copy h2 { margin: 15px 0 0; font-size: clamp(45px, 6vw, 88px); line-height: .96; letter-spacing: -.065em; }
.section-heading > p { max-width: 430px; color: var(--muted); line-height: 1.55; font-size: 17px; }

.project { min-height: 680px; border-radius: var(--radius); margin-bottom: 28px; padding: 54px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; overflow: hidden; position: relative; }
.project-dark { background: #17171a; }
.project-light { background: var(--light); color: var(--dark); }
.project-acid { background: var(--acid); color: var(--dark); }
.project-info { align-self: end; padding-bottom: 10px; z-index: 3; }
.project-index { font-size: 11px; letter-spacing: .14em; font-weight: 850; opacity: .6; }
.project h3 { font-size: clamp(42px, 5vw, 78px); line-height: .95; letter-spacing: -.06em; margin: 20px 0 24px; }
.project-info p { max-width: 470px; font-size: 18px; line-height: 1.52; opacity: .72; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 42px; }
.chips span { border: 1px solid currentColor; border-radius: 999px; padding: 8px 12px; font-size: 11px; opacity: .66; }
.project-link { font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: 6px; }
.project-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.visual-music { border-radius: 22px; background: radial-gradient(circle at 65% 40%, #6634f3 0%, #311f74 32%, #111 75%); }
.mock-phone { width: 250px; height: 510px; border-radius: 45px; border: 9px solid #0c0c0d; box-shadow: 0 28px 65px rgba(0,0,0,.35); }
.music-phone { background: #111114; padding: 55px 21px 22px; transform: rotate(5deg); color: white; }
.album-art { height: 250px; border-radius: 22px; background: radial-gradient(circle at 72% 26%, #d8ff35 0 9%, transparent 10%), linear-gradient(145deg, #ff6f91, #6b4aff 55%, #1f183e); }
.track-lines { margin: 25px 0 28px; }.track-lines i { display: block; width: 82%; height: 9px; border-radius: 9px; background: #ededed; }.track-lines i:last-child { width: 48%; height: 6px; background: #626269; margin-top: 9px; }
.player-controls { display: flex; align-items: center; justify-content: space-around; font-size: 26px; }.player-controls strong { width: 64px; height: 64px; border-radius: 50%; background: var(--acid); color: #111; display: grid; place-items: center; font-size: 18px; padding-left: 3px; }
.visual-learning { background: linear-gradient(145deg, #d7ccff, #f5f0ff 45%, #ffbfae); border-radius: 22px; overflow: hidden; }
.learning-phone { background: #fff; color: #17171a; padding: 70px 24px 24px; transform: rotate(-4deg); }.quiz-tag { color: #6e51cc; font-size: 10px; font-weight: 900; letter-spacing: .12em; }.learning-phone h4 { font-size: 27px; line-height: 1.1; letter-spacing: -.045em; margin: 20px 0 35px; }.learning-phone i { display: block; height: 46px; border-radius: 12px; background: #f0edf8; margin-bottom: 10px; }.learning-phone button { width: 100%; border: 0; border-radius: 13px; background: #161619; color: white; padding: 15px; margin-top: 18px; }
.lesson-card { position: absolute; min-width: 155px; padding: 18px; border-radius: 18px; background: #151518; color: white; box-shadow: 0 20px 45px rgba(0,0,0,.2); z-index: 3; }.lesson-card small { color: var(--acid); font-size: 9px; letter-spacing: .13em; }.lesson-card b { display: block; margin-top: 8px; font-size: 22px; }.card-one { left: 38px; top: 78px; transform: rotate(-8deg); }.card-two { right: 28px; bottom: 80px; transform: rotate(8deg); }
.visual-dashboard { border-radius: 22px; background: #0c0c0d; padding: 55px 30px; }
.browser-window { width: 96%; height: 455px; background: #f7f7f2; border-radius: 20px; box-shadow: 0 35px 70px rgba(0,0,0,.25); overflow: hidden; transform: rotate(2deg); }
.browser-bar { height: 37px; background: #deded7; display: flex; align-items: center; gap: 7px; padding-left: 15px; }.browser-bar span { width: 8px; height: 8px; background: #adada8; border-radius: 50%; }
.browser-layout { display: grid; grid-template-columns: 70px 1fr; height: calc(100% - 37px); }
.sidebar { background: #141416; padding: 20px 15px; }.sidebar b { display: block; height: 28px; border-radius: 7px; margin-bottom: 11px; background: #29292d; }.sidebar b:first-child { background: var(--acid); }
.browser-content { padding: 22px; }.browser-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; }.browser-stats i { height: 74px; background: #e8e8e1; border-radius: 13px; }.browser-chart { height: 175px; margin: 14px 0; border-radius: 15px; background: #17171a; position: relative; overflow: hidden; }.browser-chart span { position: absolute; width: 160%; height: 120px; left: -20%; bottom: -68px; border: 7px solid var(--acid); border-radius: 50%; }.browser-table b { display: block; height: 28px; border-bottom: 1px solid #dddcd5; }

.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 60px 1.2fr 1fr 35px; gap: 28px; align-items: center; padding: 38px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, color .25s ease; }
.service-row:hover { padding-left: 18px; color: var(--acid); }
.service-row > span { color: #777671; font-size: 12px; }
.service-row h3 { font-size: 29px; letter-spacing: -.04em; margin: 0 0 8px; }.service-row p { margin: 0; color: var(--muted); line-height: 1.5; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }.service-tags span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; color: #a8a7a2; }
.service-row > i { font-size: 25px; font-style: normal; }

.process { background: var(--light); color: var(--dark); width: 100%; max-width: none; padding-left: max(32px, calc((100vw - var(--max))/2)); padding-right: max(32px, calc((100vw - var(--max))/2)); }
.process .eyebrow { color: #565650; }
.process-intro { margin-bottom: 60px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(0,0,0,.18); }
.process-card { min-height: 320px; padding: 30px 24px 20px 0; border-right: 1px solid rgba(0,0,0,.18); }.process-card + .process-card { padding-left: 24px; }.process-card:last-child { border: 0; }
.process-card > span { font-size: 12px; font-weight: 800; color: #77766f; }.process-card h3 { font-size: 39px; letter-spacing: -.05em; margin: 80px 0 18px; }.process-card p { color: #66655f; line-height: 1.55; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.about-copy p { max-width: 620px; font-size: 19px; line-height: 1.6; color: #d1d0ca; }.about-copy .muted { color: #777671; font-size: 14px; }
.founders { display: grid; gap: 16px; }
.founder-card { padding: 24px; border: 1px solid var(--line); border-radius: 22px; display: grid; grid-template-columns: 125px 1fr; gap: 24px; align-items: center; background: var(--surface); }
.founder-avatar { aspect-ratio: 1; border-radius: 18px; display: grid; place-items: center; color: #111; font-size: 42px; font-weight: 900; }.avatar-one { background: var(--acid); }.avatar-two { background: var(--violet); }
.founder-card h3 { margin: 0 0 5px; font-size: 25px; }.founder-card p { margin: 0 0 12px; color: #c6c5bf; }.founder-card small { color: #777671; line-height: 1.5; }
.principles { margin-top: 70px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.principles span { padding: 24px 18px; border-right: 1px solid var(--line); color: #b9b8b2; }.principles span:last-child { border: 0; }

.contact-panel { background: var(--violet); color: #111; border-radius: var(--radius); padding: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact .eyebrow { color: #36313f; }.contact-copy p { font-size: 18px; line-height: 1.55; max-width: 500px; color: #49424f; }.contact-email { display: inline-block; margin-top: 40px; font-weight: 850; font-size: 20px; border-bottom: 2px solid #111; padding-bottom: 5px; }
.contact-form { display: grid; gap: 18px; }.contact-form label > span { display: block; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 0; border-bottom: 1px solid rgba(0,0,0,.28); background: transparent; padding: 13px 0; outline: none; border-radius: 0; color: #111; }.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #111; }
.form-button { margin-top: 12px; background: #111; border-color: #111; color: white; width: 100%; }.form-button:hover { background: transparent; color: #111; }.form-button:disabled { cursor: wait; opacity: .65; transform: none; }
.form-note { margin: 0; font-size: 11px; color: #514a59; }

.footer { padding-top: 55px; padding-bottom: 38px; border-top: 1px solid var(--line); }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 45px; }.footer-links { display: flex; gap: 28px; color: #a5a49f; }
.footer-bottom { display: flex; justify-content: space-between; color: #686762; font-size: 12px; border-top: 1px solid var(--line); padding-top: 22px; }

.toast { position: fixed; left: 50%; bottom: 28px; width: min(460px, calc(100vw - 32px)); display: flex; align-items: center; gap: 14px; transform: translate(-50%, 140px) scale(.96); opacity: 0; color: #111; border: 1px solid rgba(255,255,255,.28); border-radius: 20px; padding: 15px 18px; text-align: left; box-shadow: 0 24px 70px rgba(0,0,0,.38); z-index: 80; pointer-events: none; transition: transform .35s cubic-bezier(.2,.75,.2,1), opacity .25s ease; }.toast.success { background: var(--acid); }.toast.error { background: #ff716a; color: #210908; }.toast.show { transform: translate(-50%,0) scale(1); opacity: 1; }.toast-icon { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,0,0,.12); font-size: 18px; font-weight: 950; }.toast-copy { display: grid; gap: 3px; min-width: 0; }.toast-copy strong { font-size: 14px; line-height: 1.2; }.toast-copy > span { font-size: 12px; line-height: 1.4; font-weight: 600; opacity: .72; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1); }.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 580px; }
  .project { grid-template-columns: 1fr; }
  .project-info { align-self: start; }
  .project-visual { min-height: 510px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-card:nth-child(2) { border-right: 0; }.process-card:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,.18); }
  .about-grid, .contact-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section-pad, .site-header { width: min(100% - 32px, var(--max)); }
  .site-header { height: 74px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; flex-direction: column; gap: 6px; background: transparent; border: 0; padding: 8px 0 8px 12px; }.menu-toggle span { display: block; width: 27px; height: 2px; background: white; transition: transform .25s ease; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }.menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { display: flex; position: fixed; inset: 74px 0 auto; z-index: 19; background: #101012; border-bottom: 1px solid var(--line); flex-direction: column; padding: 22px 24px 30px; gap: 22px; transform: translateY(-130%); transition: transform .3s ease; }.mobile-menu.open { transform: translateY(0); }
  .hero { padding-top: 65px; }.display { font-size: 57px; }.hero-lead { font-size: 18px; }.hero-stage { min-height: 455px; margin-top: 20px; }.device { width: 355px; height: 230px; transform: rotate(-7deg) translate(-30px,0); }.phone { width: 180px; height: 370px; border-radius: 37px; transform: translate(65px, 20px) rotate(7deg); }.phone-ui { padding: 22px 15px; }.phone-ui h3 { font-size: 23px; margin-bottom: 18px; }.metric-row, .phone-card { display: none; }.orbit-one { width: 390px; height: 390px; }.orbit-two { width: 280px; height: 280px; }.tag-one { top: 35px; left: 0; }.tag-two { bottom: 20px; left: 15px; }.tag-three { top: 85px; right: -5px; }.tag-four { bottom: 55px; right: 0; }.trust-strip { justify-content: flex-start; white-space: nowrap; }
  .proof { grid-template-columns: 1fr; }.proof-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 24px; }.proof-item:last-child { border-bottom: 0; }
  .work, .services, .process, .about, .contact { padding-top: 95px; padding-bottom: 95px; }.section-heading { align-items: start; flex-direction: column; margin-bottom: 38px; }.section-heading h2, .process-intro h2, .about-copy h2, .contact-copy h2 { font-size: 48px; }
  .project { padding: 28px; min-height: 0; }.project h3 { font-size: 48px; }.project-info p { font-size: 16px; }.project-visual { min-height: 420px; }.mock-phone { width: 195px; height: 400px; }.album-art { height: 190px; }.lesson-card { min-width: 120px; padding: 13px; }.card-one { left: 5px; top: 32px; }.card-two { right: 2px; bottom: 30px; }.browser-window { height: 330px; width: 110%; }.browser-layout { grid-template-columns: 48px 1fr; }.browser-content { padding: 12px; }.browser-chart { height: 130px; }
  .service-row { grid-template-columns: 35px 1fr 25px; }.service-tags { display: none; }
  .process-grid { grid-template-columns: 1fr; }.process-card, .process-card + .process-card { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.18); padding: 25px 0; min-height: 230px; }.process-card h3 { margin-top: 55px; }.process-card:last-child { border-bottom: 0; }
  .founder-card { grid-template-columns: 80px 1fr; }.principles { grid-template-columns: 1fr 1fr; }.principles span:nth-child(2) { border-right: 0; }.principles span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-panel { padding: 34px 24px; gap: 45px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; gap: 25px; }.footer-links { flex-wrap: wrap; }
}

/* Project-specific visuals and expanded content */
.project-stat-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; }
.project-stat-row span { display: flex; flex-direction: column; gap: 2px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; opacity: .64; }
.project-stat-row b { font-size: 23px; letter-spacing: -.04em; text-transform: none; opacity: 1; }
.visual-badge { position: absolute; top: 24px; left: 24px; z-index: 6; padding: 10px 13px; border-radius: 999px; background: rgba(10,10,11,.86); color: white; font-size: 10px; letter-spacing: .12em; font-weight: 850; backdrop-filter: blur(12px); }
.light-badge { background: rgba(255,255,255,.13); }
.dark-badge { background: #111; color: var(--acid); }
.app-phone { padding: 0; color: #111; background: white; transform: rotate(4deg); }
.app-phone-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 18px 18px 10px; font-size: 10px; }
.app-phone-top b { font-size: 12px; }.app-phone-top i { justify-self: end; font-style: normal; }
.app-phone button { width: calc(100% - 36px); margin: 18px; border: 0; border-radius: 13px; padding: 13px; background: #111; color: white; font-weight: 800; }

.visual-workouts { border-radius: 22px; background: radial-gradient(circle at 25% 10%, #dcff63 0%, #94e72e 23%, #1c2620 64%, #0b0d0c 100%); overflow: hidden; }
.workouts-phone { width: 225px; height: 470px; border-color: #101310; background: #f6f8f1; transform: translate(80px, 26px) rotate(5deg); }
.workout-title { padding: 20px 18px 16px; }.workout-title small { font-size: 9px; color: #7a8576; letter-spacing: .13em; font-weight: 800; }.workout-title h4 { font-size: 31px; margin: 7px 0 5px; letter-spacing: -.05em; }.workout-title p { margin: 0; color: #7b8278; font-size: 11px; }
.exercise-list { padding: 0 18px; display: grid; gap: 9px; }.exercise-list div { padding: 12px; background: white; border-radius: 13px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 5px 16px rgba(30,45,30,.06); }.exercise-list b { font-size: 11px; }.exercise-list span { font-size: 10px; color: #6f776e; }
.workouts-phone button { background: #17221b; }
.workout-summary-card { position: absolute; left: 35px; bottom: 55px; z-index: 5; width: 190px; padding: 21px; color: #111; background: rgba(255,255,255,.93); border-radius: 20px; transform: rotate(-5deg); box-shadow: 0 22px 55px rgba(0,0,0,.25); }.workout-summary-card small { font-size: 9px; letter-spacing: .14em; font-weight: 850; color: #65705f; }.workout-summary-card strong { display: block; font-size: 24px; margin: 8px 0 17px; }.mini-bars { height: 45px; display: flex; gap: 6px; align-items: end; }.mini-bars i { flex: 1; height: 30%; background: #b5e654; border-radius: 4px; }.mini-bars i:nth-child(2) { height: 65%; }.mini-bars i:nth-child(3) { height: 42%; }.mini-bars i:nth-child(4) { height: 90%; background: #1b251d; }.mini-bars i:nth-child(5) { height: 58%; }.mini-bars i:nth-child(6) { height: 78%; }.mini-bars i:nth-child(7) { height: 48%; }

.visual-palmist { border-radius: 22px; background: radial-gradient(circle at 50% 40%, #8b61ff 0%, #5330aa 34%, #1a1530 74%, #0b0b0d 100%); overflow: hidden; color: #e9deff; }
.palmist-phone { width: 230px; height: 480px; background: linear-gradient(180deg,#18102f,#2b1758); color: #eadfff; border-color: #0f0b18; transform: rotate(-3deg); }
.palm-scan { margin: 28px 18px 12px; height: 315px; border-radius: 28px; display: grid; place-items: center; background: linear-gradient(160deg,rgba(255,255,255,.14),rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.13); position: relative; }.palm-scan svg { width: 150px; filter: drop-shadow(0 0 24px rgba(217,196,255,.38)); }.palm-scan span { position: absolute; bottom: 17px; font-size: 10px; color: #b9a6db; }
.scan-progress { margin: 14px 24px; height: 5px; background: rgba(255,255,255,.13); border-radius: 99px; overflow: hidden; }.scan-progress i { display: block; height: 100%; width: 74%; background: linear-gradient(90deg,#ffb5e4,#d9c2ff); border-radius: inherit; }
.palm-orbit { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }.palm-orbit-one { width: 480px; height: 480px; }.palm-orbit-two { width: 340px; height: 340px; }
.palm-card { position: absolute; z-index: 5; width: 190px; padding: 17px; border-radius: 18px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(15px); box-shadow: 0 20px 55px rgba(0,0,0,.25); }.palm-card small { display: block; font-size: 9px; letter-spacing: .13em; color: #cbbbe8; margin-bottom: 8px; }.palm-card b { font-size: 14px; line-height: 1.3; }.question-card { top: 78px; right: 20px; transform: rotate(5deg); }.insight-card { left: 22px; bottom: 67px; transform: rotate(-6deg); }

.visual-clever { border-radius: 22px; background: radial-gradient(circle at 50% 35%, #34bfff 0%, #3461e8 32%, #1d2475 61%, #10101a 100%); overflow: hidden; }
.clever-phone { width: 225px; height: 470px; color: #111; background: #f8f6ff; border-color: #111222; transform: translate(15px, 24px) rotate(3deg); }
.clever-heading { padding: 24px 18px 14px; }.clever-heading small { font-size: 9px; letter-spacing: .13em; font-weight: 850; color: #726f81; }.clever-heading h4 { font-size: 29px; margin: 8px 0 5px; letter-spacing: -.05em; }.clever-heading p { color: #7e7b8a; font-size: 10px; margin: 0; }
.game-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 12px 18px; }.game-grid span { aspect-ratio: 1; display: grid; place-items: center; border-radius: 14px; background: #e7e2ff; color: #503bd5; font-size: 20px; font-weight: 900; }.game-grid span:nth-child(2), .game-grid span:nth-child(6) { background: #ddff68; color: #142010; }.game-grid span:nth-child(3), .game-grid span:nth-child(5) { background: #ffe3a7; color: #6e3e08; }
.daily-progress { margin: 14px 18px 0; height: 7px; border-radius: 99px; background: #ded9e9; }.daily-progress span { display: block; width: 66%; height: 100%; border-radius: inherit; background: #6651e8; }
.clever-phone button { background: #5e49dd; }
.skill-card { position: absolute; z-index: 4; min-width: 125px; padding: 15px; border-radius: 17px; background: white; color: #111; box-shadow: 0 22px 50px rgba(0,0,0,.22); }.skill-card small { display: block; font-size: 9px; color: #73727d; letter-spacing: .12em; margin-bottom: 6px; }.skill-card b { font-size: 24px; }.skill-memory { left: 22px; top: 95px; transform: rotate(-7deg); }.skill-focus { right: 17px; bottom: 72px; transform: rotate(7deg); background: #ddff68; }

.avatar-three { background: var(--peach); }
.capabilities { padding-top: 140px; padding-bottom: 20px; }
.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-grid article { min-height: 220px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-grid span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 850; color: var(--acid); margin-bottom: 55px; }
.capability-grid p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.55; }

@media (max-width: 1100px) {
  .capability-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .project-stat-row { gap: 16px; }
  .project-stat-row b { font-size: 19px; }
  .workouts-phone, .palmist-phone, .clever-phone { width: 190px; height: 405px; transform: translate(35px,20px) rotate(4deg); }
  .workout-summary-card, .palm-card, .skill-card { transform: scale(.82) rotate(-5deg); }
  .workout-summary-card { left: -15px; bottom: 20px; }
  .question-card { right: -28px; top: 54px; }.insight-card { left: -28px; bottom: 32px; }
  .skill-memory { left: -24px; top: 78px; }.skill-focus { right: -22px; bottom: 48px; }
  .palm-scan { height: 262px; margin-top: 18px; }.palm-scan svg { width: 125px; }
  .game-grid { gap: 6px; }.game-grid span { border-radius: 10px; font-size: 17px; }
  .capabilities { padding-top: 95px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article { min-height: 180px; }
  .capability-grid span { margin-bottom: 35px; }
}

/* Infinite horizontal work showcase */
.project-marquee-shell {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 10px 0 18px;
}
.project-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: project-marquee 44s linear infinite;
}
.project-marquee-shell:hover .project-marquee-track,
.project-marquee-shell:focus-within .project-marquee-track {
  animation-play-state: paused;
}
.project-marquee-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}
.project-marquee-fade {
  position: absolute;
  inset-block: 0;
  width: min(9vw, 140px);
  z-index: 8;
  pointer-events: none;
}
.project-marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg), rgba(11,11,12,0));
}
.project-marquee-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg), rgba(11,11,12,0));
}
@keyframes project-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.project-card {
  flex: 0 0 520px;
  width: 520px;
  min-height: 670px;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 365px 1fr;
  background: #f4f2eb;
  color: #111;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 75px rgba(0,0,0,.24);
  transform: translateZ(0);
  transition: transform .35s cubic-bezier(.2,.75,.2,1), box-shadow .35s ease;
}
.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-9px);
  box-shadow: 0 34px 100px rgba(0,0,0,.38);
  outline: none;
}
.project-card-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.project-card-workouts .project-card-visual {
  background: radial-gradient(circle at 22% 10%, #e3ff79 0, #8edb31 24%, #1d3022 64%, #0b0e0c 100%);
}
.project-card-compass .project-card-visual {
  background: radial-gradient(circle at 50% 38%, #ff6a22 0, #7a2418 35%, #231212 68%, #080909 100%);
}
.project-card-amberpaint .project-card-visual {
  background: radial-gradient(circle at 35% 28%, #f9ff26 0, #ff38bd 27%, #9d5cff 58%, #38205f 100%);
}
.project-card-radio .project-card-visual {
  background: radial-gradient(circle at 42% 34%, #30cfff 0, #5d35ff 34%, #5610a4 66%, #100a22 100%);
}
.project-card-palmist .project-card-visual {
  background: radial-gradient(circle at 50% 43%, #986bff 0, #5733ae 35%, #1b1632 73%, #0b0b0e 100%);
}
.project-card-clever .project-card-visual {
  background: radial-gradient(circle at 50% 35%, #54caff 0, #3465ea 34%, #212778 65%, #11111a 100%);
}
.project-card-label {
  position: absolute;
  z-index: 5;
  top: 20px;
  left: 20px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8,8,9,.6);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  font-size: 9px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.mini-device {
  position: relative;
  z-index: 3;
  width: 190px;
  height: 345px;
  border: 7px solid #111;
  border-radius: 36px;
  overflow: hidden;
  background: #f8f8f5;
  box-shadow: 0 30px 68px rgba(0,0,0,.34);
}
.mini-device-workouts { transform: translate(42px, 22px) rotate(5deg); background: #f7f9f2; }
.mini-device-palmist { transform: translate(-8px, 20px) rotate(-3deg); background: linear-gradient(180deg,#18102f,#2b1758); color: #eadfff; border-color: #0f0b18; }
.mini-device-clever { transform: translate(24px, 20px) rotate(3deg); background: #f8f6ff; border-color: #111222; }
.mini-device-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 13px 8px;
  font-size: 8px;
}
.mini-device-bar b { font-size: 10px; }
.mini-device-bar i { justify-self: end; font-style: normal; }
.mini-device-copy { padding: 23px 15px 12px; }
.mini-device-copy small { display: block; color: #777; font-size: 7px; letter-spacing: .14em; font-weight: 850; }
.mini-device-copy strong { display: block; margin: 6px 0 4px; font-size: 23px; line-height: 1; letter-spacing: -.05em; }
.mini-device-copy span { color: #777; font-size: 8px; }
.mini-device-list { display: grid; gap: 8px; padding: 0 15px; }
.mini-device-list i { height: 31px; border-radius: 10px; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.mini-device-button { position: absolute; inset: auto 15px 15px; padding: 11px; border-radius: 11px; background: #17221b; color: white; text-align: center; font-size: 9px; font-weight: 850; }
.floating-metric {
  position: absolute;
  z-index: 4;
  left: 35px;
  bottom: 36px;
  width: 165px;
  padding: 17px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 50px rgba(0,0,0,.24);
  transform: rotate(-5deg);
}
.floating-metric-right { left: auto; right: 26px; bottom: 42px; transform: rotate(5deg); }
.floating-metric small { display: block; margin-bottom: 6px; color: #74746f; font-size: 8px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.floating-metric b { font-size: 20px; letter-spacing: -.04em; }
.palm-glow { position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: inset 0 0 80px rgba(215,184,255,.08); }
.mini-palm { margin: 20px 14px; height: 245px; border-radius: 24px; display: grid; place-items: center; background: linear-gradient(160deg,rgba(255,255,255,.14),rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.13); position: relative; }
.mini-palm svg { width: 112px; filter: drop-shadow(0 0 20px rgba(217,196,255,.35)); }
.mini-palm span { position: absolute; bottom: 13px; color: #c3b2e2; font-size: 8px; }
.mini-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding: 10px 15px; }
.mini-game-grid i { aspect-ratio: 1; display: grid; place-items: center; border-radius: 11px; background: #e7e2ff; color: #503bd5; font-style: normal; font-size: 16px; font-weight: 900; }
.mini-game-grid i:nth-child(2), .mini-game-grid i:nth-child(6) { background: #ddff68; color: #142010; }
.mini-game-grid i:nth-child(3), .mini-game-grid i:nth-child(5) { background: #ffe3a7; color: #6e3e08; }
.mini-device-clever .mini-device-button { background: #5e49dd; }
.project-card-body { padding: 30px 30px 32px; display: flex; flex-direction: column; }
.project-card-body > div:first-child { display: flex; justify-content: space-between; gap: 15px; color: #77756f; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.project-card-body h3 { margin: 19px 0 13px; font-size: 40px; line-height: .95; letter-spacing: -.055em; }
.project-card-body p { margin: 0; color: #64625d; font-size: 14px; line-height: 1.55; }
.project-card-body ul { list-style: none; padding: 0; margin: 20px 0 26px; display: flex; flex-wrap: wrap; gap: 7px; }
.project-card-body li { border: 1px solid rgba(17,17,17,.2); border-radius: 999px; padding: 7px 10px; font-size: 9px; font-weight: 750; }
.project-card-link { margin-top: auto; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(17,17,17,.14); padding-top: 18px; font-size: 13px; }
.project-card-link span { transition: transform .25s ease; }
.project-card:hover .project-card-link span { transform: translate(3px,-3px); }
.marquee-note { display: flex; justify-content: center; flex-wrap: wrap; gap: 11px 28px; margin-top: 18px; color: #777671; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.marquee-note span::before { content: "•"; color: var(--acid); margin-right: 9px; }

/* Showreel */
.showreel-grid {
  margin-top: 110px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
}
.showreel-copy h3 { margin: 18px 0 24px; font-size: clamp(44px, 5.2vw, 74px); line-height: .94; letter-spacing: -.06em; }
.showreel-copy > p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.showreel-player-wrap { border-radius: 26px; overflow: hidden; background: #151518; border: 1px solid var(--line); box-shadow: 0 34px 100px rgba(0,0,0,.35); }
.showreel-player { display: block; width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #000; }
.showreel-caption { padding: 15px 18px; display: flex; justify-content: space-between; gap: 20px; color: #8c8b86; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 1100px) {
  .project-card { flex-basis: 470px; width: 470px; }
  .showreel-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 760px) {
  .project-marquee-shell { width: 100vw; padding-bottom: 10px; }
  .project-marquee-fade { width: 34px; }
  .project-marquee-track { animation-duration: 36s; }
  .project-marquee-group { gap: 14px; padding-right: 14px; }
  .project-card { flex-basis: 330px; width: 330px; min-height: 570px; grid-template-rows: 305px 1fr; border-radius: 24px; }
  .mini-device { width: 158px; height: 286px; border-width: 6px; border-radius: 30px; }
  .mini-device-workouts { transform: translate(28px,17px) rotate(5deg); }
  .mini-device-palmist { transform: translate(-4px,16px) rotate(-3deg); }
  .mini-device-clever { transform: translate(18px,16px) rotate(3deg); }
  .mini-device-copy { padding-top: 15px; }
  .mini-device-copy strong { font-size: 19px; }
  .mini-device-list { gap: 6px; padding: 0 12px; }
  .mini-device-list i { height: 25px; }
  .mini-device-button { inset: auto 12px 12px; padding: 9px; }
  .mini-palm { height: 203px; margin-top: 13px; }
  .mini-palm svg { width: 93px; }
  .floating-metric { left: 15px; bottom: 24px; width: 142px; padding: 14px; transform: scale(.88) rotate(-5deg); transform-origin: left bottom; }
  .floating-metric-right { left: auto; right: 8px; transform-origin: right bottom; }
  .project-card-body { padding: 24px; }
  .project-card-body h3 { font-size: 34px; }
  .project-card-body p { font-size: 13px; }
  .showreel-grid { margin-top: 78px; padding-top: 58px; }
  .showreel-copy h3 { font-size: 44px; }
  .showreel-caption { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .project-marquee-shell { overflow-x: auto; scrollbar-width: none; }
  .project-marquee-shell::-webkit-scrollbar { display: none; }
  .project-marquee-track { animation: none; }
  .project-marquee-fade { display: none; }
}

/* Manual project carousel + optional custom images */
.project-marquee-shell {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.25) transparent;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.project-marquee-shell:active { cursor: grabbing; }
.project-marquee-shell::-webkit-scrollbar { height: 7px; }
.project-marquee-shell::-webkit-scrollbar-track { background: transparent; }
.project-marquee-shell::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 999px; }
.project-marquee-shell::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.32); }
.project-marquee-track {
  animation: none !important;
  width: max-content;
  padding-inline: max(24px, calc((100vw - 1280px) / 2));
}
.project-marquee-group { padding-right: 0; }
.project-card { scroll-snap-align: start; }
.project-marquee-fade { display: none !important; }
/* Persistent project cover images.
   Put your files in assets/projects/ using the paths from index.html.
   If an image is missing, the existing generated visual remains as a fallback. */
.project-cover-image {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.project-cover-image[hidden] { display: none; }
.project-card-compass .project-cover-image { object-position: center 27%; }
.project-card-amberpaint .project-cover-image { object-position: center 26%; }
.project-card-radio .project-cover-image { object-position: center 28%; }
.project-card-label { z-index: 7; }

.compass-rose {
  position: relative;
  width: 245px;
  aspect-ratio: 1;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(255,255,255,.05), 0 28px 70px rgba(0,0,0,.35);
}
.compass-rose::before,
.compass-rose::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}
.compass-rose::after { inset: 52px; }
.compass-rose span { position: absolute; top: 17px; left: 50%; color: #ff5a1f; font-size: 20px; font-weight: 900; transform: translateX(-50%); }
.compass-rose i,
.compass-rose b { position: absolute; left: 50%; top: 50%; width: 7px; height: 90px; transform-origin: center bottom; }
.compass-rose i { background: #ff4c18; clip-path: polygon(50% 0,100% 100%,0 100%); transform: translate(-50%,-100%) rotate(20deg); }
.compass-rose b { background: #e5e8e8; clip-path: polygon(50% 0,100% 100%,0 100%); transform: translate(-50%,-100%) rotate(200deg); }

.paint-strokes { position: relative; width: 300px; height: 260px; transform: rotate(-7deg); }
.paint-strokes i { position: absolute; height: 27px; border-radius: 50% 12% 45% 18%; filter: drop-shadow(0 10px 15px rgba(0,0,0,.18)); }
.paint-strokes i:nth-child(1) { width: 270px; left: 5px; top: 44px; background: #fff72e; transform: rotate(15deg); }
.paint-strokes i:nth-child(2) { width: 235px; right: 0; top: 102px; background: #00f4dc; transform: rotate(-12deg); }
.paint-strokes i:nth-child(3) { width: 255px; left: 20px; top: 157px; background: #ff23ad; transform: rotate(9deg); }
.paint-strokes i:nth-child(4) { width: 190px; left: 52px; top: 210px; background: #fff; transform: rotate(-18deg); }

.radio-wave { height: 170px; display: flex; align-items: center; gap: 12px; padding: 0 35px; border-radius: 34px; background: rgba(10,7,24,.48); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 25px 65px rgba(0,0,0,.3); }
.radio-wave i { width: 12px; height: 35%; border-radius: 999px; background: linear-gradient(#30ddff,#bb45ff); box-shadow: 0 0 16px rgba(77,211,255,.35); }
.radio-wave i:nth-child(2), .radio-wave i:nth-child(6) { height: 60%; }
.radio-wave i:nth-child(3), .radio-wave i:nth-child(5) { height: 82%; }
.radio-wave i:nth-child(4) { height: 100%; background: linear-gradient(#fff,#45dfff); }

/* Vertical product showreel */
.showreel-grid { grid-template-columns: 1fr .72fr; }
.showreel-player-wrap {
  width: min(100%, 430px);
  justify-self: center;
}
.showreel-player {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}
.showreel-player:fullscreen,
.showreel-player:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  background: #000;
}

@media (max-width: 1100px) {
  .showreel-grid { grid-template-columns: 1fr; }
  .showreel-player-wrap { width: min(100%, 410px); }
}

@media (max-width: 760px) {
  .project-marquee-track { padding-inline: 18px; }
  .showreel-player-wrap { width: min(88vw, 380px); }
}

/* Additional project identities */
.project-card-artlines .project-card-visual {
  background: radial-gradient(circle at 24% 12%, #ffd36a 0, #ff7a59 28%, #a53b63 64%, #171016 100%);
}
.project-card-drumpad .project-card-visual {
  background: radial-gradient(circle at 48% 32%, #ff477e 0, #7a3cff 34%, #231148 68%, #0b0910 100%);
}
.project-card-piano .project-card-visual {
  background: radial-gradient(circle at 38% 15%, #fff3c3 0, #d7a83b 30%, #47341b 67%, #0d0d0d 100%);
}
.project-card-sleep .project-card-visual {
  background: radial-gradient(circle at 52% 30%, #7cd7ff 0, #6d6eff 33%, #25265b 68%, #090a16 100%);
}
.project-card-moodnotes .project-card-visual {
  background: radial-gradient(circle at 28% 14%, #ffc6a8 0, #ff7d91 31%, #7c426d 66%, #151017 100%);
}

.mini-device-artlines { transform: translate(30px, 20px) rotate(4deg); background: #fff8ee; border-color: #21151b; }
.mini-device-artlines .mini-device-button { background: #6d273f; }
.mini-line-art { position: relative; height: 122px; margin: 6px 15px 0; border-radius: 22px; background: rgba(255,255,255,.75); border: 1px solid rgba(68,31,37,.1); overflow: hidden; }
.mini-line-art::before { content: ""; position: absolute; width: 78px; height: 78px; left: 44px; top: 22px; border: 4px solid #e56567; border-radius: 44% 56% 60% 40% / 48% 35% 65% 52%; transform: rotate(24deg); }
.mini-line-art::after { content: ""; position: absolute; width: 42px; height: 42px; left: 66px; top: 40px; border: 3px solid #d39d39; border-radius: 50%; }
.mini-line-art i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #702e4a; box-shadow: 0 0 0 5px rgba(112,46,74,.08); }
.mini-line-art i:nth-child(1){left:41px;top:58px}.mini-line-art i:nth-child(2){left:83px;top:21px}.mini-line-art i:nth-child(3){right:45px;top:60px}.mini-line-art i:nth-child(4){left:79px;bottom:15px}

.mini-device-drumpad { transform: translate(-16px, 18px) rotate(-4deg); background: #14101e; color: #fff; border-color: #09080d; }
.mini-device-drumpad .mini-device-copy small,.mini-device-drumpad .mini-device-copy span { color: #aaa2ba; }
.mini-pad-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; padding: 6px 14px 14px; }
.mini-pad-grid i { aspect-ratio: 1; border-radius: 9px; background: linear-gradient(145deg,#ff537d,#b338ff); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 7px 18px rgba(0,0,0,.2); }
.mini-pad-grid i:nth-child(3n){background:linear-gradient(145deg,#ffaf45,#ff536a)}
.mini-pad-grid i:nth-child(4n){background:linear-gradient(145deg,#6be4ff,#6a60ff)}
.mini-pad-grid i:nth-child(5n){background:linear-gradient(145deg,#baff66,#50cf9a)}

.mini-device-piano { transform: translate(26px, 20px) rotate(3deg); background: #fbf7ed; border-color: #14120f; }
.mini-device-piano .mini-device-button { background: #17130d; }
.mini-piano { position: relative; height: 124px; margin: 3px 13px 0; display: grid; grid-template-columns: repeat(6,1fr); border: 1px solid #c9c3b5; border-radius: 12px; overflow: hidden; background: #fff; }
.mini-piano i { border-right: 1px solid #d4cec0; background: linear-gradient(#fff,#eee9df); }
.mini-piano i:last-of-type { border-right: 0; }
.mini-piano b { position: absolute; top: 0; width: 18px; height: 75px; background: #161513; border-radius: 0 0 5px 5px; box-shadow: 0 5px 8px rgba(0,0,0,.2); }
.mini-piano b:nth-of-type(1){left:34px}.mini-piano b:nth-of-type(2){left:74px}.mini-piano b:nth-of-type(3){left:115px}.mini-piano b:nth-of-type(4){left:135px}

.sleep-halo { position:absolute; width:330px; height:330px; border-radius:50%; border:1px solid rgba(255,255,255,.2); box-shadow: inset 0 0 70px rgba(160,221,255,.12), 0 0 80px rgba(100,105,255,.22); }
.mini-device-sleep { transform: translate(2px, 19px) rotate(-2deg); background: linear-gradient(180deg,#111631,#151a3d); color:#eef4ff; border-color:#090b16; }
.mini-sleep-score { margin: 28px 14px 18px; padding: 18px 12px; border-radius: 20px; background: linear-gradient(145deg,rgba(124,215,255,.16),rgba(109,110,255,.1)); border:1px solid rgba(255,255,255,.08); text-align:center; }
.mini-sleep-score span,.mini-sleep-score i { display:block; font-size:8px; color:#aab5d8; font-style:normal; }.mini-sleep-score strong{display:block;font-size:31px;line-height:1;margin:8px 0;letter-spacing:-.05em}
.mini-sound-list { display:grid; gap:7px; padding:0 14px; }.mini-sound-list i{display:flex;justify-content:space-between;padding:10px 11px;border-radius:10px;background:rgba(255,255,255,.06);font-style:normal;font-size:8px;color:#dce4ff}.mini-sound-list b{color:#7cd7ff;letter-spacing:2px}.mini-device-sleep .mini-device-button{background:#7878ff}

.mini-device-moodnotes { transform: translate(22px, 20px) rotate(3deg); background:#fff9f5; border-color:#28191e; }
.mini-moods { display:flex; gap:7px; padding:7px 14px 13px; justify-content:space-between; }.mini-moods i{width:27px;height:27px;border-radius:50%;display:grid;place-items:center;background:#ffe0d2;color:#a85461;font-style:normal;font-size:13px;font-weight:900}.mini-moods i:nth-child(2){background:#ffd2d9}.mini-moods i:nth-child(3){background:#f2d8ff}.mini-moods i:nth-child(4){background:#dcd6ff}.mini-moods i:nth-child(5){background:#d5efff}
.mini-insight-card { margin: 0 14px; padding: 12px; border-radius: 13px; background:#fff; box-shadow:0 5px 16px rgba(58,29,39,.08); position:relative; }.mini-insight-card small{display:block;color:#9d7a83;font-size:7px;text-transform:uppercase;letter-spacing:.1em}.mini-insight-card b{display:block;margin-top:5px;font-size:12px}.mini-insight-card span{position:absolute;right:12px;top:15px;color:#b25d73;font-weight:900}

@media (max-width:760px){
  .mini-device-artlines{transform:translate(20px,16px) rotate(4deg)}
  .mini-device-drumpad{transform:translate(-10px,15px) rotate(-4deg)}
  .mini-device-piano{transform:translate(18px,16px) rotate(3deg)}
  .mini-device-sleep{transform:translate(2px,15px) rotate(-2deg)}
  .mini-device-moodnotes{transform:translate(15px,16px) rotate(3deg)}
  .mini-line-art{height:95px;margin-inline:12px}.mini-line-art::before{width:63px;height:63px;left:36px;top:15px}.mini-line-art::after{width:34px;height:34px;left:54px;top:29px}
  .mini-pad-grid{gap:5px;padding:4px 11px 10px}.mini-piano{height:96px;margin-inline:11px}.mini-piano b{width:15px;height:58px}.mini-piano b:nth-of-type(1){left:29px}.mini-piano b:nth-of-type(2){left:61px}.mini-piano b:nth-of-type(3){left:94px}.mini-piano b:nth-of-type(4){left:110px}
  .mini-sleep-score{margin:18px 11px 12px;padding:12px 9px}.mini-sleep-score strong{font-size:25px}.mini-sound-list{gap:5px;padding-inline:11px}.mini-sound-list i{padding:8px 9px}
  .mini-moods{padding-inline:11px}.mini-moods i{width:23px;height:23px}.mini-insight-card{margin-inline:11px}
}


/* Project identities 09–12 */
.project-card-icamp .project-card-visual {
  background: radial-gradient(circle at 34% 18%, #7cf6ff 0, #4b70ff 32%, #39208f 67%, #0b0d1a 100%);
}
.project-card-deep .project-card-visual {
  background: radial-gradient(circle at 30% 15%, #ffd6a5 0, #ff7a8a 31%, #854d9d 66%, #17101b 100%);
}
.project-card-zombies .project-card-visual {
  background: radial-gradient(circle at 46% 22%, #c7ff5f 0, #38c172 31%, #1f4e38 67%, #08100b 100%);
}
.project-card-unmess .project-card-visual {
  background: radial-gradient(circle at 34% 16%, #ffe08a 0, #ff9d4d 31%, #8c4e34 66%, #17100b 100%);
}

.mini-device-icamp { transform: translate(24px, 19px) rotate(3deg); background:#f7f8ff; border-color:#12152e; }
.mini-device-icamp .mini-device-button { background:#4b55de; }
.mini-quiz-list { display:grid; gap:7px; padding:4px 14px 12px; }
.mini-quiz-list i { padding:9px 10px; border-radius:10px; background:#eceeff; color:#59607d; font-size:8px; font-style:normal; border:1px solid #dfe2fa; }
.mini-quiz-list i.active { background:#dfe3ff; color:#28328e; border-color:#9aa5ff; box-shadow:0 5px 15px rgba(75,85,222,.12); }

.connection-orbit { position:absolute; width:320px; height:320px; border:1px solid rgba(255,255,255,.15); border-radius:50%; transform:rotate(-12deg); }
.connection-orbit::before,.connection-orbit::after { content:""; position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.12); inset:42px; }
.connection-orbit::after { inset:95px; }
.connection-orbit i { position:absolute; width:10px; height:10px; border-radius:50%; background:#ffd6a5; box-shadow:0 0 18px rgba(255,214,165,.7); }
.connection-orbit i:nth-child(1){left:34px;top:90px}.connection-orbit i:nth-child(2){right:44px;top:54px}.connection-orbit i:nth-child(3){right:77px;bottom:45px}
.mini-device-deep { transform: translate(-10px, 19px) rotate(-3deg); background:#fff9f4; border-color:#281725; }
.mini-device-deep .mini-device-button { background:#824b8d; }
.mini-connection-actions { display:flex; gap:6px; padding:6px 14px 14px; }
.mini-connection-actions i { flex:1; padding:9px 4px; border-radius:10px; background:#ffe3dc; color:#8d5668; font-size:7px; text-align:center; font-style:normal; font-weight:700; }
.mini-connection-actions i:nth-child(2){background:#eadcff;color:#694c87}.mini-connection-actions i:nth-child(3){background:#fff0c9;color:#8c6b37}

.mini-device-zombies { transform: translate(18px, 18px) rotate(3deg); background:#101813; color:#efffea; border-color:#07100a; }
.mini-zombie-road { position:relative; height:150px; margin:4px 14px 11px; border-radius:16px; overflow:hidden; background:linear-gradient(180deg,#28352c,#151b17); box-shadow:inset 0 0 0 1px rgba(255,255,255,.05); }
.mini-zombie-road::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,transparent 32%,rgba(255,255,255,.04) 32% 34%,transparent 34% 66%,rgba(255,255,255,.04) 66% 68%,transparent 68%); }
.road-line { position:absolute; left:50%; width:2px; height:26px; background:#d7e6c8; opacity:.5; }.road-line.l1{top:12px}.road-line.l2{bottom:14px}
.mini-zombie-road .runner { position:absolute; bottom:20px; width:17px; height:24px; border-radius:7px 7px 5px 5px; background:#d9ff5d; box-shadow:0 0 15px rgba(199,255,95,.28); }.mini-zombie-road .r1{left:43px}.mini-zombie-road .r2{right:43px;background:#7cf0c0}
.mini-zombie-road .zombie { position:absolute; width:21px; height:21px; display:grid; place-items:center; border-radius:50%; background:#3d7649; color:#d4ffc8; font-size:8px; font-style:normal; }.mini-zombie-road .z1{left:21px;top:24px}.mini-zombie-road .z2{right:24px;top:48px}.mini-zombie-road .z3{left:82px;top:73px}
.mini-zombie-road .obstacle { position:absolute; right:75px; top:16px; color:#b59a79; font-size:18px; transform:rotate(8deg); }
.mini-device-zombies .mini-device-button { background:#62b864; color:#071007; }

.mini-device-unmess { transform: translate(-5px, 19px) rotate(-2deg); background:#fbfaf7; border-color:#21170f; }
.mini-file-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:7px; padding:5px 14px 11px; }
.mini-file-grid i { aspect-ratio:1; display:grid; place-items:center; border-radius:11px; background:#fff1d7; color:#9a5a27; font-size:10px; font-style:normal; font-weight:900; border:1px solid #f0dcc0; }
.mini-file-grid i:nth-child(2){background:#ffe4d8;color:#a64d37}.mini-file-grid i:nth-child(3){background:#e9edff;color:#4c5aa2}.mini-file-grid i:nth-child(4){background:#fff0ee;color:#a94942;font-size:7px}.mini-file-grid i:nth-child(5){background:#e0f4ed;color:#34745f}.mini-file-grid i:nth-child(6){background:#eee9e1;color:#77685a}
.mini-source-row { display:flex; gap:6px; padding:0 14px; }.mini-source-row span{flex:1;padding:8px;border-radius:9px;background:#26221e;color:#fff;font-size:7px;text-align:center}.mini-source-row span:last-child{background:#e9f2ff;color:#3876ab}

@media (max-width:760px){
  .mini-device-icamp{transform:translate(16px,15px) rotate(3deg)}
  .mini-device-deep{transform:translate(-7px,15px) rotate(-3deg)}
  .mini-device-zombies{transform:translate(13px,15px) rotate(3deg)}
  .mini-device-unmess{transform:translate(-3px,15px) rotate(-2deg)}
  .mini-quiz-list{gap:5px;padding-inline:11px}.mini-quiz-list i{padding:7px 8px}
  .mini-connection-actions{padding-inline:11px}.connection-orbit{width:260px;height:260px}
  .mini-zombie-road{height:118px;margin-inline:11px}.mini-zombie-road .r1{left:35px}.mini-zombie-road .r2{right:35px}.mini-zombie-road .z3{left:65px}
  .mini-file-grid{gap:5px;padding-inline:11px}.mini-source-row{padding-inline:11px}
}
