/* [project]/stamp-verify-service/src/app/globals.css [app-client] (css) */
:root {
  --background: #faf8f5;
  --foreground: #1c1c1e;
  --muted: #8e8e93;
  --card-shadow: #6a68622e;
  --sheet-shadow: #17161b38;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--background);
  min-height: 100%;
  color: var(--foreground);
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, SF Pro Display, SF Pro Text, Segoe UI, sans-serif;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font: inherit;
}

.home-shell {
  place-items: center;
  min-height: 100vh;
  padding: 32px;
  display: grid;
}

.home-card {
  background: #ffffffd6;
  border: 1px solid #ffffffb3;
  border-radius: 28px;
  width: min(620px, 100%);
  padding: 32px;
  box-shadow: 0 18px 44px #2424271a;
}

.home-card h1 {
  letter-spacing: -.04em;
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1;
}

.home-card p {
  color: #6b6b72;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.home-eyebrow {
  color: #5a5a61;
  letter-spacing: .02em;
  background: #1c1c1e0f;
  border-radius: 999px;
  margin-bottom: 16px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.home-actions {
  gap: 12px;
  margin-top: 28px;
  display: flex;
}

.home-button {
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 600;
}

.home-button.primary {
  color: #fff;
  background: #111;
}

.home-button.secondary {
  color: #44444b;
  background: #1111110f;
}

.verify-shell {
  background: var(--background);
  min-height: 100vh;
  padding: 20px 20px 40px;
}

.verify-backbar {
  align-items: center;
  display: flex;
}

.verify-content {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 28px;
}

.icon-button {
  color: #1c1c1e;
  cursor: pointer;
  background: #1111110a;
  border: none;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 22px;
  display: inline-flex;
}

.icon-button.subtle {
  background: #1111110a;
}

.property-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
  display: flex;
}

.property-copy h1 {
  letter-spacing: -.05em;
  margin: 0 0 8px;
  font-size: clamp(34px, 6vw, 52px);
  line-height: .96;
}

