/* Ponchokings Studio — brand tokens from the approved design */
:root {
  --ground: #F5FBFF;
  --paper: #FFFFFF;
  --ink: #111111;
  --ink-soft: #333333;
  --ink-mute: #444444;
  --ink-faint: #666666;
  --ink-ghost: #777777;
  --rule: #E3EEF6;
  --hover: #EAF6FF;
  --yellow: #FFD400;
  --sky: #5DB9F2;
  --sky-2: #6FC3F6;
  --blue: #0F7FD0;
  --green: #22C55E;
  --display: 'Baloo 2', 'Arial Rounded MT Bold', 'Trebuchet MS', sans-serif;
  --body: 'Nunito', 'Segoe UI', 'Trebuchet MS', sans-serif;
  --gutter: clamp(20px, 5.5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
h1, h2, h3, p { margin: 0; }
h1, h2 { text-wrap: balance; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

.display { font-family: var(--display); font-weight: 800; }
.sticker { border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
/* Diagonal stripes that drift slowly to the right. The layer is one
   horizontal period wider than the section and slides by exactly that
   period (stripe pair width × √2 for a 45° stripe), so the loop is seamless. */
.stripes {
  --stripe: 28px; --stripe-period: calc(var(--stripe) * 2 * 1.41421356);
  /* Scroll parallax: the layer overshoots the section by --reach on top and
     bottom, and app.js nudges --py (within ±--reach) as the page scrolls so
     the stripes move slower than the content, like a plane sitting behind it. */
  --reach: 240px; --py: 0px;
  position: relative; overflow: hidden; background: var(--sky);
}
.stripes::before {
  content: ""; position: absolute; top: calc(-1 * var(--reach)); bottom: calc(-1 * var(--reach)); left: calc(-1 * var(--stripe-period)); right: 0;
  background-image: repeating-linear-gradient(135deg, var(--sky) 0 var(--stripe), var(--sky-2) var(--stripe) calc(var(--stripe) * 2));
  translate: 0 var(--py);
  animation: stripes-drift 3.5s linear infinite; will-change: transform; pointer-events: none;
}
.stripes > * { position: relative; }
@keyframes stripes-drift { from { transform: translateX(0); } to { transform: translateX(var(--stripe-period)); } }
@media (prefers-reduced-motion: reduce) { .stripes::before { animation: none; } }
/* Outlined display text. The 2px outline is a ring of hard text-shadows rather than
   -webkit-text-stroke, so phones and desktops draw it identically; the last shadow
   is the 5px offset drop. */
.outline {
  color: var(--paper);
  text-shadow: -2px -2px 0 var(--ink), 0 -2px 0 var(--ink), 2px -2px 0 var(--ink), -2px 0 0 var(--ink), 2px 0 0 var(--ink), -2px 2px 0 var(--ink), 0 2px 0 var(--ink), 2px 2px 0 var(--ink), -1px -2px 0 var(--ink), 1px -2px 0 var(--ink), -2px -1px 0 var(--ink), 2px -1px 0 var(--ink), -2px 1px 0 var(--ink), 2px 1px 0 var(--ink), -1px 2px 0 var(--ink), 1px 2px 0 var(--ink), 5px 5px 0 var(--ink), 6px 6px 0 var(--ink);
}
.outline-sm { color: var(--paper); text-shadow: 3px 3px 0 var(--ink); }
.eyebrow {
  display: inline-flex; align-self: flex-start;
  background: var(--paper); border: 3px solid var(--ink); border-radius: 999px;
  padding: 6px 16px; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.3;
}
.eyebrow-yellow { background: var(--yellow); }

/* Sections share one gutter */
main > section, .nav, .footer { padding-inline: var(--gutter); }
main > section { border-bottom: 3px solid var(--ink); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 20px; background: var(--paper); border-bottom: 3px solid var(--ink);
}
.brand { font-size: 24px; letter-spacing: -0.3px; white-space: nowrap; }
.brand span { color: var(--blue); }
.brand:hover { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 36px; font-weight: 700; font-size: 16px; }
.pill-btn {
  background: var(--yellow); color: var(--ink); padding: 10px 22px;
  border: 3px solid var(--ink); border-radius: 999px; box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.pill-btn:hover { color: var(--ink); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; }
.nav-toggle:hover { background: var(--hover); }

/* HERO */
.hero {
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
  padding-block: 88px;
}
.hero-copy { display: flex; flex-direction: column; gap: 24px; max-width: 700px; }
.hero h1 { font-size: clamp(40px, 5.3vw, 76px); line-height: 1.02; letter-spacing: -1px; }
.lede { font-size: 20px; line-height: 1.5; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 8px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px; border-radius: 14px; font-size: 18px; color: var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn.sticker:hover { color: var(--ink); transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--ink); }
.btn-yellow { background: var(--yellow); }
.btn-white { background: var(--paper); }
.hero-badge {
  position: relative; width: 420px; height: 420px; flex-shrink: 0;
  /* Slow sway: 15° left → 15° right and back, easing at each end. */
  animation: badge-sway 6s ease-in-out infinite alternate; will-change: transform;
}
@keyframes badge-sway { from { transform: rotate(-15deg); } to { transform: rotate(15deg); } }
@media (prefers-reduced-motion: reduce) { .hero-badge { animation: none; } }
.badge-back { position: absolute; inset: 0; background: var(--yellow); border: 3px solid var(--ink); border-radius: 40px; transform: rotate(6deg); }
.badge-front {
  position: absolute; inset: 0; border-radius: 40px; border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink); background: var(--sky);
  display: flex; align-items: center; justify-content: center;
}
.badge-front img { width: 81%; height: 81%; object-fit: contain; }

/* STATS */
.stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px;
  padding-block: 56px; background: var(--paper);
}
.stat { display: flex; flex-direction: column; gap: 6px; padding: 28px 32px; border-radius: 20px; }
.stat-white { background: var(--paper); }
.stat-yellow { background: var(--yellow); }
.stat-sky { background: var(--sky); }
.stat-num { font-size: 56px; line-height: 1; display: flex; align-items: center; gap: 12px; font-variant-numeric: tabular-nums; }
.stat-white .stat-num { color: var(--blue); }
.stat-label { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; }
.live-dot { width: 12px; height: 12px; border-radius: 999px; background: var(--green); border: 2px solid var(--ink); display: inline-block; flex-shrink: 0; }

/* GAMES */
.games { display: flex; flex-direction: column; gap: 28px; padding-block: 80px; background: var(--ground); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head h2, .about h2, .careers h2 { font-size: clamp(32px, 3.4vw, 48px); line-height: 1.05; }
.sub { font-size: 18px; color: var(--ink-mute); margin-top: 8px; }
/* Game cards: square art on top, stats below, max 4 per row */
/* Fluid columns: as many 260px+ cards as fit (4 on laptops, 5–6 on large monitors) */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 32px 28px; }
/* Collapsed: app.js hides everything past the first two rows */
.games-grid.is-collapsed .card.is-hidden { display: none; }
.games-more { display: flex; justify-content: center; }
.games-more .btn { padding: 14px 26px; font-size: 16px; }
.games-empty { grid-column: 1 / -1; padding: 40px 28px; color: var(--ink-faint); text-align: center; background: var(--paper); border: 3px solid var(--ink); border-radius: 20px; }
.card {
  display: flex; flex-direction: column; background: var(--paper); border-radius: 20px; overflow: hidden;
  border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); color: var(--ink);
  transition: transform .14s ease, box-shadow .14s ease;
}
a.card:hover { color: var(--ink); transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
a.card:hover .card-art img { transform: scale(1.04); }
.card-art {
  position: relative; aspect-ratio: 1 / 1; border-bottom: 3px solid var(--ink); overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: var(--sky);
}
.card-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.card-art .mono { font-size: clamp(48px, 6vw, 84px); line-height: 1; letter-spacing: -2px; }
.art-1 { background: var(--yellow); }
.art-2 { background: var(--sky); color: var(--paper); text-shadow: 4px 4px 0 var(--ink); }
.art-3 { background: var(--ink); color: var(--yellow); }
.art-0 { background: var(--paper); color: var(--blue); }
.ccu {
  position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 999px; padding: 5px 12px 5px 9px;
  font-size: 14px; font-family: var(--display); font-weight: 800; box-shadow: 3px 3px 0 var(--ink);
  font-variant-numeric: tabular-nums; max-width: calc(100% - 24px); color: var(--ink); text-shadow: none;
}
.ccu .live-dot { width: 10px; height: 10px; }
.ccu.is-dev { background: var(--yellow); }
.card-body { display: flex; flex-direction: column; gap: 4px; padding: 16px 18px 18px; }
.card-title { font-size: 20px; line-height: 1.15; overflow-wrap: anywhere; }
.card-meta { font-size: 14px; font-weight: 700; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.card-cta { margin-top: 8px; font-size: 14px; font-family: var(--display); font-weight: 800; color: var(--blue); }
.footnote { font-size: 13px; color: var(--ink-ghost); min-height: 1em; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; padding-block: 88px; background: var(--paper); }
.about-copy { display: flex; flex-direction: column; gap: 24px; }
.prose { display: flex; flex-direction: column; gap: 16px; font-size: 18px; line-height: 1.6; color: var(--ink-soft); max-width: 62ch; }
/* Founder portrait with the Roblox avatar overlapping it */
.about-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.portrait-wrap { position: relative; width: min(100%, 380px); aspect-ratio: 1 / 1; margin-right: 6%; }
.portrait-back {
  position: absolute; inset: 0; border-radius: 50%; background: var(--yellow);
  border: 3px solid var(--ink); transform: translate(18px, 18px);
}
.portrait {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--ink); background: var(--ink); box-shadow: 8px 8px 0 var(--ink);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.avatar {
  position: absolute; right: -8%; bottom: -3%; width: 38%; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--ink); background: var(--sky); box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(6deg);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.about-caption { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.about-caption .eyebrow { align-self: center; background: var(--yellow); }
.caption-role { font-size: 15px; font-weight: 700; color: var(--ink-faint); }

/* CAREERS */
.careers { display: flex; flex-direction: column; gap: 32px; padding-block: 88px; }
.careers-head { display: flex; flex-direction: column; gap: 10px; max-width: 720px; }
.sub-dark { font-size: 18px; }
.roles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.role { display: flex; flex-direction: column; gap: 16px; padding: 30px 32px; border-radius: 22px; background: var(--paper); }
.role-loading, .role-empty { grid-column: 1 / -1; color: var(--ink-faint); text-align: center; }
.role-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.role h3 { font-size: 28px; line-height: 1.1; }
.badge { background: var(--yellow); border: 2px solid var(--ink); border-radius: 999px; padding: 4px 12px; font-size: 13px; white-space: nowrap; font-family: var(--display); font-weight: 800; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { border: 2px solid var(--ink); border-radius: 999px; padding: 4px 12px; font-size: 13px; font-weight: 800; }
.role p { font-size: 16px; line-height: 1.55; color: var(--ink-mute); }
.role-link {
  align-self: flex-start; background: var(--ink); color: var(--paper); border-radius: 12px;
  padding: 12px 22px; font-size: 16px; margin-top: auto;
}
.role-link:hover { color: var(--yellow); }
/* Contact form at the bottom of Careers: the black framed box, now holding a form */
.contact {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 36px; align-items: start;
  padding: 30px 36px 34px; border-radius: 22px; background: var(--ink); color: var(--paper);
  border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink);
}
.contact-copy { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.contact-copy h3 { font-size: 30px; line-height: 1.1; color: var(--yellow); }
.contact-copy p { font-size: 17px; line-height: 1.55; color: #E6E6E6; }
.contact-alt { font-size: 15px; color: #BBBBBB; }
.contact-alt a { color: var(--paper); font-weight: 800; text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 3px; }
.contact-alt a:hover { color: var(--yellow); }
.contact .contact-form { max-width: none; padding: 0; background: transparent; border: 0; box-shadow: none; border-radius: 0; gap: 16px 20px; }
.contact-form .field label { color: var(--paper); }
.contact-form .field .req { color: #BBBBBB; }
.contact-form .field input, .contact-form .field textarea { background: var(--paper); border-color: var(--paper); }
.contact-form .field input:focus, .contact-form .field textarea:focus { box-shadow: 4px 4px 0 var(--sky); }
.contact-form .field.is-missing input, .contact-form .field.is-missing textarea { border-color: #FF8A65; background: #FFF4EE; }
.contact-form textarea { min-height: 120px; }
.contact-form .btn { background: var(--yellow); color: var(--ink); border: 3px solid var(--paper); box-shadow: 4px 4px 0 var(--paper); padding: 12px 22px; font-size: 16px; }
.contact-form .btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--paper); }
.contact-form .apply-hint { color: #DDDDDD; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.apply-hint.is-error { color: #FFB39A; font-weight: 700; }
.apply-hint.is-ok { color: var(--yellow); font-weight: 800; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* ROLE PAGE (roles/*.html) */
.role-hero { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; padding-block: 64px 72px; }
.crumb { font-size: 15px; font-weight: 800; color: var(--ink); }
.crumb:hover { color: var(--ink); text-decoration: underline; text-decoration-thickness: 3px; }
.role-hero h1 { font-size: clamp(38px, 5vw, 68px); line-height: 1.02; letter-spacing: -1px; max-width: 16ch; }
.role-chips .chip { background: var(--paper); font-size: 14px; padding: 6px 14px; }
.role-lede { font-size: 19px; line-height: 1.5; max-width: 62ch; }
.role-body { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; padding-block: 72px; background: var(--paper); align-items: start; }
.role-content { display: flex; flex-direction: column; gap: 44px; max-width: 70ch; }
.role-section { display: flex; flex-direction: column; gap: 14px; }
.role-section h2 { font-size: 30px; line-height: 1.1; }
.role-section p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); }
.role-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.role-list li { position: relative; padding-left: 30px; font-size: 17px; line-height: 1.55; color: var(--ink-soft); }
.role-list li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 12px; height: 12px; border-radius: 4px; background: var(--yellow); border: 2px solid var(--ink); }
.role-plus { background: var(--ground); border: 2px solid var(--ink); border-radius: 14px; padding: 12px 16px; }
.skills { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.skills-label { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); }
.skills .chip { background: var(--yellow); }
.role-plus strong { color: var(--ink); }
.role-pay { font-size: 30px; line-height: 1.1; color: var(--blue); }
.role-aside { position: sticky; top: 100px; }
.role-card { display: flex; flex-direction: column; gap: 16px; padding: 24px 26px; border-radius: 20px; background: var(--ground); }
.role-card-label { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); }
.facts { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.facts div { display: flex; flex-direction: column; gap: 2px; padding-bottom: 10px; border-bottom: 2px solid var(--rule); }
.facts div:last-child { border-bottom: 0; padding-bottom: 0; }
.facts dt { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink-faint); }
.facts dd { margin: 0; font-size: 16px; font-weight: 800; }
.role-card .btn { width: 100%; padding: 14px 20px; font-size: 17px; }
.role-card-note { font-size: 13px; color: var(--ink-faint); }

.apply { display: flex; flex-direction: column; gap: 32px; padding-block: 80px; }
.apply-head { display: flex; flex-direction: column; gap: 10px; max-width: 720px; }
.apply-head h2 { font-size: clamp(32px, 3.4vw, 48px); line-height: 1.05; }
.apply-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; padding: 32px; border-radius: 22px; background: var(--paper); max-width: 860px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.field .req { text-transform: none; letter-spacing: 0; color: var(--ink-faint); font-weight: 700; }
.field input, .field textarea {
  font: inherit; font-weight: 600; font-size: 16px; color: var(--ink); background: var(--ground);
  border: 3px solid var(--ink); border-radius: 12px; padding: 12px 14px; width: 100%; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; background: var(--paper); box-shadow: 4px 4px 0 var(--sky); }
.field.is-missing input, .field.is-missing textarea { border-color: #C2410C; background: #FFF4EE; }
.links { margin: 0; padding: 18px 20px 20px; border: 3px solid var(--ink); border-radius: 16px; background: var(--ground); display: flex; flex-direction: column; gap: 14px; }
.links legend { padding: 0 8px; font-size: 18px; }
.links legend .req { font-family: var(--body); font-size: 13px; font-weight: 700; color: var(--ink-faint); }
.links-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 20px; }
.links .field input[type="url"] { background: var(--paper); }
.file-input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; pointer-events: none; }
.file-btn {
  display: inline-flex; align-items: center; justify-content: center; align-self: flex-start; gap: 8px; cursor: pointer;
  background: var(--paper); border: 3px solid var(--ink); border-radius: 12px; padding: 11px 18px;
  font-size: 15px; box-shadow: 3px 3px 0 var(--ink); text-transform: none; letter-spacing: 0;
  transition: transform .12s ease, box-shadow .12s ease;
}
.file-btn::before { content: "↑"; font-size: 18px; line-height: 1; }
.file-btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.file-input:focus-visible + .file-btn { outline: 3px solid var(--blue); outline-offset: 3px; }
.file-name { font-size: 13px; font-weight: 700; color: var(--ink-mute); overflow-wrap: anywhere; min-height: 1em; }
.apply-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.apply-hint { font-size: 14px; color: var(--ink-mute); }

/* FOOTER */
.footer {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-block: 40px; background: var(--ink); color: var(--paper);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 10px; border: 2px solid var(--paper); object-fit: cover; }
.footer-name { font-size: 20px; }
.footer-meta { font-size: 13px; color: #AAAAAA; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; font-size: 15px; font-weight: 700; }
.footer-links a { color: var(--paper); }
.footer-links a:hover { color: var(--yellow); }

/* TABLET */
@media (max-width: 1100px) {
  .hero-badge { width: 320px; height: 320px; }
  .games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 22px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .stats { gap: 20px; }
  .stat-num { font-size: 44px; }
}

/* MOBILE — follows the Mobile artboard */
@media (max-width: 760px) {
  .sticker { box-shadow: 5px 5px 0 var(--ink); }
  .stripes { --stripe: 22px; }
  .nav { padding-block: 14px; }
  .brand { font-size: 18px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 3px solid var(--ink);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 16px var(--gutter); border-top: 2px solid var(--rule); font-size: 18px; }
  .nav-links .pill-btn { margin: 12px var(--gutter) 16px; border-radius: 14px; box-shadow: 4px 4px 0 var(--ink); display: flex; justify-content: center; }

  .hero { flex-direction: column-reverse; align-items: center; text-align: center; gap: 20px; padding-block: 36px 40px; }
  .hero-copy { align-items: center; gap: 20px; }
  .hero h1 { font-size: 40px; letter-spacing: 0; }
  .lede { font-size: 16px; }
  .eyebrow { align-self: center; }
  .hero-actions { flex-direction: column; width: 100%; gap: 14px; padding-top: 0; }
  .btn { padding: 15px 24px; }
  .hero-badge { width: 200px; height: 200px; }
  .badge-back, .badge-front { border-radius: 28px; }
  .badge-front { box-shadow: 7px 7px 0 var(--ink); }

  .stats { grid-template-columns: 1fr; gap: 18px; padding-block: 28px; }
  .stat { flex-direction: row-reverse; align-items: center; justify-content: space-between; padding: 18px 22px; border-radius: 16px; }
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 13px; }

  .games { gap: 16px; padding-block: 32px 40px; }
  .section-head { align-items: flex-start; }
  .section-head h2 { font-size: 32px; }
  .sub { font-size: 14px; margin-top: 6px; }
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 16px; }
  .games-more .btn { width: 100%; }
  .card { border-radius: 16px; box-shadow: 5px 5px 0 var(--ink); }
  .ccu { top: 8px; left: 8px; padding: 4px 10px 4px 8px; font-size: 12px; gap: 6px; }
  .card-body { padding: 12px 14px 14px; }
  .card-title { font-size: 16px; }
  .card-meta { font-size: 12px; }
  .card-cta { font-size: 13px; margin-top: 4px; }

  .about { padding-block: 48px; gap: 36px; }
  .portrait-wrap { width: min(100% - 40px, 260px); margin-right: 8%; }
  .portrait-back { transform: translate(12px, 12px); }
  .portrait { box-shadow: 6px 6px 0 var(--ink); }
  .avatar { box-shadow: 4px 4px 0 var(--ink); }
  .about h2, .careers h2 { font-size: 32px; }
  .prose { font-size: 16px; }
  .careers { padding-block: 48px; gap: 24px; }
  .roles { grid-template-columns: 1fr; gap: 22px; }
  .role { padding: 22px 20px; }
  .role h3 { font-size: 24px; }
  .contact { grid-template-columns: 1fr; gap: 20px; padding: 22px 20px 24px; border-radius: 18px; box-shadow: 5px 5px 0 var(--ink); }
  .contact-copy h3 { font-size: 26px; }
  .contact-copy p { font-size: 16px; }
  .role-hero { padding-block: 40px 48px; gap: 14px; }
  .role-hero h1 { font-size: 36px; letter-spacing: 0; }
  .role-lede { font-size: 16px; }
  .role-hero .btn { width: 100%; }
  .role-body { grid-template-columns: 1fr; gap: 36px; padding-block: 48px; }
  .role-aside { position: static; }
  .role-section h2 { font-size: 26px; }
  .role-section p, .role-list li { font-size: 16px; }
  .apply { padding-block: 48px; gap: 24px; }
  .apply-form { grid-template-columns: 1fr; padding: 20px; gap: 16px; }
  .links { padding: 14px 16px 16px; }
  .links-grid { grid-template-columns: 1fr; gap: 14px; }
  .apply-actions .btn { width: 100%; }
  .footer { padding-block: 32px; justify-content: center; text-align: center; }
  .footer-brand { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; gap: 18px; }
}
