:root {
  --primary-1: #2921a7;
  --primary-2: #4b61ff;
  --primary: #3f4fe0;
  --primary-dark: #17173d;
  --lime: #ffd052;
  --coral: #ff6c5c;
  --pink: #f8a8cf;
  --cream: #f8f5ed;
  --ink: #171625;
  --muted: #666476;
  --line: rgba(23,22,37,.14);
  --sans: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--cream); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--lime); color: var(--ink); }
.wrap { width: min(100% - 64px, 1400px); margin-inline: auto; }

.header { position: relative; z-index: 20; display: flex; height: 84px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 700; }
.brand-icon { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 10px; background: linear-gradient(135deg,var(--primary-1),var(--primary-2)); color: white; font: 500 13px var(--mono); transform: rotate(-5deg); }
nav { display: flex; align-items: center; gap: 30px; font-size: 12px; font-weight: 600; }
nav > a:not(.contact-pill):hover { color: var(--primary); }
.contact-pill { display: flex; align-items: center; gap: 17px; padding: 10px 14px 10px 17px; border-radius: 99px; background: var(--ink); color: white; }
.contact-pill span { color: var(--lime); }

.hero { display: grid; min-height: calc(100svh - 84px); grid-template-columns: 53% 47%; align-items: center; gap: 30px; padding-block: 40px 70px; }
.kicker { display: flex; align-items: center; gap: 9px; margin: 0 0 30px; color: var(--primary); font: 10px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.hero h1 { margin: 0; font-size: clamp(64px,7.6vw,116px); font-weight: 600; letter-spacing: -.075em; line-height: .9; }
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-intro { max-width: 530px; margin: 34px 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.primary-button { display: inline-flex; align-items: center; gap: 38px; padding: 11px 12px 11px 19px; border-radius: 99px; background: linear-gradient(115deg,var(--primary-1),var(--primary-2)); color: white; font-size: 12px; font-weight: 700; box-shadow: 0 12px 30px rgba(23,36,61,.18); }
.primary-button span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); }
.hero-playground { position: relative; min-height: 650px; overflow: hidden; border-radius: 42px; background: linear-gradient(145deg,var(--primary-1) 0%,#263f62 48%,var(--primary-2) 100%); box-shadow: 0 28px 70px rgba(16,26,45,.2); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.orbit-a { top: -8%; right: -13%; width: 540px; height: 540px; }
.orbit-b { bottom: -19%; left: -16%; width: 440px; height: 440px; }
.app-tile { position: absolute; display: flex; width: 190px; height: 215px; flex-direction: column; justify-content: space-between; padding: 20px; border-radius: 26px; box-shadow: 0 25px 55px rgba(24,14,95,.27); transition: transform .5s cubic-bezier(.16,1,.3,1); }
.app-tile > span { font-size: 32px; }
.app-tile b { margin-top: auto; font-size: 22px; letter-spacing: -.04em; }
.app-tile small { margin-top: 4px; font-size: 8px; }
.tile-found { top: 12%; left: 12%; background: linear-gradient(145deg,#d9a084,#bc7457); color: #291d1a; transform: rotate(-8deg); }
.tile-found > span { color: #7d3f29; }
.tile-tilt { top: 25%; right: 10%; background: #9aacbf; color: #15243a; transform: rotate(7deg); }
.tile-tilt > span { color: #315b7b; }
.tile-epilogue { bottom: 8%; left: 35%; background: linear-gradient(145deg,#b9afbd,#918696); color: #28202b; transform: rotate(-2deg); }
.tile-epilogue > span { color: #5b5060; font-size: 48px; line-height: .6; }
.hero-playground:hover .tile-found { transform: rotate(-4deg) translateY(-7px); }
.hero-playground:hover .tile-tilt { transform: rotate(3deg) translateY(-8px); }
.hero-playground:hover .tile-epilogue { transform: rotate(1deg) translateY(-6px); }
.spark { position: absolute; color: var(--lime); font-size: 28px; }
.spark-one { top: 8%; right: 8%; }.spark-two { bottom: 8%; left: 9%; color: #9eb6bc; }

.ticker { overflow: hidden; padding: 18px 0; background: #bd7b50; border-block: 1px solid var(--ink); color: #171515; white-space: nowrap; }
.ticker div { width: max-content; font-size: 30px; font-weight: 700; letter-spacing: -.04em; animation: ticker 22s linear infinite; }
.ticker span { margin: 0 28px; color: var(--primary); }
@keyframes ticker { to { transform: translateX(-50%); } }

.work { padding-block: 130px 150px; }
.section-heading { display: grid; grid-template-columns: 1fr 1.25fr; gap: 60px; padding-bottom: 55px; }
.section-heading > div { display: flex; gap: 18px; align-items: flex-start; padding-top: 12px; color: var(--muted); font: 10px var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.section-heading > div p { margin: 0; }.section-heading > div span { color: var(--primary); }
.section-heading h2 { margin: 0; font-size: clamp(48px,5.6vw,82px); font-weight: 600; letter-spacing: -.065em; line-height: .95; }
.project { display: grid; min-height: 720px; grid-template-columns: 40% 60%; margin-top: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: 0 15px 40px rgba(30,24,56,.06); }
.project-info { display: flex; min-width: 0; flex-direction: column; padding: clamp(30px,4vw,58px); }
.project-index { display: flex; align-items: center; justify-content: space-between; margin-bottom: auto; color: var(--muted); font: 9px var(--mono); text-transform: uppercase; }
.project-index > span { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--primary); }
.project-label { margin: 0 0 15px; color: var(--primary); font: 10px var(--mono); letter-spacing: .04em; text-transform: uppercase; }
.project h3 { margin: 0 0 18px; font-size: clamp(68px,7vw,106px); font-weight: 600; letter-spacing: -.075em; line-height: .9; }
.epilogue-project h3 { font-size: clamp(58px,6.3vw,94px); }
.project-copy { max-width: 430px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 38px 0 0; padding: 0; list-style: none; }
.tags li { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: 9px; }
.project-links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; padding-top: 23px; border-top: 1px solid var(--line); }
.project-links a { font-size: 11px; font-weight: 700; }.project-links a:hover { color: var(--primary); }
.project-stage { position: relative; display: grid; min-width: 0; place-items: center; overflow: hidden; }
.stage-word { position: absolute; top: 4%; left: 50%; color: rgba(255,255,255,.15); font-size: clamp(110px,13vw,200px); font-weight: 700; letter-spacing: -.08em; transform: translateX(-50%); }
.floating-note { position: absolute; z-index: 4; padding: 8px 11px; border: 1px solid currentColor; border-radius: 99px; font: 8px var(--mono); text-transform: uppercase; }

.found-stage { background: linear-gradient(145deg,#ff846f,#ff4c72); }
.found-phone { position: relative; z-index: 2; width: min(43%,310px); padding: 18px; border-radius: 34px; background: #fffaf3; box-shadow: 0 35px 80px rgba(108,19,36,.3); transform: rotate(-4deg); transition: transform .55s cubic-bezier(.16,1,.3,1); }
.project:hover .found-phone { transform: rotate(0) translateY(-7px); }
.phone-top { display: flex; justify-content: space-between; padding: 3px 2px 15px; font-size: 12px; }.phone-top span { letter-spacing: 2px; }
.profile-pic { position: relative; display: grid; aspect-ratio: .96; place-items: center; border-radius: 22px; background: linear-gradient(145deg,#f4c4ba,#dc8a7d); }
.profile-pic > span { display: grid; width: 92px; height: 92px; place-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: white; font-size: 29px; }
.profile-pic strong { position: absolute; right: 9px; bottom: 9px; padding: 6px 8px; border-radius: 99px; background: white; color: var(--coral); font: 7px var(--mono); text-transform: uppercase; }
.profile-body { padding: 15px 2px 12px; }.profile-body b,.profile-body small { display: block; }.profile-body b { font-size: 18px; }.profile-body small { margin-top: 3px; color: var(--muted); font-size: 8px; }.profile-body div { display: flex; gap: 5px; margin-top: 9px; }.profile-body i { padding: 5px 7px; border-radius: 99px; background: #f7dfda; font-size: 7px; font-style: normal; }
.found-phone button { width: 100%; padding: 11px; border: 0; border-radius: 99px; background: var(--coral); color: white; font-size: 9px; }
.note-one { top: 19%; left: 9%; color: white; }.note-two { right: 8%; bottom: 15%; color: white; }

.tilt-stage { background: radial-gradient(circle at 50% 50%,#6154ff 0%,#372abf 70%); }
.tilt-board { position: relative; z-index: 2; width: min(57%,430px); aspect-ratio: .72; overflow: hidden; border: 2px solid rgba(255,255,255,.85); border-radius: 36px; background: #111410; box-shadow: 0 35px 85px rgba(22,12,94,.45); transform: rotate(6deg); transition: transform .55s cubic-bezier(.16,1,.3,1); }
.project:hover .tilt-board { transform: rotate(2deg) translateY(-7px); }
.board-logo { position: absolute; top: 35px; left: 50%; color: var(--lime); font: 11px var(--mono); letter-spacing: .22em; transform: translateX(-50%); }
.path { position: absolute; height: 3px; background: var(--lime); }.path-a { top: 40%; left: -5%; width: 67%; transform: rotate(-15deg); }.path-b { right: -9%; bottom: 27%; width: 75%; transform: rotate(23deg); }
.ball { position: absolute; top: 39%; left: 45%; width: 38px; height: 38px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 40px rgba(220,255,84,.4); animation: ball 3s ease-in-out infinite alternate; }
@keyframes ball { to { transform: translate(38px,95px); } }
.tilt-board small { position: absolute; bottom: 28px; width: 100%; color: #8d9184; font: 8px var(--mono); text-align: center; text-transform: uppercase; }
.note-three { top: 17%; left: 8%; color: var(--lime); }.note-four { right: 7%; bottom: 12%; color: white; }

.epilogue-stage { background: linear-gradient(145deg,#d5c1ff,#ffbada); }
.epilogue-stage .stage-word { color: rgba(82,34,109,.1); }
.story-panel { position: relative; z-index: 2; display: flex; width: min(65%,490px); min-height: 420px; flex-direction: column; justify-content: space-between; padding: 44px; border-radius: 32px; background: linear-gradient(145deg,#4c245f,#291737); color: white; box-shadow: 0 35px 80px rgba(65,22,77,.28); transform: rotate(-3deg); transition: transform .55s cubic-bezier(.16,1,.3,1); }
.project:hover .story-panel { transform: rotate(0) translateY(-7px); }
.story-panel small { color: var(--pink); font: 9px var(--mono); letter-spacing: .05em; text-transform: uppercase; }.story-panel > p { max-width: 390px; margin: 0; font-size: clamp(32px,3.5vw,50px); font-weight: 500; letter-spacing: -.05em; line-height: 1.08; }.story-panel > div { display: flex; align-items: center; gap: 12px; color: #c4afcc; font-size: 10px; }.story-panel i { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid #80688a; border-radius: 50%; color: white; font-style: normal; }
.quote-mark { position: absolute; right: 7%; bottom: 1%; color: rgba(255,255,255,.5); font-size: 150px; line-height: 1; }

.studio { width: 100%; max-width: none; padding: 130px max(32px,calc((100% - 1400px)/2)) 150px; background: linear-gradient(135deg,var(--primary-1),var(--primary-2)); color: white; }
.section-heading.light > div { color: #c8c3ff; }.section-heading.light > div span { color: var(--lime); }
.studio-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 60px; padding-top: 55px; border-top: 1px solid rgba(255,255,255,.25); }
.studio-grid > p { max-width: 490px; margin: 0; color: #d4d0ff; font-size: 21px; line-height: 1.55; }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.values article { min-height: 250px; padding: 22px; border-radius: 22px; background: rgba(255,255,255,.1); }.values article:nth-child(2) { background: var(--lime); color: var(--ink); transform: translateY(25px); }.values span { font: 9px var(--mono); }.values h3 { margin: 90px 0 7px; font-size: 23px; }.values p { margin: 0; opacity: .7; font-size: 12px; line-height: 1.5; }

.journal { padding-block: 140px; }
.journal-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; }
.journal-feature,.journal-signup { min-height: 340px; padding: 38px; border-radius: 28px; }
.journal-feature { background: linear-gradient(135deg,var(--lime),#efffb1); }.journal-feature > span,.journal-signup > span { font: 9px var(--mono); text-transform: uppercase; }.journal-feature h3 { max-width: 720px; margin: 80px 0 20px; font-size: clamp(30px,3.5vw,50px); letter-spacing: -.05em; line-height: 1.08; }.journal-feature p { max-width: 540px; margin: 0; color: #4f543c; font-size: 14px; line-height: 1.55; }
.journal-signup { display: flex; flex-direction: column; justify-content: space-between; background: var(--coral); color: white; }.journal-signup a { font-size: 17px; font-weight: 700; overflow-wrap: anywhere; }

.contact { padding-block: 120px; border-top: 1px solid var(--line); }.contact > p { margin: 0 0 36px; color: var(--primary); font: 10px var(--mono); text-transform: uppercase; }.contact > a { display: flex; align-items: center; justify-content: space-between; font-size: clamp(62px,10vw,150px); font-weight: 600; letter-spacing: -.075em; line-height: .9; }.contact > a span { display: grid; width: .7em; height: .7em; place-items: center; border-radius: 25%; background: linear-gradient(135deg,var(--primary-1),var(--primary-2)); color: var(--lime); font-size: .34em; transform: rotate(-5deg); transition: transform .2s ease; }.contact > a:hover span { transform: rotate(2deg) translate(5px,-5px); }
.footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding-block: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }.footer p:nth-child(2) { text-align: center; }.footer p:last-child { text-align: right; }

/* Journal */
.blog-header { border-bottom: 1px solid var(--line); }
.blog-hero { padding-block: 110px 100px; }
.blog-hero h1 { max-width: 1100px; margin: 0; font-size: clamp(70px,10vw,148px); font-weight: 600; letter-spacing: -.08em; line-height: .86; }
.blog-hero h1 em { color: var(--primary); font-style: normal; }
.blog-hero > div { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-top: 65px; padding-top: 28px; border-top: 1px solid var(--line); }
.blog-hero > div p { max-width: 540px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.blog-hero > div span { color: var(--primary); font: 10px var(--mono); text-transform: uppercase; }
.blog-list { padding-block: 30px 140px; }
.blog-list-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.blog-list-head h2 { margin: 0; font-size: 18px; }
.blog-list-head p { margin: 0; color: var(--muted); font: 9px var(--mono); text-transform: uppercase; }
.posts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: white; }
.post-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr; }
.post-card-image { position: relative; display: block; min-height: 360px; overflow: hidden; background: var(--primary-dark); }
.post-card-featured .post-card-image { min-height: 550px; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.post-card:hover .post-card-image img { transform: scale(1.025); }
.post-card-image > span { position: absolute; top: 18px; left: 18px; padding: 8px 11px; border-radius: 99px; background: rgba(255,249,237,.92); font: 8px var(--mono); text-transform: uppercase; backdrop-filter: blur(8px); }
.post-card-body { display: flex; min-height: 330px; flex-direction: column; padding: 30px; }
.post-card-featured .post-card-body { justify-content: center; padding: clamp(35px,5vw,70px); }
.post-card-meta { display: flex; gap: 18px; color: var(--muted); font: 9px var(--mono); text-transform: uppercase; }
.post-card h3 { margin: 28px 0 16px; font-size: clamp(27px,3vw,44px); letter-spacing: -.05em; line-height: 1.07; }
.post-card-featured h3 { font-size: clamp(38px,4.2vw,62px); }
.post-card-body > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.read-link { width: fit-content; margin-top: auto; padding-top: 28px; font-size: 11px; font-weight: 700; }
.read-link:hover { color: var(--primary); }
.post-loading { min-height: 70svh; padding-block: 100px; color: var(--muted); font: 10px var(--mono); text-transform: uppercase; }
.blog-error { min-height: 70svh; padding: 100px max(20px,calc((100% - 1400px)/2)); }
.blog-error h1 { margin: 0 0 20px; font-size: clamp(54px,8vw,110px); letter-spacing: -.07em; }
.blog-error p { color: var(--muted); }.blog-error a { display: inline-block; margin-top: 30px; color: var(--primary); font-weight: 700; }

.post-hero { max-width: 1160px; padding-block: 90px 70px; }
.back-link { display: inline-block; margin-bottom: 80px; color: var(--muted); font-size: 11px; }
.back-link:hover { color: var(--primary); }
.post-category { margin: 0 0 22px; color: var(--primary); font: 10px var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.post-hero h1 { max-width: 1080px; margin: 0; font-size: clamp(60px,8.6vw,126px); font-weight: 600; letter-spacing: -.075em; line-height: .9; }
.post-deck { max-width: 760px; margin: 40px 0 50px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.post-byline { display: flex; flex-wrap: wrap; gap: 12px 30px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font: 9px var(--mono); text-transform: uppercase; }
.post-featured { height: min(72vw,800px); overflow: hidden; border-radius: 30px; background: var(--primary-dark); }
.post-featured img { width: 100%; height: 100%; object-fit: cover; }
.post-content { width: min(100% - 40px,760px); margin: 100px auto 130px; }
.post-content > p { margin: 0 0 30px; color: #37353c; font-size: 18px; line-height: 1.85; }
.post-content h2 { margin: 85px 0 26px; font-size: clamp(34px,4vw,52px); letter-spacing: -.05em; line-height: 1.08; }
.post-content figure { width: min(1100px,calc(100vw - 40px)); margin: 75px 50%; transform: translateX(-50%); }
.post-content figure img { display: block; width: 100%; max-height: 720px; object-fit: cover; border-radius: 24px; }
.post-content figcaption { margin-top: 13px; color: var(--muted); font: 9px var(--mono); line-height: 1.5; }
.post-content blockquote { margin: 75px 0; padding: 35px 0 35px 34px; border-left: 4px solid var(--primary); }
.post-content blockquote p { margin: 0; font-size: clamp(29px,3.5vw,43px); font-weight: 600; letter-spacing: -.04em; line-height: 1.2; }
.post-content blockquote cite { display: block; margin-top: 20px; color: var(--muted); font: normal 9px var(--mono); text-transform: uppercase; }
.post-content ul,.post-content ol { margin: 30px 0 45px; padding-left: 24px; }
.post-content li { margin: 12px 0; padding-left: 8px; color: #37353c; font-size: 17px; line-height: 1.65; }
.post-content .post-source { margin: -14px 0 42px; color: var(--muted); font: 10px var(--mono); text-transform: uppercase; }
.post-source a { color: var(--primary); font-weight: 500; }
.post-source a:hover { text-decoration: underline; }
.post-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 55px 0; }
.post-cta a { display: inline-flex; padding: 15px 20px; border-radius: 99px; background: linear-gradient(115deg,var(--primary-1),var(--primary-2)); color: white; font-size: 12px; font-weight: 700; box-shadow: 0 12px 28px rgba(23,36,61,.16); }
.post-cta a.post-cta-secondary { border: 1px solid var(--line); background: transparent; color: var(--primary-dark); box-shadow: none; }
.post-cta a:hover { transform: translateY(-2px); }
.post-end { display: flex; align-items: center; justify-content: space-between; margin-bottom: 120px; padding: 40px; border-radius: 24px; background: linear-gradient(135deg,var(--primary-1),var(--primary-2)); color: white; }
.post-end p { margin: 0; font-size: 18px; font-weight: 700; }.post-end a { font-size: 11px; }

.error-page { min-height: 100svh; background: linear-gradient(135deg,var(--primary-1),var(--primary-2)); color: white; }
.error-page .brand-icon { background: var(--lime); color: var(--ink); }
.error-main { position: relative; display: flex; min-height: calc(100svh - 84px); flex-direction: column; justify-content: center; overflow: hidden; padding-block: 70px; }
.error-main > p { color: #c8c3ff; font: 10px var(--mono); text-transform: uppercase; }
.error-main h1 { position: relative; z-index: 2; margin: 30px 0 55px; font-size: clamp(72px,11vw,165px); letter-spacing: -.08em; line-height: .82; }
.error-main h1 em { color: var(--lime); font-style: normal; }
.error-main .primary-button { position: relative; z-index: 2; width: fit-content; background: white; color: var(--ink); box-shadow: none; }
.error-main > div { position: absolute; right: 2%; display: grid; width: min(42vw,560px); aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 38%; color: rgba(255,255,255,.08); font-size: 32vw; font-weight: 700; transform: rotate(9deg); }

@media (max-width: 850px) {
  .wrap { width: calc(100% - 40px); }
  .header { height: 74px; }
  nav > a:not(.contact-pill) { display: none; }
  .contact-pill { padding: 9px 12px; font-size: 0; }.contact-pill span { font-size: 15px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 65px; padding-block: 70px 80px; }
  .hero h1 { font-size: clamp(54px,15vw,72px); }.hero-intro { font-size: 15px; }
  .hero-playground { min-height: 570px; border-radius: 30px; }
  .app-tile { width: 155px; height: 185px; padding: 17px; }.tile-found { left: 7%; }.tile-tilt { right: 5%; }.tile-epilogue { left: 29%; }.app-tile b { font-size: 19px; }
  .ticker div { font-size: 22px; }
  .work { padding-block: 90px 100px; }
  .section-heading { grid-template-columns: 1fr; gap: 35px; padding-bottom: 40px; }.section-heading h2 { font-size: 48px; }
  .project { min-height: 0; grid-template-columns: 1fr; border-radius: 22px; }
  .project-info { min-height: 550px; padding: 30px; }.project-index { margin-bottom: auto; }
  .project h3,.epilogue-project h3 { font-size: 68px; }.project-copy { font-size: 15px; }
  .project-stage { min-height: 580px; }.found-phone { width: 62%; }.tilt-board { width: 67%; }.story-panel { width: 81%; min-height: 380px; padding: 30px; }.story-panel > p { font-size: 32px; }
  .floating-note { font-size: 7px; }.note-one,.note-three { left: 12px; }.note-two,.note-four { right: 12px; }
  .studio { padding: 90px 20px 120px; }.studio-grid { grid-template-columns: 1fr; }.studio-grid > p { font-size: 17px; }.values { grid-template-columns: 1fr; }.values article { min-height: 190px; }.values article:nth-child(2) { transform: none; }.values h3 { margin-top: 55px; }
  .journal { padding-block: 100px; }.journal-grid { grid-template-columns: 1fr; }.journal-feature,.journal-signup { min-height: 300px; padding: 28px; }.journal-feature h3 { margin-top: 60px; }
  .contact { padding-block: 90px; }.contact > a { font-size: 58px; }
  .footer { grid-template-columns: 1fr auto; }.footer p:nth-child(2) { display: none; }
  .blog-hero { padding-block: 80px 75px; }.blog-hero h1 { font-size: clamp(56px,15vw,74px); }.blog-hero > div { align-items: flex-start; flex-direction: column; }.blog-hero > div p { font-size: 15px; }
  .blog-list { padding-bottom: 100px; }.blog-list-head p { display: none; }.posts-grid { grid-template-columns: 1fr; }.post-card-featured { grid-column: auto; display: block; }.post-card-image,.post-card-featured .post-card-image { min-height: 330px; }.post-card-body,.post-card-featured .post-card-body { min-height: 340px; padding: 28px; }.post-card h3,.post-card-featured h3 { font-size: 31px; }
  .post-hero { padding-block: 65px 50px; }.back-link { margin-bottom: 60px; }.post-hero h1 { font-size: clamp(52px,14vw,72px); }.post-deck { margin-block: 30px 40px; font-size: 17px; }.post-featured { width: calc(100% - 40px); height: 72vw; border-radius: 20px; }.post-content { margin-block: 70px 95px; }.post-content > p { font-size: 17px; line-height: 1.75; }.post-content h2 { margin-top: 65px; }.post-content figure { margin-block: 55px; }.post-content figure img { border-radius: 16px; }.post-content blockquote { margin-block: 55px; padding-left: 22px; }.post-end { align-items: flex-start; flex-direction: column; gap: 35px; margin-bottom: 85px; padding: 28px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }

/* Vivid studio theme */
.brand-icon { background: var(--primary); box-shadow: 0 7px 18px rgba(63,79,224,.22); }
.contact-pill { background: var(--primary-dark); box-shadow: 0 8px 22px rgba(23,23,61,.13); }
.hero h1 em,.blog-hero h1 em { background: linear-gradient(105deg,var(--primary-2),#8158e9); background-clip: text; color: transparent; }
.primary-button { box-shadow: 0 14px 34px rgba(63,79,224,.25); }
.hero-playground { background: radial-gradient(circle at 82% 12%,#766cff 0 8%,transparent 31%),linear-gradient(145deg,#241b91 0%,#3f4fe0 54%,#6475ff 100%); box-shadow: 0 30px 80px rgba(41,33,167,.28); }
.app-tile { border: 1px solid rgba(255,255,255,.45); }
.tile-found { background: linear-gradient(145deg,#ff9a7e,#ff6c5c); color: #3c1922; }
.tile-found > span { color: #8c2636; }
.tile-tilt { background: var(--lime); color: #242141; }
.tile-tilt > span { color: var(--primary); }
.tile-epilogue { background: linear-gradient(145deg,#f6c2e0,#bfafff); color: #332044; }
.tile-epilogue > span { color: #6e4eb5; }
.spark-two { color: #ffa7d5; }
.ticker { background: var(--lime); color: var(--ink); }
.project { border-color: rgba(63,79,224,.16); background: #fffefa; box-shadow: 0 20px 55px rgba(41,33,167,.09); }
.found-stage { background: linear-gradient(145deg,#ff9c67,#ff526d); }
.tilt-stage { background: radial-gradient(circle at 48% 46%,#7180ff 0%,#3f4fe0 48%,#2921a7 100%); }
.epilogue-stage { background: linear-gradient(145deg,#c4b4ff,#ffadd1 58%,#ffc879); }
.studio { background: radial-gradient(circle at 88% 15%,#635fff 0 6%,transparent 26%),linear-gradient(135deg,#211b7c,var(--primary-2)); }
.section-heading.light > div { color: #d5d4ff; }
.studio-grid > p { color: #e2e2ff; }
.values article { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.11); }
.values article:nth-child(3) { background: var(--coral); }
.journal-feature { background: linear-gradient(135deg,var(--lime),#ffdf7d); }
.journal-feature p { color: #55471f; }
.journal-signup { background: linear-gradient(145deg,var(--primary-1),var(--primary-2)); }
.contact > a span { box-shadow: 0 12px 28px rgba(63,79,224,.2); }
.post-card { border-color: rgba(63,79,224,.14); background: #fffefa; box-shadow: 0 16px 40px rgba(41,33,167,.07); }
.post-card-image > span { background: var(--lime); color: var(--ink); }
.post-content blockquote { border-left-color: var(--coral); }
.post-end { background: linear-gradient(125deg,var(--primary-1),var(--primary-2)); }
