/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --ink: #f4fffb;
  --ink-dark: #062821;
  --muted: rgba(244, 255, 251, .78);
  --muted-on-light: #3f5f57;
  --teal: #14b8a6;
  --teal-deep: #0f766e;
  --mint: #2dd4bf;
  --lime: #bef264;
  --coral: #fb7185;
  --card: rgba(8, 28, 24, .78);
  --card-solid: rgba(255, 255, 255, .96);
  --line: rgba(255, 255, 255, .18);
  --danger: #fda4af;
  --radius: 22px;
  --font-display: "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Candara", "Segoe UI", sans-serif;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --touch: 52px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  min-height: 100%;
  min-height: 100dvh;
  color: var(--ink);
  font-family: var(--font-body);
  background: #041612;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

button, input, select, textarea {
  font: inherit;
  font-size: 16px;
}

.app-bg {
  z-index: 0;
  background: #041612;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  transform: none;
}

.app-bg-video {
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.app-bg-slide {
  will-change: transform, opacity;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -4%;
  bottom: -4%;
  left: -4%;
  right: -4%;
}

.app-bg-veil {
  pointer-events: none;
  background: linear-gradient(rgba(4, 22, 18, .48) 0%, rgba(4, 22, 18, .72) 48%, rgba(4, 22, 18, .92) 100%), radial-gradient(700px 320px at 15% 10%, rgba(45, 212, 191, .22), rgba(0, 0, 0, 0) 60%), radial-gradient(500px 280px at 90% 20%, rgba(190, 242, 100, .14), rgba(0, 0, 0, 0) 55%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.app-bg:after {
  display: none;
}

.app-shell {
  z-index: 1;
  width: min(980px, 100%);
  min-height: 100dvh;
  padding: 1rem .9rem calc(6rem + var(--safe-bottom));
  flex-direction: column;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.brand-row {
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.brand-mark {
  letter-spacing: .14em;
  color: var(--ink-dark);
  background: var(--lime);
  border-radius: 999px;
  margin: 0;
  padding: .4rem .75rem;
  font-size: .7rem;
  font-weight: 900;
}

.live-dot {
  background: var(--coral);
  border-radius: 50%;
  width: .55rem;
  height: .55rem;
  animation: 1.6s infinite pulse-dot;
  box-shadow: 0 0 rgba(251, 113, 133, .7);
}

@keyframes pulse-dot {
  70% {
    box-shadow: 0 0 0 12px rgba(251, 113, 133, 0);
  }

  100% {
    box-shadow: 0 0 rgba(251, 113, 133, 0);
  }
}

.brand {
  font-family: var(--font-display);
  letter-spacing: -.045em;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, .45);
  margin: .55rem 0 0;
  font-size: max(2.2rem, min(9vw, 3.6rem));
  font-weight: 900;
  line-height: .95;
}

.lead {
  color: var(--muted);
  max-width: 34rem;
  margin: .65rem 0 1.1rem;
  font-size: max(.98rem, min(3.5vw, 1.12rem));
  line-height: 1.45;
}

.wizard-nav {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  margin: .4rem 0 1.1rem;
  padding: .75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

.wizard-nav-inner {
  scrollbar-width: none;
  justify-content: space-between;
  align-items: center;
  gap: .15rem;
  display: flex;
  overflow-x: auto;
}

.wizard-nav-inner::-webkit-scrollbar {
  display: none;
}

.wizard-step-wrap {
  flex: 1 1 0;
  align-items: center;
  min-width: 0;
  display: flex;
}

.wizard-line {
  background: rgba(255, 255, 255, .2);
  border-radius: 99px;
  flex: 1;
  height: 3px;
  margin: 0 .15rem;
}

.wizard-line.on {
  background: linear-gradient(90deg, var(--mint), var(--lime));
}

.wizard-step {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  background: rgba(4, 22, 18, .55);
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 16px;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: .2rem;
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  padding: .5rem .35rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
  display: flex;
  transform: none;
}

.wizard-step:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.wizard-num {
  background: rgba(255, 255, 255, .14);
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  width: 1.7rem;
  min-width: 1.7rem;
  height: 1.7rem;
  min-height: 1.7rem;
  font-size: .85rem;
  font-weight: 900;
  line-height: 1;
  display: grid;
}

.wizard-label {
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.1;
}

.wizard-step.active {
  border-color: var(--lime);
  background: linear-gradient(160deg, var(--teal-deep), #0d9488);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
}

.wizard-step.active .wizard-num {
  background: var(--lime);
  color: var(--ink-dark);
  box-shadow: none;
}

.wizard-step.done {
  border-color: var(--mint);
}

.wizard-step.done .wizard-num {
  background: var(--mint);
  color: var(--ink-dark);
}

.panel {
  background: var(--card-solid);
  color: var(--ink-dark);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .35);
  flex: 1;
  padding: 1.05rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.panel h2, .panel h3, .panel strong {
  color: var(--teal-deep);
}

.panel p, .panel li {
  color: #35564f;
}

.plan-muted {
  color: var(--muted-on-light);
}

.grid-2 {
  grid-template-columns: 1fr;
  gap: .85rem;
  display: grid;
}

.field {
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .75rem;
  display: flex;
}

.field label {
  color: var(--teal-deep);
  font-size: .82rem;
  font-weight: 800;
}

.field input, .field select, .field textarea {
  min-height: var(--touch);
  color: var(--ink-dark);
  background: #fff;
  border: 1px solid rgba(15, 118, 110, .22);
  border-radius: 14px;
  width: 100%;
  padding: .85rem .95rem;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: var(--touch);
  cursor: pointer;
  background: linear-gradient(135deg, var(--teal-deep), var(--mint));
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 999px;
  padding: .95rem 1.2rem;
  font-weight: 800;
  transition: transform .15s, opacity .15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.btn.secondary {
  color: var(--teal-deep);
  background: #fff;
  border: 1px solid rgba(15, 118, 110, .25);
}

.btn.ghost {
  color: var(--teal-deep);
  background: none;
  border: 1px dashed rgba(15, 118, 110, .35);
}

.btn.block {
  width: 100%;
  display: block;
}

.row {
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  display: flex;
}

.row.stack-mobile {
  flex-direction: column;
  align-items: stretch;
}

.error {
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 12px;
  padding: .75rem .9rem;
  font-weight: 700;
}

.choice-grid {
  grid-template-columns: 1fr;
  gap: .75rem;
  margin: .75rem 0 1rem;
  display: grid;
}

.choice-card {
  cursor: pointer;
  text-align: left;
  background: #fff;
  border: 2px solid rgba(15, 118, 110, .2);
  border-radius: 18px;
  min-height: 92px;
  padding: 1.05rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.choice-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, .15);
}

.choice-card:focus-visible {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, .15);
}

.choice-card strong {
  margin-bottom: .25rem;
  font-size: 1.08rem;
  display: block;
}

.choice-card span {
  color: #4d6b64;
  font-size: .92rem;
  line-height: 1.35;
}

.upload-actions {
  grid-template-columns: 1fr;
  gap: .75rem;
  margin: .85rem 0;
  display: grid;
}

.upload-card {
  cursor: pointer;
  text-align: center;
  background: linear-gradient(160deg, rgba(45, 212, 191, .12), rgba(190, 242, 100, .16));
  border: 2px dashed rgba(15, 118, 110, .35);
  border-radius: 18px;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  min-height: 110px;
  padding: 1.1rem;
  display: flex;
}

.upload-card strong {
  font-size: 1.05rem;
}

.upload-card span {
  color: #4d6b64;
  font-size: .9rem;
}

.upload-card.camera {
  background: linear-gradient(160deg, rgba(15, 118, 110, .18), rgba(45, 212, 191, .2));
  border-style: solid;
}

.bio-photo-queue {
  margin: .75rem 0 1rem;
}

.bio-photo-grid {
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: .55rem;
  margin-bottom: .75rem;
  display: grid;
}

.bio-photo-item {
  aspect-ratio: 1;
  background: #ecfdf5;
  border: 1px solid rgba(15, 118, 110, .25);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.bio-photo-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.bio-photo-pdf {
  height: 100%;
  color: var(--teal-deep);
  place-items: center;
  font-size: .85rem;
  font-weight: 900;
  display: grid;
}

.bio-photo-remove {
  color: #fff;
  cursor: pointer;
  background: rgba(4, 22, 18, .75);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  top: 4px;
  right: 4px;
}

.meal-card {
  background: #fff;
  border: 1px solid rgba(15, 118, 110, .18);
  border-radius: 16px;
  flex-direction: column;
  min-height: 100%;
  display: flex;
  overflow: hidden;
}

.meal-visual {
  background-position: center;
  background-size: cover;
  height: 120px;
  position: relative;
}

.meal-visual span {
  color: #fff;
  background: rgba(6, 40, 33, .72);
  border-radius: 999px;
  padding: .25rem .5rem;
  font-size: .72rem;
  position: absolute;
  top: auto;
  bottom: .55rem;
  left: auto;
  right: .55rem;
}

.meal-body {
  padding: .85rem .95rem 1rem;
}

.meal-body h3 {
  color: var(--teal-deep);
  margin: 0 0 .35rem;
  font-size: 1rem;
}

.meal-body p {
  color: #4d6b64;
  margin: 0;
  font-size: .9rem;
  line-height: 1.4;
}

.slot {
  border-bottom: 1px solid rgba(15, 118, 110, .15);
  margin-bottom: 1.1rem;
  padding-bottom: .85rem;
}

.slot-head {
  flex-wrap: wrap;
  align-items: baseline;
  gap: .45rem;
  margin-bottom: .65rem;
  display: flex;
}

.badge {
  letter-spacing: .04em;
  background: var(--lime);
  color: var(--ink-dark);
  border-radius: 999px;
  align-items: center;
  padding: .2rem .55rem;
  font-size: .7rem;
  font-weight: 800;
  display: inline-flex;
}

.badge.pre {
  background: #99f6e4;
}

.badge.post {
  background: #a7f3d0;
}

.stat-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin-bottom: 1rem;
  display: grid;
}

.stat {
  background: linear-gradient(145deg, #fff, #ecfdf5);
  border: 1px solid rgba(15, 118, 110, .15);
  border-radius: 14px;
  padding: .85rem;
}

.stat strong {
  color: var(--teal-deep);
  font-size: 1.25rem;
  display: block;
}

.stat span {
  color: #4d6b64;
  font-size: .8rem;
}

.toggle {
  min-height: var(--touch);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: var(--ink-dark);
  background: #fff;
  border: 1px solid rgba(15, 118, 110, .2);
  border-radius: 14px;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1rem;
  display: flex;
}

.toggle input {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--teal);
}

.visual-hero {
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(120deg, rgba(15, 118, 110, .82), rgba(251, 113, 133, .35)), url("/images/gym-duo-training.png") center / cover;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 140px;
  margin-bottom: 1rem;
  padding: 1.1rem;
  display: flex;
  overflow: hidden;
}

.visual-hero h2 {
  margin: 0;
  font-size: max(1.3rem, min(5vw, 1.9rem));
  color: #fff !important;
}

.visual-hero p {
  max-width: 34rem;
  margin: .35rem 0 0;
  font-size: .92rem;
  color: rgba(255, 255, 255, .95) !important;
}

.history {
  margin-top: 1.25rem;
}

.history ul {
  margin: 0;
  padding: 0;
}

.history li {
  margin-bottom: .45rem;
  list-style: none;
}

.gym-strip {
  display: none;
}

.mobile-cta {
  z-index: 40;
  padding: .7rem .9rem calc(.7rem + var(--safe-bottom));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(4, 22, 18, .92);
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.mobile-cta .btn {
  width: 100%;
}

.camera-modal {
  z-index: 80;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: .75rem;
  padding-bottom: calc(.75rem + var(--safe-bottom));
  background: rgba(4, 22, 18, .82);
  place-items: end center;
  display: grid;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.camera-sheet {
  width: min(520px, 100%);
  color: var(--ink-dark);
  background: #fff;
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.camera-head {
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  display: flex;
}

.camera-head strong {
  color: var(--teal-deep);
  font-size: 1.05rem;
}

.camera-preview {
  aspect-ratio: 4 / 3;
  background: #041612;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.camera-preview video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.camera-waiting {
  color: #fff;
  background: rgba(4, 22, 18, .55);
  place-items: center;
  margin: 0;
  font-weight: 700;
  display: grid;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.camera-flash {
  pointer-events: none;
  z-index: 3;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.camera-captured-toast {
  z-index: 4;
  color: #fff;
  background: rgba(4, 22, 18, .88);
  border: 1px solid rgba(190, 242, 100, .45);
  border-radius: 14px;
  align-items: center;
  gap: .65rem;
  min-width: min(280px, 100% - 1.5rem);
  padding: .55rem .75rem;
  display: flex;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.camera-captured-toast strong {
  color: var(--lime);
  font-size: .95rem;
  display: block;
}

.camera-captured-toast span {
  opacity: .9;
  margin-top: .1rem;
  font-size: .78rem;
  display: block;
}

.camera-captured-thumb {
  object-fit: cover;
  border: 2px solid var(--lime);
  border-radius: 10px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.camera-shutter {
  position: relative;
}

.camera-shutter:not(:disabled):active {
  box-shadow: 0 0 0 4px rgba(190, 242, 100, .35);
}

.camera-actions {
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: .85rem;
  display: grid;
}

@media (max-width: 760px) {
  .mobile-cta.visible {
    display: block;
  }

  .camera-modal {
    place-items: stretch stretch;
    padding: 0;
  }

  .camera-sheet {
    border-radius: 0;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    display: flex;
  }

  .camera-preview {
    aspect-ratio: auto;
    flex: 1;
    min-height: 55vh;
  }
}

@media (min-width: 640px) {
  .app-shell {
    padding: 1.4rem 1.25rem 3.5rem;
  }

  .grid-2, .choice-grid, .upload-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .panel {
    padding: 1.35rem;
  }

  .row.stack-mobile {
    flex-direction: row;
    align-items: center;
  }

  .wizard-step {
    width: 76px;
    min-width: 76px;
    max-width: 76px;
    padding: .55rem .45rem;
  }

  .wizard-num {
    width: 1.85rem;
    min-width: 1.85rem;
    height: 1.85rem;
    min-height: 1.85rem;
    font-size: .9rem;
  }

  .wizard-label {
    font-size: .72rem;
  }
}

.wb {
  background: linear-gradient(#f0fdfa, #fff);
  border: 1px solid rgba(15, 118, 110, .2);
  border-radius: 18px;
  margin: 1rem 0;
  padding: 1rem;
}

.wb-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  display: flex;
}

.wb-head p {
  color: #4d6b64;
  margin: .25rem 0 0;
  font-size: .9rem;
}

.wb-letters {
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .85rem;
  display: flex;
}

.wb-letter {
  color: #0f766e;
  cursor: pointer;
  background: #fff;
  border: 2px solid rgba(15, 118, 110, .25);
  border-radius: 14px;
  place-items: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.1rem;
  font-weight: 900;
  display: grid;
  position: relative;
}

.wb-letter small {
  color: #062821;
  background: #bef264;
  border-radius: 999px;
  min-width: 1.1rem;
  padding: .1rem .25rem;
  font-size: .65rem;
  position: absolute;
  top: -.3rem;
  right: -.3rem;
}

.wb-letter.on {
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #14b8a6);
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0 8px 20px rgba(15, 118, 110, .3);
}

.wb-daybar {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  display: flex;
}

.wb-groups {
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .75rem;
  display: flex;
}

.wb-group {
  color: #0f766e;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, .22);
  border-radius: 999px;
  padding: .45rem .75rem;
  font-size: .82rem;
  font-weight: 750;
}

.wb-group.on {
  color: #fff;
  background: #0f766e;
  border-color: rgba(0, 0, 0, 0);
}

.wb-exercises {
  grid-template-columns: 1fr;
  gap: .45rem;
  max-height: 280px;
  padding-right: .2rem;
  display: grid;
  overflow: auto;
}

.wb-ex {
  text-align: left;
  cursor: pointer;
  color: #0f2f2a;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, .18);
  border-radius: 12px;
  align-items: center;
  gap: .55rem;
  padding: .7rem .8rem;
  font-weight: 650;
  display: flex;
}

.wb-ex span {
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  font-weight: 900;
  display: grid;
}

.wb-ex.on {
  background: #ecfdf5;
  border-color: #0d9488;
}

.wb-ex.on span {
  color: #fff;
  background: #0f766e;
}

.wb-selected {
  background: #fff;
  border: 1px solid rgba(15, 118, 110, .15);
  border-radius: 14px;
  margin: .85rem 0;
  padding: .75rem;
}

.wb-selected ol {
  margin: .45rem 0 0;
  padding-left: 1.1rem;
}

.wb-selected li {
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin-bottom: .35rem;
  display: flex;
}

.wb-selected em {
  color: #4d6b64;
  font-size: .85rem;
  font-style: normal;
}

.wb-selected button {
  color: #9f1239;
  cursor: pointer;
  background: #fee2e2;
  border: none;
  border-radius: 8px;
  width: 1.7rem;
  height: 1.7rem;
  margin-left: auto;
  font-weight: 900;
}

.wb-hint {
  color: #4d6b64;
  font-size: .9rem;
}

@media (min-width: 640px) {
  .wb-exercises {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 320px;
  }
}

.analyzing-overlay {
  z-index: 90;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(4, 22, 18, .72);
  place-items: center;
  padding: 1rem;
  display: grid;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.analyzing-card {
  text-align: center;
  color: #0f2f2a;
  background: rgba(255, 255, 255, .96);
  border-radius: 22px;
  width: min(320px, 100%);
  padding: 1.6rem 1.25rem 1.4rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.analyzing-card strong {
  color: #0f766e;
  margin-top: .85rem;
  font-size: 1.15rem;
  display: block;
}

.analyzing-card p {
  color: #4d6b64;
  margin: .35rem 0 0;
  font-size: .9rem;
}

.analyzing-ring {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  position: relative;
}

.analyzing-ring span {
  border: 3px solid #0f766e;
  border-color: #0f766e #2dd4bf rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-radius: 50%;
  animation: .9s linear infinite spin-analyze;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.analyzing-ring span:nth-child(2) {
  border-top-color: #bef264;
  border-right-color: rgba(0, 0, 0, 0);
  animation-duration: 1.2s;
  animation-direction: reverse;
  top: 8px;
  bottom: 8px;
  left: 8px;
  right: 8px;
}

.analyzing-ring span:nth-child(3) {
  border-top-color: #fb7185;
  animation-duration: .7s;
  top: 18px;
  bottom: 18px;
  left: 18px;
  right: 18px;
}

@keyframes spin-analyze {
  to {
    transform: rotate(360deg);
  }
}

.food-prefs {
  background: #f0fdfa;
  border: 1px solid rgba(15, 118, 110, .18);
  border-radius: 16px;
  margin-top: 1rem;
  padding: .9rem;
}

.food-prefs h3 {
  margin: .35rem 0 .2rem;
  font-size: 1rem;
}

.food-prefs p {
  color: #4d6b64;
  margin: 0 0 .55rem;
  font-size: .88rem;
}

.chip-grid {
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .85rem;
  display: flex;
}

.chip {
  color: #0f766e;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, .25);
  border-radius: 999px;
  padding: .5rem .8rem;
  font-size: .82rem;
  font-weight: 750;
}

.chip.on {
  color: #fff;
  background: #0f766e;
  border-color: rgba(0, 0, 0, 0);
}

.chip.danger.on {
  color: #fff;
  background: #be123c;
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/