:root {
  --bg: #000000;
  --ink: #f4f4f4;
  --ink-soft: rgba(244, 244, 244, 0.7);
  --line-soft: rgba(121, 128, 144, 0.76);
  --surface: #ffffff;
  --surface-soft: #e6e8ea;
  --theme-start: #9589a8;
  --theme-end: #8c6fba;
  --theme-accent: #9589a8;
  --theme-active: #9589a8;
  --theme-glow: 149, 137, 168;
  --theme-icon-hue: -54deg;
  --compose-scale: 1;
  --compose-shell-height: auto;
  --compose-dock-scale: 1;
  --compose-dock-height: auto;
  --viewport-bottom-offset: 0px;
  --onboarding-shell-width: 321.499px;
  --onboarding-card-width: 321.499px;
  --onboarding-header-width: 321.499px;
  --onboarding-card-scale: 1;
}

@font-face {
  font-family: "Paragon Prompt";
  src:
    url("./assets/fonts/Paragonitalic-Regular.otf") format("opentype"),
    local("Paragon_italic"),
    local("Paragon Italic"),
    local("Paragon italic"),
    local("Paragonitalic-Regular"),
    local("Paragon");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  touch-action: pan-y;
  overscroll-behavior: none;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  touch-action: pan-y;
}

.app-viewport {
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  background: var(--bg);
  overflow-x: hidden;
  touch-action: pan-y;
}

.app-stage {
  position: relative;
  width: 100%;
  max-width: 393px;
  min-width: 0;
  min-height: 100dvh;
  flex: 0 0 auto;
  overflow-x: clip;
  touch-action: pan-y;
}

.app-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  background: #000000;
  overflow: hidden;
  touch-action: pan-y;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.screen {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  background: #000000;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  touch-action: pan-y;
}

.screen-prompt {
  --prompt-gutter: clamp(18px, 5.6vw, 42px);
  --prompt-shell-width: min(
    321.499px,
    calc(100% - (var(--prompt-gutter) * 2)),
    calc((100dvh - 262px) * 0.8092)
  );
  padding:
    calc(env(safe-area-inset-top) + 14px)
    var(--prompt-gutter)
    calc(env(safe-area-inset-bottom) + 18px);
}

.screen-onboarding {
  padding:
    calc(env(safe-area-inset-top) + 17px)
    27px
    calc(env(safe-area-inset-bottom) + 24px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.screen-compose {
  width: 100%;
  max-width: 100%;
  padding:
    calc(env(safe-area-inset-top) + 38px)
    0
    calc(env(safe-area-inset-bottom) + 34px);
}

.screen-header {
  position: relative;
}

.screen-prompt .screen-header {
  width: var(--prompt-shell-width);
  margin: 0 auto;
}

.screen-onboarding .screen-header {
  width: var(--onboarding-header-width);
  max-width: var(--onboarding-header-width);
  margin: 0 auto;
}

.screen-header-compact {
  min-height: 38px;
}

.editorial-title {
  width: 100%;
  color: #f4f4f4;
  font-family: "Manrope", sans-serif;
  font-size: clamp(18px, 5.333vw, 20px);
  font-weight: 300;
  letter-spacing: clamp(1.8px, 0.533vw, 2px);
  line-height: normal;
}

.editorial-title p,
.compose-title {
  margin: 0;
}

.editorial-accent {
  color: var(--theme-descriptor);
  transition: color 180ms ease;
}

.compose-title {
  width: calc(100% - 76px);
  color: #f4f4f4;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2.4px;
  line-height: 1.34;
  text-wrap: balance;
}

.language-pill {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 55.489px;
  height: 32.665px;
  padding: 7.737px 14.614px;
  border: 0.86px solid rgba(255, 255, 255, 0.64);
  border-radius: 8595.378px;
  background: transparent;
  color: #f3f3f3;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.3009px;
  line-height: 17.192px;
  text-align: center;
}

.prompt-main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 10px;
}

.onboarding-main {
  position: relative;
  width: var(--onboarding-shell-width);
  flex: 1 0 auto;
  display: block;
  padding-top: 17px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 120px);
  margin: 0 auto;
}

.compose-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 128px;
}

.compose-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-inline: 24px;
  height: var(--compose-shell-height);
  margin: 0 auto;
  overflow-x: clip;
}

.compose-shell-inner {
  margin: 0 auto;
  width: 345px;
  max-width: 345px;
  transform-origin: top center;
  transform: scale(var(--compose-scale));
}

.onboarding-title {
  width: min(293.991px, 100%);
}

.onboarding-title p {
  white-space: nowrap;
}

