:root {
  color-scheme: dark;
  --bg: #141414;
  --panel: #171717;
  --muted: #9b9b9b;
  --text: #ffffff;
  --page-padding: 48px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.scroll-bottom-blur {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.08) 38%, rgba(20, 20, 20, 0.42) 70%, rgba(20, 20, 20, 0.9) 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 58%, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 58%, #000 100%);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: opacity 380ms ease, backdrop-filter 380ms ease;
}
body.is-scrolled .scroll-bottom-blur {
  opacity: 1;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: 100%; padding-inline: var(--page-padding); }
.section-rule { border: 0; }

.site-header {
  height: 125px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  animation: hero-reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.brand {
  width: max-content;
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
}
.desktop-nav a { white-space: nowrap; }
.mobile-nav-talk { display: none; }
.ai-link { display: inline-flex; align-items: center; gap: 8px; }
.spark {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  animation: spark-drift 4s ease-in-out 1.4s infinite;
}
.site-header > .pill { justify-self: end; }
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 53px;
  padding: 16px 32px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #141414;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  white-space: nowrap;
}
.pill:hover { background: #f0f0f0; }
.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.menu-button img {
  position: absolute;
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  transition: opacity 180ms ease, transform 180ms ease;
}
.menu-button .close-icon { opacity: 0; transform: rotate(-45deg) scale(.75); }
.menu-button[aria-expanded="true"] .menu-icon { opacity: 0; transform: rotate(45deg) scale(.75); }
.menu-button[aria-expanded="true"] .close-icon { opacity: 1; transform: rotate(0) scale(1); }

.pre-work-area {
  position: relative;
  isolation: isolate;
}
.hero {
  position: relative;
  height: 436px;
  margin-top: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0;
  text-align: center;
}
.hero-drawing-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: calc(100% + 120px);
  pointer-events: none;
  touch-action: none;
}
.pre-work-area.is-drawing .hero-drawing-canvas {
  pointer-events: auto;
  cursor: crosshair;
}
.pre-work-area.is-drawing,
.pre-work-area.is-drawing * {
  -webkit-user-select: none;
  user-select: none;
}
.hero-draw-area {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 12px;
  min-height: 58px;
  margin-top: 16px;
}
.hero-draw-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-reveal 720ms cubic-bezier(0.22, 1, 0.36, 1) 460ms both;
}
.hero-draw-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.draw-onboarding {
  position: absolute;
  right: calc(100% - 22px);
  bottom: 7px;
  width: 133px;
  height: 77px;
  color: #e9e9e9;
  font-size: 14px;
  line-height: normal;
  white-space: nowrap;
  pointer-events: none;
}
.draw-onboarding span {
  position: absolute;
  top: 0;
  left: -14px;
  display: block;
  width: max-content;
  transform: translateX(-50%) rotate(-5.29deg);
  transform-origin: center;
}
.draw-onboarding svg {
  position: absolute;
  top: 27px;
  left: 0;
  display: block;
  width: 100px;
  height: 44px;
  overflow: visible;
  animation: draw-guide-arrow 760ms cubic-bezier(0.22, 1, 0.36, 1) 760ms both;
}
.hero-draw-toggle,
.hero-draw-clear {
  border: 0;
  background: transparent;
  color: #f3f3f3;
  cursor: pointer;
}
.hero-draw-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 58px;
  padding: 0;
  color: #e9e9e9;
  font-size: 14px;
  line-height: 18px;
}
.hero-draw-toggle > span { display: none; }
.hero-pencil {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0;
  filter: brightness(0) invert(1);
}
.hero-draw-toggle:hover,
.hero-draw-toggle[aria-pressed="true"] {
  color: #fff;
}
.pre-work-area.is-drawing .hero-draw-toggle {
  color: #9b9b9b;
  text-shadow: none;
}
.pre-work-area.is-drawing .draw-onboarding { display: none; }
.pre-work-area.is-drawing .hero-pencil {
  filter: brightness(0) invert(66%);
  transform: none;
}
.hero-draw-colors {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 13px;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid #3e3e3e;
  border-radius: 13px;
  background: #202020;
}
.pre-work-area.is-drawing .hero-draw-colors { display: flex; }
.pre-work-area.is-drawing .hero-draw-colors { animation: controls-reveal 220ms ease-out both; }
.hero-draw-colors button {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.hero-draw-colors span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.hero-draw-colors button:nth-child(1) span { background: #f4f4f4; }
.hero-draw-colors button:nth-child(2) span { background: #f2ca4a; }
.hero-draw-colors button:nth-child(3) span { background: #ff8fcf; }
.hero-draw-colors button:nth-child(4) span { background: #74d7ff; }
.hero-draw-colors button:nth-child(5) span { background: #9ce77c; }
.hero-draw-colors button.is-selected { border-color: #fff; }
.hero-draw-colors button:hover { transform: scale(1.12); }
.hero-draw-custom-color {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  overflow: hidden;
  border: 1px solid #f2f2f2;
  border-radius: 50%;
  background: conic-gradient(#ff8181, #f2ca4a, #9ce77c, #74d7ff, #b58cff, #ff8fcf, #ff8181);
  cursor: pointer;
}
.hero-draw-custom-color:hover { transform: scale(1.12); }
.hero-draw-color-picker {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
.hero-draw-eraser,
.hero-draw-clear {
  position: absolute;
  bottom: 12px;
  display: none;
  height: 36px;
  border: 1px solid #4a4a4a;
  border-radius: 10px;
  background: #202020;
  color: #f3f3f3;
  cursor: pointer;
}
.hero-draw-eraser {
  left: calc(100% + 12px);
  width: 36px;
  padding: 0;
}
.hero-draw-eraser img {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}
.hero-draw-eraser[aria-pressed="true"] {
  border-color: #a3a3a3;
  background: #343434;
}
.hero-draw-clear {
  left: calc(100% + 56px);
  padding: 0 14px;
  text-align: center;
  font-size: 14px;
}
.pre-work-area.is-drawing.has-drawing .hero-draw-eraser,
.pre-work-area.is-drawing.has-drawing .hero-draw-clear { display: grid; place-items: center; }
.hero-draw-clear:hover { border-color: #777; background: #303030; }
.hero-draw-size {
  position: static;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid #3e3e3e;
  border-radius: 999px;
  background: #202020;
  color: #bdbdbd;
  font-size: 12px;
  line-height: 16px;
}
.pre-work-area.is-drawing .hero-draw-size { display: inline-flex; animation: controls-reveal 220ms ease-out both; }
.hero-draw-size input {
  width: 76px;
  height: 4px;
  accent-color: #f2f2f2;
  cursor: pointer;
}
.hero-draw-size output { min-width: 18px; color: #f4f4f4; text-align: right; }
.artwork-invite {
  position: static;
  display: none;
  align-items: center;
  gap: 10px;
  color: #aaa;
  font-size: 13px;
  line-height: 18px;
  white-space: nowrap;
}
.pre-work-area.has-drawing .artwork-invite { display: inline-flex; animation: controls-reveal 220ms ease-out both; }
.artwork-open {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #747474;
  background: transparent;
  color: #f5f5f5;
  cursor: pointer;
}
.artwork-open:hover { border-color: #fff; }
.artwork-dialog {
  width: min(440px, calc(100% - 32px));
  padding: 0;
  border: 1px solid #414141;
  border-radius: 22px;
  background: #202020;
  color: #f4f4f4;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.artwork-dialog::backdrop { background: rgba(0, 0, 0, 0.68); backdrop-filter: blur(4px); }
.mobile-draw-dialog {
  width: min(390px, calc(100% - 32px));
  padding: 0;
  border: 1px solid #414141;
  border-radius: 22px;
  background: #202020;
  color: #f4f4f4;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.mobile-draw-dialog::backdrop { background: rgba(0, 0, 0, 0.68); backdrop-filter: blur(4px); }
.mobile-draw-content { display: flex; flex-direction: column; gap: 16px; padding: 28px 24px 24px; }
.mobile-draw-content h2 { margin: -7px 0 0; font-size: 28px; font-weight: 400; letter-spacing: -0.04em; }
.mobile-draw-content > p:not(.artwork-kicker) { margin: -4px 0 4px; color: #b1b1b1; line-height: 1.45; }
.mobile-draw-actions { display: flex; gap: 10px; margin-top: 4px; }
.mobile-draw-actions button { height: 46px; padding: 0 15px; border: 1px solid #555; border-radius: 999px; background: transparent; color: #eee; cursor: pointer; }
.mobile-draw-actions .mobile-draw-continue { border-color: #fff; background: #fff; color: #171717; }
.artwork-form { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 32px; }
.artwork-kicker { margin: 0; color: #aaa; font-size: 13px; }
.artwork-form h2 { margin: -7px 0 0; font-size: 30px; font-weight: 400; letter-spacing: -0.04em; }
.artwork-form > p:not(.artwork-kicker):not(.artwork-status) { margin: -4px 0 4px; color: #b1b1b1; line-height: 1.45; }
.artwork-form label { display: flex; flex-direction: column; gap: 8px; color: #d5d5d5; font-size: 14px; }
.artwork-form input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #4a4a4a;
  border-radius: 10px;
  outline: none;
  background: #171717;
  color: #fff;
}
.artwork-form input:focus { border-color: #888; }
.artwork-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.artwork-submit-frame { position: absolute; width: 0; height: 0; border: 0; visibility: hidden; }
.artwork-send { height: 48px; margin-top: 4px; border: 0; border-radius: 999px; background: #fff; color: #161616; cursor: pointer; }
.artwork-send:hover { background: #e8e8e8; }
.artwork-send:disabled { opacity: .6; cursor: wait; }
.artwork-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; padding: 0; border: 1px solid #494949; border-radius: 50%; background: transparent; color: #eee; font-size: 23px; line-height: 1; cursor: pointer; }
.artwork-status { min-height: 18px; margin: -4px 0 0; color: #cfcfcf; font-size: 13px; line-height: 18px; }
.artwork-form small { color: #888; font-size: 12px; line-height: 1.4; }
.eyebrow {
  margin: 0;
  color: #f9f9f9;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  animation: hero-reveal 680ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}
.hero-message {
  width: 592px;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
}
.hero h1 {
  width: 592px;
  height: 156px;
  margin: 0;
  color: #fff;
  font-size: 72px;
  line-height: 109%;
  letter-spacing: -0.05em;
  font-weight: 400;
  animation: hero-reveal 760ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}
.hero-copy {
  width: 439px;
  height: 46px;
  margin: 0 auto;
  color: #9b9b9b;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0;
  animation: hero-reveal 720ms cubic-bezier(0.22, 1, 0.36, 1) 360ms both;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes draw-guide-arrow {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  12% { opacity: 1; }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes controls-reveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spark-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-2px) rotate(8deg); }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .eyebrow,
  .hero h1,
  .hero-copy,
  .hero-draw-controls,
  .draw-onboarding svg,
  .hero-draw-colors,
  .hero-draw-size,
  .artwork-invite,
  .spark,
  .statement.scroll-reveal .statement-word,
  .project-card,
  .project-placeholder,
  .project-image img,
  .project-card .pill,
  .process-icon,
  .title-reveal-ready {
    animation: none;
    transition: none;
  }
  .scroll-bottom-blur { transition: none; }
}

.work {
  position: relative;
  z-index: 5;
  height: 1312px;
  margin-top: 74px;
  padding: 48px;
}
.project-grid {
  height: 1216px;
  display: grid;
  grid-template-columns: repeat(3, 528px);
  grid-template-rows: repeat(2, 584px);
  column-gap: 24px;
  row-gap: 48px;
}
.project-card {
  width: 528px;
  height: 584px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.project-card.is-reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms), transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}
.project-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.project-placeholder {
  flex: 0 0 421px;
  width: 528px;
  height: 421px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  border-radius: 32px;
  background:
    linear-gradient(135deg, transparent 0 49.8%, #252525 49.9% 50.1%, transparent 50.2%),
    linear-gradient(45deg, transparent 0 49.8%, #252525 49.9% 50.1%, transparent 50.2%),
    #171717;
  color: #545454;
  font-size: 14px;
  line-height: 18px;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}
.project-image {
  background: #171717;
}
.project-image img {
  display: block;
  width: 88.257576%;
  height: auto;
  max-height: 84.56057%;
  object-fit: contain;
  object-position: center;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.project-image--enqaz img,
.project-image--eleve img {
  width: 89.583333%;
  max-height: 72.921615%;
}
.project-image--clarity img {
  width: 91.666667%;
  max-height: 74.346793%;
}
.project-image--smile-zone img {
  width: 91.287879%;
  max-height: 65.320665%;
}
.project-card h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.project-card p {
  margin: 8px 0 0;
  color: #565656;
  font-size: 18px;
  line-height: 23px;
}
.project-card .pill {
  width: 126px;
  height: 53px;
  min-width: 0;
  margin-top: 32px;
  padding: 16px 32px;
  border-radius: 50px;
  background: #fff;
  color: #141414;
  font-family: "Geist", Arial, sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  cursor: pointer;
}
.project-card .pill--live { width: 152px; }
.project-card .pill:hover { background: #dcdcdc; }

.thinking {
  height: 565px;
  margin-top: 74px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 108px;
}
.section-heading {
  margin: 0;
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.title-reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(9px);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1), filter 680ms ease;
}
.title-reveal-ready.is-title-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.thinking-rule {
  display: block;
  flex: 0 0 auto;
  width: 1632px;
  height: 1px;
}
.thinking-content {
  width: 1622px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.thinking .section-heading {
  width: 100%;
  font-size: 72px;
  line-height: 109%;
  letter-spacing: -3.6px;
}
.thinking-grid {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
}
.thinking-grid article {
  min-width: 0;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.thinking-grid span {
  display: block;
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 109%;
  letter-spacing: -1.6px;
  font-weight: 600;
}
.thinking-grid article > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.thinking-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 109%;
  letter-spacing: -1.2px;
  font-weight: 400;
}
.thinking-grid p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #9b9b9b;
  font-size: 16px;
  line-height: normal;
}
.process-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
}
.process-grid p {
  max-width: 440px;
  margin: 0;
  color: #9b9b9b;
  font-size: 16px;
  line-height: 24px;
}

.process {
  min-height: 1084px;
  margin-top: 74px;
  padding: 48px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 528px);
  gap: 68px 24px;
  margin-top: 92px;
}
.process-grid article { width: 528px; }
.process-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
}
.process-icon.is-icon-reveal-ready {
  opacity: 0;
  transform: translateY(10px) scale(0.86);
  filter: blur(2px);
  transition: opacity 480ms cubic-bezier(0.22, 1, 0.36, 1) var(--icon-delay, 0ms), transform 480ms cubic-bezier(0.22, 1, 0.36, 1) var(--icon-delay, 0ms), filter 480ms ease var(--icon-delay, 0ms);
}
.process-icon.is-icon-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.process-icon img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.statement {
  width: min(1550px, 100%);
  margin: 0;
  font-size: 64px;
  line-height: 68px;
  letter-spacing: -0.05em;
  font-weight: 400;
  position: sticky;
  top: 18vh;
}
.statement-stage {
  height: 110vh;
  min-height: 760px;
  margin-top: 92px;
}
.statement.scroll-reveal .statement-word {
  color: #555;
  transition: color 300ms ease;
}
.statement.scroll-reveal .statement-word.is-lit { color: #fff; }

.ask {
  height: 560px;
  margin-top: 74px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.ask.has-answer {
  height: auto;
  min-height: 560px;
}
.ask-title {
  position: relative;
  flex: 0 0 auto;
  width: max-content;
  height: 78.48px;
}
.ask-title h2 {
  margin: 0;
  color: #fff;
  font-size: 72px;
  line-height: 109%;
  font-weight: 400;
  letter-spacing: -3.6px;
  white-space: pre;
}
.ask-title img {
  position: absolute;
  top: 38.99px;
  left: 198px;
  width: 71px;
  height: 26.593px;
  object-fit: contain;
}
.ask-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.ask-form {
  position: relative;
  width: 100%;
  height: 183px;
  overflow: hidden;
  border: 2px solid #3f3f3f;
  border-radius: 32px;
  background: #2d2d2d;
}
.ask-form input {
  width: 100%;
  height: 100%;
  padding: 43px 110px 114px 38px;
  border: 0;
  outline: none;
  background: transparent;
  color: white;
  font-size: 20px;
  line-height: 130%;
}
.ask-form:focus-within { border-color: #666; }
.ask-form input::placeholder { color: #9b9b9b; opacity: 1; }
.ask-form button {
  position: absolute;
  right: 26px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 70.737px;
  background: white;
  cursor: pointer;
}
.ask-form button img {
  display: block;
  width: 17.684px;
  height: 20.632px;
  margin: auto;
}
.suggestions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 17px;
}
.suggestion-row {
  display: flex;
  align-items: center;
  gap: 17px;
}
.suggestions button {
  padding: 16px 32px;
  border: 1px solid #3b3b3b;
  border-radius: 45px;
  background: #1d1d1d;
  color: #bababa;
  font-size: 16px;
  line-height: 130%;
  cursor: pointer;
  white-space: nowrap;
}
.ask-answer {
  display: none;
  width: 100%;
  margin: 0;
  padding: 24px 28px;
  border: 1px solid #3b3b3b;
  border-radius: 20px;
  background: #1c1c1c;
  color: #d8d8d8;
  font-size: 18px;
  line-height: 1.5;
  white-space: pre-wrap;
}
.ask-answer.is-visible { display: block; }
.ask-form.is-loading button { opacity: 0.55; cursor: wait; }

/* Chat-style portfolio assistant */
.ask {
  height: auto;
  min-height: 620px;
  padding-block: 72px;
  gap: 40px;
}
.ask-title h2 { font-size: 58px; letter-spacing: -0.05em; }
.ask-title {
  width: auto;
  height: auto;
}
.ask-title h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.ask-title img {
  position: static;
  width: 71px;
  height: 26.593px;
  object-fit: contain;
}
.ask-content { max-width: 920px; gap: 20px; }
.chat-thread {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 28px;
  padding: 4px 0 16px;
}
.ask.has-answer .chat-thread { display: flex; }
.chat-user-message {
  display: flex;
  justify-content: flex-end;
}
.chat-user-text {
  max-width: min(680px, 82%);
  margin: 0;
  padding: 14px 18px;
  border-radius: 20px;
  background: #303030;
  color: #f7f7f7;
  font-size: 16px;
  line-height: 1.45;
}
.chat-assistant-message {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.chat-assistant-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  border-radius: 9px;
  background: #f4f4f4;
  color: #1d1d1d;
  font-size: 15px;
}
.chat-assistant-content { min-width: 0; }
.chat-assistant-name {
  display: block;
  margin-bottom: 8px;
  color: #e7e7e7;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}
.chat-assistant-message .ask-answer {
  width: auto;
  max-width: 740px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #e3e3e3;
  font-size: 16px;
  line-height: 1.6;
}
.ask-form {
  height: 84px;
  border: 1px solid #4b4b4b;
  border-radius: 26px;
  background: #2f2f2f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.ask-form input {
  padding: 0 76px 0 24px;
  font-size: 16px;
  line-height: 1.4;
}
.ask-form:focus-within { border-color: #737373; }
.ask-form button {
  right: 14px;
  bottom: 14px;
  width: 56px;
  height: 56px;
}
.suggestions {
  width: 100%;
  gap: 12px;
}
.suggestion-row { width: 100%; gap: 12px; }
.suggestions button {
  flex: 1 1 0;
  padding: 15px 18px;
  border-radius: 16px;
  background: #212121;
  color: #d2d2d2;
  text-align: left;
  white-space: normal;
}
.suggestions button:hover { background: #2a2a2a; border-color: #535353; }

.footer {
  height: 284px;
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 48px;
  color: #9b9b9b;
  font-size: 16px;
  line-height: 21px;
}
.footer div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer strong { margin-bottom: 8px; color: #fff; font-weight: 400; }
.footer a:hover { color: white; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1727px) {
  :root { --page-padding: clamp(24px, 2.78vw, 48px); }
  .project-grid,
  .thinking-grid,
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-card,
  .project-placeholder,
  .thinking-grid article,
  .process-grid article { width: 100%; }
  .thinking-rule,
  .thinking-content { width: 100%; }
  .work { height: auto; }
  .project-grid {
    height: auto;
    grid-template-rows: none;
  }
  .project-card { height: auto; }
  .project-placeholder {
    height: auto;
    aspect-ratio: 528 / 421;
    flex-basis: auto;
  }
}

@media (max-width: 900px) {
  .site-header { position: relative; z-index: 30; grid-template-columns: 1fr auto; height: 72px; }
  .brand { font-size: 20px; line-height: 26px; }
  .desktop-nav, .site-header > .pill { display: none; }
  .menu-button { display: grid; }
  .site-header.menu-open .desktop-nav {
    position: absolute;
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    top: 64px;
    left: var(--page-padding);
    right: var(--page-padding);
    width: auto;
    padding: 12px;
    border: 1px solid #363636;
    border-radius: 16px;
    background: #202020;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  }
  .site-header.menu-open .desktop-nav a {
    width: 100%;
    padding: 14px 12px;
    border-radius: 10px;
  }
  .site-header.menu-open .desktop-nav a:hover { background: #303030; }
  .site-header.menu-open .desktop-nav .ai-link {
    gap: 9px;
  }
  .site-header.menu-open .desktop-nav .mobile-nav-talk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 8px 0 2px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #fff;
    color: #141414;
  }
  .hero { height: auto; min-height: 500px; margin-top: 32px; padding: 0; padding-inline: var(--page-padding); }
  .hero-message, .hero h1, .hero-copy { width: 100%; height: auto; }
  .hero h1 { font-size: 54px; }
  .work, .thinking, .process, .ask, .footer { height: auto; min-height: 0; margin-top: 48px; padding: var(--page-padding); }
  .project-grid { height: auto; display: grid; grid-template-columns: 1fr; grid-template-rows: none; gap: 56px; }
  .project-card { height: auto; }
  .project-placeholder { height: auto; aspect-ratio: 528 / 421; flex-basis: auto; }
  .thinking-grid, .process-grid { grid-template-columns: 1fr; gap: 56px; margin-top: 64px; }
  .thinking { gap: 64px; }
  .thinking-grid {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }
  .statement { width: auto; font-size: clamp(38px, 10vw, 64px); line-height: 1.06; }
  .statement-stage { height: 90vh; min-height: 620px; margin-top: 72px; }
  .ask { gap: 32px; }
  .ask-answer { padding: 20px; font-size: 16px; }
  .ask-title { width: 100%; height: auto; }
  .ask-title h2 {
    font-size: clamp(38px, 10vw, 56px);
    line-height: 109%;
    text-align: center;
    white-space: normal;
  }
  .ask-title img {
    position: static;
    display: block;
    width: 73px;
    height: 29px;
    margin: 12px auto 0;
  }
  .ask-form { height: 150px; }
  .ask-form input { padding: 32px 92px 92px 24px; font-size: 16px; }
  .suggestions, .suggestion-row { width: 100%; }
  .suggestion-row { flex-direction: column; align-items: stretch; }
  .suggestions button { width: 100%; white-space: normal; }
  .footer { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  :root { --page-padding: 20px; }
  .site-header { height: 68px; }
  .brand { font-size: 19px; }
  .hero {
    min-height: 470px;
    margin-top: 12px;
    padding-inline: 20px;
    align-items: flex-start;
    text-align: left;
  }
  .hero-message { align-items: flex-start; }
  .hero-copy { margin: 0; text-align: left; }
  .hero-draw-area { align-items: flex-start; }
  .hero-draw-controls { justify-content: flex-start; }
  .hero h1 { font-size: clamp(34px, 10.8vw, 42px); line-height: 1.04; }
  .hero-copy { font-size: 16px; line-height: 1.45; }
  .hero-copy br { display: none; }
  .hero-draw-controls { width: calc(100% - 32px); }
  .draw-onboarding { display: none; }
  .hero-draw-toggle > span { display: inline; }
  .hero-pencil { width: 26px; height: 48px; }
  .pre-work-area.is-drawing .hero-draw-controls { gap: 7px; }
  .pre-work-area.is-drawing .hero-draw-toggle { width: 26px; flex: 0 0 26px; }
  .pre-work-area.is-drawing .hero-draw-toggle span { display: none; }
  .hero-draw-colors {
    position: static;
    gap: 4px;
    padding: 5px;
    border-radius: 12px;
  }
  .hero-draw-colors button { width: 18px; height: 18px; }
  .hero-draw-colors span { width: 12px; height: 12px; }
  .hero-draw-custom-color { width: 14px; height: 14px; }
  .hero-draw-eraser,
  .hero-draw-clear {
    position: static;
    flex: 0 0 auto;
    height: 34px;
  }
  .hero-draw-eraser { width: 34px; }
  .hero-draw-clear { padding-inline: 11px; }
  .hero-draw-size { gap: 7px; padding: 6px 9px; }
  .hero-draw-size span { display: none; }
  .hero-draw-size input { width: 68px; }
  .artwork-invite { max-width: calc(100% - 28px); gap: 6px; font-size: 12px; white-space: normal; text-align: center; }
  .artwork-form { padding: 28px 22px 24px; }
  .work, .thinking, .process, .ask, .footer { margin-top: 40px; padding: 20px; }
  .project-grid { gap: 42px; }
  .project-placeholder { border-radius: 22px; }
  .thinking-grid, .process-grid { gap: 40px; margin-top: 44px; }
  .thinking-grid h3, .process-grid h3 { font-size: 21px; line-height: 1.2; }
  .thinking-grid p, .process-grid p { font-size: 16px; line-height: 1.5; }
  .statement-stage { height: 78vh; min-height: 520px; margin-top: 48px; }
  .statement { font-size: clamp(34px, 10.5vw, 46px); }
  .ask-title h2 { font-size: clamp(36px, 11vw, 48px); }
  .ask-form { height: 118px; }
  .ask-form input { padding: 20px 70px 54px 20px; }
  .chat-user-text { max-width: 94%; }
  .footer { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

@media (max-width: 900px) {
  .ask { min-height: 0; padding-block: 48px; }
  .ask-title h2 { font-size: clamp(38px, 10vw, 56px); }
  .ask-title h2 { flex-wrap: wrap; justify-content: center; gap: 8px; white-space: normal; }
  .ask-form { height: 72px; border-radius: 22px; }
  .ask-form input { padding-left: 20px; font-size: 16px; }
  .ask-form button { right: 9px; bottom: 9px; width: 54px; height: 54px; }
  .suggestion-row { flex-direction: column; align-items: stretch; }
  .suggestions button { width: 100%; }
  .chat-user-text { max-width: 90%; }
}

@media (max-width: 600px) {
  .ask { padding-block: 40px; }
  .ask-title h2 { font-size: clamp(36px, 11vw, 48px); }
  .ask-form { height: 118px; }
  .ask-form input { padding: 20px 70px 54px 20px; }
  .chat-user-text { max-width: 94%; }
}