.property-copy p {
  color: var(--muted);
  max-width: 420px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.property-icon-wrap {
  color: #5865f2;
  background: linear-gradient(#5865f22e, #5865f214);
  border-radius: 28px;
  place-items: center;
  width: 104px;
  height: 104px;
  font-size: 56px;
  display: grid;
  box-shadow: inset 0 1px #ffffff8c;
}

.verify-section {
  padding-top: 8px;
}

.section-title {
  letter-spacing: -.02em;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}

.glass-card {
  box-shadow: 0 20px 48px var(--card-shadow);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.glass-base, .glass-glow, .glass-depth, .glass-border {
  position: absolute;
  inset: 0;
}

.glass-base {
  background: linear-gradient(#46484de6, #62656ab8, #92959a75);
}

.glass-glow {
  background: linear-gradient(140deg, #ffffff47, #ffffff14 55%, #ffffff03);
}

.glass-depth {
  background: linear-gradient(#12131714, #12131733);
}

.glass-border {
  border: 1px solid #ffffff2e;
  border-radius: 24px;
}

.glass-content {
  z-index: 1;
  padding: 24px;
  position: relative;
}

.card-top-row {
  color: #f7f7fb;
  align-items: center;
  margin-bottom: 22px;
  font-size: 24px;
  display: flex;
}

.card-body {
  margin-bottom: 18px;
}

.card-title {
  color: #f4f4f6;
  font-size: 18px;
  font-weight: 600;
}

.card-subtitle {
  color: #f5b74f;
  text-shadow: 0 0 14px #f5b74f3d;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}

.glass-action {
  color: #fff;
  cursor: pointer;
  background: #c4c4c738;
  border: 1px solid #ffffff38;
  border-radius: 18px;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 10px;
  padding: 16px;
  transition: transform .14s, background .14s, border-color .14s;
  display: flex;
}

.glass-action:hover {
  background: #d6d6d947;
  border-color: #ffffff47;
  transform: translateY(-1px);
}

.action-icon {
  border-radius: 999px;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
}

.stamp-mark {
  letter-spacing: -.03em;
  background: #ffffff1f;
  font-weight: 800;
}

.action-lucide {
  font-size: 28px;
}

.action-copy {
  text-align: left;
}

.action-title {
  font-size: 15px;
  font-weight: 600;
}

.action-subtitle {
  color: #fffc;
  margin-top: 3px;
  font-size: 12px;
}

.sheet-overlay {
  backdrop-filter: blur(8px);
  z-index: 40;
  background: #0e0e1261;
  place-items: center;
  padding: 20px;
  display: grid;
  position: fixed;
  inset: 0;
}

.sheet-card {
  width: min(640px, 100%);
  box-shadow: 0 28px 70px var(--sheet-shadow);
  background: #fffffff0;
  border: 1px solid #ffffffe6;
  border-radius: 32px;
  padding: 24px;
}

.sheet-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.sheet-kicker {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #77777f;
  font-size: 12px;
  font-weight: 700;
}

.sheet-step {
  padding-top: 8px;
}

.sheet-step.center {
  text-align: center;
}

.sheet-icon {
  background: #1111110f;
  border-radius: 18px;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  font-size: 24px;
  display: grid;
}

.sheet-icon.success {
  color: #0f9d58;
}

.sheet-icon.spin {
  animation: 1.1s linear infinite spin;
}

.sheet-step h2 {
  letter-spacing: -.05em;
  margin: 0 0 8px;
  font-size: 30px;
}

.sheet-step p {
  color: #66666d;
  margin: 0;
  line-height: 1.6;
}

.status-pill {
  color: #43434a;
  background: #1111110d;
  border-radius: 999px;
  margin-top: 18px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.sheet-actions {
  gap: 12px;
  margin-top: 24px;
  display: flex;
}

.sheet-actions.dual {
  justify-content: space-between;
}

.primary-button, .secondary-button {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
}

.primary-button {
  color: #fff;
  background: #111;
  min-width: 184px;
}

.primary-button:disabled, .secondary-button:disabled {
  opacity: .6;
  cursor: default;
}

.secondary-button {
  color: #1c1c1e;
  background: #1111110f;
}

.camera-stage {
  background: linear-gradient(#1111110f, #11111105);
  border-radius: 24px;
  place-items: center;
  min-height: 220px;
  margin-top: 20px;
  display: grid;
  overflow: hidden;
}

.camera-video {
  object-fit: cover;
  width: 100%;
  min-height: 220px;
  display: none;
}

.camera-video.visible {
  display: block;
}

.camera-placeholder {
  color: #6d6d74;
  font-size: 14px;
}

.challenge-list {
  color: #4a4a51;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
}

.upload-grid {
  gap: 12px;
  margin-top: 20px;
  display: grid;
}

.upload-card {
  background: #1111110a;
  border: 1px solid #1111110f;
  border-radius: 20px;
  gap: 10px;
  padding: 16px;
  display: grid;
}

.upload-card.muted {
  opacity: .84;
}

.upload-card span {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #77777f;
  font-size: 12px;
  font-weight: 700;
}

.upload-card strong {
  font-size: 15px;
}

.success-panel {
  background: #1111110a;
  border-radius: 22px;
  gap: 12px;
  margin-top: 20px;
  padding: 18px;
  display: grid;
}

.success-panel span {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #77777f;
  margin-bottom: 6px;
  font-size: 12px;
  display: block;
}

.success-panel strong {
  word-break: break-word;
  display: block;
}

.processing-bar {
  background: #11111114;
  border-radius: 999px;
  width: min(360px, 100%);
  height: 10px;
  margin: 24px auto 0;
  overflow: hidden;
}

.processing-bar-fill {
  border-radius: inherit;
  background: linear-gradient(90deg, #111, #fff, #111);
  width: 45%;
  height: 100%;
  animation: 1.3s linear infinite shimmer;
}

.sheet-error {
  color: #c43019;
  background: #d63b2714;
  border-radius: 16px;
  margin-top: 18px;
  padding: 12px 14px;
  font-size: 14px;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(320%);
  }
}

@media (width <= 720px) {
  .property-header {
    flex-direction: column;
  }

  .property-icon-wrap {
    width: 88px;
    height: 88px;
    font-size: 48px;
  }

  .home-actions, .sheet-actions, .sheet-actions.dual {
    flex-direction: column;
  }

  .primary-button, .secondary-button {
    width: 100%;
  }
}


/*# sourceMappingURL=stamp-verify-service_src_app_globals_43538242.css.map*/