:root {
  --paper: #f5f6f0;
  --white: #ffffff;
  --ink: #17211d;
  --muted: #68716c;
  --line: #dfe4dc;
  --acid: #c9f36b;
  --violet: #b8a8ff;
  --orange: #ff8b54;
  --shadow: 0 24px 80px rgba(23, 33, 29, 0.11);
  --radius: 28px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 24px;
  background: rgba(245, 246, 240, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 228, 220, 0.78);
}

.nav-shell {
  max-width: var(--max);
  min-height: 58px;
  margin: auto;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border: 1px solid rgba(223, 228, 220, 0.9);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(23, 33, 29, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 23px;
  height: 23px;
  display: inline-block;
  background: var(--ink);
  clip-path: polygon(0 26%, 50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--acid);
}

.brand-mark::before { width: 6px; height: 6px; top: 7px; left: 5px; }
.brand-mark::after { width: 6px; height: 6px; top: 7px; right: 5px; }

.nav-links { display: flex; align-items: center; gap: 30px; font-size: 13px; color: #48524d; }
.nav-links a { transition: color 180ms ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 11px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover, .nav-cta:hover { transform: translateY(-2px); background: #273730; }
.button--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button--light:hover { background: var(--acid); border-color: var(--acid); }
.button--outline { background: transparent; color: var(--ink); }
.button--outline:hover { background: var(--ink); color: var(--white); }
.arrow { font-size: 16px; line-height: 0; }

.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); padding: 8px; cursor: pointer; }

.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--acid); border-radius: 2px; }

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.23) 60%),
    linear-gradient(115deg, #f5f6f0 26%, #e4f2cf 68%, #f6dfd0);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .48;
  background-image: linear-gradient(rgba(23,33,29,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(23,33,29,.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero-layout { position: relative; min-height: 740px; display: grid; grid-template-columns: 0.93fr 1.07fr; gap: 60px; align-items: center; padding: 74px 0 86px; }
.hero-copy { position: relative; z-index: 2; max-width: 610px; }
.hero h1 { max-width: 650px; margin: 24px 0 24px; font-size: clamp(58px, 7vw, 106px); line-height: .92; letter-spacing: -.085em; font-weight: 850; }
.hero h1 em { color: var(--violet); font-style: normal; }
.hero-copy p { max-width: 500px; margin: 0; color: #55605a; font-size: 19px; line-height: 1.5; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-note { margin-top: 36px; color: #78827c; font-size: 12px; }

.hero-art { position: relative; min-height: 560px; }
.hero-image-main { position: absolute; right: 5%; top: 28px; width: 74%; height: 430px; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); transform: rotate(2.2deg); }
.hero-image-small { position: absolute; left: 2%; bottom: 10px; width: 42%; height: 255px; object-fit: cover; border: 12px solid var(--paper); border-radius: 28px; box-shadow: var(--shadow); transform: rotate(-5deg); }
.hero-sticker { position: absolute; right: 0; bottom: 74px; display: grid; place-items: center; width: 116px; height: 116px; padding: 12px; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: 11px; line-height: 1.1; font-weight: 850; text-align: center; text-transform: uppercase; transform: rotate(8deg); }
.hero-sticker::before { content: "✦"; display: block; margin-bottom: 4px; font-size: 20px; }

.ticker { overflow: hidden; background: var(--ink); color: var(--acid); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.ticker-track { width: max-content; display: flex; gap: 34px; padding: 12px 0; animation: ticker 24s linear infinite; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.ticker-track span:nth-child(even) { color: var(--white); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 126px 0; }
.section--white { background: var(--white); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 56px; }
.section-heading h2 { max-width: 680px; margin: 12px 0 0; font-size: clamp(38px, 5vw, 70px); line-height: .98; letter-spacing: -.07em; }
.section-heading p { max-width: 330px; margin: 0; color: var(--muted); font-size: 14px; }

.game-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.game-card { position: relative; min-height: 430px; overflow: hidden; grid-column: span 5; border-radius: var(--radius); background: #d9dcd6; }
.game-card:nth-child(2) { grid-column: span 7; min-height: 520px; }
.game-card:nth-child(3) { grid-column: span 7; min-height: 360px; }
.game-card:nth-child(4) { grid-column: span 5; min-height: 360px; }
.game-card img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,0,1); }
.game-card:hover img { transform: scale(1.05); }
.game-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(14, 21, 18, .77)); pointer-events: none; }
.game-card-copy { position: absolute; z-index: 1; right: 24px; bottom: 24px; left: 24px; color: var(--white); }
.game-card-copy small { color: var(--acid); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.game-card-copy h3 { margin: 6px 0 0; font-size: clamp(23px, 3vw, 38px); line-height: 1; letter-spacing: -.06em; }

.statement { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.statement h2 { margin: 0; font-size: clamp(36px, 5vw, 70px); line-height: .98; letter-spacing: -.07em; }
.statement-copy { color: #53605a; font-size: 19px; }
.statement-copy p { margin: 0 0 22px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.tag { padding: 8px 12px; color: var(--ink); background: #eef2e9; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 700; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle { padding: 26px; min-height: 250px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); }
.principle:nth-child(2) { background: var(--violet); border-color: var(--violet); }
.principle:nth-child(3) { background: var(--acid); border-color: var(--acid); }
.principle-index { font-size: 12px; font-weight: 800; }
.principle h3 { margin: 60px 0 10px; font-size: 26px; letter-spacing: -.05em; line-height: 1; }
.principle p { margin: 0; color: #5a655f; font-size: 13px; }
.principle:nth-child(2) p, .principle:nth-child(3) p { color: rgba(23, 33, 29, .72); }

.contact-band { padding: 90px 0; background: var(--ink); color: var(--white); }
.contact-band-inner { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.contact-band h2 { max-width: 690px; margin: 14px 0 0; font-size: clamp(40px, 6vw, 82px); line-height: .93; letter-spacing: -.08em; }
.contact-band .eyebrow { color: #aeb9b2; }
.contact-band .eyebrow::before { background: var(--acid); }
.contact-band-copy { max-width: 260px; color: #aeb9b2; font-size: 13px; }

.site-footer { padding: 30px 0; background: var(--ink); border-top: 1px solid rgba(255,255,255,.14); color: #aeb9b2; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 12px; }
.footer-inner .brand { color: var(--white); }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--acid); }

/* Careers */
.careers-hero { padding: 92px 0 60px; background: var(--white); }
.careers-hero-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: 70px; align-items: start; }
.careers-hero h1 { max-width: 500px; margin: 18px 0 0; font-size: clamp(60px, 8vw, 120px); line-height: .87; letter-spacing: -.09em; }
.careers-hero-copy { max-width: 690px; padding-top: 18px; color: #48534d; font-size: 17px; }
.careers-hero-copy p { margin: 0 0 18px; }
.careers-hero-copy strong { color: var(--ink); }

.photo-mosaic { padding: 42px 0 116px; background: var(--white); }
.mosaic-grid { display: grid; grid-template-columns: 1.05fr 1.18fr .92fr; grid-template-rows: 210px 360px 180px; gap: 16px; padding-top: 30px; border-top: 1px solid var(--line); }
.mosaic-item { overflow: hidden; border-radius: 20px; background: #ddd; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 550ms cubic-bezier(.2,.7,0,1); }
.mosaic-item:hover img { transform: scale(1.04); }
.mosaic-a { grid-column: 1; grid-row: 1 / span 2; }
.mosaic-b { grid-column: 2; grid-row: 1 / span 3; }
.mosaic-c { grid-column: 3; grid-row: 2; }
.mosaic-d { grid-column: 1; grid-row: 3; }
.mosaic-e { grid-column: 3; grid-row: 1; }
.mosaic-f { grid-column: 3; grid-row: 3; }

.careers-content { padding: 118px 0; background: var(--paper); }
.benefit-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.benefit-intro { position: sticky; top: 120px; }
.benefit-intro h2 { max-width: 300px; margin: 16px 0 18px; font-size: clamp(40px, 5vw, 68px); line-height: .92; letter-spacing: -.08em; }
.benefit-intro p { max-width: 270px; color: var(--muted); font-size: 14px; }
.benefit-section { padding-bottom: 64px; border-bottom: 1px solid var(--line); }
.benefit-section + .benefit-section { padding-top: 64px; }
.benefit-section:last-child { padding-bottom: 0; border-bottom: 0; }
.benefit-section h3 { margin: 0 0 22px; font-size: clamp(28px, 4vw, 48px); line-height: 1; letter-spacing: -.07em; }
.benefit-section p { max-width: 760px; margin: 0 0 22px; color: #55615a; }
.benefit-list { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; }
.benefit-list li { position: relative; padding: 15px 0 15px 28px; border-top: 1px solid var(--line); color: #4c5851; }
.benefit-list li:last-child { border-bottom: 1px solid var(--line); }
.benefit-list li::before { content: "✦"; position: absolute; top: 14px; left: 0; color: var(--orange); font-size: 14px; }

.role-band { padding: 100px 0; background: var(--violet); }
.role-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.role-band h2 { max-width: 660px; margin: 12px 0 0; font-size: clamp(42px, 6vw, 82px); line-height: .92; letter-spacing: -.08em; }
.role-band p { max-width: 260px; margin: 0; color: rgba(23,33,29,.7); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-links { gap: 16px; }
  .hero-layout, .careers-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: auto; }
  .hero-layout { min-height: auto; padding: 72px 0 48px; }
  .hero-art { min-height: 500px; }
  .statement, .benefit-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefit-intro { position: static; }
  .benefit-intro h2 { max-width: none; }
  .benefit-intro p { max-width: 520px; }
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 320px 240px; }
  .mosaic-a { grid-column: 1; grid-row: 1; }
  .mosaic-b { grid-column: 2; grid-row: 1 / span 2; }
  .mosaic-c { grid-column: 1; grid-row: 2; }
  .mosaic-d { grid-column: 1; grid-row: 3; }
  .mosaic-e { grid-column: 2; grid-row: 3; }
  .mosaic-f { display: none; }
}

@media (max-width: 650px) {
  .site-header { padding: 10px 12px; }
  .nav-shell { padding-left: 14px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-shell.is-open { position: relative; }
  .nav-shell.is-open .nav-links { position: absolute; top: 66px; right: 0; left: 0; display: grid; gap: 0; padding: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .nav-shell.is-open .nav-links a { padding: 12px; }
  .nav-shell.is-open .nav-cta { position: absolute; top: 230px; right: 12px; left: 12px; display: flex; }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .hero-layout { padding-top: 60px; }
  .hero h1 { font-size: clamp(54px, 16vw, 82px); }
  .hero-copy p { font-size: 17px; }
  .hero-art { min-height: 400px; }
  .hero-image-main { top: 15px; right: 0; width: 82%; height: 300px; }
  .hero-image-small { left: 0; bottom: 2px; width: 49%; height: 180px; border-width: 8px; }
  .hero-sticker { right: 2px; bottom: 35px; width: 90px; height: 90px; font-size: 9px; }
  .section { padding: 84px 0; }
  .section-heading, .contact-band-inner, .role-band-inner, .footer-inner { align-items: start; flex-direction: column; }
  .section-heading { margin-bottom: 36px; }
  .section-heading p { max-width: 500px; }
  .game-grid { display: block; }
  .game-card, .game-card:nth-child(2), .game-card:nth-child(3), .game-card:nth-child(4) { min-height: 330px; margin-bottom: 16px; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 210px; }
  .principle h3 { margin-top: 42px; }
  .contact-band { padding: 76px 0; }
  .careers-hero { padding: 68px 0 34px; }
  .careers-hero h1 { font-size: clamp(64px, 20vw, 98px); }
  .careers-hero-copy { padding-top: 0; font-size: 16px; }
  .photo-mosaic { padding-bottom: 76px; }
  .mosaic-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 190px 260px 180px; gap: 10px; }
  .mosaic-item { border-radius: 14px; }
  .careers-content { padding: 80px 0; }
  .benefit-section + .benefit-section { padding-top: 48px; }
  .role-band { padding: 76px 0; }
  .footer-links { flex-wrap: wrap; }
}

/* Reference-inspired site chrome and new content pages */
:root {
  --brand-blue: #166fc4;
  --cyan: #5ee8f5;
  --green: #3bd88c;
  --soft-green: #f4ffe8;
}

.utility-bar { min-height: 36px; background: #3a3b39; color: rgba(255,255,255,.9); }
.utility-inner { width: min(calc(100% - 48px), var(--max)); min-height: 36px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.utility-inner > div { display: flex; gap: 24px; }
.utility-inner a { transition: color 160ms ease; }
.utility-inner a:hover { color: var(--acid); }
.site-header { padding: 0 24px; background: rgba(255,255,255,.97); border-bottom: 1px solid #eef0ec; backdrop-filter: none; }
.nav-shell { max-width: var(--max); min-height: 94px; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.nav-links { gap: 32px; color: #17211d; font-size: 14px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand-blue); }
.nav-cta { min-height: 42px; border-color: var(--brand-blue); background: var(--brand-blue); border-radius: 3px; box-shadow: 0 8px 22px rgba(22,111,196,.18); }
.nav-cta:hover { background: #0e5ca9; }

.hero--reference { min-height: 760px; margin: 0 12px; background: linear-gradient(115deg, #16cfe4 0%, #36d5bd 48%, #37d983 100%); }
.hero--reference::before { opacity: .72; background-image: radial-gradient(circle, rgba(16,154,172,.42) 0 3px, transparent 3.5px); background-size: 86px 86px; mask-image: none; }
.hero--reference::after { content: ""; position: absolute; top: -95px; right: -30px; width: 330px; height: 600px; opacity: .32; border: 24px solid #86ffb7; border-left: 0; border-radius: 50%; transform: rotate(-43deg); }
.hero--reference .hero-layout { min-height: 760px; display: flex; align-items: center; justify-content: center; padding: 70px 40px 100px; }
.hero--reference .hero-copy { max-width: 1100px; text-align: center; }
.hero--reference .eyebrow { color: rgba(8,45,38,.77); }
.hero--reference .eyebrow::before { background: #d5ff56; }
.hero--reference h1 { max-width: 1040px; margin: 24px auto 24px; color: #050907; font-size: clamp(54px, 6.4vw, 92px); line-height: .93; letter-spacing: -.075em; }
.hero--reference h1 em { color: #050907; }
.hero--reference .hero-copy p { max-width: 840px; margin: 0 auto; color: #06120e; font-size: clamp(16px, 1.55vw, 21px); line-height: 1.48; }
.hero--reference .hero-actions { justify-content: center; margin-top: 36px; }
.hero--reference .button { min-width: 158px; border-color: #fff; background: #fff; color: #111; border-radius: 4px; }
.hero--reference .button:hover { background: #d9ff78; border-color: #d9ff78; }
.hero--reference .button--outline { border-color: #075a80; background: #075a80; color: #fff; }
.hero--reference .button--outline:hover { background: #034560; border-color: #034560; color: #fff; }
.hero--reference .hero-note { color: rgba(8,45,38,.75); }
.reference-hero-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 46px; }
.reference-hero-meta span { padding: 8px 14px; border: 1px solid rgba(5,67,60,.28); border-radius: 999px; color: rgba(5,45,38,.78); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.home-section { padding: 120px 0; background: #fff; }
.home-section--tint { background: #f8fbf4; }
.home-feature-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 96px; align-items: center; }
.home-feature-copy h2 { max-width: 650px; margin: 16px 0 20px; font-size: clamp(42px, 5.2vw, 72px); line-height: .95; letter-spacing: -.08em; }
.home-feature-copy p { max-width: 590px; margin: 0 0 22px; color: #5d6761; font-size: 18px; }
.home-feature-copy .button, .contact-form .button, .about-hero .button, .work-style-copy .button { min-width: 154px; border-color: var(--brand-blue); background: var(--brand-blue); border-radius: 3px; }
.home-feature-copy .button:hover, .contact-form .button:hover, .about-hero .button:hover, .work-style-copy .button:hover { background: #0e5ca9; border-color: #0e5ca9; }
.home-feature-art { position: relative; min-height: 430px; }
.home-feature-art::before { content: ""; position: absolute; inset: 28px -20px -28px 30px; border: 1px solid #62e5f2; transform: skewY(18deg); }
.home-feature-art img { position: absolute; right: 0; width: 90%; height: 390px; object-fit: cover; border-radius: 0; box-shadow: 0 20px 42px rgba(23,33,29,.14); }
.home-feature-art img:first-child { top: 0; }
.home-feature-art img:last-child { left: 0; bottom: 0; width: 42%; height: 170px; border: 10px solid #fff; }
.home-section-heading { margin-bottom: 50px; }
.home-section-heading h2 { max-width: 720px; margin: 14px 0 0; font-size: clamp(42px, 5.4vw, 76px); line-height: .94; letter-spacing: -.08em; }
.home-game-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.home-game-card { overflow: hidden; border-radius: 4px; background: #f4ffe8; }
.home-game-card img { width: 100%; height: 250px; object-fit: cover; transition: transform 450ms ease; }
.home-game-card:hover img { transform: scale(1.04); }
.home-game-card div { padding: 24px; }
.home-game-card small { color: var(--brand-blue); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.home-game-card h3 { margin: 12px 0 0; font-size: 28px; line-height: 1; letter-spacing: -.06em; }
.home-cta { padding: 100px 0; background: #0a1713; color: #fff; }
.home-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.home-cta h2 { max-width: 760px; margin: 14px 0 0; font-size: clamp(44px, 6vw, 84px); line-height: .92; letter-spacing: -.08em; }
.home-cta .eyebrow { color: #aeb9b2; }
.home-cta .button { background: var(--acid); border-color: var(--acid); color: #111; }
.home-cta .button:hover { background: #e1ff94; border-color: #e1ff94; }

.subpage-hero { padding: 96px 0 84px; background: #fff; text-align: center; }
.subpage-hero h1 { max-width: 900px; margin: 18px auto 16px; font-size: clamp(52px, 7vw, 100px); line-height: .9; letter-spacing: -.08em; }
.subpage-hero p { max-width: 620px; margin: 0 auto; color: #606a64; font-size: 18px; }
.subpage-hero .eyebrow { justify-content: center; }
.subpage-hero .eyebrow::before { background: #62e5f2; }

.about-intro { padding: 60px 0 120px; background: #fff; }
.about-tabs { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 88px; }
.about-tabs a { min-width: 150px; padding: 18px 24px; background: #fff; border: 1px solid #e4e8e5; box-shadow: 0 7px 16px rgba(23,33,29,.09); font-size: 14px; font-weight: 800; text-align: center; transition: transform 180ms ease, background 180ms ease; }
.about-tabs a:hover { background: var(--soft-green); transform: translateY(-3px); }
.value-story { display: grid; grid-template-columns: .96fr 1.04fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.value-story:last-child { margin-bottom: 0; }
.value-story:nth-of-type(even) .value-story-card { order: 2; }
.value-story:nth-of-type(even) .value-story-copy { order: 1; }
.value-story-card { position: relative; min-height: 320px; display: flex; align-items: center; padding: 62px; background: var(--soft-green); }
.value-story-card::before { content: ""; position: absolute; inset: 14px -28px -30px -28px; border: 2px solid #62e5f2; border-top: 0; transform: skewY(18deg); pointer-events: none; }
.value-story-card h2 { position: relative; z-index: 1; margin: 0; max-width: 430px; font-size: clamp(36px, 4.4vw, 60px); line-height: .95; letter-spacing: -.075em; }
.value-story-copy { padding: 12px 0; }
.value-story-copy .eyebrow { color: var(--brand-blue); }
.value-story-copy p { max-width: 520px; margin: 20px 0 0; color: #5e6962; font-size: 17px; }
.value-story-copy h3 { margin: 16px 0 0; font-size: 30px; line-height: 1; letter-spacing: -.06em; }

.contact-hero { position: relative; overflow: hidden; padding: 72px 0 78px; background: #fff; text-align: center; }
.contact-hero::before, .contact-hero::after { content: ""; position: absolute; top: -280px; width: 360px; height: 760px; border: 2px solid #61e4f3; transform: rotate(-43deg); opacity: .85; pointer-events: none; }
.contact-hero::before { left: 5%; }
.contact-hero::after { right: 5%; transform: rotate(43deg); }
.contact-hero h1 { position: relative; z-index: 1; margin: 0; font-size: clamp(48px, 6vw, 82px); line-height: .94; letter-spacing: -.08em; }
.contact-hero p { position: relative; z-index: 1; margin: 20px 0 0; font-size: 18px; }
.contact-cards-section { padding: 0 0 120px; background: #fff; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card { min-height: 310px; padding: 48px 42px; background: #f6ffe9; border: 1px solid #edf3e4; box-shadow: 0 12px 28px rgba(23,33,29,.08); text-align: center; }
.contact-card h2 { margin: 0 0 28px; font-size: 22px; letter-spacing: -.04em; }
.contact-card h3 { margin: 24px 0 8px; font-size: 17px; }
.contact-card p { margin: 8px 0; color: #46524b; font-size: 15px; }
.contact-card a { color: #38b52c; font-weight: 700; }
.contact-form-section { padding: 110px 0 130px; background: #fff; }
.contact-form-wrap { width: min(100%, 760px); margin: 0 auto; }
.contact-form-title { margin-bottom: 42px; text-align: center; }
.contact-form-title h2 { margin: 0; font-size: 40px; letter-spacing: -.07em; }
.contact-form-title p { margin: 10px 0 0; color: #68726c; }
.contact-form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 14px; border: 1px solid #eef0ec; border-radius: 3px; outline: 0; background: #fbfcfb; box-shadow: 0 5px 14px rgba(23,33,29,.06); color: var(--ink); font: inherit; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #62e5f2; box-shadow: 0 0 0 3px rgba(98,229,242,.16); }
.field textarea { min-height: 150px; resize: vertical; }
.contact-form .button { justify-self: start; margin-top: 8px; }
.form-status { min-height: 20px; color: #2cae3f; font-size: 13px; }

.work-style-section { padding: 112px 0 118px; background: #fff; }
.work-style-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.work-style-copy h2 { max-width: 600px; margin: 18px 0 24px; font-size: clamp(52px, 6vw, 88px); line-height: .9; letter-spacing: -.09em; }
.work-style-copy p { max-width: 450px; margin: 0 0 28px; color: #5a665f; font-size: 17px; }
.work-style-media { position: relative; }
.work-style-media::before { content: ""; position: absolute; inset: 30px -22px -22px 22px; background: linear-gradient(135deg, #5ee8f5, #3bd88c); opacity: .92; }
.work-style-media img { position: relative; width: 100%; height: 390px; object-fit: cover; }

@media (max-width: 900px) {
  .home-feature-grid, .work-style-grid, .value-story { grid-template-columns: 1fr; gap: 44px; }
  .value-story:nth-of-type(even) .value-story-card, .value-story:nth-of-type(even) .value-story-copy { order: initial; }
  .home-feature-art { min-height: 420px; }
  .contact-hero::before { left: -120px; }
  .contact-hero::after { right: -120px; }
}

@media (max-width: 650px) {
  .utility-inner { width: min(calc(100% - 32px), var(--max)); font-size: 8px; }
  .utility-inner > div { gap: 12px; }
  .site-header { padding: 0 16px; }
  .nav-shell { min-height: 74px; }
  .hero--reference { margin: 0; min-height: 700px; }
  .hero--reference .hero-layout { min-height: 700px; padding: 50px 18px 80px; }
  .hero--reference h1 { font-size: clamp(50px, 14vw, 75px); }
  .hero--reference .hero-copy p { font-size: 16px; }
  .hero--reference::after { right: -150px; width: 250px; }
  .home-section, .about-intro, .contact-form-section, .work-style-section { padding: 80px 0; }
  .home-feature-art { min-height: 350px; }
  .home-feature-art img { height: 310px; }
  .home-game-grid, .contact-cards { grid-template-columns: 1fr; }
  .home-cta-inner { align-items: start; flex-direction: column; }
  .subpage-hero { padding: 70px 0 60px; }
  .about-tabs { gap: 10px; margin-bottom: 60px; }
  .about-tabs a { min-width: 112px; padding: 14px 10px; font-size: 12px; }
  .value-story { margin-bottom: 84px; }
  .value-story-card { min-height: 240px; padding: 38px 28px; }
  .value-story-card::before { inset: 12px -12px -18px -12px; }
  .contact-cards-section { padding-bottom: 80px; }
  .contact-card { min-height: 250px; padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .work-style-grid { gap: 32px; }
  .work-style-copy h2 { font-size: clamp(52px, 14vw, 78px); }
  .work-style-media img { height: 300px; }
}