.onboarding-card-wrap {
  position: relative;
  flex: 0 0 auto;
  width: var(--onboarding-card-width);
  height: calc(var(--onboarding-card-height) * var(--onboarding-card-scale));
  margin: 0 auto;
}

.onboarding-card-wrap-ready {
  height: auto;
  min-height: calc(var(--onboarding-card-height) * var(--onboarding-card-scale));
}

.onboarding-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 280px;
  height: var(--onboarding-card-height);
  background: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: none;
  margin: 0;
  transform: translateX(-50%) scale(var(--onboarding-card-scale));
  transform-origin: top center;
}

.onboarding-card-intro,
.onboarding-card-participation {
  border-radius: 16px;
}

.onboarding-card-ready {
  border-radius: 27.51px;
}

.onboarding-card-wrap-ready .onboarding-card-ready {
  position: relative;
  height: auto;
  min-height: var(--onboarding-card-height);
}

.onboarding-card-intro {
  --onboarding-card-height: 772.142px;
  gap: 10px;
  padding: 20px 12px 10px;
}

.onboarding-card-participation {
  --onboarding-card-height: 574.997px;
  gap: 10px;
  padding: 20px 12px 10px;
}

.onboarding-card-ready {
  --onboarding-card-height: 415.382px;
  gap: 20px;
  padding: 20px 12px;
}

.onboarding-illustration-frame {
  position: relative;
  width: 251px;
  height: 251px;
  overflow: hidden;
}

.onboarding-team-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.onboarding-card-copy {
  width: 251px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.onboarding-copy-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.onboarding-card-title {
  margin: 0;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0;
}

.onboarding-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.onboarding-card-body p {
  margin: 0;
}

.onboarding-card-body-participation {
  gap: 0;
}

.onboarding-list {
  margin: 0;
  padding-left: 24px;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.onboarding-list li {
  margin: 0;
}

.onboarding-participation-outro {
  margin-top: 22px !important;
}

.onboarding-train-strip {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

.onboarding-train-strip-intro {
  width: 392.7733px;
  height: 95.1422px;
}

.onboarding-card-participation .onboarding-train-strip {
  width: 408.4361px;
  height: 75.9972px;
}

.onboarding-train-strip img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.onboarding-train-strip-intro img {
  position: absolute;
  top: 0;
  left: -110.013px;
  width: 502.772px;
  height: 95.1422px;
  max-width: none;
  object-fit: fill;
}

.onboarding-card-participation .onboarding-train-strip img {
  position: absolute;
  top: 0;
  left: -9.999px;
  width: 418.435px;
  height: 75.9972px;
  max-width: none;
  object-fit: fill;
}

.onboarding-nav,
.onboarding-nav-float {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.onboarding-nav.is-single,
.onboarding-nav-float.is-single {
  gap: 0;
}

.onboarding-nav-float {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom) + 15px);
  z-index: 6;
  transform: translateX(-50%);
  pointer-events: auto;
  width: auto;
}

.onboarding-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(25, 28, 30, 0.21);
}

.onboarding-nav-button-next .onboarding-nav-icon {
  transform: rotate(180deg);
}

.onboarding-nav-icon {
  width: 15.596px;
  height: 21.318px;
  display: block;
  overflow: visible;
}

.onboarding-train-hero {
  position: relative;
  width: 408.4361px;
  height: 75.9972px;
  overflow: hidden;
  flex: 0 0 auto;
}

.onboarding-train-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 508.437px;
  height: 75.9972px;
  max-width: none;
  object-fit: fill;
}

.onboarding-ready-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 35px;
  width: 251px;
  min-height: 279.3849px;
}

.onboarding-ready-copy .onboarding-card-title {
  width: 251px;
}

.onboarding-ready-copy .onboarding-copy-section {
  width: 251px;
}

.onboarding-card-ready .onboarding-copy-section {
  min-height: 185px;
}

.onboarding-ready-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 251px;
  min-height: 119px;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14.2px;
  letter-spacing: 0.2px;
  gap: 0;
  overflow: visible;
}

.onboarding-ready-body p {
  margin: 0;
}

.onboarding-start-button {
  width: 209.511px;
  min-height: 59.385px;
  flex: 0 0 auto;
  margin: 0;
  padding: 17.192px 27.508px;
  border: 0;
  border-radius: 27.508px;
  background: #000000;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15.473px;
  font-weight: 500;
  line-height: 24.069px;
  text-align: center;
  box-shadow:
    0 17.192px 21.491px -4.298px rgba(111, 65, 0, 0.1),
    0 6.877px 8.596px -5.158px rgba(111, 65, 0, 0.1);
}

