@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700;800;900&display=swap");

:root {
  --paper: #f4f1ea;
  --paper-2: #ebe7dc;
  --white: #fffdf8;
  --ink: #161616;
  --muted: #6e6b65;
  --line: rgba(22, 22, 22, 0.14);
  --blue: #2457ff;
  --violet: #7046ff;
  --cyan: #22d3d3;
  --coral: #ff5c45;
  --yellow: #ffd84a;
  --shadow: 0 24px 80px rgba(23, 20, 13, 0.12);
  --radius: 24px;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.22;
  content: "";
  background-image: repeating-linear-gradient(92deg, rgba(22,22,22,.022) 0 1px, transparent 1px 5px), repeating-linear-gradient(2deg, rgba(255,255,255,.12) 0 1px, transparent 1px 7px);
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.section-shell { width: var(--shell); margin-inline: auto; }
.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 120; }
.progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--violet), var(--coral)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(244, 241, 234, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner { width: var(--shell); min-height: 78px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-mark { position: relative; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); overflow: hidden; }
.brand-mark i { position: absolute; width: 28px; height: 10px; background: var(--cyan); transform: rotate(-42deg); top: 7px; right: -9px; }
.brand-mark b { position: relative; font: 800 20px/1 "DM Sans", sans-serif; }
.brand-name { font-weight: 900; font-size: 18px; letter-spacing: 0.08em; line-height: 1.1; }
.brand-name small { display: block; margin-top: 4px; font-size: 8px; letter-spacing: 0.2em; font-weight: 700; color: var(--muted); }
.nav { display: flex; gap: 30px; align-items: center; font-size: 14px; font-weight: 600; }
.nav a { position: relative; padding-block: 26px; }
.nav a::after { position: absolute; content: ""; height: 2px; width: 0; left: 0; bottom: 20px; background: var(--blue); transition: width 0.25s ease; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-cta { justify-self: end; display: flex; align-items: center; gap: 16px; padding: 10px 10px 10px 18px; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 700; }
.header-cta span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #fff; background: var(--ink); transition: transform .2s ease; }
.header-cta:hover span { transform: rotate(45deg); }
.menu-button { display: none; justify-self: end; width: 42px; height: 42px; border: 1px solid var(--ink); border-radius: 50%; background: none; align-content: center; justify-items: center; gap: 5px; }
.menu-button span { width: 17px; height: 1px; background: var(--ink); transition: transform .2s; }
.menu-button.open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-button.open span:last-child { transform: translateY(-3px) rotate(-45deg); }

.category-nav { overflow-x: auto; border-bottom: 1px solid var(--ink); background: var(--ink); color: #fff; scrollbar-width: none; }
.category-nav::-webkit-scrollbar { display: none; }
.category-nav-inner { width: var(--shell); min-width: 980px; min-height: 52px; margin: auto; display: grid; grid-template-columns: repeat(8, 1fr); }
.category-nav a { position: relative; display: flex; align-items: center; justify-content: center; gap: 7px; border-right: 1px solid rgba(255,255,255,.18); font-size: 11px; font-weight: 700; letter-spacing: .05em; transition: color .2s, background .2s; }
.category-nav a:first-child { border-left: 1px solid rgba(255,255,255,.18); }
.category-nav a:hover, .category-nav a.active { color: var(--ink); background: var(--cyan); }
.category-nav a span { color: var(--cyan); font-size: 8px; }
.category-nav a:hover span, .category-nav a.active span { color: var(--blue); }
.category-nav a i { font-size: 11px; font-style: normal; opacity: .55; }

.hero { min-height: 700px; padding: 86px 0 70px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; position: relative; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border: 1px solid var(--ink); border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.eyebrow span { color: var(--blue); }
.hero h1 { margin: 26px 0 24px; font-size: clamp(56px, 6.3vw, 92px); line-height: .98; letter-spacing: -.07em; font-weight: 900; }
.hero h1 span { color: var(--blue); position: relative; display: inline-block; }
.hero h1 span::after { position: absolute; content: ""; left: 1%; right: -4%; bottom: -12px; height: 13px; border: solid var(--coral); border-width: 3px 0 0; border-radius: 50%; transform: rotate(-2deg); }
.hero-copy > p { max-width: 560px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; gap: 28px; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 700; transition: .25s ease; }
.button-primary { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 5px 5px 0 var(--ink); }
.button-primary:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.button-ghost:hover { background: var(--ink); color: #fff; }
.hero-meta { display: flex; gap: 30px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-meta span { display: flex; flex-direction: column; color: var(--muted); font-size: 11px; }
.hero-meta b { margin-bottom: 3px; color: var(--ink); font-size: 25px; line-height: 1; }
.hero-visual { height: 560px; position: relative; }
.orbit { position: absolute; border: 1px solid rgba(36, 87, 255, .3); border-radius: 50%; }
.orbit-one { width: 430px; height: 430px; inset: 60px 0 auto auto; }
.orbit-two { width: 340px; height: 340px; inset: 106px 44px auto auto; border-color: rgba(255, 92, 69, .3); }
.visual-card { position: absolute; border: 1px solid var(--ink); box-shadow: 8px 9px 0 var(--ink); }
.card-main { width: 415px; height: 420px; right: 28px; top: 54px; transform: rotate(3deg); background: var(--white); z-index: 2; }
.mock-top { height: 42px; display: flex; align-items: center; gap: 5px; padding: 0 14px; border-bottom: 1px solid var(--ink); }
.mock-top span { width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--ink); }
.mock-top span:first-child { background: var(--coral); }
.mock-top b { margin-left: auto; font-size: 8px; letter-spacing: .16em; }
.mock-body { height: calc(100% - 42px); padding: 34px 28px; display: grid; grid-template-columns: 1fr 1fr; background: linear-gradient(135deg, #fffdf8 0 60%, #e3e5ff 60%); overflow: hidden; }
.mock-copy { position: relative; z-index: 2; }
.mock-copy small { font-size: 7px; letter-spacing: .15em; }
.mock-copy strong { display: block; margin-top: 58px; font-size: 30px; line-height: 1.02; letter-spacing: -.06em; }
.mock-copy em { color: var(--blue); font-style: normal; }
.mock-copy i { display: block; width: 92%; height: 5px; margin-top: 13px; background: #ddd; }
.mock-copy i:last-child { width: 65%; margin-top: 7px; }
.mock-art { position: relative; perspective: 600px; }
.cube { position: absolute; display: block; width: 110px; height: 110px; border: 1px solid var(--ink); box-shadow: 10px 10px 0 rgba(22,22,22,.85); }
.cube-a { right: 5px; top: 28px; background: var(--blue); transform: rotate(18deg) skew(-5deg); }
.cube-b { right: 46px; top: 130px; background: var(--yellow); transform: rotate(-14deg); }
.cube-c { right: -32px; top: 197px; width: 88px; height: 88px; background: var(--coral); transform: rotate(28deg); }
.card-mini { z-index: 4; width: 172px; height: 128px; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; }
.card-mini > span { position: absolute; top: 16px; left: 18px; font-size: 22px; font-weight: 900; }
.card-mini b { font-size: 16px; }
.card-mini small { margin-top: 4px; font-size: 10px; opacity: .75; }
.card-code { left: -12px; top: 15px; color: #fff; background: var(--violet); transform: rotate(-7deg); }
.card-design { right: -9px; bottom: 12px; background: var(--yellow); transform: rotate(6deg); }
.float-label { position: absolute; z-index: 5; padding: 10px 15px; border-radius: 999px; color: #fff; background: var(--ink); font-size: 10px; letter-spacing: .08em; box-shadow: 4px 5px 0 rgba(22,22,22,.25); }
.label-one { left: 17px; bottom: 84px; transform: rotate(-4deg); }
.label-two { right: 56px; top: 26px; background: var(--coral); }
.label-two i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #fff; margin-right: 5px; animation: pulse 1.5s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.deco { position: absolute; pointer-events: none; }
.deco-ring { width: 78px; height: 78px; border: 12px solid var(--yellow); border-radius: 50%; left: -105px; top: 115px; }
.deco-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--coral); left: 48%; top: 50px; }

.stat-strip { min-height: 128px; display: grid; grid-template-columns: repeat(3, 1fr) .8fr; align-items: stretch; border: 1px solid var(--ink); background: var(--white); box-shadow: 7px 8px 0 var(--ink); }
.stat-strip > div { display: flex; gap: 18px; align-items: center; padding: 24px 28px; border-right: 1px solid var(--ink); }
.stat-strip b { color: var(--blue); font-size: 28px; }
.stat-strip span { font-size: 14px; font-weight: 700; line-height: 1.45; }
.stat-strip small { font-size: 10px; color: var(--muted); font-weight: 500; }
.stat-strip .stat-mark { justify-content: center; border: 0; flex-direction: column; gap: 0; color: #fff; background: var(--ink); font-size: 22px; font-weight: 900; letter-spacing: .14em; }
.stat-mark span { font-size: 9px; font-weight: 500; letter-spacing: .4em; color: var(--cyan); }

.section { position: relative; padding: 120px 0; }
.section-alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-number { position: absolute; right: max(24px, calc((100vw - 1180px) / 2)); top: 78px; color: rgba(22,22,22,.06); font-size: 132px; font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.section-heading { position: relative; display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 52px; z-index: 1; }
.section-heading > div > p { margin: 0 0 9px 25px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.section-heading h2 { display: flex; align-items: center; gap: 14px; margin: 0; font-size: clamp(32px, 4vw, 52px); letter-spacing: -.055em; }
.section-heading h2 > span { width: 10px; height: 42px; background: var(--blue); border-radius: 2px; transform: skew(-8deg); }
.section-heading h2 small { align-self: end; margin: 0 0 7px 5px; color: var(--muted); font: 500 11px/1 "DM Sans", sans-serif; letter-spacing: .1em; }
.heading-note { max-width: 360px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 700; }

.featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-feature { position: relative; min-height: 480px; padding: 28px; border: 1px solid var(--ink); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.service-feature:hover { transform: translateY(-6px); box-shadow: 8px 9px 0 var(--ink); }
.service-feature > div:nth-last-of-type(1) { margin-top: auto; }
.feature-ad { background: var(--yellow); }
.feature-illustration { color: #fff; background: var(--coral); }
.feature-miniapp { color: #fff; background: var(--blue); }
.feature-anime { background: var(--white); }
.feature-index { position: absolute; right: 20px; top: 20px; font-size: 9px; letter-spacing: .15em; opacity: .65; }
.feature-icon { width: 94px; height: 94px; display: grid; place-items: center; margin: 8px 0 50px; border: 1px solid currentColor; border-radius: 50%; font-size: 40px; box-shadow: 7px 7px 0 rgba(22,22,22,.75); }
.service-feature .tag { display: inline-block; padding: 5px 9px; border-radius: 99px; background: rgba(255,255,255,.2); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.service-feature h3 { margin: 12px 0; font-size: 29px; letter-spacing: -.04em; }
.service-feature p { margin: 0; font-size: 13px; line-height: 1.75; opacity: .76; }
.service-feature ul { display: grid; gap: 6px; margin: 20px 0 0; padding: 0; list-style: none; font-size: 11px; }
.service-feature li::before { content: "↳"; margin-right: 7px; }
.service-feature > a { display: flex; justify-content: space-between; align-items: center; margin-top: 27px; padding-top: 17px; border-top: 1px solid currentColor; font-size: 11px; font-weight: 700; }
.service-feature > a span { font-size: 20px; }
.poster-art { height: 170px; margin: 24px 0 48px; position: relative; display: grid; place-content: center; border: 1px solid var(--ink); background: var(--coral); color: #fff; transform: rotate(-2deg); box-shadow: 7px 7px 0 var(--ink); overflow: hidden; }
.poster-art::before { position: absolute; content: ""; width: 180px; height: 180px; border: 30px solid var(--violet); border-radius: 50%; left: -80px; top: 18px; }
.poster-art b { position: relative; font-size: 38px; letter-spacing: -.06em; }
.poster-art span { position: absolute; left: 52%; top: 50%; font-size: 28px; transform: translate(-50%,-50%) rotate(-12deg); }
.poster-art em { position: relative; margin-left: 45px; font-size: 10px; letter-spacing: .2em; }
.browser-art { height: 170px; margin: 24px 0 48px; border: 1px solid var(--ink); background: #dfe5ff; box-shadow: 7px 7px 0 var(--ink); padding: 12px; }
.browser-art > i { display: inline-block; width: 7px; height: 7px; border: 1px solid var(--ink); border-radius: 50%; margin-right: 3px; }
.browser-art > i:first-child { background: var(--coral); }
.browser-art > span { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1fr 1fr; gap: 6px; height: 122px; margin-top: 9px; }
.browser-art b { background: var(--blue); }
.browser-art b:first-child { grid-row: 1 / 3; }
.browser-art b:nth-child(2) { background: var(--yellow); }
.browser-art b:nth-child(3) { background: var(--coral); }
.illustration-art, .miniapp-art, .anime-art { height: 170px; margin: 24px 0 48px; position: relative; border: 1px solid var(--ink); box-shadow: 7px 7px 0 var(--ink); overflow: hidden; }
.illustration-art { display: grid; place-items: center; color: var(--ink); background: var(--cyan); }
.illustration-art::before, .illustration-art::after { position: absolute; content: ""; border: 1px solid var(--ink); border-radius: 50%; }
.illustration-art::before { width: 175px; height: 175px; left: -55px; top: -70px; background: var(--yellow); }
.illustration-art::after { width: 110px; height: 110px; right: -28px; bottom: -42px; background: var(--violet); }
.illustration-art i { position: absolute; z-index: 1; width: 68px; height: 90px; left: 55px; bottom: -7px; border: 1px solid var(--ink); border-radius: 50% 50% 12px 12px; background: var(--white); transform: rotate(-10deg); }
.illustration-art b { position: relative; z-index: 2; margin-left: 105px; font-size: 28px; line-height: .9; letter-spacing: -.05em; }
.illustration-art span { position: absolute; z-index: 2; right: 18px; top: 14px; font-size: 25px; }
.miniapp-art { display: flex; align-items: center; justify-content: space-around; color: var(--ink); background: #dfe5ff; }
.miniapp-art > span { position: relative; width: 92px; height: 145px; padding: 11px; border: 2px solid var(--ink); border-radius: 16px; background: var(--white); transform: rotate(-5deg); }
.miniapp-art > span i { display: inline-block; width: 5px; height: 5px; margin-right: 3px; border-radius: 50%; background: var(--coral); }
.miniapp-art > span i + i { background: var(--cyan); }
.miniapp-art > span b { display: block; margin-top: 24px; color: var(--blue); font-size: 24px; text-align: center; }
.miniapp-art > span em { position: absolute; left: 11px; right: 11px; bottom: 12px; padding: 5px 0; color: #fff; background: var(--blue); font-size: 7px; font-style: normal; text-align: center; }
.miniapp-art > strong { font-size: 33px; line-height: .88; letter-spacing: -.06em; }
.anime-art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 12px; background: var(--violet); }
.anime-art span { display: flex; align-items: end; padding: 9px; border: 1px solid var(--ink); color: var(--ink); background: var(--yellow); font-size: 8px; font-weight: 800; }
.anime-art span:nth-child(2) { background: var(--cyan); transform: translateY(9px); }
.anime-art span:nth-child(3) { background: var(--coral); transform: translateY(-5px); }
.anime-art b { position: absolute; left: 50%; top: 50%; padding: 7px 13px; border: 1px solid var(--ink); color: #fff; background: var(--ink); font-size: 20px; letter-spacing: .05em; transform: translate(-50%, -50%) rotate(-6deg); }

.case-list { border-top: 1px solid var(--ink); }
.case-row { display: grid; grid-template-columns: 70px 350px 1fr; gap: 36px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--ink); }
.case-no { align-self: start; padding-top: 3px; font-size: 9px; letter-spacing: .14em; color: var(--muted); }
.case-visual { position: relative; height: 210px; padding: 24px; border: 1px solid var(--ink); overflow: hidden; transition: transform .3s; }
.case-row:hover .case-visual { transform: rotate(-1.5deg) scale(1.02); }
.case-visual b { position: relative; z-index: 2; display: block; font-size: 46px; letter-spacing: -.06em; }
.case-visual small { position: relative; z-index: 2; font-size: 9px; letter-spacing: .12em; }
.case-factory { background: var(--cyan); }
.case-factory .chart-line { position: absolute; width: 300px; height: 130px; right: -30px; bottom: -16px; border: solid var(--ink); border-width: 5px 0 0; transform: rotate(-20deg); box-shadow: 0 -20px 0 rgba(255,255,255,.3), 0 -40px 0 rgba(255,255,255,.18); }
.case-data { color: #fff; background: var(--violet); text-align: right; }
.bar-chart { position: absolute; inset: 45px 165px 22px 20px; display: flex; gap: 6px; align-items: end; }
.bar-chart i { width: 20%; background: var(--yellow); border: 1px solid var(--ink); }
.bar-chart i:nth-child(1) { height: 35%; }.bar-chart i:nth-child(2) { height: 60%; }.bar-chart i:nth-child(3) { height: 48%; }.bar-chart i:nth-child(4) { height: 88%; }.bar-chart i:nth-child(5) { height: 73%; }
.case-brand { display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: var(--coral); color: #fff; }
.case-brand > span { display: grid; place-items: center; width: 100px; height: 100px; border-radius: 50%; color: var(--coral); background: #fff; font-size: 55px; font-weight: 900; }
.case-brand b { font-size: 24px; }
.case-brand small { position: absolute; bottom: 20px; right: 20px; }
.tag-dark { display: inline-block; padding: 5px 9px; border-radius: 99px; color: #fff; background: var(--ink); font-size: 9px; letter-spacing: .08em; }
.case-copy h3 { margin: 12px 0 10px; font-size: 30px; letter-spacing: -.04em; }
.case-copy > p { max-width: 580px; margin: 0 0 18px; color: var(--muted); line-height: 1.75; font-size: 13px; }
.case-copy > div { display: flex; flex-wrap: wrap; gap: 7px; }
.case-copy > div span { padding: 5px 9px; border: 1px solid var(--line); border-radius: 99px; font-size: 9px; }

.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.capability-card { min-height: 210px; padding: 24px; border: 1px solid var(--ink); background: var(--white); transition: transform .25s, box-shadow .25s; }
.capability-card:hover { transform: translateY(-4px); box-shadow: 5px 6px 0 var(--ink); }
.capability-card b { color: var(--blue); font-size: 12px; }
.capability-card h4 { margin: 50px 0 10px; font-size: 21px; }
.capability-card p { color: var(--muted); font-size: 12px; line-height: 1.65; }
.capability-lead { grid-column: span 2; grid-row: span 2; min-height: 432px; position: relative; padding: 40px; color: #fff; background: var(--blue); overflow: hidden; }
.capability-lead::after { position: absolute; content: ""; width: 310px; height: 310px; right: -120px; bottom: -140px; border: 55px solid var(--yellow); border-radius: 50%; }
.capability-lead small { letter-spacing: .18em; }
.capability-lead h3 { margin: 90px 0 20px; font-size: 44px; line-height: 1.08; letter-spacing: -.06em; }
.capability-lead p { max-width: 380px; color: rgba(255,255,255,.72); font-size: 14px; }
.capability-lead > span { position: absolute; bottom: 35px; padding: 7px 12px; border: 1px solid #fff; border-radius: 99px; font-size: 10px; }
.capability-dark { color: #fff; background: var(--ink); }
.capability-dark strong { display: block; margin-top: 18px; color: var(--cyan); font-size: 50px; }
.capability-dark p { margin: 0; color: #fff; }
.capability-dark i { display: block; margin-top: 35px; color: #999; font-size: 10px; font-style: normal; }

.quote-band { position: relative; min-height: 440px; display: grid; place-content: center; text-align: center; color: #fff; background: var(--ink); overflow: hidden; }
.quote-band::before, .quote-band::after { position: absolute; content: ""; width: 220px; height: 220px; border-radius: 50%; border: 35px solid var(--blue); }
.quote-band::before { left: -90px; top: -80px; }.quote-band::after { right: -80px; bottom: -110px; border-color: var(--coral); }
.quote-pattern { position: absolute; inset: 0; display: grid; place-content: center; color: rgba(255,255,255,.03); font-size: 150px; font-weight: 900; letter-spacing: .05em; white-space: nowrap; transform: rotate(-4deg); }
.quote-band blockquote { position: relative; margin: 0; font-size: clamp(27px, 4vw, 48px); line-height: 1.4; letter-spacing: -.04em; font-weight: 700; }
.quote-band cite { position: relative; margin-top: 28px; color: var(--cyan); font-size: 10px; font-style: normal; letter-spacing: .12em; }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-tabs button { padding: 8px 15px; border: 1px solid var(--ink); border-radius: 99px; background: transparent; cursor: pointer; font-size: 10px; font-weight: 700; }
.filter-tabs button:hover, .filter-tabs button.active { color: #fff; background: var(--ink); }
.template-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 31%); gap: 16px; overflow-x: auto; padding: 3px 3px 22px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--ink) transparent; }
.template-card { scroll-snap-align: start; border: 1px solid var(--ink); background: var(--white); transition: opacity .2s, transform .2s; }
.template-card.hidden { display: none; }
.template-card:hover { transform: translateY(-5px); }
.template-preview { height: 240px; position: relative; padding: 25px; border-bottom: 1px solid var(--ink); overflow: hidden; }
.template-card > div:last-child { padding: 18px; }
.template-card > div:last-child > span { color: var(--blue); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.template-card h3 { margin: 7px 0 6px; font-size: 18px; }
.template-card p { margin: 0; color: var(--muted); font-size: 11px; }
.preview-tech { color: #fff; background: #071732; }
.preview-tech .mini-nav { height: 1px; background: rgba(255,255,255,.3); }
.preview-tech b { display: block; margin-top: 60px; font-size: 31px; }.preview-tech span { color: var(--cyan); font-size: 9px; letter-spacing: .15em; }.preview-tech i { position: absolute; width: 150px; height: 150px; border: 20px solid var(--blue); border-radius: 50%; right: -50px; bottom: -55px; }
.preview-group { background: #e7e2d5; }.preview-group small { font-size: 8px; letter-spacing: .2em; }.preview-group b { display: block; margin-top: 52px; font-size: 29px; line-height: 1.15; }.preview-group i { position: absolute; width: 90px; height: 170px; right: 30px; top: 30px; background: var(--coral); transform: rotate(16deg); mix-blend-mode: multiply; }
.preview-studio { color: #fff; background: var(--coral); }.preview-studio i { font-style: normal; font-size: 9px; letter-spacing: .15em; }.preview-studio b { display: block; margin-top: 42px; font-size: 34px; line-height: .95; }.preview-studio span { position: absolute; bottom: 20px; right: 20px; color: var(--yellow); font-size: 9px; }
.preview-data { color: #fff; background: var(--violet); }.preview-data b { position: relative; display: block; margin-top: 35px; font-size: 29px; line-height: 1.05; }.preview-data span { position: relative; font-size: 9px; }.data-orb { position: absolute; width: 150px; height: 150px; right: -25px; bottom: -25px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--cyan), var(--blue) 55%, var(--ink)); }
.preview-event { background: var(--yellow); }.preview-event small { font-size: 8px; }.preview-event b { display: block; margin-top: 43px; font-size: 39px; line-height: .9; }.preview-event span { position: absolute; bottom: 20px; right: 20px; padding: 6px 9px; border: 1px solid var(--ink); font-size: 9px; }
.preview-photo { color: #fff; background: #242424; }.preview-photo > div { position: absolute; width: 150px; height: 190px; right: 30px; top: 25px; background: linear-gradient(145deg, #868078, #211f1e 45%, #b4a38e); filter: contrast(1.2); }.preview-photo b, .preview-photo span { position: relative; display: block; }.preview-photo b { margin-top: 140px; font-size: 17px; }.preview-photo span { font-size: 8px; color: #bbb; }
.scroll-hint { margin: 12px 0 0; text-align: right; color: var(--muted); font-size: 10px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.team-grid article { position: relative; min-height: 430px; padding: 18px; border: 1px solid var(--ink); background: var(--white); overflow: hidden; }
.avatar { height: 205px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid var(--ink); position: relative; overflow: hidden; }
.avatar::before, .avatar::after { position: absolute; content: ""; border-radius: 50%; }
.avatar::before { width: 130px; height: 130px; background: rgba(255,255,255,.55); }
.avatar::after { width: 90px; height: 220px; border: 20px solid rgba(22,22,22,.13); transform: rotate(35deg); }
.avatar span { position: relative; z-index: 2; display: grid; place-items: center; width: 78px; height: 78px; border-radius: 50%; color: #fff; background: var(--ink); font-size: 32px; font-weight: 900; }
.avatar-a { background: var(--yellow); }.avatar-b { background: var(--coral); }.avatar-c { background: var(--cyan); }.avatar-d { background: var(--violet); }
.team-grid article > small { color: var(--blue); font-size: 9px; letter-spacing: .1em; }
.team-grid h3 { margin: 6px 0 10px; font-size: 21px; }
.team-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.team-skill { position: absolute; bottom: 16px; left: 18px; font-size: 8px; letter-spacing: .16em; }

.process-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border: 1px solid var(--ink); background: var(--white); }
.process-list li { min-height: 300px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--ink); transition: color .25s, background .25s; }
.process-list li:last-child { border: 0; }
.process-list li:hover { color: #fff; background: var(--blue); }
.process-list li > b { font-size: 35px; color: var(--blue); }.process-list li:hover > b { color: var(--cyan); }
.process-list span { font-size: 8px; letter-spacing: .15em; opacity: .65; }
.process-list h3 { margin: 8px 0 10px; font-size: 20px; }
.process-list p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }.process-list li:hover p { color: rgba(255,255,255,.7); }

.static-note { padding: 6px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: 9px; }
.notes-list { border-top: 1px solid var(--ink); }
.notes-list article { display: grid; grid-template-columns: 18px 1fr 60px; align-items: center; gap: 22px; padding: 23px 4px; border-bottom: 1px solid var(--ink); transition: padding .25s, background .25s; }
.notes-list article:hover { padding-inline: 18px; background: var(--white); }
.note-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.notes-list small { color: var(--blue); font-size: 8px; letter-spacing: .12em; }
.notes-list h3 { margin: 6px 0; font-size: 19px; }.notes-list p { margin: 0; color: var(--muted); font-size: 11px; }
.notes-list article > b { justify-self: end; color: rgba(22,22,22,.12); font-size: 35px; }

.contact { margin-bottom: 110px; display: grid; grid-template-columns: 1.25fr .75fr; min-height: 470px; border: 1px solid var(--ink); color: #fff; background: var(--blue); box-shadow: 10px 11px 0 var(--ink); }
.contact-copy { position: relative; padding: 70px; overflow: hidden; }
.contact-copy::after { position: absolute; content: ""; width: 300px; height: 300px; border: 50px solid var(--yellow); border-radius: 50%; right: -170px; bottom: -150px; }
.contact-copy small { font-size: 9px; letter-spacing: .2em; }
.contact h2 { margin: 50px 0 22px; font-size: clamp(42px, 5vw, 65px); line-height: 1.02; letter-spacing: -.06em; }.contact h2 span { color: var(--cyan); }
.contact-copy p { max-width: 500px; margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.8; }
.contact-actions { display: grid; border-left: 1px solid var(--ink); }
.contact-actions > * { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 30px; border-bottom: 1px solid var(--ink); background: var(--paper); color: var(--ink); transition: .25s; }
.contact-actions > *:last-child { border: 0; }.contact-actions > a:hover { background: var(--yellow); }
.contact-actions span { margin-bottom: 8px; color: var(--muted); font-size: 9px; letter-spacing: .12em; }.contact-actions b { font-size: 17px; }.contact-actions i { position: absolute; right: 24px; top: 50%; font-size: 25px; font-style: normal; transform: translateY(-50%); }

.footer { padding: 70px 0 26px; color: #fff; background: var(--ink); }
.footer .brand-mark { background: var(--blue); }.footer .brand-name small { color: #888; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 60px; padding-bottom: 55px; }
.footer-brand > p { max-width: 300px; margin: 24px 0 0; color: #888; font-size: 12px; line-height: 1.7; }
.footer-main h3 { margin: 0 0 18px; color: var(--cyan); font-size: 10px; letter-spacing: .13em; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; align-items: start; gap: 10px; }
.footer-main > div:not(:first-child) a, .footer-main > div:not(:first-child) p { color: #aaa; font-size: 11px; line-height: 1.7; }
.footer-main > div:not(:first-child) a:hover { color: #fff; }
.footer-contact p { margin: 4px 0 0; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; padding-top: 23px; border-top: 1px solid #333; color: #777; font-size: 9px; letter-spacing: .05em; }
.footer-bottom a { justify-self: end; color: #bbb; }

/* Category detail pages */
.list-page { --cat-accent: var(--blue); }
html[data-accent="coral"] .list-page { --cat-accent: var(--coral); }
html[data-accent="cyan"] .list-page { --cat-accent: #0bb8b8; }
html[data-accent="violet"] .list-page { --cat-accent: var(--violet); }
html[data-accent="yellow"] .list-page { --cat-accent: #d6a900; }
.list-hero { position: relative; min-height: 500px; padding: 74px 0 62px; color: #fff; background: var(--ink); overflow: hidden; }
.list-hero::after { position: absolute; content: ""; width: 340px; height: 340px; border: 58px solid var(--cat-accent); border-radius: 50%; right: -130px; bottom: -190px; opacity: .8; }
.list-hero-pattern { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.025); font-size: clamp(75px, 11vw, 165px); font-weight: 900; white-space: nowrap; transform: rotate(-4deg); }
.list-hero-inner { position: relative; z-index: 2; }
.list-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 62px; color: #777; font-size: 9px; letter-spacing: .1em; }
.list-breadcrumb a:hover { color: #fff; }.list-breadcrumb b { font-weight: 500; }.list-breadcrumb em { color: var(--cat-accent); font-style: normal; }
.list-hero-grid { display: grid; grid-template-columns: 1fr 300px; align-items: center; gap: 60px; }
.list-hero h1 { margin: 20px 0 18px; font-size: clamp(62px, 8vw, 105px); line-height: .95; letter-spacing: -.07em; }
.list-hero-grid > div:first-child > p { max-width: 630px; margin: 0; color: #aaa; font-size: 15px; line-height: 1.85; }
.category-symbol { position: relative; height: 220px; border: 1px solid #fff; background: var(--cat-accent); box-shadow: 10px 10px 0 #fff; transform: rotate(3deg); overflow: hidden; }
.category-symbol::after { position: absolute; content: ""; width: 150px; height: 150px; right: -50px; bottom: -60px; border: 25px solid rgba(255,255,255,.32); border-radius: 50%; }
.category-symbol small { position: absolute; top: 18px; right: 20px; font-size: 10px; letter-spacing: .12em; }
.category-symbol b { display: grid; place-items: center; height: 100%; font-size: 82px; }
.category-symbol span { position: absolute; left: 18px; bottom: 17px; font-size: 9px; letter-spacing: .16em; }
.category-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 54px; }
.category-tags span { padding: 7px 12px; border: 1px solid #555; border-radius: 99px; color: #bbb; font-size: 9px; letter-spacing: .06em; }
.category-tags span::before { content: "·"; margin-right: 6px; color: var(--cat-accent); }
.list-content { padding: 78px 0 115px; }
.list-toolbar { min-height: 96px; display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 18px 22px; border: 1px solid var(--ink); background: var(--white); box-shadow: 6px 7px 0 var(--ink); }
.list-toolbar > div { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 12px; }
.list-toolbar > div span { grid-column: 1 / -1; color: var(--cat-accent); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.list-toolbar > div b { font-size: 21px; }.list-toolbar > div small { color: var(--muted); font-size: 10px; }
.list-search { width: min(380px, 48%); min-height: 48px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 0 13px; border: 1px solid var(--ink); background: var(--paper); }
.list-search > span { font-size: 20px; }.list-search input { min-width: 0; border: 0; outline: 0; background: none; font: inherit; font-size: 12px; }.list-search button { width: 24px; height: 24px; border: 0; border-radius: 50%; background: var(--ink); color: #fff; cursor: pointer; }
.list-layout { display: grid; grid-template-columns: minmax(0, 1fr) 315px; gap: 28px; align-items: start; margin-top: 38px; }
.service-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.result-card { min-height: 430px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--ink); background: var(--white); transition: transform .25s, box-shadow .25s; }
.result-card:hover { transform: translateY(-5px); box-shadow: 7px 8px 0 var(--ink); }
.result-card-top { display: flex; align-items: start; justify-content: space-between; margin-bottom: 52px; }
.result-card-top span { color: var(--muted); font-size: 9px; letter-spacing: .13em; }.result-card-top i { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--ink); border-radius: 50%; color: #fff; background: var(--cat-accent); font-size: 18px; font-style: normal; }
.result-card small { color: var(--cat-accent); font-size: 8px; font-weight: 800; letter-spacing: .14em; }.result-card h2 { margin: 9px 0 12px; font-size: 23px; letter-spacing: -.04em; }.result-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.result-card dl { display: grid; gap: 10px; margin: auto 0 18px; }.result-card dl > div { display: grid; grid-template-columns: 62px 1fr; gap: 8px; padding-top: 9px; border-top: 1px solid var(--line); font-size: 9px; }.result-card dt { color: var(--muted); }.result-card dd { margin: 0; line-height: 1.5; }
.result-card > a { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid var(--ink); font-size: 10px; font-weight: 700; }.result-card > a b { color: var(--cat-accent); font-size: 18px; }
.empty-results { padding: 80px 20px; border: 1px solid var(--ink); text-align: center; background: var(--white); }.empty-results b { font-size: 22px; }.empty-results p { color: var(--muted); }
.list-aside { position: sticky; top: 100px; display: grid; gap: 14px; }
.aside-card { padding: 25px; border: 1px solid var(--ink); background: var(--white); }
.aside-card > span { color: var(--cat-accent); font-size: 8px; font-weight: 800; letter-spacing: .15em; }.aside-card h2 { margin: 34px 0 14px; font-size: 27px; line-height: 1.15; letter-spacing: -.05em; }.aside-card p { color: #999; font-size: 11px; line-height: 1.75; }.aside-card > a { display: flex; justify-content: space-between; margin-top: 28px; padding-top: 15px; border-top: 1px solid #555; color: #fff; font-size: 10px; font-weight: 700; }.aside-card > a i { color: var(--cat-accent); font-size: 18px; font-style: normal; }
.aside-dark { color: #fff; background: var(--ink); }.aside-card ol { display: grid; gap: 0; margin: 20px 0 0; padding: 0; list-style: none; }.aside-card li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 10px; }.aside-card li b { color: var(--cat-accent); }
.aside-note { display: flex; gap: 12px; padding: 17px; border: 1px dashed var(--ink); }.aside-note i { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 4px; border-radius: 50%; background: var(--cat-accent); }.aside-note p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
.related-section { padding: 100px 0; border-top: 1px solid var(--line); background: var(--paper-2); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }.related-grid a { min-height: 170px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr; padding: 20px; border: 1px solid var(--ink); background: var(--white); transition: transform .25s, color .25s, background .25s; }.related-grid a:hover { transform: translateY(-4px); color: #fff; background: var(--ink); }.related-grid a > span { font-size: 9px; color: var(--muted); }.related-grid a > i { font-size: 28px; font-style: normal; color: var(--cat-accent); }.related-grid a > div { align-self: end; }.related-grid b { display: block; font-size: 18px; }.related-grid small { color: var(--muted); font-size: 8px; letter-spacing: .12em; }.related-grid em { align-self: end; justify-self: end; font-size: 20px; font-style: normal; }
.list-contact { margin-top: 110px; }

/* Account access */
.auth-page { min-height: 100vh; display: flex; flex-direction: column; }
.auth-main { flex: 1; position: relative; overflow: hidden; }
.auth-main::before { position: absolute; content: "ACCOUNT / GZY / COLLABORATE"; top: 65px; left: -30px; color: rgba(22,22,22,.035); font-size: clamp(72px, 11vw, 168px); font-weight: 900; letter-spacing: -.06em; white-space: nowrap; transform: rotate(-4deg); }
.auth-shell { position: relative; z-index: 1; width: var(--shell); min-height: 700px; margin: auto; padding: 76px 0 90px; display: grid; grid-template-columns: minmax(0, 1fr) 480px; align-items: center; gap: 95px; }
.auth-kicker { margin: 35px 0 9px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.auth-intro h1 { margin: 0; font-size: clamp(56px, 6.3vw, 88px); line-height: .98; letter-spacing: -.075em; }
.auth-intro h1 span { display: inline-block; position: relative; color: var(--blue); }
.auth-intro h1 span::after { position: absolute; content: ""; left: 0; right: -8px; bottom: -9px; height: 10px; border-top: 3px solid var(--coral); border-radius: 50%; transform: rotate(-2deg); }
.auth-description { max-width: 525px; margin: 29px 0 38px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.auth-steps { max-width: 540px; display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border: 1px solid var(--ink); list-style: none; background: var(--white); box-shadow: 6px 7px 0 var(--ink); }
.auth-steps li { min-height: 105px; display: flex; flex-direction: column; justify-content: space-between; padding: 14px; border-right: 1px solid var(--ink); }
.auth-steps li:last-child { border: 0; }
.auth-steps b { color: var(--blue); font-size: 19px; }
.auth-steps span { font-size: 11px; font-weight: 700; }
.auth-steps small { display: block; margin-top: 4px; color: var(--muted); font-size: 7px; font-weight: 600; letter-spacing: .1em; }
.auth-card { border: 1px solid var(--ink); background: var(--white); box-shadow: 10px 11px 0 var(--ink); }
.auth-card-top { min-height: 43px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; border-bottom: 1px solid var(--ink); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.auth-card-top i { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: -14px 0 0 var(--yellow), -28px 0 0 var(--cyan); }
#authForms { padding: 24px 30px 29px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 27px; border: 1px solid var(--ink); }
.auth-tabs button { min-height: 43px; border: 0; background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.auth-tabs button + button { border-left: 1px solid var(--ink); }
.auth-tabs button[aria-selected="true"] { color: #fff; background: var(--blue); }
.auth-form-heading { margin-bottom: 23px; }
.auth-form-heading small { color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.auth-form-heading h2 { margin: 5px 0 6px; font-size: 30px; letter-spacing: -.04em; }
.auth-form-heading p { margin: 0; color: var(--muted); font-size: 10px; }
.auth-field { display: block; margin-top: 15px; }
.auth-field > span { display: block; margin-bottom: 7px; font-size: 10px; font-weight: 700; }
.auth-field input { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--ink); border-radius: 0; outline: 0; color: var(--ink); background: var(--paper); font: inherit; font-size: 12px; transition: box-shadow .2s, background .2s; }
.auth-field input:focus { background: #fff; box-shadow: 4px 4px 0 var(--cyan); }
.auth-field input::placeholder { color: #aaa; }
.auth-check { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0; color: var(--muted); font-size: 9px; line-height: 1.5; cursor: pointer; }
.auth-check input { flex: 0 0 auto; width: 15px; height: 15px; margin: 0; accent-color: var(--blue); }
.auth-submit { width: 100%; min-height: 53px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px 0 18px; border: 1px solid var(--ink); color: #fff; background: var(--blue); box-shadow: 4px 4px 0 var(--ink); cursor: pointer; font-weight: 800; transition: transform .2s, box-shadow .2s, opacity .2s; }
.auth-submit b { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: var(--ink); background: var(--cyan); }
.auth-submit:hover:not(:disabled) { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.auth-submit:disabled { cursor: wait; opacity: .65; }
.auth-switch { margin: 20px 0 0; text-align: center; color: var(--muted); font-size: 9px; }
.auth-switch button { padding: 0; border: 0; border-bottom: 1px solid currentColor; color: var(--blue); background: none; cursor: pointer; }
.auth-status { margin: -8px 0 18px; padding: 11px 13px; border: 1px solid var(--ink); color: var(--ink); background: var(--yellow); font-size: 10px; line-height: 1.5; }
.auth-status[data-type="error"] { color: #fff; background: var(--coral); }
.auth-status[data-type="success"] { background: var(--cyan); }
.logged-in-panel { padding: 55px 35px 50px; text-align: center; }
.logged-in-mark { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 28px; border: 1px solid var(--ink); border-radius: 50%; color: #fff; background: var(--blue); box-shadow: 6px 6px 0 var(--cyan); font-size: 31px; font-weight: 800; }
.logged-in-panel > small { color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.logged-in-panel h2 { margin: 7px 0 16px; font-size: 35px; letter-spacing: -.05em; }
.logged-in-panel p { margin: 0 0 30px; color: var(--muted); font-size: 10px; line-height: 1.8; }
.logged-in-panel strong { color: var(--ink); font-size: 13px; }
.logged-in-actions { display: grid; grid-template-columns: 1.35fr 1fr; gap: 10px; }
.logged-in-actions a, .logged-in-actions button { min-height: 49px; display: flex; align-items: center; justify-content: center; gap: 18px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 10px; font-weight: 800; }
.logged-in-actions a { color: #fff; background: var(--blue); }
.logged-in-actions a:hover { background: var(--violet); }
.logged-in-actions button:hover { background: var(--yellow); }
.auth-footer { padding: 21px 0; border-top: 1px solid var(--ink); background: var(--paper-2); }
.auth-footer > div { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; }
.auth-footer a { color: var(--ink); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .label-two i { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

@media (max-width: 1050px) {
  :root { --shell: min(920px, calc(100vw - 40px)); }
  .hero { grid-template-columns: .9fr 1.1fr; gap: 15px; }
  .card-main { right: 0; width: 360px; }
  .card-code { left: 0; }.card-design { right: -5px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .case-row { grid-template-columns: 50px 300px 1fr; gap: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); }.process-list li:nth-child(3) { border-right: 0; }.process-list li:nth-child(-n+3) { border-bottom: 1px solid var(--ink); }
  .list-layout { grid-template-columns: 1fr; }.list-aside { position: static; grid-template-columns: 1fr 1fr; }.aside-note { grid-column: 1 / -1; }.related-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-shell { grid-template-columns: minmax(0, 1fr) 430px; gap: 45px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 28px); --radius: 18px; }
  .header-inner { min-height: 68px; grid-template-columns: 1fr auto; }
  .header-cta { display: none; }.menu-button { display: grid; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 68px; padding: 18px 20px 25px; background: var(--paper); border-bottom: 1px solid var(--ink); flex-direction: column; align-items: stretch; gap: 0; }
  .nav.open { display: flex; }.nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }.nav a::after { display: none; }
  .category-nav-inner { width: max-content; min-width: 0; margin: 0; grid-template-columns: repeat(8, 118px); min-height: 46px; }
  .hero { min-height: 0; padding: 62px 0 55px; grid-template-columns: 1fr; gap: 62px; }
  .hero h1 { font-size: clamp(53px, 16vw, 70px); }
  .hero-copy > p { font-size: 14px; }.hero-actions { align-items: stretch; flex-direction: column; }.button { width: 100%; }
  .hero-meta { gap: 15px; }.hero-meta b { font-size: 21px; }
  .hero-visual { height: 440px; }.card-main { width: calc(100% - 35px); height: 360px; right: 10px; top: 30px; }.mock-body { padding: 25px 18px; }.mock-copy strong { margin-top: 45px; font-size: 24px; }.cube { width: 85px; height: 85px; }.cube-b { right: 32px; top: 112px; }.cube-c { top: 180px; width: 65px; height: 65px; }.card-mini { width: 135px; height: 102px; padding: 14px; }.card-code { left: -2px; top: -25px; }.card-design { right: 0; bottom: -4px; }.float-label { display: none; }.orbit-one { width: 330px; height: 330px; }.orbit-two { width: 260px; height: 260px; }
  .stat-strip { grid-template-columns: 1fr; }.stat-strip > div { border-right: 0; border-bottom: 1px solid var(--ink); }.stat-strip .stat-mark { border-bottom: 0; padding-block: 28px; }
  .section { padding: 86px 0; }.section-number { top: 48px; right: 18px; font-size: 86px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 35px; }.section-heading h2 { font-size: 36px; }.section-heading h2 small { display: none; }.heading-note { max-width: 100%; }
  .featured-grid { grid-template-columns: 1fr; }.service-feature { min-height: 475px; }
  .case-row { grid-template-columns: 1fr; gap: 15px; }.case-no { display: none; }.case-visual { height: 200px; }.case-copy { padding-bottom: 12px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }.capability-lead { grid-column: span 2; min-height: 390px; }.capability-lead h3 { font-size: 38px; }.capability-card { min-height: 200px; }
  .quote-band { min-height: 390px; padding-inline: 25px; }.quote-pattern { font-size: 75px; }.quote-band blockquote br { display: none; }
  .template-scroller { grid-auto-columns: 82%; }.template-preview { height: 225px; }
  .team-grid { grid-template-columns: 1fr; }.team-grid article { min-height: 400px; }
  .process-list { grid-template-columns: 1fr; }.process-list li, .process-list li:nth-child(3) { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--ink); }.process-list li:last-child { border-bottom: 0; }
  .notes-list article { grid-template-columns: 14px 1fr 34px; gap: 12px; }.notes-list p { display: none; }.notes-list h3 { font-size: 16px; }
  .contact { grid-template-columns: 1fr; margin-bottom: 80px; }.contact-copy { padding: 45px 28px 60px; }.contact h2 { margin-top: 35px; }.contact-actions { border-left: 0; border-top: 1px solid var(--ink); }.contact-actions > * { min-height: 115px; padding: 22px; }.contact-actions b { font-size: 15px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 28px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { grid-template-columns: 1fr; }.footer-bottom span:nth-child(2) { display: none; }.footer-bottom a { justify-self: start; }
  .list-hero { min-height: 0; padding: 48px 0 55px; }.list-breadcrumb { margin-bottom: 42px; }.list-hero-grid { grid-template-columns: 1fr; gap: 42px; }.list-hero h1 { font-size: 66px; }.category-symbol { width: calc(100% - 12px); height: 180px; }.category-tags { margin-top: 42px; }
  .list-content { padding: 55px 0 85px; }.list-toolbar { align-items: stretch; flex-direction: column; }.list-search { width: 100%; }.list-layout { margin-top: 28px; }.service-result-grid { grid-template-columns: 1fr; }.result-card { min-height: 410px; }.list-aside { grid-template-columns: 1fr; }.aside-note { grid-column: auto; }.related-section { padding: 80px 0; }.related-grid { grid-template-columns: 1fr 1fr; }.list-contact { margin-top: 80px; }
  .auth-shell { min-height: 0; padding: 55px 0 75px; grid-template-columns: 1fr; gap: 52px; }.auth-intro h1 { font-size: clamp(52px, 16vw, 72px); }.auth-description { font-size: 13px; }.auth-card { width: calc(100% - 8px); }.auth-footer > div { flex-direction: column; gap: 7px; }.auth-page .nav a:last-child { display: none; }
}

@media (max-width: 430px) {
  .hero-meta { justify-content: space-between; }.hero-meta span { font-size: 9px; }
  .capability-card { grid-column: span 2; }.capability-lead { grid-column: span 2; }
  .footer-main { grid-template-columns: 1fr; }.footer-brand { grid-column: auto; }
  .related-grid { grid-template-columns: 1fr; }
  .auth-steps { grid-template-columns: 1fr; }.auth-steps li { min-height: 76px; border-right: 0; border-bottom: 1px solid var(--ink); }.auth-steps li:last-child { border-bottom: 0; }
  #authForms { padding-inline: 20px; }.logged-in-panel { padding-inline: 20px; }.logged-in-actions { grid-template-columns: 1fr; }
}
