:root {
  color: #45454f;
  background: #fbfbfc;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  background: #fbfbfc;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

button, input, textarea { font: inherit; }

.application-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: max(24px, env(safe-area-inset-top)) 24px 0;
  isolation: isolate;
}

.application-header::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 -28px;
  background: linear-gradient(to bottom, #fbfbfc 0%, rgb(251 251 252 / 88%) 55%, rgb(251 251 252 / 0%) 100%);
  content: "";
  pointer-events: none;
}

.application-header__inner {
  display: flex;
  width: min(100%, 480px);
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.application-header__leading { display: flex; min-width: 0; align-items: center; gap: 10px; }
.application-header__back { display: grid; width: 32px; height: 32px; padding: 5px; color: #45454f; place-items: center; }
.application-header__back svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.application-header__brand { display: inline-flex; align-items: baseline; gap: 6px; color: #45454f; font-family: Outfit, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif; text-decoration: none; }
.application-header__brand-icon { width: 20px; height: 18px; object-fit: contain; }
.application-header__brand-logo { display: block; width: 53px; height: 17px; object-fit: contain; }
.application-header__back:focus-visible, .application-header__brand:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.home {
  min-height: 100svh;
  padding: 0 24px calc(28px + env(safe-area-inset-bottom));
}

.home__content {
  width: min(100%, 480px);
  margin: 0 auto;
}

.home__notice { margin: 0 0 12px; color: #777780; font-size: 13px; line-height: 1.5; }

.share__preview-brand, .home__hero { font-family: Outfit, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif; }

.home__refresh svg,
.home__submit svg,
.home__image-button svg,
.home__camera-button svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home__hero { padding: 64px 0 38px; }

.home h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: -.025em;
}

.home__tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.home__tab {
  position: relative;
  padding: 0 0 8px;
  color: #a1a1a8;
  background: transparent;
  border: 0;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.home__tab--active {
  color: #45454f;
  font-weight: 500;
}

.home__tab--active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #45454f;
  content: "";
}

.home__composer { position: relative; }

.home__textarea {
  display: block;
  width: 100%;
  height: 59px;
  min-height: 59px;
  padding: 18px 140px 17px 21px;
  resize: none;
  overflow: hidden;
  color: inherit;
  background: #fff;
  border: 1px solid #c9c9dd;
  border-radius: 30px;
  outline: none;
  font-size: 14px;
  line-height: 22px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.home__textarea::placeholder { color: #b3b3ba; }
.home__textarea:focus, .home--activated .home__textarea { border-color: #8f8fa5; box-shadow: 0 0 0 2px rgb(143 143 165 / 12%); }

.home__image-button {
  position: absolute;
  top: 10px;
  right: 48px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #777780;
  background: transparent;
  border: 0;
  border-radius: 0;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
}

.home__camera-button {
  position: absolute;
  top: 10px;
  right: 86px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #777780;
  background: transparent;
  border: 0;
  border-radius: 50%;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
}

.home__image-button svg, .home__camera-button svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

.home__submit {
  position: absolute;
  top: 12px;
  right: 9px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 8px;
  color: #fff;
  background: #303038;
  border: 0;
  border-radius: 50%;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
}

.home__submit svg { stroke-width: 1.8; }

.home__image-preview { position: relative; width: 72px; height: 72px; margin-top: 9px; overflow: hidden; border: 1px solid #dedee5; border-radius: 12px; }
.home__image-preview img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home__image-preview button { position: absolute; top: 3px; right: 3px; display: grid; width: 22px; height: 22px; padding: 0; color: #fff; background: rgb(48 48 56 / 82%); border: 0; border-radius: 50%; font-size: 17px; line-height: 1; place-items: center; }
.home__image-button:focus-visible, .home__camera-button:focus-visible, .home__image-preview button:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }

.home__cues { height: 105px; min-height: 105px; margin-top: 38px; }

.home__cues-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.home__cues h2 {
  margin: 0;
  color: #777780;
  font-size: 13px;
  font-weight: 500;
}

.home__refresh {
  width: 28px;
  height: 28px;
  margin-right: -3px;
  padding: 5px;
  color: #8c8c96;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.home__refresh svg { stroke-width: 1.5; }
.home__refresh:hover, .home__refresh:focus-visible { background: #f0f0f3; }
.home__refresh:focus-visible, .home__cue:focus-visible, .home__tab:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }

.home__cue-list {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  column-gap: 10px;
  row-gap: 8px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.home__cue-list::-webkit-scrollbar { display: none; }

.home__cue {
  min-height: 33px;
  padding: 5px 11px;
  color: #51515a;
  background: #f8f8fa;
  border: 1px solid #e8e8ed;
  border-radius: 17px;
  cursor: pointer;
  font-size: 13px;
  line-height: 20px;
  white-space: nowrap;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.home__cue:hover { background: #f1f1f4; }

.home__tab:active,
.home__cue:active,
.home__refresh:active,
.home__submit:active,
.home__menu:active { opacity: .78; }

.global-menu { position: relative; z-index: 20; }
.global-menu__trigger { position: relative; display: grid; width: 32px; height: 32px; margin-right: -5px; padding: 5px; color: #45454f; list-style: none; place-items: center; cursor: pointer; }
.global-menu__trigger::-webkit-details-marker { display: none; }
.global-menu__trigger svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.1; }
.global-menu__open-icon, .global-menu__close-icon { display: grid; width: 100%; height: 100%; place-items: center; }
.global-menu__close-icon { display: none; }
.global-menu__sheet { display: none; }
.global-menu[open] { position: static; z-index: 40; }
.global-menu[open] .global-menu__trigger { position: fixed; top: max(16px, env(safe-area-inset-top)); right: 14px; z-index: 2; width: 44px; height: 44px; margin: 0; padding: 5px; color: #777780; background: transparent; }
.global-menu[open] .global-menu__open-icon { display: none; }
.global-menu[open] .global-menu__close-icon { display: grid; width: 34px; height: 34px; background: #f3f3f4; border-radius: 50%; }
.global-menu[open] .global-menu__trigger svg { stroke-width: 1.65; }
.global-menu[open] .global-menu__sheet { position: fixed; inset: 0; display: block; padding: max(106px, calc(env(safe-area-inset-top) + 82px)) 24px calc(28px + env(safe-area-inset-bottom)); color: #303038; background: #fbfbfc; }
.global-menu__sheet > * { width: min(100%, 480px); margin-right: auto; margin-left: auto; }
.global-menu__item { display: flex; min-height: 58px; align-items: center; padding: 14px 0; color: #303038; border: 0; font-size: 16px; font-weight: 500; line-height: 1.45; text-decoration: none; }
.global-menu__item--home { margin-bottom: 12px; }
.global-menu__item--history { border-bottom: 1px solid #eeeef1; }
.global-menu__item--feedback { margin-top: 12px; }
.global-menu__sheet a:hover { color: #62626b; }
.global-menu__trigger:focus-visible, .global-menu__sheet a:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 3px; }

.home--composer-focused .home__cues { margin-top: 10px; }
.home--composer-focused .home__cue-heading-label,
.home--composer-focused .home__refresh,
.home--composer-focused .home__cue:not(.home__cue--selected) { display: none; }

.home__lens { margin-top: 82px; }
.home__lens h2 { margin: 0 0 13px; color: #8c8c96; font-size: 13px; font-weight: 500; }
.home__lens-heading-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.home__lens-heading-row h2 { margin: 0; }
.home__lens-form { position: relative; }
.home__lens-form input { display: block; width: 100%; height: 56px; padding: 15px 58px 15px 19px; color: #51515a; background: #fff; border: 1px solid #dedee5; border-radius: 28px; outline: none; font-size: 14px; }
.home__lens-form input::placeholder { color: #aaaab2; }
.home__lens-form input:focus { border-color: #8f8fa5; box-shadow: 0 0 0 2px rgb(143 143 165 / 12%); }
.home__lens-form button { position: absolute; top: 9px; right: 9px; display: grid; width: 38px; height: 38px; padding: 9px; color: #fff; background: #303038; border: 0; border-radius: 50%; place-items: center; -webkit-tap-highlight-color: transparent; }
.home__lens-form svg { width: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.home__lens-cue-list { display: flex; gap: 10px; margin: 12px -24px 0; padding: 0 24px 4px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.home__lens-cue-list::-webkit-scrollbar { display: none; }
.home__lens-cue { flex: 0 0 auto; min-height: 33px; padding: 5px 11px; color: #666670; background: #f8f8fa; border: 1px solid #e8e8ed; border-radius: 17px; font-size: 13px; line-height: 20px; white-space: nowrap; -webkit-tap-highlight-color: transparent; }
.home__lens-cue:hover { background: #f1f1f4; }
.home__lens-interest { margin: 0 0 11px; color: #45454f; font-size: 14px; font-weight: 600; }
.home__lens-carousel { display: flex; gap: 10px; margin: 0 -24px; padding: 0 24px 4px; overflow-x: auto; overscroll-behavior-x: contain; scroll-padding-inline: 24px; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.home__lens-carousel::-webkit-scrollbar { display: none; }
.home__lens-card { flex: 0 0 min(84vw, 380px); min-height: 132px; padding: 16px 16px 14px; background: #fff; border: 1px solid #e1e1e7; border-radius: 15px; scroll-snap-align: start; scroll-snap-stop: always; }
.home__lens-card > p { margin: 0; color: #303038; font-size: 18px; font-weight: 700; line-height: 1.45; overflow-wrap: anywhere; }
.home__lens-actions { display: flex; align-items: center; gap: 11px; margin-top: 14px; }
.home__lens-actions form { margin: 0; }
.home__lens-set-button, .home__lens-refine { min-height: 32px; border: 0; border-radius: 17px; font-size: 13px; font-weight: 600; -webkit-tap-highlight-color: transparent; }
.home__lens-set-button { padding: 7px 14px; color: #fff; background: #303038; }
.home__lens-refine { padding: 7px 9px; color: #84848d; background: #f4f4f6; }
.home__lens-set { display: flex; min-height: 43px; align-items: center; justify-content: space-between; gap: 14px; margin: 0; padding: 10px 14px; color: #777780; background: #fff; border: 1px solid #e9e9ee; border-radius: 13px; font-size: 14px; line-height: 1.45; overflow-wrap: anywhere; }
.home__lens-set span { flex: 0 0 auto; color: #b2b2b9; font-size: 17px; }
.home__lens-set-actions { display: flex; align-items: center; justify-content: flex-end; gap: 18px; margin-top: 7px; }
.home__lens-set-actions form { margin: 0; }
.home__lens-undo, .home__lens-reset { min-height: 32px; padding: 6px 0; background: transparent; border: 0; -webkit-tap-highlight-color: transparent; }
.home__lens-undo { color: #a1a1a9; font-size: 12px; }
.home__lens-reset { color: #b5b5bc; font-size: 12px; }
.home__lens-form button:active, .home__lens-cue:active, .home__lens-set-button:active, .home__lens-refine:active { opacity: .78; }
.home__lens-form input:focus-visible, .home__lens-form button:focus-visible, .home__lens-cue:focus-visible, .home__lens-set-button:focus-visible, .home__lens-refine:focus-visible, .home__lens-undo:focus-visible, .home__lens-reset:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }

@media (min-width: 481px) {
  .home { padding-top: max(24px, env(safe-area-inset-top)); }
}

.explore {
  min-height: 100svh;
  padding: 0 24px calc(28px + env(safe-area-inset-bottom));
}

.explore__content { width: min(100%, 480px); margin: 0 auto; }
.explore__message-share svg, .explore__composer svg { width: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.explore__timeline { padding: 36px 0 calc(140px + env(safe-area-inset-bottom)); }
.explore__entry-image { width: min(100%, 280px); margin: 0 0 28px; overflow: hidden; border-radius: 14px; }
.explore__entry-image img { display: block; width: 100%; height: auto; }
.explore__message { position: relative; padding-bottom: 18px; font-size: 14px; line-height: 1.65; margin-bottom: 40px;}
.explore__message p { margin: 0; }
.explore__message--user { display: block; width: 100%; padding: 12px 14px; background: #eeeeF2; border-radius: 15px; white-space: normal; overflow-wrap: anywhere; margin-bottom: 60px;}
.explore__message--user .explore__message-share { bottom: -26px; }
.explore__message--co-explorer { padding-left: 18px; }
.explore__message--co-explorer::before { position: absolute; top: -4px; left: 1px; color: #62626d; content: "▸"; font-size: 16px; }
.explore__message-share { position: absolute; right: 0; bottom: -10px; width: 24px; height: 24px; padding: 5px; color: #92929b; background: transparent; border: 0; -webkit-tap-highlight-color: transparent; }
.explore__message-share svg { stroke-width: 1.5; }
.explore-share-sheet { width: min(100%, 480px); max-width: none; margin: auto 0 0; padding: 0; color: #45454f; background: #fff; border: 0; border-radius: 18px 18px 0 0; overscroll-behavior: contain; touch-action: pan-y; }
.explore-share-sheet::backdrop { background: rgb(30 30 36 / 34%); }
.explore-share-sheet__body { position: relative; padding: 26px 24px calc(28px + env(safe-area-inset-bottom)); }
.explore-share-sheet__close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; padding: 0; color: #62626b; background: transparent; border: 0; font-size: 24px; }
.explore-share-sheet__label { margin: 0 0 12px; color: #7d7d86; font-size: 13px; }
.explore-share-sheet__preview { padding: 18px; background: #e5e1de; border-radius: 14px; }
.explore-share-sheet__preview p { margin: 0; overflow-wrap: anywhere; }
.explore-share-sheet__preview p + p { margin-top: 18px; font-size: 18px; font-weight: 700; line-height: 1.5; }
.explore-share-sheet__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.explore-share-sheet__actions button { min-height: 44px; color: #45454f; background: #fff; border: 1px solid #d7d7de; border-radius: 23px; font: inherit; }
.explore-share-sheet__actions button:first-child { color: #fff; background: #303038; border-color: #303038; }
.explore-share-sheet__actions button:focus-visible, .explore-share-sheet__close:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }
.explore__interaction { position: fixed; right: 0; bottom: 0; left: 0; z-index: 10; width: min(100%, 480px); box-sizing: border-box; margin: 0 auto; padding: 32px 24px calc(10px + env(safe-area-inset-bottom)); background: linear-gradient(to bottom, rgb(251 251 252 / 0%), rgb(251 251 252 / 88%) 24px, #fbfbfc 54px); }
.explore__reactions { display: flex; gap: 8px; margin-bottom: 12px; overflow-x: auto; }
.explore__reactions button { min-width: max-content; min-height: 32px; padding: 6px 12px; color: #51515a; background: transparent; border: 1px solid #e1e1e7; border-radius: 18px; font-size: 13px; -webkit-tap-highlight-color: transparent; }
.explore__composer { position: relative; }
.explore__composer textarea { display: block; width: 100%; height: 46px; padding: 11px 58px 11px 18px; resize: none; color: inherit; background: #fff; border: 1px solid #dedee5; border-radius: 25px; outline: none; font-size: 14px; line-height: 22px; }
.explore__composer textarea::placeholder { color: #a7a7b0; }
.explore__composer button { position: absolute; top: 7px; right: 7px; display: grid; width: 34px; height: 34px; padding: 8px; color: #fff; background: #303038; border: 0; border-radius: 50%; place-items: center; -webkit-tap-highlight-color: transparent; }
.explore__composer svg { stroke-width: 1.8; }
.explore__message-share:active, .explore__reactions button:active, .explore__composer button:active { opacity: .78; }
.explore__message-share:focus-visible, .explore__reactions button:focus-visible, .explore__composer textarea:focus-visible, .explore__composer button:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }

.completion {
  min-height: 100svh;
  padding: 0 24px calc(28px + env(safe-area-inset-bottom));
}

.completion__content { width: min(100%, 480px); margin: 0 auto; padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
.completion__body { padding-top: 54px; }
.completion__notice { margin: 0 0 16px; color: #8a5d5d; font-size: 13px; line-height: 1.5; }
.completion__body h1 { margin: 0 0 26px; color: #303038; font-size: 23px; line-height: 1.35; }
.completion__section { margin-bottom: 18px; }
.completion__label { margin: 0 0 7px; color: #92929b; font-size: 13px; }
.completion__card { display: flex; align-items: center; gap: 10px; padding: 13px 12px 13px 15px; color: #45454f; background: #f1f1f4; border: 1px solid #e7e7eb; border-radius: 13px; font-size: 14px; line-height: 1.55; overflow-wrap: anywhere; }
.completion__card > span { min-width: 0; flex: 1; white-space: pre-wrap; }
.completion__edit-form { margin: 0; }
.completion__edit-input { display: none; min-width: 0; flex: 1; padding: 0; color: inherit; background: transparent; border: 0; outline: 0; font: inherit; line-height: inherit; }
.completion__edit-input--textarea { min-height: 22px; overflow: hidden; resize: none; white-space: pre-wrap; }
.completion__card.is-editing { align-items: flex-start; }
.completion__card.is-editing:focus-within { border-color: #303038; box-shadow: 0 0 0 1px #303038; }
.completion__card.is-editing > span { display: none; }
.completion__card.is-editing .completion__edit-input { display: block; }
.completion__edit { display: grid; flex: 0 0 24px; width: 24px; height: 24px; padding: 5px; color: #a3a3ac; background: transparent; border: 0; place-items: center; -webkit-tap-highlight-color: transparent; }
.completion__edit svg { width: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.completion__section--one-liner { margin-top: 36px; margin-bottom: 35px; }
.completion__one-liner { margin: 0; color: #303038; font-size: 24px; font-weight: 700; line-height: 1.45; overflow-wrap: anywhere; }
.completion__discovery { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 0 0 14px; color: #62626d; background: transparent; border: 0; border-bottom: 1px solid #dedee5; font-size: 14px; text-align: left; -webkit-tap-highlight-color: transparent; }
.completion__thinking-form { margin: 0; }
.completion__discovery > span:last-child { color: #92929b; font-size: 22px; line-height: 1; }
.completion__cat { display: block; width: 56px; height: 49px; margin: 52px 22px 0 auto; object-fit: contain; }
.completion__actions--fixed { position: fixed; right: 0; bottom: 0; left: 0; z-index: 10; padding: 32px 24px calc(28px + env(safe-area-inset-bottom)); background: linear-gradient(to bottom, rgb(251 251 252 / 0%), rgb(251 251 252 / 88%) 28px, #fbfbfc 58px); }
.completion__actions-inner { display: flex; width: min(100%, 480px); gap: 12px; margin: 0 auto; }
.completion__action { display: grid; min-height: 44px; flex: 1; place-items: center; border-radius: 23px; font-size: 14px; font-weight: 600; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.completion__action--secondary { color: #303038; background: transparent; border: 1px solid #303038; }
.completion__action--primary { color: #fff; background: #303038; border: 1px solid #303038; }
.completion__edit:active, .completion__discovery:active, .completion__action:active { opacity: .78; }
.completion__edit:focus-visible, .completion__discovery:focus-visible, .completion__action:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }

.temporary-thinking { position: fixed; inset: auto 0 0; z-index: 20; width: min(100%, 480px); max-width: none; max-height: min(66svh, 590px); box-sizing: border-box; margin: 0 auto; padding: 0; overscroll-behavior: contain; color: #45454f; background: #fbfbfc; border: 0; border-radius: 24px 24px 0 0; box-shadow: none; }
.temporary-thinking::backdrop { background: rgb(0 0 0 / 82%); }
.temporary-thinking__handle { width: 31px; height: 4px; margin: 8px auto 0; background: #d2d2d8; border-radius: 999px; }
.temporary-thinking__body { padding: 48px 24px 24px; overflow-y: auto; }
.temporary-thinking__body--empty { padding-top: 75px; text-align: center; }
.temporary-thinking__empty-cat { display: block; width: 126px; height: 100px; margin: 0 auto 27px; object-fit: contain; }
.temporary-thinking__body--empty h2 { margin-bottom: 18px; }
.temporary-thinking__empty-copy { margin: 0; color: #85858e; font-size: 13px; line-height: 1.75; }
.temporary-thinking__empty-copy + .temporary-thinking__empty-copy { margin-top: 2px; }
.temporary-thinking__empty-framing { margin: 20px 0 0; color: #a0a0a8; font-size: 11px; line-height: 1.6; }
.temporary-thinking__body h2 { margin: 0 0 31px; color: #35353e; font-size: 19px; font-weight: 700; line-height: 1.45; letter-spacing: -.02em; overflow-wrap: anywhere; }
.temporary-thinking__label { margin: 0 0 8px; color: #8f8f98; font-size: 13px; }
.temporary-thinking__reasons { display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; }
.temporary-thinking__reasons li { padding: 12px 14px; color: #4d4d56; background: #f5f5f7; border: 1px solid #ebebef; border-radius: 11px; font-size: 13px; line-height: 1.55; overflow-wrap: anywhere; }
.temporary-thinking__framing { margin-top: 40px; color: #92929b; font-size: 12px; line-height: 1.6; }
.temporary-thinking__framing p { margin: 0; }
.temporary-thinking__framing p + p { margin-top: 2px; font-size: 11px; }
.temporary-thinking__footer { padding: 0 24px calc(28px + env(safe-area-inset-bottom)); }
.temporary-thinking__footer button { display: grid; width: 100%; min-height: 45px; place-items: center; color: #35353e; background: #fff; border: 1px solid #35353e; border-radius: 24px; font: inherit; font-size: 14px; font-weight: 600; -webkit-tap-highlight-color: transparent; }
.temporary-thinking__footer button:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }

.not-found { min-height: 100svh; padding: 0 24px calc(28px + env(safe-area-inset-bottom)); background: #fbfbfc; }
.not-found__content { display: flex; width: min(100%, 480px); min-height: calc(100svh - max(24px, env(safe-area-inset-top)) - 32px - 28px - env(safe-area-inset-bottom)); margin: 0 auto; flex-direction: column; }
.not-found__body { padding-top: clamp(100px, 18svh, 155px); text-align: center; }
.not-found__cat { display: block; width: min(54vw, 180px); height: 108px; margin: 0 auto 57px; object-fit: contain; }
.not-found__code { margin: 0 0 33px; color: #303038; font-size: 40px; font-weight: 700; letter-spacing: .02em; line-height: 1; }
.not-found__body h1 { margin: 0; color: #303038; font-size: 25px; font-weight: 700; line-height: 1.45; letter-spacing: -.02em; }
.not-found__copy { margin: 28px 0 0; color: #85858e; font-size: 13px; line-height: 2.1; }
.not-found__actions { display: grid; gap: 25px; width: min(100%, 260px); margin: 36px auto auto; text-align: center; }
.not-found__home { display: grid; min-height: 45px; place-items: center; color: #35353e; background: #fff; border: 1px solid #d5d5da; border-radius: 24px; font-size: 14px; font-weight: 600; text-decoration: none; }
.not-found__back { color: #92929b; font-size: 13px; font-weight: 600; text-decoration: none; }
.not-found__home:focus-visible, .not-found__back:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }

.stock { min-height: 100svh; padding: 0 24px calc(28px + env(safe-area-inset-bottom)); }
.stock__content { display: flex; width: min(100%, 480px); min-height: calc(100svh - max(24px, env(safe-area-inset-top)) - 32px - 28px - env(safe-area-inset-bottom)); margin: 0 auto; flex-direction: column; }
.stock__body { padding: 58px 0 calc(104px + env(safe-area-inset-bottom)); }
.stock__list { display: flex; flex-direction: column; gap: 16px; }
.stock__item { position: relative; display: block; padding: 18px 40px 16px 19px; color: #45454f; background: #fff; border: 1px solid #e4e4e6; border-radius: 12px; text-decoration: none; }
.stock__attention { margin: 0 0 7px; font-size: 15px; font-weight: 600; line-height: 1.5; overflow-wrap: anywhere; }
.stock__residue { display: -webkit-box; margin: 0 0 8px; overflow: hidden; color: #909098; font-size: 13px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow-wrap: anywhere; }
.stock__date { display: block; color: #b1b1b8; font-size: 11px; }
.stock__arrow { position: absolute; top: 50%; right: 17px; color: #b0b0b7; font-size: 21px; transform: translateY(-50%); }
.stock__item:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }
.stock__empty { margin-top: 124px; padding-bottom: 18px; color: #45454f; font-size: 16px; text-align: center; }
.stock__empty p { margin: 0; }
.stock__empty-subtitle { margin-top: 14px !important; color: #9a9aa2; font-size: 14px; }
.stock__empty-mark { display: block; width: 81px; height: 73px; margin: 307px 0 0 6px; object-fit: contain; }
.stock__footer--fixed { position: fixed; right: 0; bottom: 0; left: 0; z-index: 10; padding: 32px 24px calc(28px + env(safe-area-inset-bottom)); background: linear-gradient(to bottom, rgb(251 251 252 / 0%), rgb(251 251 252 / 88%) 28px, #fbfbfc 58px); }
.stock__home-action { display: grid; min-height: 44px; place-items: center; color: #45454f; background: #fff; border: 1px solid #dedee2; border-radius: 24px; font-size: 14px; font-weight: 600; text-decoration: none; }
.stock__footer--fixed .stock__home-action { width: min(100%, 480px); margin: 0 auto; }
.stock__home-action:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }

.share { min-height: 100svh; padding: 0 24px calc(28px + env(safe-area-inset-bottom)); }
.share__content { display: flex; width: min(100%, 480px); min-height: calc(100svh - max(24px, env(safe-area-inset-top)) - 32px - 28px - env(safe-area-inset-bottom)); margin: 0 auto; flex-direction: column; }
.share__body { padding-top: 32px; }
.share__section { margin-bottom: 17px; }
.share__label { margin: 0 0 7px; color: #8d8d96; font-size: 13px; }
.share__value-card { display: flex; min-height: 52px; align-items: center; gap: 10px; padding: 12px 12px 12px 15px; color: #45454f; background: #f8f8fa; border: 1px solid #e2e2e8; border-radius: 12px; font-size: 14px; line-height: 1.55; overflow-wrap: anywhere; }
.share__value-card > span { min-width: 0; flex: 1; }
.share__field-heading { display: flex; min-height: 44px; align-items: center; justify-content: space-between; }
.share [hidden] { display: none !important; }
.share__field-heading button { min-width: 44px; min-height: 44px; border: 0; background: transparent; color: #45454f; font-size: 13px; }
.share__edit-input { width: 100%; min-height: 26px; padding: 0; margin: 0; border: 0; background: transparent; color: inherit; font: inherit; resize: none; }
.share__value-card > span, .share__preview-attention, .share__preview-one-liner { white-space: pre-wrap; }
.share__section [data-error] { color: #8a4f4f; font-size: 12px; }
.share__cats { margin-top: 31px; }
.share__cat-list { display: flex; gap: 9px; padding: 2px; overflow-x: auto; scrollbar-width: none; }
.share__cat-list::-webkit-scrollbar { display: none; }
.share__cat-option { display: grid; width: 58px; height: 52px; flex: 0 0 auto; padding: 5px; background: #f8f8fa; border: 1px solid #e2e2e8; border-radius: 10px; place-items: center; -webkit-tap-highlight-color: transparent; }
.share__cat-option img { display: block; width: 100%; height: 100%; object-fit: contain; }
.share__cat-option[aria-pressed="true"] { border-color: #45454f; box-shadow: 0 0 0 1px #45454f; }
.share__preview-section { margin-top: 31px; }
.share__preview { position: relative; display: flex; min-height: 221px; flex-direction: column; padding: 38px 24px 20px; color: #45454f; background: #e5e1de; border-radius: 14px; overflow: hidden; }
.share__preview-attention { position: relative; z-index: 1; margin: 0; font-size: 14px; line-height: 1.55; overflow-wrap: anywhere; }
.share__preview-one-liner { position: relative; z-index: 1; width: min(88%, 315px); margin: 30px 0 auto; font-size: 20px; font-weight: 700; line-height: 1.42; overflow-wrap: anywhere; text-shadow: -1px -1px 0 #e5e1de, 1px -1px 0 #e5e1de, -1px 1px 0 #e5e1de, 1px 1px 0 #e5e1de; }
.share__preview--long-summary { min-height: 266px; padding-top: 30px; padding-bottom: 72px; }
.share__preview--long-summary .share__preview-attention { font-size: 13px; line-height: 1.5; }
.share__preview--long-summary .share__preview-one-liner { width: min(78%, 278px); margin-top: 26px; font-size: 16px; line-height: 1.48; }
.share__preview--four-lines { min-height: 266px; padding-top: 32px; padding-bottom: 84px; }
.share__preview--four-lines .share__preview-attention { font-size: 13px; line-height: 1.5; }
.share__preview--four-lines .share__preview-one-liner { width: min(82%, 292px); margin-top: 26px; font-size: 16px; line-height: 1.48; }
.share__preview--very-long-summary { min-height: 296px; padding-top: 28px; padding-bottom: 86px; }
.share__preview--very-long-summary .share__preview-attention { font-size: 12px; line-height: 1.45; }
.share__preview--very-long-summary .share__preview-one-liner { width: min(78%, 278px); margin-top: 24px; font-size: 15px; line-height: 1.48; }
.share__preview-cat { position: absolute; right: 5px; z-index: 0; width: min(42%, 145px); height: 68px; object-fit: contain; }
.share__preview-cat--bottom-right { bottom: 7px; }
.share__preview-cat--top-right { top: 17px; }
.share__preview--cat-top-right .share__preview-attention { max-width: 56%; }
.share__preview--cat-bottom-right { padding-bottom: 86px; }
.share__preview-brand { position: absolute; bottom: 20px; left: 24px; z-index: 1; display: inline-flex; height: 18px; align-items: flex-end; gap: 6px; }
.share__preview-brand-icon { width: 20px; height: 18px; object-fit: contain; }
.share__preview-brand-logo { display: block; width: 53px; height: 17px; object-fit: contain; }
.share__publish { display: grid; width: 100%; min-height: 44px; margin-top: 24px; color: #fff; background: #303038; border: 1px solid #303038; border-radius: 23px; font: inherit; font-size: 14px; font-weight: 600; place-items: center; -webkit-tap-highlight-color: transparent; }
.share__public-link { margin: 18px 0 0; color: #85858e; font-size: 12px; text-align: center; }
.share__actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 25px; }
.share__action { display: grid; min-height: 34px; padding: 6px 4px; color: #45454f; background: #fff; border: 1px solid #d9d9e0; border-radius: 18px; font-size: 13px; place-items: center; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.share__feedback { min-height: 18px; margin: 7px 0 0; color: #7d7d86; font-size: 12px; text-align: center; }
.share__footer { margin-top: auto; padding-top: 24px; }
.share__close { display: grid; min-height: 44px; place-items: center; color: #62626b; background: #fff; border: 1px solid #d7d7de; border-radius: 23px; font-size: 14px; font-weight: 600; text-decoration: none; }
.share__cat-option:focus-visible, .share__publish:focus-visible, .share__action:focus-visible, .share__close:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }
.share__cat-option:active, .share__publish:active, .share__action:active, .share__close:active { opacity: .78; }

.public-share { min-height: 100svh; padding: 52px 28px calc(28px + env(safe-area-inset-bottom)); }
.public-share__content { display: grid; width: min(100%, 440px); gap: 26px; margin: 0 auto; }
.public-share__card { position: relative; display: flex; min-height: 282px; flex-direction: column; padding: 32px 22px 18px; color: #45454f; background: #e5e1de; border-radius: 16px; overflow: hidden; }
.public-share__attention { position: relative; z-index: 1; margin: 0; font-size: 14px; line-height: 1.55; overflow-wrap: anywhere; }
.public-share__summary { position: relative; z-index: 1; width: min(78%, 330px); margin: 32px 0 auto; font-size: 24px; font-weight: 700; line-height: 1.45; overflow-wrap: anywhere; text-shadow: -1px -1px 0 #e5e1de, 1px -1px 0 #e5e1de, -1px 1px 0 #e5e1de, 1px 1px 0 #e5e1de; }
.public-share__card--cat-top-right .public-share__attention { max-width: calc(100% - min(48%, 190px)); }
.public-share__card--long-summary { min-height: 324px; padding-bottom: 86px; }
.public-share__card--long-summary .public-share__attention { font-size: 13px; line-height: 1.5; }
.public-share__card--long-summary .public-share__summary { width: min(78%, 320px); margin-top: 22px; font-size: 20px; line-height: 1.48; }
.public-share__card--very-long-summary { min-height: 370px; padding-bottom: 106px; }
.public-share__card--very-long-summary .public-share__attention { font-size: 12px; line-height: 1.45; }
.public-share__card--very-long-summary .public-share__summary { width: min(78%, 320px); margin-top: 18px; font-size: 18px; line-height: 1.48; }
.public-share__card--cat-bottom-right { padding-bottom: 112px; }
.public-share__cat { position: absolute; right: 7px; z-index: 0; width: min(48%, 190px); height: 92px; object-fit: contain; }
.public-share__cat--bottom-right { bottom: 12px; }
.public-share__cat--top-right { top: 26px; }
.public-share__brand { position: absolute; bottom: 21px; left: 24px; z-index: 1; display: inline-flex; height: 18px; align-items: flex-end; gap: 6px; }
.public-share__brand-icon { width: 20px; height: 18px; object-fit: contain; }
.public-share__brand-logo { display: block; width: 53px; height: 17px; object-fit: contain; }
.public-share__home { display: grid; min-height: 44px; place-items: center; color: #45454f; background: #fff; border: 1px solid #dedee2; border-radius: 24px; font-size: 14px; font-weight: 600; text-decoration: none; }
.public-share__home:focus-visible { outline: 2px solid #8f8fa5; outline-offset: 2px; }