.prompt-card {
  position: relative;
  width: var(--prompt-shell-width);
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.prompt-card-surface {
  position: relative;
  width: 100%;
  aspect-ratio: 564 / 697;
  height: auto;
  border-radius: 27.508px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

.prompt-card-layer {
  position: absolute;
  inset: 0;
}

.prompt-card-layer-current {
  z-index: 1;
}

.prompt-card-layer-outgoing {
  z-index: 2;
  pointer-events: none;
  animation: prompt-card-eject-out 760ms cubic-bezier(0.19, 0.92, 0.23, 1) both;
}

.prompt-card-layer-incoming {
  z-index: 1;
  animation: prompt-card-eject-in 760ms cubic-bezier(0.19, 0.92, 0.23, 1) both;
}

.prompt-card-visual {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.prompt-card-surface.is-pulsing {
  animation: prompt-pulse 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.prompt-card-surface.is-revealing .prompt-card-visual {
  animation: prompt-reveal-visual 520ms cubic-bezier(0.18, 0.9, 0.22, 1) both;
}

.prompt-card-surface.is-revealing .prompt-copy {
  animation: prompt-reveal-copy 560ms cubic-bezier(0.18, 0.9, 0.22, 1) 60ms both;
}

.prompt-card-surface.is-revealing .prompt-actions {
  animation: prompt-reveal-actions 540ms cubic-bezier(0.18, 0.9, 0.22, 1) 90ms both;
}

@keyframes prompt-pulse {
  0% {
    transform: scale(1) translateY(0);
  }

  42% {
    transform: scale(0.992) translateY(1px);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes prompt-reveal-visual {
  0% {
    opacity: 0;
    transform: scale(0.985);
    filter: blur(7px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes prompt-reveal-copy {
  0% {
    opacity: 0;
    transform: translateY(7px);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes prompt-reveal-actions {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes prompt-card-eject-out {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    filter: blur(0);
  }

  18% {
    transform: translate3d(3%, -1%, 0) rotate(1.2deg) scale(1.01);
  }

  100% {
    opacity: 0;
    transform: translate3d(-18%, 5%, 0) rotate(-8deg) scale(0.975);
    filter: blur(6px);
  }
}

@keyframes prompt-card-eject-in {
  0% {
    opacity: 0;
    transform: translate3d(22%, -4%, 0) rotate(8deg) scale(0.962);
    filter: blur(8px);
  }

  58% {
    opacity: 1;
    transform: translate3d(-3%, 1%, 0) rotate(-1.2deg) scale(1.006);
    filter: blur(1px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    filter: blur(0);
  }
}

.prompt-content,
.prompt-actions {
  position: absolute;
  z-index: 1;
}

.prompt-content {
  left: 6.4049%;
  right: 6.4049%;
  top: 31.9232%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.prompt-copy {
  width: 100%;
  margin: 0;
  color: var(--layer-copy, var(--theme-copy));
  font-family: "Paragon Prompt", "Cormorant Garamond", serif;
  font-size: clamp(18px, 5.333vw, 20px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: clamp(1.78px, 0.533vw, 2px);
  line-height: 1.353;
  text-align: center;
  text-wrap: balance;
}

.prompt-actions {
  left: 12.5875%;
  right: 12.5875%;
  top: 64.5221%;
  height: 17.0894%;
}

.prompt-cta-hitbox {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 27.508px;
  background: transparent;
  cursor: pointer;
}

.prompt-cta-hitbox:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

.primary-cta,
.submit-share,
.secondary-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #ffffff;
  color: #111111;
}

.primary-cta {
  width: 100%;
  min-height: 58px;
  padding: 17.192px 27.508px;
  border-radius: 27.508px;
  box-shadow:
    0 17.192px 21.491px -4.298px rgba(111, 65, 0, 0.1),
    0 6.877px 8.596px -5.158px rgba(111, 65, 0, 0.1),
    inset 0 4px 22px rgba(255, 255, 255, 0.23);
}

.prompt-card-surface .primary-cta {
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 4px 22px rgba(255, 255, 255, 0.23);
  backdrop-filter: blur(12px);
}

.primary-cta-label,
.submit-share span {
  background: linear-gradient(180deg, var(--theme-start) 0%, var(--theme-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background 180ms ease;
}

.primary-cta-label {
  font-family: "Manrope", sans-serif;
  font-size: 15.473px;
  font-weight: 500;
  line-height: 24.069px;
}

.prompt-card-surface .primary-cta-label {
  background: none;
  color: #ffffff;
}

.shake-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13.754px;
  margin-top: 8px;
}

.shake-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
}

.shake-pill-art {
  display: block;
  width: 68px;
  height: 40px;
  flex: 0 0 auto;
  overflow: visible;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  shape-rendering: geometricPrecision;
  transform: translateZ(0);
}

.shake-pill.is-pulsing {
  animation: shake-pill-pulse 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes shake-pill-pulse {
  0% {
    transform: scale(1);
  }

  42% {
    transform: scale(0.94);
  }

  100% {
    transform: scale(1);
  }
}

.manual-refresh {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", sans-serif;
  font-size: 10.315px;
  font-weight: 500;
  line-height: 13.754px;
  text-align: center;
  white-space: nowrap;
}

.motion-status {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}

.fab-dismiss {
  position: absolute;
  inset: -24px;
  border: 0;
  background: transparent;
}

.fab-cluster {
  position: absolute;
  right: calc((var(--prompt-gutter) - 20.5px) * -1);
  bottom: 30px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  width: 212.5px;
}

.fab-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  width: 212.5px;
}

.fab-action {
  width: 100%;
  min-height: 59.385px;
  padding: 17.192px 27.508px;
  border: 0;
  border-radius: 27.508px;
  background: #ffffff;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-size: 15.473px;
  font-weight: 500;
  line-height: 24.069px;
  text-align: center;
  box-shadow:
    0 17.192px 21.491px -4.298px rgba(0, 0, 0, 0.1),
    0 6.877px 8.596px -5.158px rgba(0, 0, 0, 0.1);
}

.fab-action-primary {
  background: #000000;
  color: #ffffff;
  box-shadow:
    -5px -20px 21.491px -4.298px rgba(224, 224, 224, 0.1),
    5px 9px 8.596px -5.158px rgba(208, 208, 208, 0.1);
}

.floating-compose-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  flex: 0 0 auto;
  width: 46.5px;
  height: 46.5px;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
  transition: transform 180ms ease;
}

.fab-plus-art {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115.9px;
  height: 115.9px;
  overflow: visible;
  shape-rendering: geometricPrecision;
  transform: translate(-50%, -50%) translateZ(0);
}

.prompt-feedback {
  position: absolute;
  left: 50%;
  bottom: 8px;
  min-width: 144px;
  max-width: calc(100% - 104px);
  padding: 7px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  transform: translate(-50%, 6px);
  opacity: 0;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    color 160ms ease;
  backdrop-filter: blur(10px);
}

.prompt-feedback.is-visible {
  color: rgba(255, 255, 255, 0.84);
  opacity: 1;
  transform: translate(-50%, 0);
}

.app-toast {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
  z-index: 80;
  min-width: 252px;
  max-width: calc(100vw - 32px);
  padding: 14px 20px;
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.92);
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(14px);
}

.app-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.info-backdrop {
  padding: 24px;
}

.info-backdrop-privacy {
  align-items: flex-start;
  justify-content: center;
  padding: calc(env(safe-area-inset-top, 0px) + 28px) 24px 24px;
}

.info-backdrop-about {
  align-items: flex-start;
  justify-content: center;
  padding: calc(env(safe-area-inset-top, 0px) + 28px) 24px 24px;
}

.info-sheet-dismiss {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.info-sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  padding: 20px 18px 18px;
  border: 1px solid rgba(230, 232, 234, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(25, 28, 30, 0.12);
}

.info-sheet-privacy {
  width: 280px;
  padding: 20px 12px 20px;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.info-sheet-about {
  width: 280px;
  padding: 20px 12px 20px;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.info-sheet-close-chip {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  z-index: 4;
  touch-action: manipulation;
}

.info-sheet-close-chip::before {
  content: "";
  position: absolute;
  inset: 9.5px;
  border: 0.833px solid #111111;
  border-radius: 999px;
  background: transparent;
}

.info-sheet-close-icon {
  position: relative;
  z-index: 1;
  width: 10.817px;
  height: 10.633px;
  display: block;
}

.info-sheet-close-icon line {
  stroke-width: 0.55;
}

.info-sheet-privacy-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 251px;
  margin: 0 auto;
}

.info-sheet-about-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 251px;
  margin: 0 auto;
}

.info-sheet-about-hero {
  position: relative;
  width: 251px;
  height: 251px;
  overflow: hidden;
  pointer-events: none;
}

.info-sheet-about-hero-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-sheet-about-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 251px;
}

.info-sheet-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 9999px;
  background: #ffffff;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.info-sheet-title {
  margin: 18px 0 10px;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.info-sheet-title-privacy {
  margin: 0;
  width: 251px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
}

.info-sheet-title-about,
.info-sheet-subtitle {
  margin: 0;
  width: 251px;
  color: #000000;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
}

.info-sheet-body {
  margin: 0;
  color: #424751;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.info-sheet-body-privacy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 251px;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.info-sheet-body-about {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 251px;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.info-sheet-body-privacy p {
  margin: 0;
}

.info-sheet-body-about p {
  margin: 0;
}

.info-sheet-body-privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 1px;
}

.info-sheet-train {
  position: relative;
  width: 408.436px;
  height: 75.997px;
  margin-top: 10px;
  margin-left: -70px;
  pointer-events: none;
}

.info-sheet-train-about {
  width: 392.773px;
  height: 95.142px;
  margin-top: 10px;
  margin-left: -70px;
}

.info-sheet-train-art {
  display: block;
  width: 100%;
  height: 100%;
}

.info-sheet-train-art-about {
  object-fit: cover;
}

.media-stack {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding-top: 8px;
  margin-top: -8px;
}

.media-stack.is-peeking {
  width: calc(100% + 96px);
  margin-right: -96px;
  padding-right: 96px;
}

.media-stack::-webkit-scrollbar,
.save-copy-card::-webkit-scrollbar {
  display: none;
}

.media-track {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: max-content;
}

.media-card {
  position: relative;
  flex: 0 0 342px;
  width: 342px;
  aspect-ratio: 342 / 201;
  overflow: visible;
}

.media-card-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #323232;
  isolation: isolate;
}

.media-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #323232;
}

.media-card-frame-video {
  height: 100%;
  background: #000000;
}

.media-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  background: #000000;
}

.media-video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
}

.media-video-play-icon {
  width: 48px;
  height: 47.364px;
  display: block;
}

.media-card.is-video-playing .media-video-play-button {
  opacity: 0;
  pointer-events: none;
}

.media-file-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.media-file-kind {
  color: #b5c4ff;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
}

.media-file-name {
  max-width: 240px;
  color: #b5c4ff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.media-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 34px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  color: #b5c4ff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.close-button {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0.7px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(28, 28, 28, 0.88);
}

.media-close-icon {
  width: 12px;
  height: 12px;
  display: block;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.note-card {
  display: block;
  min-height: 118px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: #323232;
  overflow: visible;
}

.note-copy-wrap {
  min-width: 0;
  padding: 0;
}

.note-input {
  width: 100%;
  min-height: 84px;
  border: 0;
  padding: 0;
  resize: none;
  background: transparent;
  color: #f5f5f2;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.note-input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.note-input:focus,
.location-input:focus {
  outline: none;
}

.dialog-backdrop.voice-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  overflow: hidden;
  overflow-y: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.dialog-backdrop.voice-dialog-backdrop::before {
  content: "";
  position: fixed;
  left: 50%;
  top: 50%;
  width: 112vw;
  height: 112dvh;
  min-width: 100vw;
  min-height: 100dvh;
  background: url("./assets/voice-dialog/bgrc.png") center center / 100% 100% no-repeat;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.voice-dialog-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(var(--voice-dialog-width, 355px), calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.voice-dialog-shadow-art {
  display: none;
}

.voice-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: auto;
}

.voice-dialog-card-art-shell {
  position: relative;
  width: 100%;
}

.voice-dialog-card-art {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.voice-dialog-hotspot {
  position: absolute;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.voice-dialog-hotspot-record {
  left: 42.9%;
  top: 43.9%;
  width: 14.8%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.voice-dialog-hotspot-close {
  left: 42.1%;
  top: 79.1%;
  width: 15.7%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.voice-dialog-hotspot-pause,
.voice-dialog-hotspot-stop {
  top: 66.5%;
  width: 14.8%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.voice-dialog-hotspot-pause {
  left: 31.5%;
}

.voice-dialog-hotspot-stop {
  left: 57.7%;
}

.voice-dialog-hotspot-backward,
.voice-dialog-hotspot-play,
.voice-dialog-hotspot-forward,
.voice-dialog-hotspot-delete {
  top: 36.6%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.voice-dialog-hotspot-backward {
  left: 10.2%;
  width: 15.5%;
}

.voice-dialog-hotspot-play {
  left: 28.5%;
  width: 15.5%;
}

.voice-dialog-hotspot-forward {
  left: 54.2%;
  width: 15.5%;
}

.voice-dialog-hotspot-delete {
  left: 76.1%;
  width: 15.5%;
}

.voice-dialog-hotspot-finish {
  left: 2.9%;
  top: 78.2%;
  width: 94.2%;
  height: 18.8%;
  border-radius: 999px;
}

.voice-dialog-timer-overlay {
  position: absolute;
  left: 50%;
  top: 39.9%;
  min-width: 34%;
  padding: 0 10px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.72px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.voice-dialog-progress-overlay {
  position: absolute;
  left: 5.4%;
  top: 28.2%;
  width: 89.2%;
  pointer-events: none;
}

.voice-dialog-progress-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.voice-dialog-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.18);
}

.voice-dialog-error {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.voice-dialog-error-floating {
  width: 100%;
  padding: 0 8px;
  text-align: center;
}

.feeling-section,
.journey-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-label,
.save-copy-label {
  color: #989898;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.feeling-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.emoji-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0.8px solid rgba(219, 223, 231, 0.88);
  border-radius: 999px;
  background: #ffffff;
  color: #191c1e;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.emoji-button.is-active {
  border-color: transparent;
  background: #b5c4ff;
  color: #111111;
  box-shadow: none;
}

.emoji-button-custom {
  width: auto;
  min-width: 40px;
  padding: 0 14px;
  font-size: 16px;
}

.emoji-capture-input {
  position: fixed;
  left: 12px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  width: 2px;
  height: 2px;
  padding: 0;
  border: 0;
  opacity: 0.01;
  pointer-events: auto;
  caret-color: transparent;
  background: transparent;
  font-size: 16px;
  z-index: 0;
}

.emoji-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(219, 223, 231, 0.88);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
}

.emoji-picker-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.emoji-picker-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 40px;
  padding: 0;
  border: 0.8px solid rgba(219, 223, 231, 0.88);
  border-radius: 999px;
  background: #ffffff;
  color: #191c1e;
  font-size: 20px;
  line-height: 1;
}

.emoji-picker-more {
  align-self: flex-end;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.inline-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.inline-picker-context {
  margin-top: 2px;
}

.inline-picker-input {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #e6e8ea;
  border-radius: 999px;
  background: #ffffff;
  color: #424751;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.5px;
}

.inline-picker-input::placeholder {
  color: rgba(127, 135, 153, 0.68);
}

.inline-picker-input-emoji {
  font-size: 18px;
}

.inline-picker-apply {
  flex: 0 0 auto;
  min-width: 72px;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.section-separator {
  width: 100%;
  height: 1px;
  background: rgba(164, 171, 186, 0.85);
}

.location-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding-left: 16px;
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
}

.location-shell {
  position: relative;
  display: block;
  overflow: visible;
}

.location-input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 12px 12px 12px 0;
  background: transparent;
  color: #4a5161;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.location-input::placeholder {
  color: rgba(134, 141, 156, 0.56);
}

.location-trigger {
  flex: 0 0 60px;
  width: 60px;
  height: 46px;
  border: 0;
  padding: 0 12px 0 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.location-icon {
  width: 33px;
  height: 33px;
  display: block;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.location-trigger.is-active .location-icon {
  transform: scale(1.03);
}

.location-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 220px;
  padding: 6px;
  border: 1px solid rgba(219, 223, 231, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(25, 28, 30, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.location-dropdown-status {
  margin: 0;
  padding: 10px 12px;
  color: #9ea5b6;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.location-dropdown-status.is-error {
  color: #dca6b0;
}

.location-suggestion {
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: #434b5c;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
}

.location-suggestion-manual {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-suggestion-title {
  color: #2e3442;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.location-suggestion-value {
  color: #6b7283;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.context-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.context-chip {
  min-height: 32px;
  padding: 7px 13px;
  border: 1px solid #e6e8ea;
  border-radius: 999px;
  background: #ffffff;
  color: #424751;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.5px;
  text-align: center;
}

.context-chip.is-active {
  padding: 6.5px 12px 7px;
  border-color: transparent;
  background: #b5c4ff;
  color: #111111;
}

.context-chip-plus {
  min-width: 45px;
  padding-inline: 13px;
  font-size: 18px;
  font-weight: 400;
}

.context-chip-custom {
  width: auto;
}

.submit-feedback {
  margin: 0;
  color: #f1b7be;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.submit-share:disabled,
.save-local-button:disabled,
.save-local-choice:disabled,
.save-copy-share-button:disabled,
.delete-record-button:disabled,
.primary-cta:disabled {
  cursor: wait;
  opacity: 0.72;
}

.submit-share-solid {
  align-self: center;
  width: 259px;
  min-height: 68px;
  padding: 18px 28px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow:
    0 12px 32px rgba(25, 28, 30, 0.21);
}

.submit-share-solid span {
  background: none;
  color: #111111;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.45px;
}

.compose-bottom-shadow {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: calc(-30px + var(--viewport-bottom-offset));
  height: calc(176px * var(--compose-dock-scale));
  overflow: visible;
  pointer-events: none;
  z-index: 5;
}

.compose-bottom-shadow-inner {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 529px;
  height: 176px;
  transform: translateX(-50%) scale(var(--compose-dock-scale));
  transform-origin: bottom center;
}

.compose-bottom-shadow img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 629px;
  height: 276px;
  max-width: none;
  transform: translateX(-50%);
}

.compose-share-dock {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  padding-inline: 24px;
  height: var(--compose-dock-height);
  bottom: calc(env(safe-area-inset-bottom) + 30px + var(--viewport-bottom-offset));
  z-index: 8;
  pointer-events: none;
}

.compose-share-dock-inner {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  width: 341px;
  transform-origin: bottom center;
  transform: scale(var(--compose-dock-scale));
}

.compose-back-button {
  flex: 0 0 67px;
  width: 67px;
  height: 68px;
  border: 0;
  border-radius: 32px;
  background: #000000;
  box-shadow: 0 12px 32px rgba(25, 28, 30, 0.21);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.back-icon {
  width: 24.043px;
  height: 25.44px;
  display: block;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.compose-share-dock .submit-share-solid {
  pointer-events: auto;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(env(safe-area-inset-top) + 35px) 15px 15px;
  background: #000000;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.save-copy-underlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000000;
}

.save-copy-underlay img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 614px;
  height: 1326px;
  max-width: none;
  transform: translateX(-50%);
}

.save-copy-card {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: none;
  max-height: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 18px 18px;
  border: 1px solid rgba(230, 232, 234, 0.9);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(25, 28, 30, 0.12);
  overflow: clip;
}

.save-copy-card > :not(.save-copy-close) {
  width: 100%;
}

.save-copy-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 0;
  padding: 0;
  background: transparent;
}

.dialog-close-icon {
  width: 20px;
  height: 20px;
  display: block;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.save-copy-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 34px;
  min-height: 60px;
}

.save-copy-title {
  margin: 0;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.4px;
}

.save-copy-body {
  margin: 0;
  color: #424751;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.save-local-button,
.save-local-choice,
.save-copy-share-button,
.delete-record-button {
  width: 100%;
  min-height: 54px;
  border-radius: 28px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.save-local-button,
.save-local-choice {
  border: 1px solid rgba(215, 220, 230, 0.95);
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
}

.save-local-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.save-copy-preview,
.save-local-block,
.save-copy-actions,
.delete-record-button {
  width: 100%;
}

.save-copy-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.save-copy-field,
.save-copy-personal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.save-copy-input {
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(215, 220, 230, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  caret-color: #111111;
}

.save-copy-input::placeholder {
  color: #5b6172;
  text-align: center;
}

.save-copy-input:placeholder-shown:not(:focus) {
  text-align: center;
}

.save-copy-input:focus {
  outline: none;
  border-color: rgba(181, 196, 255, 0.94);
  box-shadow: 0 0 0 3px rgba(181, 196, 255, 0.2);
}

.save-copy-input:focus::placeholder {
  color: transparent;
}

.save-copy-helper {
  margin: 0;
  color: #7a8193;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.6px;
}

.personal-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(0, 0.97fr) minmax(0, 0.58fr);
  gap: 5px;
  width: 100%;
}

.personal-info-input {
  min-height: 44px;
  width: 100%;
  min-width: 0;
  padding: 14px 14px;
  font-size: 12px;
  line-height: 1.3;
}

.personal-info-input::placeholder {
  font-size: 12px;
}

.save-copy-remember {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 2px;
  cursor: pointer;
}

.save-copy-remember-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.save-copy-remember-box {
  position: relative;
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  border: 1px solid #737783;
  border-radius: 999px;
  background: transparent;
}

.save-copy-remember-input:checked + .save-copy-remember-box::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: #737783;
}

.save-copy-remember-text {
  color: #737783;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.6px;
}

.save-copy-feedback {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.save-copy-feedback.is-success {
  color: #2f7950;
}

.save-copy-feedback.is-error {
  color: #8e3e46;
}

.save-copy-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.save-copy-share-button {
  border: 0;
  background: #111111;
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 22px rgba(17, 17, 17, 0.18);
}

.delete-record-button {
  margin-top: 0;
  border: 1px solid rgba(228, 209, 214, 0.95);
  background: rgba(255, 255, 255, 0.96);
  color: #b3515d;
}

.record-preview-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(230, 232, 234, 0.95);
  background: linear-gradient(90deg, #fcfcfd 0%, #f6f7f9 100%);
  box-shadow: none;
}

.record-preview-card.is-export {
  width: 720px;
  min-height: 960px;
  padding: 42px;
  gap: 22px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(249, 249, 249, 0.98) 0%, rgba(243, 244, 247, 0.98) 100%);
}

.record-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 14px;
}

.record-preview-eyebrow,
.record-preview-date {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.record-preview-eyebrow {
  color: #2f3442;
}

.record-preview-date {
  color: #7b8293;
}

.record-preview-prompt {
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.24;
  letter-spacing: 0.6px;
}

.record-preview-card.is-export .record-preview-prompt {
  font-size: 42px;
  letter-spacing: -1.1px;
}

.record-preview-note {
  color: #424751;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  white-space: pre-wrap;
}

.record-preview-card.is-export .record-preview-note {
  font-size: 26px;
}

.record-preview-location {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.record-preview-location-label {
  color: #7b8293;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.record-preview-location-value {
  color: #2f3442;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  word-break: break-word;
}

.record-preview-card.is-export .record-preview-location-label {
  font-size: 16px;
  letter-spacing: 2.2px;
}

.record-preview-card.is-export .record-preview-location-value {
  font-size: 24px;
}

.record-preview-card.is-export .record-preview-av-stack {
  gap: 14px;
}

.record-preview-card.is-export .record-preview-av-card {
  padding: 18px 20px;
  border-radius: 28px;
}

.record-preview-card.is-export .record-preview-av-icon,
.record-preview-card.is-export .record-preview-av-icon-art {
  width: 52px;
  height: 51.311px;
}

.record-preview-card.is-export .record-preview-av-label {
  font-size: 16px;
  letter-spacing: 1.8px;
}

.record-preview-card.is-export .record-preview-av-name {
  font-size: 22px;
}

.record-preview-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.record-preview-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.record-preview-visual-frame {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #e7eaf0;
}

.record-preview-visual-frame-video {
  aspect-ratio: var(--record-preview-aspect-ratio, 16 / 9);
  background: #000000;
}

.record-preview-visual-frame-video.is-export {
  position: relative;
}

.record-preview-visual-image,
.record-preview-visual-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000000;
}

.record-preview-visual-video {
  aspect-ratio: var(--record-preview-aspect-ratio, 16 / 9);
}

.record-preview-export-video {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 148px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: #111111;
}

.record-preview-export-video-icon {
  width: 40px;
  height: 39.47px;
}

.record-preview-export-video-icon-art {
  width: 40px;
  height: 39.47px;
  display: block;
}

.record-preview-export-video-label {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  word-break: break-word;
}

.record-preview-card.is-export .record-preview-visual-stack {
  gap: 16px;
}

.record-preview-card.is-export .record-preview-visual-frame {
  border-radius: 28px;
}

.record-preview-card.is-export .record-preview-export-video {
  min-height: 230px;
  gap: 16px;
}

.record-preview-card.is-export .record-preview-export-video-icon,
.record-preview-card.is-export .record-preview-export-video-icon-art {
  width: 52px;
  height: 51.311px;
}

.record-preview-card.is-export .record-preview-export-video-label {
  font-size: 18px;
}

.record-preview-av-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.record-preview-av-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 22px;
  background: #111111;
  color: #ffffff;
}

.record-preview-av-card-file {
  background: #eef1f5;
  color: #111111;
}

.record-preview-av-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 39.47px;
}

.record-preview-av-icon-art {
  width: 40px;
  height: 39.47px;
  display: block;
}

.record-preview-av-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.record-preview-av-label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.74;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.record-preview-av-name {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
}

.record-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.record-preview-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #b5c4ff;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.export-stage {
  position: fixed;
  left: -99999px;
  top: 0;
  width: 760px;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
}

.hidden-input {
  display: none;
}

.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 (min-width: 768px) {
  .app-viewport {
    padding: 18px 0;
  }

  .app-stage {
    min-height: min(calc(100dvh - 36px), 852px);
  }

  .app-frame {
    min-height: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  }

  .screen {
    min-height: 100%;
  }

  .screen-prompt {
    --prompt-gutter: 48px;
  }
}

@media (max-width: 390px) {
  .screen-prompt {
    --prompt-gutter: clamp(18px, 5.6vw, 28px);
  }

  .media-card {
    flex-basis: 342px;
    width: 342px;
  }
}

@media (max-width: 360px) {
  .screen-prompt {
    --prompt-gutter: 18px;
  }

  .compose-title {
    font-size: 22px;
    letter-spacing: 2px;
  }

}

@media (max-height: 760px) {
  .screen-prompt {
    --prompt-shell-width: min(
      321.499px,
      calc(100% - (var(--prompt-gutter) * 2)),
      calc((100dvh - 246px) * 0.8092)
    );
    padding-bottom: calc(env(safe-area-inset-bottom) + 20px);
  }

  .prompt-main {
    padding-top: 14px;
  }

  .fab-cluster {
    bottom: 15px;
  }

  .screen-compose {
    padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  }

  .compose-main {
    padding-top: 22px;
  }
}
